diff --git a/acf.php b/acf.php index 60231cb..47c946c 100644 --- a/acf.php +++ b/acf.php @@ -1,70 +1,91 @@ define( 'ACF', true ); $this->define( 'ACF_PATH', plugin_dir_path( __FILE__ ) ); $this->define( 'ACF_BASENAME', plugin_basename( __FILE__ ) ); $this->define( 'ACF_VERSION', $this->version ); - $this->define( 'ACF_MAJOR_VERSION', 5 ); + $this->define( 'ACF_MAJOR_VERSION', 6 ); + $this->define( 'ACF_FIELD_API_VERSION', 5 ); + $this->define( 'ACF_UPGRADE_VERSION', '5.5.0' ); // Highest version with an upgrade routine. See upgrades.php. // Define settings. $this->settings = array( @@ -186,11 +207,6 @@ if ( ! class_exists( 'ACF' ) ) : // Include PRO. acf_include( 'pro/acf-pro.php' ); - // Include tests. - if ( defined( 'ACF_DEV' ) && ACF_DEV ) { - acf_include( 'tests/tests.php' ); - } - // Add actions. add_action( 'init', array( $this, 'init' ), 5 ); add_action( 'init', array( $this, 'register_post_types' ), 5 ); @@ -203,17 +219,14 @@ if ( ! class_exists( 'ACF' ) ) : } /** - * init - * * Completes the setup process on "init" of earlier. * * @date 28/09/13 * @since 5.0.0 * - * @param void * @return void */ - function init() { + public function init() { // Bail early if called directly from functions.php or plugin file. if ( ! did_action( 'plugins_loaded' ) ) { @@ -278,9 +291,9 @@ if ( ! class_exists( 'ACF' ) ) : * @date 28/09/13 * @since 5.0.0 * - * @param int $major_version The major version of ACF. + * @param int ACF_FIELD_API_VERSION The field API version. */ - do_action( 'acf/include_field_types', ACF_MAJOR_VERSION ); + do_action( 'acf/include_field_types', ACF_FIELD_API_VERSION ); // Include locations. acf_include( 'includes/locations/class-acf-location-post-type.php' ); @@ -311,9 +324,9 @@ if ( ! class_exists( 'ACF' ) ) : * @date 28/09/13 * @since 5.0.0 * - * @param int $major_version The major version of ACF. + * @param int ACF_FIELD_API_VERSION The field API version. */ - do_action( 'acf/include_location_rules', ACF_MAJOR_VERSION ); + do_action( 'acf/include_location_rules', ACF_FIELD_API_VERSION ); /** * Fires during initialization. Used to add local fields. @@ -321,9 +334,9 @@ if ( ! class_exists( 'ACF' ) ) : * @date 28/09/13 * @since 5.0.0 * - * @param int $major_version The major version of ACF. + * @param int ACF_FIELD_API_VERSION The field API version. */ - do_action( 'acf/include_fields', ACF_MAJOR_VERSION ); + do_action( 'acf/include_fields', ACF_FIELD_API_VERSION ); /** * Fires after ACF is completely "initialized". @@ -331,23 +344,20 @@ if ( ! class_exists( 'ACF' ) ) : * @date 28/09/13 * @since 5.0.0 * - * @param int $major_version The major version of ACF. + * @param int ACF_MAJOR_VERSION The major version of ACF. */ do_action( 'acf/init', ACF_MAJOR_VERSION ); } /** - * register_post_types - * * Registers the ACF post types. * * @date 22/10/2015 * @since 5.3.2 * - * @param void * @return void */ - function register_post_types() { + public function register_post_types() { // Vars. $cap = acf_get_setting( 'capability' ); @@ -380,7 +390,7 @@ if ( ! class_exists( 'ACF' ) ) : 'edit_posts' => $cap, 'delete_posts' => $cap, ), - 'supports' => array( 'title' ), + 'supports' => false, 'rewrite' => false, 'query_var' => false, ) @@ -422,28 +432,26 @@ if ( ! class_exists( 'ACF' ) ) : } /** - * register_post_status - * * Registers the ACF post statuses. * * @date 22/10/2015 * @since 5.3.2 * - * @param void * @return void */ - function register_post_status() { + public function register_post_status() { - // Register the Disabled post status. + // Register the Inactive post status. register_post_status( 'acf-disabled', array( - 'label' => _x( 'Disabled', 'post status', 'acf' ), + 'label' => _x( 'Inactive', 'post status', 'acf' ), 'public' => true, 'exclude_from_search' => false, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, - 'label_count' => _n_noop( 'Disabled (%s)', 'Disabled (%s)', 'acf' ), + /* translators: counts for inactive field groups */ + 'label_count' => _n_noop( 'Inactive (%s)', 'Inactive (%s)', 'acf' ), ) ); } @@ -455,7 +463,7 @@ if ( ! class_exists( 'ACF' ) ) : * @param string $plugin The plugin being activated. */ public function deactivate_other_instances( $plugin ) { - if ( ! in_array( $plugin, array( 'advanced-custom-fields/acf.php', 'advanced-custom-fields-pro/acf.php' ) ) ) { + if ( ! in_array( $plugin, array( 'advanced-custom-fields/acf.php', 'advanced-custom-fields-pro/acf.php' ), true ) ) { return; } @@ -488,13 +496,13 @@ if ( ! class_exists( 'ACF' ) ) : * Displays a notice when either ACF or ACF PRO is automatically deactivated. */ public function plugin_deactivated_notice() { - $deactivated_notice_id = get_transient( 'acf_deactivated_notice_id' ); - if ( ! in_array( $deactivated_notice_id, array( '1', '2' ) ) ) { + $deactivated_notice_id = (int) get_transient( 'acf_deactivated_notice_id' ); + if ( ! in_array( $deactivated_notice_id, array( 1, 2 ), true ) ) { return; } $message = __( "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields.", 'acf' ); - if ( '2' === $deactivated_notice_id ) { + if ( 2 === $deactivated_notice_id ) { $message = __( "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' ); } @@ -508,31 +516,34 @@ if ( ! class_exists( 'ACF' ) ) : } /** - * posts_where - * * Filters the $where clause allowing for custom WP_Query args. * * @date 31/8/19 * @since 5.8.1 * - * @param string $where The WHERE clause. + * @param string $where The WHERE clause. + * @param WP_Query $wp_query The query object. * @return WP_Query $wp_query The query object. */ - function posts_where( $where, $wp_query ) { + public function posts_where( $where, $wp_query ) { global $wpdb; + $field_key = $wp_query->get( 'acf_field_key' ); + $field_name = $wp_query->get( 'acf_field_name' ); + $group_key = $wp_query->get( 'acf_group_key' ); + // Add custom "acf_field_key" arg. - if ( $field_key = $wp_query->get( 'acf_field_key' ) ) { + if ( $field_key ) { $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $field_key ); } // Add custom "acf_field_name" arg. - if ( $field_name = $wp_query->get( 'acf_field_name' ) ) { + if ( $field_name ) { $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_excerpt = %s", $field_name ); } // Add custom "acf_group_key" arg. - if ( $group_key = $wp_query->get( 'acf_group_key' ) ) { + if ( $group_key ) { $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $group_key ); } @@ -541,8 +552,6 @@ if ( ! class_exists( 'ACF' ) ) : } /** - * define - * * Defines a constant if doesnt already exist. * * @date 3/5/17 @@ -552,15 +561,13 @@ if ( ! class_exists( 'ACF' ) ) : * @param mixed $value The constant value. * @return void */ - function define( $name, $value = true ) { + public function define( $name, $value = true ) { if ( ! defined( $name ) ) { define( $name, $value ); } } /** - * has_setting - * * Returns true if a setting exists for this name. * * @date 2/2/18 @@ -569,13 +576,11 @@ if ( ! class_exists( 'ACF' ) ) : * @param string $name The setting name. * @return boolean */ - function has_setting( $name ) { + public function has_setting( $name ) { return isset( $this->settings[ $name ] ); } /** - * get_setting - * * Returns a setting or null if doesn't exist. * * @date 28/09/13 @@ -584,13 +589,11 @@ if ( ! class_exists( 'ACF' ) ) : * @param string $name The setting name. * @return mixed */ - function get_setting( $name ) { + public function get_setting( $name ) { return isset( $this->settings[ $name ] ) ? $this->settings[ $name ] : null; } /** - * update_setting - * * Updates a setting for the given name and value. * * @date 28/09/13 @@ -600,14 +603,12 @@ if ( ! class_exists( 'ACF' ) ) : * @param mixed $value The setting value. * @return true */ - function update_setting( $name, $value ) { + public function update_setting( $name, $value ) { $this->settings[ $name ] = $value; return true; } /** - * get_data - * * Returns data or null if doesn't exist. * * @date 28/09/13 @@ -616,13 +617,11 @@ if ( ! class_exists( 'ACF' ) ) : * @param string $name The data name. * @return mixed */ - function get_data( $name ) { + public function get_data( $name ) { return isset( $this->data[ $name ] ) ? $this->data[ $name ] : null; } /** - * set_data - * * Sets data for the given name and value. * * @date 28/09/13 @@ -632,13 +631,11 @@ if ( ! class_exists( 'ACF' ) ) : * @param mixed $value The data value. * @return void */ - function set_data( $name, $value ) { + public function set_data( $name, $value ) { $this->data[ $name ] = $value; } /** - * get_instance - * * Returns an instance or null if doesn't exist. * * @date 13/2/18 @@ -647,14 +644,12 @@ if ( ! class_exists( 'ACF' ) ) : * @param string $class The instance class name. * @return object */ - function get_instance( $class ) { + public function get_instance( $class ) { $name = strtolower( $class ); return isset( $this->instances[ $name ] ) ? $this->instances[ $name ] : null; } /** - * new_instance - * * Creates and stores an instance of the given class. * * @date 13/2/18 @@ -663,7 +658,7 @@ if ( ! class_exists( 'ACF' ) ) : * @param string $class The instance class name. * @return object */ - function new_instance( $class ) { + public function new_instance( $class ) { $instance = new $class(); $name = strtolower( $class ); $this->instances[ $name ] = $instance; @@ -680,7 +675,7 @@ if ( ! class_exists( 'ACF' ) ) : * @return bool */ public function __isset( $key ) { - return in_array( $key, array( 'locations', 'json' ) ); + return in_array( $key, array( 'locations', 'json' ), true ); } /** @@ -703,20 +698,17 @@ if ( ! class_exists( 'ACF' ) ) : } } - /* - * acf - * - * The main function responsible for returning the one true acf Instance to functions everywhere. - * Use this function like you would a global variable, except without needing to declare the global. - * - * Example: - * - * @date 4/09/13 - * @since 4.3.0 - * - * @param void - * @return ACF - */ + /** + * The main function responsible for returning the one true acf Instance to functions everywhere. + * Use this function like you would a global variable, except without needing to declare the global. + * + * Example: + * + * @date 4/09/13 + * @since 4.3.0 + * + * @return ACF + */ function acf() { global $acf; @@ -731,4 +723,4 @@ if ( ! class_exists( 'ACF' ) ) : // Instantiate. acf(); -endif; // class_exists check +} // class_exists check diff --git a/assets/build/css/acf-dark.css b/assets/build/css/acf-dark.css index 5c19ae2..05ae440 100644 --- a/assets/build/css/acf-dark.css +++ b/assets/build/css/acf-dark.css @@ -4,7 +4,7 @@ /*-------------------------------------------------------------------------------------------- * * Dark mode -* +* * WordPress plugin: https://en-au.wordpress.org/plugins/dark-mode/ * Github Documentation: https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide * diff --git a/assets/build/css/acf-dark.css.map b/assets/build/css/acf-dark.css.map index a0e21de..1430f72 100644 --- a/assets/build/css/acf-dark.css.map +++ b/assets/build/css/acf-dark.css.map @@ -1 +1 @@ -{"version":3,"file":"acf-dark.css","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_dark.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-dark.scss"],"sourcesContent":["/*--------------------------------------------------------------------------------------------\n*\n* Dark mode\n* \n* WordPress plugin: https://en-au.wordpress.org/plugins/dark-mode/\n* Github Documentation: https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Dark Mode Colours.\n$white: #ffffff;\n$black: #000000;\n$blue: #0073aa;\n$medium-blue: #00a0d2;\n$clear: transparent;\n\n$accent-red: #dc3232;\n$accent-orange: #f56e28;\n$accent-yellow: #ffb900;\n$accent-green: #46b450;\n$accent-blue: $blue;\n$accent-purple: #826eb4;\n\n$base-grey: #23282d;\n$light-grey: #bbc8d4;\n$heavy-grey: #37444c;\n$dark-grey: #32373c;\n$ultra-grey: #191f25;\n$dark-silver: #50626f;\n$base-blue: #2e74aa;\n$light-blue: #4092d2;\n$dark-blue: #2c5f88;\n$ultra-blue: #1f3f58;\n$bright-blue: #30ceff;\n\n$editor-lavender: #c678dd;\n$editor-sunglo: #e06c75;\n$editor-olivine: #98c379;\n\n// Custom variables.\n$body_text: \t\t\t#bbc8d4;\n$body_background: \t\t#23282d;\n$body_background2: \t\t#191f25;\n$postbox_background: \t#32373c;\n$postbox_border: \t\t#191f25;\n$postbox_divider: \t\t#23282d;\n$input_background: \t\t#50626f;\n$input_text: \t\t\t#fff;\n$input_border: \t\t\t#191f25;\n\n// Mixins.\n@mixin dark-text() {\n\tcolor: $body_text;\n}\n@mixin dark-heading() {\n\tcolor: $body_text;\n}\n@mixin dark-border() {\n\tborder-color: $postbox_border;\n}\n@mixin dark-background() {\n\tbackground: $body_background;\n}\n@mixin darker-background() {\n\tbackground: darken($body_background, 5%);\n}\n@mixin dark-postbox() {\n\tbackground-color: $postbox_background;\n\tborder-color: $postbox_border;\n\tcolor: $body_text;\n}\n@mixin dark-postbox-block() {\n\tbackground-color: #2d3136;\n\tborder-color: $postbox_divider;\n}\n@mixin dark-divider() {\n\tborder-color: $postbox_divider;\n}\n@mixin dark-input() {\n\tbackground-color: $input_background;\n\tborder-color: $input_border;\n\tcolor: $input_text;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n\n// acf-box\n.acf-box {\n\t@include dark-postbox();\n\t\t\t\n\t.title,\n\t.footer {\n\t\t@include dark-divider();\n\t}\n\t\n\th2 {\n\t\t@include dark-heading();\n\t}\n\t\n\ttable, tbody, tr {\n\t\tbackground: transparent !important;\n\t}\n}\n\n// thead\n.acf-thead {\n\t@include dark-heading();\n\t@include dark-border();\n}\n.acf-tfoot {\n\t@include dark-postbox-block();\n}\n\n// table clear\n.acf-table.-clear,\n.acf-table.-clear tr {\n\tbackground: transparent !important;\n}\n\n// loading overlay\n.acf-loading-overlay {\n\tbackground: rgba(0,0,0,0.5);\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fields\n*\n*---------------------------------------------------------------------------------------------*/\n\n// fields\n.acf-fields {\n\t\n\t// field\n\t> .acf-field {\n\t\t@include dark-divider();\n\t}\n}\n\n// fields (left)\n.acf-fields.-left {\n\t\n\t> .acf-field {\n\t\t&:before {\n\t\t\tbackground: rgba(0,0,0,0.1);\n\t\t\t@include dark-divider();\n\t\t}\n\t}\n}\n\n// fields (border)\n.acf-fields.-border {\n\t@include dark-postbox();\n}\n\n// width\n.acf-field[data-width] + .acf-field[data-width] {\n\t@include dark-divider();\n}\n\n// text\n.acf-input-prepend, \n.acf-input-append {\n\t@include dark-postbox();\n}\n\n// tab\n.acf-tab-wrap {\n\t\n}\n\n.acf-fields > .acf-tab-wrap {\n\t@include dark-postbox();\n\t\n\t.acf-tab-group {\n\t\t@include dark-postbox-block();\n\t\t\n\t\tli {\n\t\t\ta {\n\t\t\t\t@include dark-postbox-block();\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\t@include dark-postbox-block();\n\t\t\t\t\t@include dark-text();\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t&.active a {\n\t\t\t\t@include dark-postbox();\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-fields.-sidebar {\n\t&:before {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n.acf-fields.-sidebar.-left {\n\t&:before {\n\t\t@include dark-postbox-block();\n\t\tbackground: $body_background;\n\t}\n\t> .acf-tab-wrap.-left {\n\t\t.acf-tab-group li a {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t\t\n\t\t.acf-tab-group li.active a {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n}\n\n// file\n.acf-file-uploader {\n\t\n\t.show-if-value {\n\t\t@include dark-postbox();\n\t\t\n\t\t.file-icon {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n}\n\n// acf-oembed\n.acf-oembed {\n\t@include dark-postbox-block();\n\t\n\t.title {\n\t\t@include dark-input();\n\t}\n}\n\n// gallery\n.acf-gallery {\n\t@include dark-postbox-block();\n\t\n\t.acf-gallery-main {\n\t\t@include dark-background();\n\t}\n\t\n\t.acf-gallery-attachment {\n\t\t.margin {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\t\n\t\t\n\t.acf-gallery-side {\n\t\t@include dark-postbox-block();\n\t\t\n\t\t.acf-gallery-side-info {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n\t\n\t.acf-gallery-toolbar {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n// button group\n.acf-button-group {\n\t\n\tlabel:not(.selected) {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n// switch\n.acf-switch:not(.-on) {\n\t@include dark-postbox-block();\n\t.acf-switch-slider {\n\t\t@include dark-input();\n\t}\n}\n\n// link\n.acf-link .link-wrap {\n\t@include dark-postbox-block();\n}\n\n// relationship\n.acf-relationship {\n\t.filters {\n\t\t@include dark-postbox();\n\t}\n\t.selection {\n\t\t@include dark-postbox-block();\n\t\t.choices,\n\t\t.choices-list,\n\t\t.values {\n\t\t\t@include dark-postbox-block();\t\n\t\t}\n\t}\n}\n\n// checkbox\n.acf-taxonomy-field .categorychecklist-holder {\n\t@include dark-postbox-block();\n}\n\n// google map\n.acf-google-map {\n\t@include dark-postbox-block();\n\t\n\t.title {\n\t\t@include dark-input();\n\t}\n}\n\n// accordion\n.acf-accordion {\n\t@include dark-postbox();\n}\n.acf-field.acf-accordion .acf-accordion-content > .acf-fields {\n\t@include dark-border();\n}\n\n// flexible content\n.acf-flexible-content {\n\t.layout {\n\t\t@include dark-postbox();\n\t\t\n\t\t.acf-fc-layout-handle {\n\t\t\t@include dark-postbox-block();\n\t\t\t\n\t\t\t.acf-fc-layout-order {\n\t\t\t\t@include dark-postbox();\n\t\t\t}\n\t\t}\n\t}\n}\n\n// repeater\n#wpbody .acf-table {\n\t@include dark-postbox-block();\n\t\n\t> tbody,\n\t> thead {\n\t\t> tr {\n\t\t\tbackground: transparent;\n\t\t\t\n\t\t\t> td,\n\t\t\t> th {\n\t\t\t\t@include dark-border();\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Select\n.acf-field select {\n\toptgroup, optgroup:nth-child(2n) {\n\t\tbackground: $input_background;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Group\n*\n*---------------------------------------------------------------------------------------------*/\n\n// fields\n#acf-field-group-fields {\n\t\n\t// field list\n\t.acf-field-list-wrap {\n\t\t@include dark-postbox();\n\t}\n\t\n\t.acf-field-list {\n\t\t.no-fields-message {\n\t\t\t@include dark-postbox();\n\t\t}\n\t}\n\t\n\t// field\n\t.acf-field-object {\n\t\t@include dark-postbox();\n\t\t@include dark-divider();\n\t\t\n\t\t\n\t\ttable, tbody, tr, td, th {\n\t\t\tbackground: transparent;\n\t\t\t@include dark-divider();\n\t\t}\n\t\t\n\t\t.acf-field {\n\t\t\t.acf-label {\n\t\t\t\t@include dark-postbox-block();\n\t\t\t}\n\t\t}\n\t\t\n\t\t// sortable\n\t\t&.ui-sortable-helper {\n\t\t\t@include dark-border();\n\t\t\tbox-shadow: none;\n\t\t}\n\t\t\n\t\t&.ui-sortable-placeholder {\n\t\t\t@include dark-postbox-block();\n\t\t\tbox-shadow: none;\n\t\t}\n\t}\n\t\n\t.acf-field-object + .acf-field-object-tab::before,\n\t.acf-field-object + .acf-field-object-accordion::before {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin: Tools\n*\n*---------------------------------------------------------------------------------------------*/\n\n// tools\n.acf-meta-box-wrap {\n\t\n\t.acf-fields {\n\t\t@include dark-input();\n\t\tbackground: transparent;\n\t}\n}","/*--------------------------------------------------------------------------------------------\n*\n* Dark mode\n* \n* WordPress plugin: https://en-au.wordpress.org/plugins/dark-mode/\n* Github Documentation: https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide\n*\n*--------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-box {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-box .title,\n.acf-box .footer {\n border-color: #23282d;\n}\n.acf-box h2 {\n color: #bbc8d4;\n}\n.acf-box table, .acf-box tbody, .acf-box tr {\n background: transparent !important;\n}\n\n.acf-thead {\n color: #bbc8d4;\n border-color: #191f25;\n}\n\n.acf-tfoot {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-table.-clear,\n.acf-table.-clear tr {\n background: transparent !important;\n}\n\n.acf-loading-overlay {\n background: rgba(0, 0, 0, 0.5);\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fields\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-fields > .acf-field {\n border-color: #23282d;\n}\n\n.acf-fields.-left > .acf-field:before {\n background: rgba(0, 0, 0, 0.1);\n border-color: #23282d;\n}\n\n.acf-fields.-border {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-field[data-width] + .acf-field[data-width] {\n border-color: #23282d;\n}\n\n.acf-input-prepend,\n.acf-input-append {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-fields > .acf-tab-wrap {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li a {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {\n background-color: #2d3136;\n border-color: #23282d;\n color: #bbc8d4;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-fields.-sidebar:before {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-fields.-sidebar.-left:before {\n background-color: #2d3136;\n border-color: #23282d;\n background: #23282d;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li a {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-file-uploader .show-if-value {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-file-uploader .show-if-value .file-icon {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-oembed {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-oembed .title {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n}\n\n.acf-gallery {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-main {\n background: #23282d;\n}\n.acf-gallery .acf-gallery-attachment .margin {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-side {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-side .acf-gallery-side-info {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-toolbar {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-button-group label:not(.selected) {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-switch:not(.-on) {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-switch:not(.-on) .acf-switch-slider {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n}\n\n.acf-link .link-wrap {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-relationship .filters {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-relationship .selection {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-relationship .selection .choices,\n.acf-relationship .selection .choices-list,\n.acf-relationship .selection .values {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-taxonomy-field .categorychecklist-holder {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-google-map {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-google-map .title {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n}\n\n.acf-accordion {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-field.acf-accordion .acf-accordion-content > .acf-fields {\n border-color: #191f25;\n}\n\n.acf-flexible-content .layout {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-flexible-content .layout .acf-fc-layout-handle {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-flexible-content .layout .acf-fc-layout-handle .acf-fc-layout-order {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n#wpbody .acf-table {\n background-color: #2d3136;\n border-color: #23282d;\n}\n#wpbody .acf-table > tbody > tr,\n#wpbody .acf-table > thead > tr {\n background: transparent;\n}\n#wpbody .acf-table > tbody > tr > td,\n#wpbody .acf-table > tbody > tr > th,\n#wpbody .acf-table > thead > tr > td,\n#wpbody .acf-table > thead > tr > th {\n border-color: #191f25;\n}\n\n.acf-field select optgroup, .acf-field select optgroup:nth-child(2n) {\n background: #50626f;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Group\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-field-group-fields .acf-field-list-wrap {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n#acf-field-group-fields .acf-field-list .no-fields-message {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n#acf-field-group-fields .acf-field-object {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n border-color: #23282d;\n}\n#acf-field-group-fields .acf-field-object table, #acf-field-group-fields .acf-field-object tbody, #acf-field-group-fields .acf-field-object tr, #acf-field-group-fields .acf-field-object td, #acf-field-group-fields .acf-field-object th {\n background: transparent;\n border-color: #23282d;\n}\n#acf-field-group-fields .acf-field-object .acf-field .acf-label {\n background-color: #2d3136;\n border-color: #23282d;\n}\n#acf-field-group-fields .acf-field-object.ui-sortable-helper {\n border-color: #191f25;\n box-shadow: none;\n}\n#acf-field-group-fields .acf-field-object.ui-sortable-placeholder {\n background-color: #2d3136;\n border-color: #23282d;\n box-shadow: none;\n}\n#acf-field-group-fields .acf-field-object + .acf-field-object-tab::before,\n#acf-field-group-fields .acf-field-object + .acf-field-object-accordion::before {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin: Tools\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-meta-box-wrap .acf-fields {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n background: transparent;\n}"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-dark.css","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_dark.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-dark.scss"],"sourcesContent":["/*--------------------------------------------------------------------------------------------\n*\n* Dark mode\n*\n* WordPress plugin: https://en-au.wordpress.org/plugins/dark-mode/\n* Github Documentation: https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide\n*\n*--------------------------------------------------------------------------------------------*/\n\n// Dark Mode Colours.\n$white: #ffffff;\n$black: #000000;\n$blue: #0073aa;\n$medium-blue: #00a0d2;\n$clear: transparent;\n\n$accent-red: #dc3232;\n$accent-orange: #f56e28;\n$accent-yellow: #ffb900;\n$accent-green: #46b450;\n$accent-blue: $blue;\n$accent-purple: #826eb4;\n\n$base-grey: #23282d;\n$light-grey: #bbc8d4;\n$heavy-grey: #37444c;\n$dark-grey: #32373c;\n$ultra-grey: #191f25;\n$dark-silver: #50626f;\n$base-blue: #2e74aa;\n$light-blue: #4092d2;\n$dark-blue: #2c5f88;\n$ultra-blue: #1f3f58;\n$bright-blue: #30ceff;\n\n$editor-lavender: #c678dd;\n$editor-sunglo: #e06c75;\n$editor-olivine: #98c379;\n\n// Custom variables.\n$body_text: \t\t\t#bbc8d4;\n$body_background: \t\t#23282d;\n$body_background2: \t\t#191f25;\n$postbox_background: \t#32373c;\n$postbox_border: \t\t#191f25;\n$postbox_divider: \t\t#23282d;\n$input_background: \t\t#50626f;\n$input_text: \t\t\t#fff;\n$input_border: \t\t\t#191f25;\n\n// Mixins.\n@mixin dark-text() {\n\tcolor: $body_text;\n}\n@mixin dark-heading() {\n\tcolor: $body_text;\n}\n@mixin dark-border() {\n\tborder-color: $postbox_border;\n}\n@mixin dark-background() {\n\tbackground: $body_background;\n}\n@mixin darker-background() {\n\tbackground: darken($body_background, 5%);\n}\n@mixin dark-postbox() {\n\tbackground-color: $postbox_background;\n\tborder-color: $postbox_border;\n\tcolor: $body_text;\n}\n@mixin dark-postbox-block() {\n\tbackground-color: #2d3136;\n\tborder-color: $postbox_divider;\n}\n@mixin dark-divider() {\n\tborder-color: $postbox_divider;\n}\n@mixin dark-input() {\n\tbackground-color: $input_background;\n\tborder-color: $input_border;\n\tcolor: $input_text;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n\n// acf-box\n.acf-box {\n\t@include dark-postbox();\n\n\t.title,\n\t.footer {\n\t\t@include dark-divider();\n\t}\n\n\th2 {\n\t\t@include dark-heading();\n\t}\n\n\ttable, tbody, tr {\n\t\tbackground: transparent !important;\n\t}\n}\n\n// thead\n.acf-thead {\n\t@include dark-heading();\n\t@include dark-border();\n}\n.acf-tfoot {\n\t@include dark-postbox-block();\n}\n\n// table clear\n.acf-table.-clear,\n.acf-table.-clear tr {\n\tbackground: transparent !important;\n}\n\n// loading overlay\n.acf-loading-overlay {\n\tbackground: rgba(0,0,0,0.5);\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fields\n*\n*---------------------------------------------------------------------------------------------*/\n\n// fields\n.acf-fields {\n\n\t// field\n\t> .acf-field {\n\t\t@include dark-divider();\n\t}\n}\n\n// fields (left)\n.acf-fields.-left {\n\n\t> .acf-field {\n\t\t&:before {\n\t\t\tbackground: rgba(0,0,0,0.1);\n\t\t\t@include dark-divider();\n\t\t}\n\t}\n}\n\n// fields (border)\n.acf-fields.-border {\n\t@include dark-postbox();\n}\n\n// width\n.acf-field[data-width] + .acf-field[data-width] {\n\t@include dark-divider();\n}\n\n// text\n.acf-input-prepend,\n.acf-input-append {\n\t@include dark-postbox();\n}\n\n// tab\n.acf-tab-wrap {\n\n}\n\n.acf-fields > .acf-tab-wrap {\n\t@include dark-postbox();\n\n\t.acf-tab-group {\n\t\t@include dark-postbox-block();\n\n\t\tli {\n\t\t\ta {\n\t\t\t\t@include dark-postbox-block();\n\n\t\t\t\t&:hover {\n\t\t\t\t\t@include dark-postbox-block();\n\t\t\t\t\t@include dark-text();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.active a {\n\t\t\t\t@include dark-postbox();\n\t\t\t}\n\t\t}\n\t}\n}\n\n.acf-fields.-sidebar {\n\t&:before {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n.acf-fields.-sidebar.-left {\n\t&:before {\n\t\t@include dark-postbox-block();\n\t\tbackground: $body_background;\n\t}\n\t> .acf-tab-wrap.-left {\n\t\t.acf-tab-group li a {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\n\t\t.acf-tab-group li.active a {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n}\n\n// file\n.acf-file-uploader {\n\n\t.show-if-value {\n\t\t@include dark-postbox();\n\n\t\t.file-icon {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n}\n\n// acf-oembed\n.acf-oembed {\n\t@include dark-postbox-block();\n\n\t.title {\n\t\t@include dark-input();\n\t}\n}\n\n// gallery\n.acf-gallery {\n\t@include dark-postbox-block();\n\n\t.acf-gallery-main {\n\t\t@include dark-background();\n\t}\n\n\t.acf-gallery-attachment {\n\t\t.margin {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n\n\t.acf-gallery-side {\n\t\t@include dark-postbox-block();\n\n\t\t.acf-gallery-side-info {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n\n\t.acf-gallery-toolbar {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n// button group\n.acf-button-group {\n\n\tlabel:not(.selected) {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n// switch\n.acf-switch:not(.-on) {\n\t@include dark-postbox-block();\n\t.acf-switch-slider {\n\t\t@include dark-input();\n\t}\n}\n\n// link\n.acf-link .link-wrap {\n\t@include dark-postbox-block();\n}\n\n// relationship\n.acf-relationship {\n\t.filters {\n\t\t@include dark-postbox();\n\t}\n\t.selection {\n\t\t@include dark-postbox-block();\n\t\t.choices,\n\t\t.choices-list,\n\t\t.values {\n\t\t\t@include dark-postbox-block();\n\t\t}\n\t}\n}\n\n// checkbox\n.acf-taxonomy-field .categorychecklist-holder {\n\t@include dark-postbox-block();\n}\n\n// google map\n.acf-google-map {\n\t@include dark-postbox-block();\n\n\t.title {\n\t\t@include dark-input();\n\t}\n}\n\n// accordion\n.acf-accordion {\n\t@include dark-postbox();\n}\n.acf-field.acf-accordion .acf-accordion-content > .acf-fields {\n\t@include dark-border();\n}\n\n// flexible content\n.acf-flexible-content {\n\t.layout {\n\t\t@include dark-postbox();\n\n\t\t.acf-fc-layout-handle {\n\t\t\t@include dark-postbox-block();\n\n\t\t\t.acf-fc-layout-order {\n\t\t\t\t@include dark-postbox();\n\t\t\t}\n\t\t}\n\t}\n}\n\n// repeater\n#wpbody .acf-table {\n\t@include dark-postbox-block();\n\n\t> tbody,\n\t> thead {\n\t\t> tr {\n\t\t\tbackground: transparent;\n\n\t\t\t> td,\n\t\t\t> th {\n\t\t\t\t@include dark-border();\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Select\n.acf-field select {\n\toptgroup, optgroup:nth-child(2n) {\n\t\tbackground: $input_background;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Group\n*\n*---------------------------------------------------------------------------------------------*/\n\n// fields\n#acf-field-group-fields {\n\n\t// field list\n\t.acf-field-list-wrap {\n\t\t@include dark-postbox();\n\t}\n\n\t.acf-field-list {\n\t\t.no-fields-message {\n\t\t\t@include dark-postbox();\n\t\t}\n\t}\n\n\t// field\n\t.acf-field-object {\n\t\t@include dark-postbox();\n\t\t@include dark-divider();\n\n\n\t\ttable, tbody, tr, td, th {\n\t\t\tbackground: transparent;\n\t\t\t@include dark-divider();\n\t\t}\n\n\t\t.acf-field {\n\t\t\t.acf-label {\n\t\t\t\t@include dark-postbox-block();\n\t\t\t}\n\t\t}\n\n\t\t// sortable\n\t\t&.ui-sortable-helper {\n\t\t\t@include dark-border();\n\t\t\tbox-shadow: none;\n\t\t}\n\n\t\t&.ui-sortable-placeholder {\n\t\t\t@include dark-postbox-block();\n\t\t\tbox-shadow: none;\n\t\t}\n\t}\n\n\t.acf-field-object + .acf-field-object-tab::before,\n\t.acf-field-object + .acf-field-object-accordion::before {\n\t\t@include dark-postbox-block();\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin: Tools\n*\n*---------------------------------------------------------------------------------------------*/\n\n// tools\n.acf-meta-box-wrap {\n\n\t.acf-fields {\n\t\t@include dark-input();\n\t\tbackground: transparent;\n\t}\n}","/*--------------------------------------------------------------------------------------------\n*\n* Dark mode\n*\n* WordPress plugin: https://en-au.wordpress.org/plugins/dark-mode/\n* Github Documentation: https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide\n*\n*--------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-box {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-box .title,\n.acf-box .footer {\n border-color: #23282d;\n}\n.acf-box h2 {\n color: #bbc8d4;\n}\n.acf-box table, .acf-box tbody, .acf-box tr {\n background: transparent !important;\n}\n\n.acf-thead {\n color: #bbc8d4;\n border-color: #191f25;\n}\n\n.acf-tfoot {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-table.-clear,\n.acf-table.-clear tr {\n background: transparent !important;\n}\n\n.acf-loading-overlay {\n background: rgba(0, 0, 0, 0.5);\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fields\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-fields > .acf-field {\n border-color: #23282d;\n}\n\n.acf-fields.-left > .acf-field:before {\n background: rgba(0, 0, 0, 0.1);\n border-color: #23282d;\n}\n\n.acf-fields.-border {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-field[data-width] + .acf-field[data-width] {\n border-color: #23282d;\n}\n\n.acf-input-prepend,\n.acf-input-append {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-fields > .acf-tab-wrap {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li a {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {\n background-color: #2d3136;\n border-color: #23282d;\n color: #bbc8d4;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-fields.-sidebar:before {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-fields.-sidebar.-left:before {\n background-color: #2d3136;\n border-color: #23282d;\n background: #23282d;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li a {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-file-uploader .show-if-value {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-file-uploader .show-if-value .file-icon {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-oembed {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-oembed .title {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n}\n\n.acf-gallery {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-main {\n background: #23282d;\n}\n.acf-gallery .acf-gallery-attachment .margin {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-side {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-side .acf-gallery-side-info {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-gallery .acf-gallery-toolbar {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-button-group label:not(.selected) {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-switch:not(.-on) {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-switch:not(.-on) .acf-switch-slider {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n}\n\n.acf-link .link-wrap {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-relationship .filters {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-relationship .selection {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-relationship .selection .choices,\n.acf-relationship .selection .choices-list,\n.acf-relationship .selection .values {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-taxonomy-field .categorychecklist-holder {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n.acf-google-map {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-google-map .title {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n}\n\n.acf-accordion {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n.acf-field.acf-accordion .acf-accordion-content > .acf-fields {\n border-color: #191f25;\n}\n\n.acf-flexible-content .layout {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n.acf-flexible-content .layout .acf-fc-layout-handle {\n background-color: #2d3136;\n border-color: #23282d;\n}\n.acf-flexible-content .layout .acf-fc-layout-handle .acf-fc-layout-order {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n\n#wpbody .acf-table {\n background-color: #2d3136;\n border-color: #23282d;\n}\n#wpbody .acf-table > tbody > tr,\n#wpbody .acf-table > thead > tr {\n background: transparent;\n}\n#wpbody .acf-table > tbody > tr > td,\n#wpbody .acf-table > tbody > tr > th,\n#wpbody .acf-table > thead > tr > td,\n#wpbody .acf-table > thead > tr > th {\n border-color: #191f25;\n}\n\n.acf-field select optgroup, .acf-field select optgroup:nth-child(2n) {\n background: #50626f;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Group\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-field-group-fields .acf-field-list-wrap {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n#acf-field-group-fields .acf-field-list .no-fields-message {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n}\n#acf-field-group-fields .acf-field-object {\n background-color: #32373c;\n border-color: #191f25;\n color: #bbc8d4;\n border-color: #23282d;\n}\n#acf-field-group-fields .acf-field-object table, #acf-field-group-fields .acf-field-object tbody, #acf-field-group-fields .acf-field-object tr, #acf-field-group-fields .acf-field-object td, #acf-field-group-fields .acf-field-object th {\n background: transparent;\n border-color: #23282d;\n}\n#acf-field-group-fields .acf-field-object .acf-field .acf-label {\n background-color: #2d3136;\n border-color: #23282d;\n}\n#acf-field-group-fields .acf-field-object.ui-sortable-helper {\n border-color: #191f25;\n box-shadow: none;\n}\n#acf-field-group-fields .acf-field-object.ui-sortable-placeholder {\n background-color: #2d3136;\n border-color: #23282d;\n box-shadow: none;\n}\n#acf-field-group-fields .acf-field-object + .acf-field-object-tab::before,\n#acf-field-group-fields .acf-field-object + .acf-field-object-accordion::before {\n background-color: #2d3136;\n border-color: #23282d;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin: Tools\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-meta-box-wrap .acf-fields {\n background-color: #50626f;\n border-color: #191f25;\n color: #fff;\n background: transparent;\n}"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/css/acf-dark.min.css b/assets/build/css/acf-dark.min.css index 158e690..617a79e 100644 --- a/assets/build/css/acf-dark.min.css +++ b/assets/build/css/acf-dark.min.css @@ -1 +1 @@ -.acf-box{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-box .title,.acf-box .footer{border-color:#23282d}.acf-box h2{color:#bbc8d4}.acf-box table,.acf-box tbody,.acf-box tr{background:transparent !important}.acf-thead{color:#bbc8d4;border-color:#191f25}.acf-tfoot{background-color:#2d3136;border-color:#23282d}.acf-table.-clear,.acf-table.-clear tr{background:transparent !important}.acf-loading-overlay{background:rgba(0,0,0,.5)}.acf-fields>.acf-field{border-color:#23282d}.acf-fields.-left>.acf-field:before{background:rgba(0,0,0,.1);border-color:#23282d}.acf-fields.-border{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-field[data-width]+.acf-field[data-width]{border-color:#23282d}.acf-input-prepend,.acf-input-append{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-fields>.acf-tab-wrap{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-fields>.acf-tab-wrap .acf-tab-group{background-color:#2d3136;border-color:#23282d}.acf-fields>.acf-tab-wrap .acf-tab-group li a{background-color:#2d3136;border-color:#23282d}.acf-fields>.acf-tab-wrap .acf-tab-group li a:hover{background-color:#2d3136;border-color:#23282d;color:#bbc8d4}.acf-fields>.acf-tab-wrap .acf-tab-group li.active a{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-fields.-sidebar:before{background-color:#2d3136;border-color:#23282d}.acf-fields.-sidebar.-left:before{background-color:#2d3136;border-color:#23282d;background:#23282d}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li a{background-color:#2d3136;border-color:#23282d}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li.active a{background-color:#2d3136;border-color:#23282d}.acf-file-uploader .show-if-value{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-file-uploader .show-if-value .file-icon{background-color:#2d3136;border-color:#23282d}.acf-oembed{background-color:#2d3136;border-color:#23282d}.acf-oembed .title{background-color:#50626f;border-color:#191f25;color:#fff}.acf-gallery{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-main{background:#23282d}.acf-gallery .acf-gallery-attachment .margin{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-side{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-side .acf-gallery-side-info{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-toolbar{background-color:#2d3136;border-color:#23282d}.acf-button-group label:not(.selected){background-color:#2d3136;border-color:#23282d}.acf-switch:not(.-on){background-color:#2d3136;border-color:#23282d}.acf-switch:not(.-on) .acf-switch-slider{background-color:#50626f;border-color:#191f25;color:#fff}.acf-link .link-wrap{background-color:#2d3136;border-color:#23282d}.acf-relationship .filters{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-relationship .selection{background-color:#2d3136;border-color:#23282d}.acf-relationship .selection .choices,.acf-relationship .selection .choices-list,.acf-relationship .selection .values{background-color:#2d3136;border-color:#23282d}.acf-taxonomy-field .categorychecklist-holder{background-color:#2d3136;border-color:#23282d}.acf-google-map{background-color:#2d3136;border-color:#23282d}.acf-google-map .title{background-color:#50626f;border-color:#191f25;color:#fff}.acf-accordion{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-field.acf-accordion .acf-accordion-content>.acf-fields{border-color:#191f25}.acf-flexible-content .layout{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-flexible-content .layout .acf-fc-layout-handle{background-color:#2d3136;border-color:#23282d}.acf-flexible-content .layout .acf-fc-layout-handle .acf-fc-layout-order{background-color:#32373c;border-color:#191f25;color:#bbc8d4}#wpbody .acf-table{background-color:#2d3136;border-color:#23282d}#wpbody .acf-table>tbody>tr,#wpbody .acf-table>thead>tr{background:transparent}#wpbody .acf-table>tbody>tr>td,#wpbody .acf-table>tbody>tr>th,#wpbody .acf-table>thead>tr>td,#wpbody .acf-table>thead>tr>th{border-color:#191f25}.acf-field select optgroup,.acf-field select optgroup:nth-child(2n){background:#50626f}#acf-field-group-fields .acf-field-list-wrap{background-color:#32373c;border-color:#191f25;color:#bbc8d4}#acf-field-group-fields .acf-field-list .no-fields-message{background-color:#32373c;border-color:#191f25;color:#bbc8d4}#acf-field-group-fields .acf-field-object{background-color:#32373c;border-color:#191f25;color:#bbc8d4;border-color:#23282d}#acf-field-group-fields .acf-field-object table,#acf-field-group-fields .acf-field-object tbody,#acf-field-group-fields .acf-field-object tr,#acf-field-group-fields .acf-field-object td,#acf-field-group-fields .acf-field-object th{background:transparent;border-color:#23282d}#acf-field-group-fields .acf-field-object .acf-field .acf-label{background-color:#2d3136;border-color:#23282d}#acf-field-group-fields .acf-field-object.ui-sortable-helper{border-color:#191f25;box-shadow:none}#acf-field-group-fields .acf-field-object.ui-sortable-placeholder{background-color:#2d3136;border-color:#23282d;box-shadow:none}#acf-field-group-fields .acf-field-object+.acf-field-object-tab::before,#acf-field-group-fields .acf-field-object+.acf-field-object-accordion::before{background-color:#2d3136;border-color:#23282d}.acf-meta-box-wrap .acf-fields{background-color:#50626f;border-color:#191f25;color:#fff;background:transparent} +.acf-box{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-box .title,.acf-box .footer{border-color:#23282d}.acf-box h2{color:#bbc8d4}.acf-box table,.acf-box tbody,.acf-box tr{background:rgba(0,0,0,0) !important}.acf-thead{color:#bbc8d4;border-color:#191f25}.acf-tfoot{background-color:#2d3136;border-color:#23282d}.acf-table.-clear,.acf-table.-clear tr{background:rgba(0,0,0,0) !important}.acf-loading-overlay{background:rgba(0,0,0,.5)}.acf-fields>.acf-field{border-color:#23282d}.acf-fields.-left>.acf-field:before{background:rgba(0,0,0,.1);border-color:#23282d}.acf-fields.-border{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-field[data-width]+.acf-field[data-width]{border-color:#23282d}.acf-input-prepend,.acf-input-append{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-fields>.acf-tab-wrap{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-fields>.acf-tab-wrap .acf-tab-group{background-color:#2d3136;border-color:#23282d}.acf-fields>.acf-tab-wrap .acf-tab-group li a{background-color:#2d3136;border-color:#23282d}.acf-fields>.acf-tab-wrap .acf-tab-group li a:hover{background-color:#2d3136;border-color:#23282d;color:#bbc8d4}.acf-fields>.acf-tab-wrap .acf-tab-group li.active a{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-fields.-sidebar:before{background-color:#2d3136;border-color:#23282d}.acf-fields.-sidebar.-left:before{background-color:#2d3136;border-color:#23282d;background:#23282d}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li a{background-color:#2d3136;border-color:#23282d}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li.active a{background-color:#2d3136;border-color:#23282d}.acf-file-uploader .show-if-value{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-file-uploader .show-if-value .file-icon{background-color:#2d3136;border-color:#23282d}.acf-oembed{background-color:#2d3136;border-color:#23282d}.acf-oembed .title{background-color:#50626f;border-color:#191f25;color:#fff}.acf-gallery{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-main{background:#23282d}.acf-gallery .acf-gallery-attachment .margin{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-side{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-side .acf-gallery-side-info{background-color:#2d3136;border-color:#23282d}.acf-gallery .acf-gallery-toolbar{background-color:#2d3136;border-color:#23282d}.acf-button-group label:not(.selected){background-color:#2d3136;border-color:#23282d}.acf-switch:not(.-on){background-color:#2d3136;border-color:#23282d}.acf-switch:not(.-on) .acf-switch-slider{background-color:#50626f;border-color:#191f25;color:#fff}.acf-link .link-wrap{background-color:#2d3136;border-color:#23282d}.acf-relationship .filters{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-relationship .selection{background-color:#2d3136;border-color:#23282d}.acf-relationship .selection .choices,.acf-relationship .selection .choices-list,.acf-relationship .selection .values{background-color:#2d3136;border-color:#23282d}.acf-taxonomy-field .categorychecklist-holder{background-color:#2d3136;border-color:#23282d}.acf-google-map{background-color:#2d3136;border-color:#23282d}.acf-google-map .title{background-color:#50626f;border-color:#191f25;color:#fff}.acf-accordion{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-field.acf-accordion .acf-accordion-content>.acf-fields{border-color:#191f25}.acf-flexible-content .layout{background-color:#32373c;border-color:#191f25;color:#bbc8d4}.acf-flexible-content .layout .acf-fc-layout-handle{background-color:#2d3136;border-color:#23282d}.acf-flexible-content .layout .acf-fc-layout-handle .acf-fc-layout-order{background-color:#32373c;border-color:#191f25;color:#bbc8d4}#wpbody .acf-table{background-color:#2d3136;border-color:#23282d}#wpbody .acf-table>tbody>tr,#wpbody .acf-table>thead>tr{background:rgba(0,0,0,0)}#wpbody .acf-table>tbody>tr>td,#wpbody .acf-table>tbody>tr>th,#wpbody .acf-table>thead>tr>td,#wpbody .acf-table>thead>tr>th{border-color:#191f25}.acf-field select optgroup,.acf-field select optgroup:nth-child(2n){background:#50626f}#acf-field-group-fields .acf-field-list-wrap{background-color:#32373c;border-color:#191f25;color:#bbc8d4}#acf-field-group-fields .acf-field-list .no-fields-message{background-color:#32373c;border-color:#191f25;color:#bbc8d4}#acf-field-group-fields .acf-field-object{background-color:#32373c;border-color:#191f25;color:#bbc8d4;border-color:#23282d}#acf-field-group-fields .acf-field-object table,#acf-field-group-fields .acf-field-object tbody,#acf-field-group-fields .acf-field-object tr,#acf-field-group-fields .acf-field-object td,#acf-field-group-fields .acf-field-object th{background:rgba(0,0,0,0);border-color:#23282d}#acf-field-group-fields .acf-field-object .acf-field .acf-label{background-color:#2d3136;border-color:#23282d}#acf-field-group-fields .acf-field-object.ui-sortable-helper{border-color:#191f25;box-shadow:none}#acf-field-group-fields .acf-field-object.ui-sortable-placeholder{background-color:#2d3136;border-color:#23282d;box-shadow:none}#acf-field-group-fields .acf-field-object+.acf-field-object-tab::before,#acf-field-group-fields .acf-field-object+.acf-field-object-accordion::before{background-color:#2d3136;border-color:#23282d}.acf-meta-box-wrap .acf-fields{background-color:#50626f;border-color:#191f25;color:#fff;background:rgba(0,0,0,0)} diff --git a/assets/build/css/acf-field-group.css b/assets/build/css/acf-field-group.css index baf8516..b3f7b4f 100644 --- a/assets/build/css/acf-field-group.css +++ b/assets/build/css/acf-field-group.css @@ -1,6 +1,7 @@ /*!**********************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/advanced-custom-fields-pro/assets/src/sass/acf-field-group.scss ***! \**********************************************************************************************************************************************************************************************************************/ +@charset "UTF-8"; /*-------------------------------------------------------------------------------------------- * * Vars @@ -11,6 +12,11 @@ /* responsive */ /*-------------------------------------------------------------------------------------------- * +* ACF 6 ↓ +* +*--------------------------------------------------------------------------------------------*/ +/*-------------------------------------------------------------------------------------------- +* * Mixins * *--------------------------------------------------------------------------------------------*/ @@ -61,32 +67,42 @@ *---------------------------------------------------------------------------------------------*/ #acf-field-group-fields { border: 0 none; - box-shadow: none; /* links */ + /* Field type */ /* table header */ /* show keys */ /* fields */ } -#acf-field-group-fields > .postbox-header, -#acf-field-group-fields > .handlediv, -#acf-field-group-fields > .hndle { - display: 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 a:active, #acf-field-group-fields a:focus { - outline: none; - box-shadow: 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-order { - width: 20%; + 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: 30%; + width: calc(50% - 64px); } #acf-field-group-fields .li-field-name { width: 25%; + word-break: break-word; } #acf-field-group-fields .li-field-type { width: 25%; @@ -94,14 +110,18 @@ #acf-field-group-fields .li-field-key { display: none; } -#acf-field-group-fields.show-field-keys .li-field-label, -#acf-field-group-fields.show-field-keys .li-field-name, -#acf-field-group-fields.show-field-keys .li-field-type, -#acf-field-group-fields.show-field-keys .li-field-key { - width: 20%; +#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 { - display: block; + width: 25%; + display: flex; +} +#acf-field-group-fields.show-field-keys .li-field-type { + width: 25%; } #acf-field-group-fields .acf-field-list-wrap { border: #ccd0d4 solid 1px; @@ -151,8 +171,15 @@ /* conditional logic */ } .acf-field-object.ui-sortable-helper { - border-top-color: #fff; - box-shadow: 0 0 0 1px #DFDFDF, 0 1px 4px rgba(0, 0, 0, 0.1); + 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; @@ -174,42 +201,41 @@ transition: none; } .acf-field-object > .handle li { - padding-top: 10px; - padding-bottom: 10px; word-wrap: break-word; } -.acf-field-object > .handle .acf-icon { - margin: 1px 0 0; - cursor: move; - background: transparent; - float: left; - height: 28px; - line-height: 26px; - width: 28px; - font-size: 13px; - color: #444; - position: relative; - z-index: 1; -} .acf-field-object > .handle strong { display: block; - padding-bottom: 6px; + padding-bottom: 0; font-size: 14px; line-height: 14px; min-height: 14px; } .acf-field-object > .handle .row-options { - visibility: hidden; + 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: #f00; } +.acf-field-object > .handle .row-options.active { + visibility: visible; +} .acf-field-object.open + .acf-field-object { border-top-color: #E1E1E1; } @@ -219,7 +245,7 @@ text-shadow: #268FBB 0 1px 0; color: #fff; position: relative; - margin: -1px -1px 0 -1px; + margin: 0 -1px 0 -1px; } .acf-field-object.open > .handle a { color: #fff !important; @@ -227,15 +253,9 @@ .acf-field-object.open > .handle a:hover { text-decoration: underline !important; } -.acf-field-object.open > .handle .acf-icon { - border-color: #fff; - color: #fff; -} -.acf-field-object.open > .handle .acf-required { - color: #fff; -} -.acf-field-object:hover > .handle .row-options, .acf-field-object.-hover > .handle .row-options { - visibility: visible; +.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; @@ -276,8 +296,15 @@ 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; } @@ -292,7 +319,7 @@ /*--------------------------------------------------------------------------------------------- * * Options -* +* *---------------------------------------------------------------------------------------------*/ #acf-field-group-options tr[data-name=hide_on_screen] li { float: left; @@ -307,7 +334,7 @@ /*--------------------------------------------------------------------------------------------- * * Conditional Logic -* +* *---------------------------------------------------------------------------------------------*/ table.conditional-logic-rules { background: transparent; @@ -324,52 +351,62 @@ table.conditional-logic-rules tbody td { /*--------------------------------------------------------------------------------------------- * * Field: Tab -* +* *---------------------------------------------------------------------------------------------*/ -.acf-field-object-tab .acf-field-setting-name, .acf-field-object-accordion .acf-field-setting-name, +.acf-field-object-tab .acf-field-setting-name, .acf-field-object-tab .acf-field-setting-instructions, -.acf-field-object-accordion .acf-field-setting-instructions, .acf-field-object-tab .acf-field-setting-required, -.acf-field-object-accordion .acf-field-setting-required, .acf-field-object-tab .acf-field-setting-warning, -.acf-field-object-accordion .acf-field-setting-warning, -.acf-field-object-tab .acf-field-setting-wrapper, -.acf-field-object-accordion .acf-field-setting-wrapper { +.acf-field-object-tab .acf-field-setting-wrapper { display: none; } -.acf-field-object-tab .li-field-name, .acf-field-object-accordion .li-field-name { +.acf-field-object-tab .li-field-name { visibility: hidden; } -.acf-field-object + .acf-field-object-tab:before, .acf-field-object + .acf-field-object-accordion:before { - display: block; - content: ""; - height: 5px; - width: 100%; - background: #f5f5f5; - border-top: #e1e1e1 solid 1px; - border-bottom: #e1e1e1 solid 1px; - margin-top: -1px; -} -.acf-admin-3-8 .acf-field-object + .acf-field-object-tab:before, .acf-admin-3-8 .acf-field-object + .acf-field-object-accordion:before { - border-color: #E5E5E5; -} -.acf-field-object-tab p:first-child, .acf-field-object-accordion p:first-child { +.acf-field-object-tab p:first-child { margin: 0.5em 0; } +.acf-field-object-tab li.acf-settings-type-presentation, +.acf-field-object-tab .acf-field-settings-main-presentation { + display: none !important; +} + +/*--------------------------------------------------------------------------------------------- +* +* Field: Clone +* +*---------------------------------------------------------------------------------------------*/ +.acf-field-object-clone li.acf-settings-type-presentation, +.acf-field-object-clone .acf-field-settings-main-presentation { + display: none !important; +} /*--------------------------------------------------------------------------------------------- * * Field: Accordion -* +* *---------------------------------------------------------------------------------------------*/ +.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: 0.5em 0; +} .acf-field-object-accordion .acf-field-setting-instructions { - display: table-row; + display: block; } /*--------------------------------------------------------------------------------------------- * * Field: Message -* +* *---------------------------------------------------------------------------------------------*/ .acf-field-object-message tr[data-name=name], .acf-field-object-message tr[data-name=instructions], @@ -388,7 +425,7 @@ table.conditional-logic-rules tbody td { /*--------------------------------------------------------------------------------------------- * * Field: Separator -* +* *---------------------------------------------------------------------------------------------*/ .acf-field-object-separator tr[data-name=name], .acf-field-object-separator tr[data-name=instructions], @@ -399,7 +436,7 @@ table.conditional-logic-rules tbody td { /*--------------------------------------------------------------------------------------------- * * Field: Date Picker -* +* *---------------------------------------------------------------------------------------------*/ .acf-field-object-date-picker .acf-radio-list li, .acf-field-object-time-picker .acf-radio-list li, @@ -471,16 +508,1738 @@ td.acf-input { width: auto !important; border: 0 none !important; } - tr.acf-field { border-top: #ededed solid 1px !important; margin-bottom: 0 !important; } - td.acf-label { background: transparent !important; padding-bottom: 0 !important; } } +/*--------------------------------------------------------------------------------------------- +* +* Subtle background on accordion & tab fields to separate them from others +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Global +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group #wpcontent { + line-height: 140%; +} + +/*--------------------------------------------------------------------------------------------- +* +* Links +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group a { + color: #0783BE; +} + +/*--------------------------------------------------------------------------------------------- +* +* Headings +* +*---------------------------------------------------------------------------------------------*/ +.h1, .post-type-acf-field-group h1, +.acf-headerbar h1 { + font-size: 21px; + font-weight: 400; +} + +.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, .post-type-acf-field-group h2, +.acf-headerbar h2 { + font-size: 18px; + font-weight: 400; +} + +.h3, .post-type-acf-field-group .acf-field-settings-fc_head label, .post-type-acf-field-group #acf-popup .acf-popup-box .title h1, +.post-type-acf-field-group #acf-popup .acf-popup-box .title h2, +.post-type-acf-field-group #acf-popup .acf-popup-box .title h3, +.post-type-acf-field-group #acf-popup .acf-popup-box .title h4, .post-type-acf-field-group h3, +.acf-headerbar h3 { + font-size: 16px; + font-weight: 400; +} + +/*--------------------------------------------------------------------------------------------- +* +* Paragraphs +* +*---------------------------------------------------------------------------------------------*/ +.p1 { + font-size: 15px; +} + +.p2, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p { + font-size: 14px; +} + +.p3 { + font-size: 13.5px; +} + +.p4, .acf-field-list .acf-sortable-handle, .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, .post-type-acf-field-group .acf-thead li, .post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection__rendered, .post-type-acf-field-group .button, .post-type-acf-field-group input[type=text], +.post-type-acf-field-group input[type=search], +.post-type-acf-field-group input[type=number], +.post-type-acf-field-group textarea, +.post-type-acf-field-group select { + font-size: 13px; +} + +.p5, .acf-field-setting-display_format .acf-radio-list li label code, +.acf-field-setting-return_format .acf-radio-list li label code, .acf-field-group-settings-footer .acf-created-on, .acf-fields .acf-field-settings-tab-bar li a, +.acf-fields .acf-tab-wrap .acf-tab-group li a { + font-size: 12.5px; +} + +.p6, .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-object .handle li.li-field-label .row-options a, .acf-small { + font-size: 12px; +} + +.p7 { + font-size: 11.5px; +} + +.p8 { + font-size: 11px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Page titles +* +*---------------------------------------------------------------------------------------------*/ +.acf-page-title { + color: #344054; +} + +/*--------------------------------------------------------------------------------------------- +* +* Hide old / native WP titles from pages +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .acf-settings-wrap h1, +.post-type-acf-field-group #acf-admin-tools h1 { + display: none; +} + +/*--------------------------------------------------------------------------------------------- +* +* Small +* +*---------------------------------------------------------------------------------------------*/ +/*--------------------------------------------------------------------------------------------- +* +* Link focus style +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group a:focus { + box-shadow: none; + outline: none; +} + +.post-type-acf-field-group a:focus-visible { + box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8); + outline: 1px solid transparent; +} + +.post-type-acf-field-group { + /*--------------------------------------------------------------------------------------------- + * + * All Inputs + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Read only text inputs + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Number fields + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Textarea + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Select + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Radio Button & Checkbox base styling + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Radio Buttons + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Checkboxes + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Radio Buttons & Checkbox lists + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * ACF Switch + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * File input button + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Action Buttons + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Edit field group header + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Select2 inputs + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * ACF label + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Tooltip for field name field setting (result of a fix for keyboard navigation) + * + *---------------------------------------------------------------------------------------------*/ +} +.post-type-acf-field-group input[type=text], +.post-type-acf-field-group input[type=search], +.post-type-acf-field-group input[type=number], +.post-type-acf-field-group textarea, +.post-type-acf-field-group 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, 0.1); + border-radius: 6px; + color: #344054; +} +.post-type-acf-field-group input[type=text]:focus, +.post-type-acf-field-group input[type=search]:focus, +.post-type-acf-field-group input[type=number]:focus, +.post-type-acf-field-group textarea:focus, +.post-type-acf-field-group select:focus { + outline: 3px solid #EBF5FA; + border-color: #399CCB; +} +.post-type-acf-field-group input[type=text]:disabled, +.post-type-acf-field-group input[type=search]:disabled, +.post-type-acf-field-group input[type=number]:disabled, +.post-type-acf-field-group textarea:disabled, +.post-type-acf-field-group select:disabled { + background-color: #F9FAFB; + color: #808a9e; +} +.post-type-acf-field-group input[type=text]::placeholder, +.post-type-acf-field-group input[type=search]::placeholder, +.post-type-acf-field-group input[type=number]::placeholder, +.post-type-acf-field-group textarea::placeholder, +.post-type-acf-field-group select::placeholder { + color: #98A2B3; +} +.post-type-acf-field-group input[type=text]:read-only { + background-color: #F9FAFB; + color: #98A2B3; +} +.post-type-acf-field-group .acf-field.acf-field-number .acf-label, +.post-type-acf-field-group .acf-field.acf-field-number .acf-input input[type=number] { + max-width: 180px; +} +.post-type-acf-field-group textarea { + box-sizing: border-box; + padding-top: 10px; + padding-bottom: 10px; + height: 80px; + min-height: 56px; +} +.post-type-acf-field-group 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; +} +.post-type-acf-field-group select:hover, .post-type-acf-field-group select:focus { + color: #0783BE; +} +.post-type-acf-field-group select::before { + content: ""; + display: block; + position: absolute; + top: 5px; + left: 5px; + width: 20px; + height: 20px; + background-color: red; +} +.post-type-acf-field-group input[type=radio], +.post-type-acf-field-group 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; +} +.post-type-acf-field-group input[type=radio]:hover, +.post-type-acf-field-group input[type=checkbox]:hover { + background-color: #EBF5FA; + border-color: #0783BE; +} +.post-type-acf-field-group input[type=radio]:checked, .post-type-acf-field-group input[type=radio]:focus-visible, +.post-type-acf-field-group input[type=checkbox]:checked, +.post-type-acf-field-group input[type=checkbox]:focus-visible { + background-color: #EBF5FA; + border-color: #0783BE; +} +.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus-visible:before, +.post-type-acf-field-group input[type=checkbox]:checked:before, +.post-type-acf-field-group input[type=checkbox]:focus-visible:before { + content: ""; + position: relative; + top: -1px; + left: -1px; + width: 16px; + height: 16px; + margin: 0; + padding: 0; + background-color: transparent; + background-size: cover; + background-repeat: no-repeat; + background-position: center; +} +.post-type-acf-field-group input[type=radio]:active, +.post-type-acf-field-group input[type=checkbox]:active { + box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25); +} +.post-type-acf-field-group input[type=radio]:disabled, +.post-type-acf-field-group input[type=checkbox]:disabled { + background-color: #F9FAFB; + border-color: #D0D5DD; +} +.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus:before { + background-image: url("../../images/field-states/radio-active.svg"); +} +.post-type-acf-field-group input[type=checkbox]:checked:before, .post-type-acf-field-group input[type=checkbox]:focus:before { + background-image: url("../../images/field-states/checkbox-active.svg"); +} +.post-type-acf-field-group .acf-radio-list li input[type=radio], +.post-type-acf-field-group .acf-radio-list li input[type=checkbox], +.post-type-acf-field-group .acf-checkbox-list li input[type=radio], +.post-type-acf-field-group .acf-checkbox-list li input[type=checkbox] { + margin-right: 6px; +} +.post-type-acf-field-group .acf-radio-list.acf-bl li, +.post-type-acf-field-group .acf-checkbox-list.acf-bl li { + margin-bottom: 8px; +} +.post-type-acf-field-group .acf-radio-list.acf-bl li:last-of-type, +.post-type-acf-field-group .acf-checkbox-list.acf-bl li:last-of-type { + margin-bottom: 0; +} +.post-type-acf-field-group .acf-radio-list label, +.post-type-acf-field-group .acf-checkbox-list label { + display: flex; + align-items: center; + align-content: center; +} +.post-type-acf-field-group .acf-switch { + width: 42px; + height: 24px; + border: none; + background-color: #D0D5DD; + border-radius: 12px; +} +.post-type-acf-field-group .acf-switch:hover { + background-color: #98A2B3; +} +.post-type-acf-field-group .acf-switch:active { + box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25); +} +.post-type-acf-field-group .acf-switch.-on { + background-color: #0783BE; +} +.post-type-acf-field-group .acf-switch.-on:hover { + background-color: #066998; +} +.post-type-acf-field-group .acf-switch.-on .acf-switch-slider { + left: 20px; +} +.post-type-acf-field-group .acf-switch .acf-switch-off, +.post-type-acf-field-group .acf-switch .acf-switch-on { + visibility: hidden; +} +.post-type-acf-field-group .acf-switch .acf-switch-slider { + width: 20px; + height: 20px; + border: none; + border-radius: 100px; + box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06); +} +.post-type-acf-field-group .acf-field-true-false { + display: flex; + align-items: center; +} +.post-type-acf-field-group .acf-field-true-false .acf-label { + order: 2; + display: inline-flex; + align-items: center; + margin-bottom: 0; + margin-left: 12px; +} +.post-type-acf-field-group .acf-field-true-false .acf-label label { + margin-bottom: 0; +} +.post-type-acf-field-group .acf-field-true-false .acf-label .acf-tip { + margin-left: 12px; +} +.post-type-acf-field-group 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: transparent; + color: #0783BE !important; + border-radius: 6px; + border-width: 1px; + border-style: solid; + border-color: #0783BE; + text-decoration: none; +} +.post-type-acf-field-group input::file-selector-button:hover { + border-color: #066998; + cursor: pointer; + color: #066998 !important; +} +.post-type-acf-field-group .button { + display: inline-flex; + align-items: center; + height: 40px; + padding-right: 16px; + padding-left: 16px; + background-color: transparent; + border-width: 1px; + border-style: solid; + border-color: #0783BE; + border-radius: 6px; + color: #0783BE; +} +.post-type-acf-field-group .button:hover { + background-color: #f3f9fc; + border-color: #0783BE; + color: #0783BE; +} +.post-type-acf-field-group .button:focus { + background-color: #f3f9fc; + outline: 3px solid #EBF5FA; + color: #0783BE; +} +.post-type-acf-field-group .edit-field-group-header { + display: block !important; +} +.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection { + border: none; + line-height: 1; +} +.post-type-acf-field-group .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, 0.1); + border-radius: 6px; + color: #344054; +} +.post-type-acf-field-group .acf-input .select2-container--focus { + outline: 3px solid #EBF5FA; + border-color: #399CCB; + border-radius: 6px; +} +.post-type-acf-field-group .acf-input .select2-container--focus .select2-selection__rendered { + border-color: #399CCB !important; +} +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field { + margin: 0; + padding-left: 6px; +} +.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field:focus { + outline: none; + border: none; +} +.post-type-acf-field-group .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered { + padding-top: 0; + padding-right: 6px; + padding-bottom: 0; + padding-left: 6px; +} +.post-type-acf-field-group .acf-input .select2-selection__clear { + width: 18px; + height: 18px; + margin-top: 12px; + margin-right: 0; + text-indent: 100%; + white-space: nowrap; + overflow: hidden; +} +.post-type-acf-field-group .acf-input .select2-selection__clear:before { + content: ""; + display: block; + width: 14px; + height: 14px; + 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; +} +.post-type-acf-field-group .acf-input .select2-selection__clear:hover::before { + background-color: #1D2939; +} +.post-type-acf-field-group .acf-label { + display: flex; + align-items: center; + justify-content: space-between; +} +.post-type-acf-field-group .acf-label .acf-icon-help { + width: 18px; + height: 18px; + background-color: #98A2B3; +} +.post-type-acf-field-group .acf-label label { + margin-bottom: 0; +} +.post-type-acf-field-group .acf-field-setting-name .acf-tip { + position: absolute; + top: 0; + left: 654px; + color: #98A2B3; +} +.post-type-acf-field-group .acf-field-setting-name .acf-tip .acf-icon-help { + width: 18px; + height: 18px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Container sizes +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Max width for notices in 1 column edit field group layout +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group.columns-1 .notice { + max-width: 1440px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Widen edit field group headerbar for 2 column layout +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group.columns-2 .acf-headerbar .acf-headerbar-inner { + max-width: 100%; +} + +/*--------------------------------------------------------------------------------------------- +* +* Post stuff +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Table +* +*---------------------------------------------------------------------------------------------*/ +.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, 0.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Table header +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Table body +* +*---------------------------------------------------------------------------------------------*/ +.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 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%; +} +/*--------------------------------------------------------------------------------------------- +* +* Table footer +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Edit field settings +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Main field settings container +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Field label +* +*---------------------------------------------------------------------------------------------*/ +.acf-field-settings .acf-label { + display: flex; + justify-content: space-between; + align-items: center; + align-content: center; + margin-top: 0; + margin-right: 0; + margin-bottom: 6px; + margin-left: 0; +} + +/*--------------------------------------------------------------------------------------------- +* +* Single field +* +*---------------------------------------------------------------------------------------------*/ +.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-input-wrap { + overflow: visible; +} + +/*--------------------------------------------------------------------------------------------- +* +* Field separators +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Edit fields footer +* +*---------------------------------------------------------------------------------------------*/ +.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; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Tabs +* +*---------------------------------------------------------------------------------------------*/ +.acf-fields .acf-tab-wrap { + background: #F9FAFB; + border-bottom-color: #1D2939; +} +.acf-fields .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 { + 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 { + display: flex; + align-items: center; + 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 { + 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: transparent; + border-left: none; + color: #667085; + font-weight: normal; +} +.acf-fields .acf-field-settings-tab-bar li a:hover, +.acf-fields .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 { + background-color: transparent; +} +.acf-fields .acf-field-settings-tab-bar li.active a, +.acf-fields .acf-tab-wrap .acf-tab-group li.active a { + background: none; + border-bottom-color: #0783BE; + color: #1D2939; +} + +#acf-field-group-options .acf-fields .acf-tab-wrap .acf-tab-group li.active a { + padding-top: 2px; +} + +.acf-field-editor .acf-field-settings-tab-bar { + padding-left: 72px; +} +@media screen and (max-width: 600px) { + .acf-field-editor .acf-field-settings-tab-bar { + padding-left: 12px; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Field group settings +* +*---------------------------------------------------------------------------------------------*/ +#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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Reorder handles +* +*---------------------------------------------------------------------------------------------*/ +.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: transparent; +} +.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: transparent; + 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"); +} + +/*--------------------------------------------------------------------------------------------- +* +* Expand / collapse field icon +* +*---------------------------------------------------------------------------------------------*/ +.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-right.svg"); + mask-image: url("../../images/icons/icon-chevron-right.svg"); +} +.acf-field-object .li-field-label:hover:before { + cursor: pointer; +} +.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-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"); +} +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Conditional logic layout +* +*---------------------------------------------------------------------------------------------*/ +.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%; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Prefix & append styling +* +*---------------------------------------------------------------------------------------------*/ +.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, 0.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 +* +*---------------------------------------------------------------------------------------------*/ +.acf-input-wrap { + display: flex; +} + +.acf-field-settings-main-presentation .acf-input-wrap { + display: flex; +} + +/*--------------------------------------------------------------------------------------------- +* +* Sub-fields layout +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub { + overflow: hidden; + border-radius: 8px; + border-width: 1px; + border-style: solid; + border-color: #dbdfe5; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.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-field-object .settings { + border-left-color: #BF7DD7; +} +.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object-text.open .handle { + background-color: #F2E8FF !important; +} +.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .handle { + background-color: transparent; +} +.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .handle:hover { + background-color: #fbf7ff; +} +.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-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 .handle { + background-color: #F2E8FF; +} + +.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open { + border-top-color: #dbdfe5; +} + +/*--------------------------------------------------------------------------------------------- +* +* Empty state +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Hide add title prompt label +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .acf-headerbar #title-prompt-text { + display: none; +} + +/*--------------------------------------------------------------------------------------------- +* +* Modal styling +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group #acf-popup .acf-popup-box { + min-width: 480px; +} +.post-type-acf-field-group #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; +} +.post-type-acf-field-group #acf-popup .acf-popup-box .title h1, +.post-type-acf-field-group #acf-popup .acf-popup-box .title h2, +.post-type-acf-field-group #acf-popup .acf-popup-box .title h3, +.post-type-acf-field-group #acf-popup .acf-popup-box .title h4 { + padding-left: 0; + color: #344054; +} +.post-type-acf-field-group #acf-popup .acf-popup-box .title .acf-icon { + display: block; + position: relative; + top: auto; + right: auto; + width: 22px; + height: 22px; + background-color: transparent; + color: transparent; +} +.post-type-acf-field-group #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"); +} +.post-type-acf-field-group #acf-popup .acf-popup-box .title .acf-icon:hover:before { + background-color: #0783BE; +} +.post-type-acf-field-group #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; +} +.post-type-acf-field-group #acf-popup .acf-popup-box .inner p { + margin-top: 0; + margin-bottom: 0; +} +.post-type-acf-field-group #acf-popup .acf-popup-box #acf-move-field-form .acf-field-select { + margin-top: 0; +} + +/*--------------------------------------------------------------------------------------------- +* +* Hide original #post-body-content from edit field group page +* +*---------------------------------------------------------------------------------------------*/ +.acf-admin-single-field-group #post-body-content { + display: none; +} + +/*--------------------------------------------------------------------------------------------- +* +* Settings section footer +* +*---------------------------------------------------------------------------------------------*/ +.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-bottom: -24px; + margin-left: -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 enabled badge +* +*---------------------------------------------------------------------------------------------*/ +.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, 0.4); + border-width: 1px; + border-style: solid; + border-color: #52AA59; + border-radius: 100px; + text-indent: 100%; + white-space: nowrap; +} + +/*--------------------------------------------------------------------------------------------- +* +* Split field settings +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Display & return format +* +*---------------------------------------------------------------------------------------------*/ +.acf-field-setting-display_format .acf-label, +.acf-field-setting-return_format .acf-label { + margin-bottom: 16px; +} +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Flexible content field +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .acf-field-setting-fc_layout { + 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, 0.1); +} +@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-label, +.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input { + max-width: 100%; +} +.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: 600px; + padding-right: 32px; + padding-left: 32px; +} +.post-type-acf-field-group .acf-field-settings-fc_head { + min-height: 64px; + margin-bottom: 24px; + padding-right: 24px; + padding-left: 24px; + border-bottom-width: 1px; + border-bottom-style: solid; + border-bottom-color: #EAECF0; +} +.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: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 .acf-field-settings-fc_head .acf-fl-actions { + display: flex; +} +.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li { + margin-right: 16px; +} +.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li:last-of-type { + margin-right: 0; +} + +/*--------------------------------------------------------------------------------------------- +* +* Image field +* +*---------------------------------------------------------------------------------------------*/ +.acf-field-object-image .acf-hl[data-cols="3"] > li { + width: auto; +} + +/*--------------------------------------------------------------------------------------------- +* +* Flexible widths for image minimum / maximum size fields +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Temporary fix to hide pagination setting for repeaters used as subfields. +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Flexible content field width +* +*---------------------------------------------------------------------------------------------*/ +.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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Fix default value checkbox focus state +* +*---------------------------------------------------------------------------------------------*/ +.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; +} /*# sourceMappingURL=acf-field-group.css.map*/ \ No newline at end of file diff --git a/assets/build/css/acf-field-group.css.map b/assets/build/css/acf-field-group.css.map index 4ee3dfa..98541e1 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/_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/acf-field-group.scss"],"sourcesContent":["/*--------------------------------------------------------------------------------------------\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\t// Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t\t// Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t\t// Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\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* 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 box-shadow: none;\n \n\t// Hide metabox header.\n\t> .postbox-header,\n > .handlediv,\n\t> .hndle {\n\t\tdisplay: none;\n\t}\n\t\n\t/* links */\n\ta {\n\t\ttext-decoration: none;\n\t\t\n\t\t&:active,\n\t\t&:focus {\n\t\t\toutline: none;\n\t\t\tbox-shadow: none;\n\t\t}\n\t}\n\t\n\t\n\t/* table header */\n\t.li-field-order { width: 20%; }\n\t.li-field-label { width: 30%; }\n\t.li-field-name { width: 25%; }\n\t.li-field-type { width: 25%; }\n\t.li-field-key { display: none; }\n\t\n\t\n\t/* show keys */\n\t&.show-field-keys {\n\t\t\n\t\t.li-field-label,\n\t\t.li-field-name,\n\t\t.li-field-type,\n\t\t.li-field-key { width: 20%; }\n\t\t.li-field-key { display: block; }\n\t}\n\t\n\t\n\t/* fields */\n\t.acf-field-list-wrap {\n\t\tborder: $wp-card-border solid 1px;\n\t}\n\t\n\t.acf-field-list {\n\t\tbackground: #f5f5f5;\n\t\tmargin-top: -1px;\n\t\t\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\t\t\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\t\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/* field object */\n.acf-field-object {\n\tborder-top: $wp38-card-border-2 solid 1px;\n\tbackground: #fff;\n\t\n\t/* sortable */\n\t&.ui-sortable-helper {\n\t\tborder-top-color: #fff;\n\t\tbox-shadow: 0 0 0 1px #DFDFDF, 0 1px 4px rgba(0,0,0,0.1);\n\t}\n\t\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\t\t\n\t\t// hide tab field separator\n\t\t&:after, &:before {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\t\n\t\n\t/* meta */\n\t> .meta {\n\t\tdisplay: none;\n\t}\n\t\n\t\n\t/* handle */\n\t> .handle {\n\t\t\n\t\ta {\n\t\t\t-webkit-transition: none;\n\t\t\t-moz-transition: none;\n\t\t\t-o-transition: none; \t\n\t\t\ttransition: none;\n\t\t}\n\t\t\n\t\tli {\n\t\t\tpadding-top: 10px;\n\t\t\tpadding-bottom: 10px;\n\t\t\tword-wrap: break-word;\n\t\t}\n\t\t\n\t\t.acf-icon {\n\t\t\tmargin: 1px 0 0;\n\t\t\tcursor: move;\n\t\t\tbackground: transparent;\n\t\t\tfloat: left;\n\t\t\t\n\t\t\theight: 28px;\n\t\t line-height: 26px;\n\t\t width: 28px;\n\t\t font-size: 13px;\n\t\t color: #444;\n\t\t position: relative;\n\t\t z-index: 1;\n\t\t}\n\t\t\n\t\tstrong {\n\t\t\tdisplay: block;\n\t\t\tpadding-bottom: 6px;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 14px;\n\t\t\tmin-height: 14px;\n\t\t}\n\t\t\n\t\t.row-options {\n\t\t\tvisibility: hidden;\n\t\t\t\n\t\t\ta {\n\t\t\t\tmargin-right: 4px;\n\t\t\t}\n\t\t\t\n\t\t\ta.delete-field {\n\t\t\t\tcolor: #a00;\n\t\t\t\t\n\t\t\t\t&:hover { color: #f00; }\n\t\t\t}\n\t\t}\n\n\t}\n\t\n\t/* open */\n\t&.open {\n\t\t\n\t\t+ .acf-field-object {\n\t\t\tborder-top-color: #E1E1E1;\n\t\t}\n\t\t\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: -1px -1px 0 -1px;\n\t\t\t\n\t\t\ta {\n\t\t\t\tcolor: #fff !important;\n\t\t\t\t\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\t\t\t\n\t\t\t.acf-icon {\n\t\t\t\tborder-color: #fff;\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t\n\t\t\t.acf-required {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t}\n\t}\n\t\n\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\t\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\t\n\t\n\t/* hover */\n\t&:hover, &.-hover {\n\t\t\n\t\t> .handle {\n\t\t\t\n\t\t\t.row-options {\n\t\t\t\tvisibility: visible;\n\t\t\t}\n\t\t\t\t\n\t\t}\n\t}\n\t\n\t\n\t/* settings */\n\t> .settings {\n\t\tdisplay: none;\n\t\twidth: 100%;\n\t\t\n\t\t> .acf-table {\n\t\t\tborder: none;\n\t\t}\n\t}\n\t\n\t\n\t/* conditional logic */\n\t.rule-groups {\n\t\tmargin-top: 20px;\n\t}\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox: Locations\n*\n*---------------------------------------------------------------------------------------------*/\n\n.rule-groups {\n\t\n\th4 {\n\t\tmargin: 3px 0;\n\t}\n\t\n\t.rule-group {\n\t\tmargin: 0 0 5px;\n\t\t\n\t\th4 {\n\t\t\tmargin: 0 0 3px;\n\t\t}\n\t\t\n\t\ttd.param {\n\t\t\twidth: 35%;\n\t\t}\n\t\t\n\t\ttd.operator {\n\t\t\twidth: 20%;\n\t\t}\n\t\t\n\t\ttd.add {\n\t\t\twidth: 40px;\n\t\t}\n\t\t\n\t\ttd.remove {\n\t\t\twidth: 28px;\n\t\t\tvertical-align: middle;\n\t\t\t\n\t\t\ta {\n\t\t\t\tvisibility: hidden;\n\t\t\t}\n\t\t}\n\t\t\n\t\ttr:hover td.remove a {\n\t\t\tvisibility: visible;\n\t\t}\n\t\t\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*\t\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\t\n\t#acf-field-group-options tr[data-name=\"hide_on_screen\"] li {\n\t\twidth: 50%;\n\t}\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tConditional Logic\n*\t\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*\t\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-object-tab {\n\t\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\t\n\t// hide name\n\t.li-field-name {\n\t\tvisibility: hidden;\n\t}\n\t\n\t// add spacer\n\t.acf-field-object + & {\n\t\t\n\t\t&:before {\n\t\t\tdisplay: block;\n\t\t\tcontent: \"\";\n\t\t\theight: 5px;\n\t\t\twidth: 100%;\n\t\t\tbackground: #f5f5f5;\n\t\t\tborder-top: #e1e1e1 solid 1px;\n\t\t\tborder-bottom: #e1e1e1 solid 1px;\n\t\t\tmargin-top: -1px;\n\t\t\t\n\t\t\t// WP Admin 3.8\n\t\t\t@include wp-admin('3-8') {\n\t\t\t\tborder-color: $wp38-card-border;\n\t\t\t}\n\t\t}\n\t}\n\t\n\tp:first-child {\n\t\tmargin: 0.5em 0;\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tField: Accordion\n*\t\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-object-accordion {\n\t@extend .acf-field-object-tab;\n\t\n\t// show settings\n\t.acf-field-setting-instructions {\n\t\tdisplay: table-row;\n\t}\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tField: Message\n*\t\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*\t\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*\t\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-object-date-picker,\n.acf-field-object-time-picker,\n.acf-field-object-date-time-picker {\n\t\n\t.acf-radio-list {\n\t\t\n\t\tli {\n\t\t\tline-height: 25px;\n\t\t}\n\t\t\n\t\tspan {\n\t\t\tdisplay: inline-block;\n\t\t\tmin-width: 10em;\n\t\t}\n\t\t\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\t\n\t.acf-radio-list {\n\t\t\n\t\tspan {\n\t\t\tmin-width: 15em;\n\t\t}\n\t\t\n\t\tinput[type=\"text\"] {\n\t\t\twidth: 200px;\n\t\t}\n\t}\n\t\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tSlug\n*\n*--------------------------------------------------------------------------------------------*/\n\n#slugdiv {\n\t\n\t.inside {\n\t\tpadding: 12px;\n\t\tmargin: 0;\n\t}\n\t\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: -1px -1px 0;\n}\n\nhtml[dir=\"rtl\"] .acf-field-object.open > .handle .acf-icon {\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-field-object.open > .handle .li-field-order {\n padding-left: 0 !important;\n padding-right: 15px !important;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Device\n*\n*---------------------------------------------------------------------------------------------*/\n\n@media only screen and (max-width: 850px) {\n\t\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\t\n\ttr.acf-field {\n\t\tborder-top: #ededed solid 1px !important;\n\t\tmargin-bottom: 0 !important;\n\t}\n\t\n\ttd.acf-label {\n\t\tbackground: transparent !important;\n\t\tpadding-bottom: 0 !important;\n\n\t}\n\t\n}\n\n","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\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 box-shadow: none;\n /* links */\n /* table header */\n /* show keys */\n /* fields */\n}\n#acf-field-group-fields > .postbox-header,\n#acf-field-group-fields > .handlediv,\n#acf-field-group-fields > .hndle {\n display: none;\n}\n#acf-field-group-fields a {\n text-decoration: none;\n}\n#acf-field-group-fields a:active, #acf-field-group-fields a:focus {\n outline: none;\n box-shadow: none;\n}\n#acf-field-group-fields .li-field-order {\n width: 20%;\n}\n#acf-field-group-fields .li-field-label {\n width: 30%;\n}\n#acf-field-group-fields .li-field-name {\n width: 25%;\n}\n#acf-field-group-fields .li-field-type {\n width: 25%;\n}\n#acf-field-group-fields .li-field-key {\n display: none;\n}\n#acf-field-group-fields.show-field-keys .li-field-label,\n#acf-field-group-fields.show-field-keys .li-field-name,\n#acf-field-group-fields.show-field-keys .li-field-type,\n#acf-field-group-fields.show-field-keys .li-field-key {\n width: 20%;\n}\n#acf-field-group-fields.show-field-keys .li-field-key {\n display: block;\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 .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/* 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 border-top-color: #fff;\n box-shadow: 0 0 0 1px #DFDFDF, 0 1px 4px rgba(0, 0, 0, 0.1);\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 padding-top: 10px;\n padding-bottom: 10px;\n word-wrap: break-word;\n}\n.acf-field-object > .handle .acf-icon {\n margin: 1px 0 0;\n cursor: move;\n background: transparent;\n float: left;\n height: 28px;\n line-height: 26px;\n width: 28px;\n font-size: 13px;\n color: #444;\n position: relative;\n z-index: 1;\n}\n.acf-field-object > .handle strong {\n display: block;\n padding-bottom: 6px;\n font-size: 14px;\n line-height: 14px;\n min-height: 14px;\n}\n.acf-field-object > .handle .row-options {\n visibility: hidden;\n}\n.acf-field-object > .handle .row-options a {\n margin-right: 4px;\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.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: -1px -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.open > .handle .acf-icon {\n border-color: #fff;\n color: #fff;\n}\n.acf-field-object.open > .handle .acf-required {\n color: #fff;\n}\n.acf-field-object:hover > .handle .row-options, .acf-field-object.-hover > .handle .row-options {\n visibility: visible;\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 visibility: hidden;\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*\t\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*\t\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*\t\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object-tab .acf-field-setting-name, .acf-field-object-accordion .acf-field-setting-name,\n.acf-field-object-tab .acf-field-setting-instructions,\n.acf-field-object-accordion .acf-field-setting-instructions,\n.acf-field-object-tab .acf-field-setting-required,\n.acf-field-object-accordion .acf-field-setting-required,\n.acf-field-object-tab .acf-field-setting-warning,\n.acf-field-object-accordion .acf-field-setting-warning,\n.acf-field-object-tab .acf-field-setting-wrapper,\n.acf-field-object-accordion .acf-field-setting-wrapper {\n display: none;\n}\n.acf-field-object-tab .li-field-name, .acf-field-object-accordion .li-field-name {\n visibility: hidden;\n}\n.acf-field-object + .acf-field-object-tab:before, .acf-field-object + .acf-field-object-accordion:before {\n display: block;\n content: \"\";\n height: 5px;\n width: 100%;\n background: #f5f5f5;\n border-top: #e1e1e1 solid 1px;\n border-bottom: #e1e1e1 solid 1px;\n margin-top: -1px;\n}\n.acf-admin-3-8 .acf-field-object + .acf-field-object-tab:before, .acf-admin-3-8 .acf-field-object + .acf-field-object-accordion:before {\n border-color: #E5E5E5;\n}\n.acf-field-object-tab p:first-child, .acf-field-object-accordion p:first-child {\n margin: 0.5em 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tField: Accordion\n*\t\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object-accordion .acf-field-setting-instructions {\n display: table-row;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tField: Message\n*\t\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*\t\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*\t\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: -1px -1px 0;\n}\n\nhtml[dir=rtl] .acf-field-object.open > .handle .acf-icon {\n float: right;\n}\n\nhtml[dir=rtl] .acf-field-object.open > .handle .li-field-order {\n padding-left: 0 !important;\n padding-right: 15px !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Device\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (max-width: 850px) {\n tr.acf-field,\ntd.acf-label,\ntd.acf-input {\n display: block !important;\n width: auto !important;\n border: 0 none !important;\n }\n\n tr.acf-field {\n border-top: #ededed solid 1px !important;\n margin-bottom: 0 !important;\n }\n\n td.acf-label {\n background: transparent !important;\n padding-bottom: 0 !important;\n }\n}"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-field-group.css","mappings":"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BX;AK1qBE;;;EAEC,yBJzFQ;EI0FR,qBJrFQ;ADkwBX;AK3qBG;;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL+qBJ;AK1qBE;;EACC;AL6qBH;AK1qBE;;EACC,yBJ9HQ;EI+HR,qBJ5HQ;ADyyBX;AK7pBG;EACC;AL+pBJ;AK9oBG;EACC;ALgpBJ;AKjoBE;;;;EAGE;ALooBJ;AKhoBE;;EAEE;ALkoBJ;AK/nBG;;EAEE;ALioBL;AK1nBE;;EACC;EACA;EACA;AL6nBH;AKnnBC;EACC;EACA;EACA;EACA,yBJpNS;EIqNT;ALqnBF;AKnnBE;EACC,yBJvNQ;AD40BX;AKlnBE;EACC;ALonBH;AKjnBE;EACC,yBJlNQ;ADq0BX;AKjnBG;EACC,yBJpNO;ADu0BX;AKhnBG;EACC;ALknBJ;AK7mBE;;EAEC;AL+mBH;AK5mBE;EACC;EACA;EACA;EACA;EACA;AL8mBH;AKzmBC;EACC;EACA;AL2mBF;AKzmBE;EACC;EACA;EACA;EAEC;EACA;AL0mBJ;AKvmBG;EAEE;ALwmBL;AKpmBG;EAEE;ALqmBL;AKvlBC;EACC;EACA;EAEC;EAGA;EACA;EACA;EACA;EAED;EACA;EACA,kBJxQU;EI0QT;EACA;EACA,qBJlSQ;EIoST;ALmlBF;AKjlBE;EACC,qBJtSQ;EIuSR;EACA;ALmlBH;AKxkBC;EACC;EACA;EACA;EAEC;EACA;EAED;EACA;EACA;EACA,qBJ/TS;EIgUT,kBJ1SU;EI4SV,cJlUS;ADy4BX;AKrkBE;EACC;EACA,qBJtUQ;EIuUR,cJvUQ;AD84BX;AKrkBE;EACC;EACA,0BJ9SO;EI+SP,cJ5UQ;ADm5BX;AK7jBC;EACC;AL+jBF;AKrjBE;EACC;EACA;ALujBH;AKpjBE;EACC;EAEC;EACA;EAED;EAEC;EACA;EACA,qBJ9XO;EIgYR,6CJxVY;EIyVZ,kBJ7VS;EI+VT,cJ/XQ;ADg7BX;AK9iBE;EACC,0BJ5VO;EI6VP,qBJ3XQ;EI4XR,kBJrWS;ADq5BZ;AK9iBG;EACC;ALgjBJ;AK3iBI;EACC;EACA;AL6iBL;AKtiBI;EACC;EACA;ALwi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;EAED;EACA;EACA;EAEC;EACA;EACA;EAED;EACA,cLvfO;EKyfP;ANm5BJ;AMj5BI;;EACC,cLzfM;AD64CX;AMj5BI;;EACC;ANo5BL;AM/4BG;;EACC;EAEC,4BL5fM;EK8fP,cLvgBO;ADu5CX;;AMv4BA;EAEE;ANy4BF;;AMr4BA;EAEE;ANu4BF;AMp4BC;EALD;IAOG;ENs4BD;AACF;;AMj4BA;;;;+FAAA;AAOC;EAEE;EACA;EACA;EACA;ANi4BH;AM93BE;EACC;ANg4BH;AM33BC;EACC;EAEC;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;AN03BH;AMr3BC;EACC;EAEC;EACA;EACA;EACA;ANs3BH;AMn3BE;EACC;EAEC;EACA;EACA;EACA;ANo3BJ;AMh3BE;EACC;ANk3BH;AM/2BE;EACC;EACA;EAEC;EACA;EACA;EACA;EAGA;EACA;EAGA;EACA;EACA,0BLtnBO;ADk+CX;AMr2BC;EACC;ANu2BF;AMn2BC;EACC;ANq2BF;;AMh2BA;;;;+FAAA;AAOC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ANi2BF;AM91BC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEC;EACA;EAGD;EACA;EACA;AN61BF;AM31BE;EACC;AN61BH;AM11BE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EAEA,WADY;EAEZ,YAFY;EAGZ,yBL1rBQ;EK2rBR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AN21BH;;AMp1BA;;;;+FAAA;AAOC;EACC;EAEC;ANo1BH;AMj1BE;EACC;EACA;EACA;EACA;EAEA;EACA,WAFY;EAGZ,YAHY;EAKX;EAED,yBLtuBQ;EKuuBR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ANg1BH;AM70BE;EACC;AN+0BH;AMv0BE;EACC;EACA;ANy0BH;AMt0BE;EACC;EACA;ANw0BH;AMr0BE;EACC;EACA;ANu0BH;;AM/zBC;EAEE;ANi0BH;;AM3zBA;;;;+FAAA;AAOC;EACC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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"],"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 /* 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-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-type {\n width: 25%;\n}\n#acf-field-group-fields .li-field-key {\n display: none;\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 .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 .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/* 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: Clone\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object-clone li.acf-settings-type-presentation,\n.acf-field-object-clone .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: -1px -1px 0;\n}\n\nhtml[dir=rtl] .acf-field-object.open > .handle .acf-icon {\n float: right;\n}\n\nhtml[dir=rtl] .acf-field-object.open > .handle .li-field-order {\n padding-left: 0 !important;\n padding-right: 15px !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Device\n*\n*---------------------------------------------------------------------------------------------*/\n@media only screen and (max-width: 850px) {\n tr.acf-field,\ntd.acf-label,\ntd.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.post-type-acf-field-group #wpcontent {\n line-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group a {\n color: #0783BE;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.h1, .post-type-acf-field-group h1,\n.acf-headerbar h1 {\n font-size: 21px;\n font-weight: 400;\n}\n\n.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, .post-type-acf-field-group h2,\n.acf-headerbar h2 {\n font-size: 18px;\n font-weight: 400;\n}\n\n.h3, .post-type-acf-field-group .acf-field-settings-fc_head label, .post-type-acf-field-group #acf-popup .acf-popup-box .title h1,\n.post-type-acf-field-group #acf-popup .acf-popup-box .title h2,\n.post-type-acf-field-group #acf-popup .acf-popup-box .title h3,\n.post-type-acf-field-group #acf-popup .acf-popup-box .title h4, .post-type-acf-field-group h3,\n.acf-headerbar h3 {\n font-size: 16px;\n font-weight: 400;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.p1 {\n font-size: 15px;\n}\n\n.p2, .post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p {\n font-size: 14px;\n}\n\n.p3 {\n font-size: 13.5px;\n}\n\n.p4, .acf-field-list .acf-sortable-handle, .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, .post-type-acf-field-group .acf-thead li, .post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection__rendered, .post-type-acf-field-group .button, .post-type-acf-field-group input[type=text],\n.post-type-acf-field-group input[type=search],\n.post-type-acf-field-group input[type=number],\n.post-type-acf-field-group textarea,\n.post-type-acf-field-group select {\n font-size: 13px;\n}\n\n.p5, .acf-field-setting-display_format .acf-radio-list li label code,\n.acf-field-setting-return_format .acf-radio-list li label code, .acf-field-group-settings-footer .acf-created-on, .acf-fields .acf-field-settings-tab-bar li a,\n.acf-fields .acf-tab-wrap .acf-tab-group li a {\n font-size: 12.5px;\n}\n\n.p6, .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-object .handle li.li-field-label .row-options a, .acf-small {\n font-size: 12px;\n}\n\n.p7 {\n font-size: 11.5px;\n}\n\n.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.post-type-acf-field-group .acf-settings-wrap h1,\n.post-type-acf-field-group #acf-admin-tools h1 {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group a:focus {\n box-shadow: none;\n outline: none;\n}\n\n.post-type-acf-field-group 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.post-type-acf-field-group {\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}\n.post-type-acf-field-group input[type=text],\n.post-type-acf-field-group input[type=search],\n.post-type-acf-field-group input[type=number],\n.post-type-acf-field-group textarea,\n.post-type-acf-field-group 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.post-type-acf-field-group input[type=text]:focus,\n.post-type-acf-field-group input[type=search]:focus,\n.post-type-acf-field-group input[type=number]:focus,\n.post-type-acf-field-group textarea:focus,\n.post-type-acf-field-group select:focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n}\n.post-type-acf-field-group input[type=text]:disabled,\n.post-type-acf-field-group input[type=search]:disabled,\n.post-type-acf-field-group input[type=number]:disabled,\n.post-type-acf-field-group textarea:disabled,\n.post-type-acf-field-group select:disabled {\n background-color: #F9FAFB;\n color: #808a9e;\n}\n.post-type-acf-field-group input[type=text]::placeholder,\n.post-type-acf-field-group input[type=search]::placeholder,\n.post-type-acf-field-group input[type=number]::placeholder,\n.post-type-acf-field-group textarea::placeholder,\n.post-type-acf-field-group select::placeholder {\n color: #98A2B3;\n}\n.post-type-acf-field-group input[type=text]:read-only {\n background-color: #F9FAFB;\n color: #98A2B3;\n}\n.post-type-acf-field-group .acf-field.acf-field-number .acf-label,\n.post-type-acf-field-group .acf-field.acf-field-number .acf-input input[type=number] {\n max-width: 180px;\n}\n.post-type-acf-field-group textarea {\n box-sizing: border-box;\n padding-top: 10px;\n padding-bottom: 10px;\n height: 80px;\n min-height: 56px;\n}\n.post-type-acf-field-group 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.post-type-acf-field-group select:hover, .post-type-acf-field-group select:focus {\n color: #0783BE;\n}\n.post-type-acf-field-group select::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 5px;\n left: 5px;\n width: 20px;\n height: 20px;\n background-color: red;\n}\n.post-type-acf-field-group input[type=radio],\n.post-type-acf-field-group 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.post-type-acf-field-group input[type=radio]:hover,\n.post-type-acf-field-group input[type=checkbox]:hover {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.post-type-acf-field-group input[type=radio]:checked, .post-type-acf-field-group input[type=radio]:focus-visible,\n.post-type-acf-field-group input[type=checkbox]:checked,\n.post-type-acf-field-group input[type=checkbox]:focus-visible {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus-visible:before,\n.post-type-acf-field-group input[type=checkbox]:checked:before,\n.post-type-acf-field-group 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.post-type-acf-field-group input[type=radio]:active,\n.post-type-acf-field-group input[type=checkbox]:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.post-type-acf-field-group input[type=radio]:disabled,\n.post-type-acf-field-group input[type=checkbox]:disabled {\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n}\n.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus:before {\n background-image: url(\"../../images/field-states/radio-active.svg\");\n}\n.post-type-acf-field-group input[type=checkbox]:checked:before, .post-type-acf-field-group input[type=checkbox]:focus:before {\n background-image: url(\"../../images/field-states/checkbox-active.svg\");\n}\n.post-type-acf-field-group .acf-radio-list li input[type=radio],\n.post-type-acf-field-group .acf-radio-list li input[type=checkbox],\n.post-type-acf-field-group .acf-checkbox-list li input[type=radio],\n.post-type-acf-field-group .acf-checkbox-list li input[type=checkbox] {\n margin-right: 6px;\n}\n.post-type-acf-field-group .acf-radio-list.acf-bl li,\n.post-type-acf-field-group .acf-checkbox-list.acf-bl li {\n margin-bottom: 8px;\n}\n.post-type-acf-field-group .acf-radio-list.acf-bl li:last-of-type,\n.post-type-acf-field-group .acf-checkbox-list.acf-bl li:last-of-type {\n margin-bottom: 0;\n}\n.post-type-acf-field-group .acf-radio-list label,\n.post-type-acf-field-group .acf-checkbox-list label {\n display: flex;\n align-items: center;\n align-content: center;\n}\n.post-type-acf-field-group .acf-switch {\n width: 42px;\n height: 24px;\n border: none;\n background-color: #D0D5DD;\n border-radius: 12px;\n}\n.post-type-acf-field-group .acf-switch:hover {\n background-color: #98A2B3;\n}\n.post-type-acf-field-group .acf-switch:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.post-type-acf-field-group .acf-switch.-on {\n background-color: #0783BE;\n}\n.post-type-acf-field-group .acf-switch.-on:hover {\n background-color: #066998;\n}\n.post-type-acf-field-group .acf-switch.-on .acf-switch-slider {\n left: 20px;\n}\n.post-type-acf-field-group .acf-switch .acf-switch-off,\n.post-type-acf-field-group .acf-switch .acf-switch-on {\n visibility: hidden;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .acf-field-true-false {\n display: flex;\n align-items: center;\n}\n.post-type-acf-field-group .acf-field-true-false .acf-label {\n order: 2;\n display: inline-flex;\n align-items: center;\n margin-bottom: 0;\n margin-left: 12px;\n}\n.post-type-acf-field-group .acf-field-true-false .acf-label label {\n margin-bottom: 0;\n}\n.post-type-acf-field-group .acf-field-true-false .acf-label .acf-tip {\n margin-left: 12px;\n}\n.post-type-acf-field-group 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.post-type-acf-field-group input::file-selector-button:hover {\n border-color: #066998;\n cursor: pointer;\n color: #066998 !important;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .button:hover {\n background-color: #f3f9fc;\n border-color: #0783BE;\n color: #0783BE;\n}\n.post-type-acf-field-group .button:focus {\n background-color: #f3f9fc;\n outline: 3px solid #EBF5FA;\n color: #0783BE;\n}\n.post-type-acf-field-group .edit-field-group-header {\n display: block !important;\n}\n.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection {\n border: none;\n line-height: 1;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .acf-input .select2-container--focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n border-radius: 6px;\n}\n.post-type-acf-field-group .acf-input .select2-container--focus .select2-selection__rendered {\n border-color: #399CCB !important;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .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.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field {\n margin: 0;\n padding-left: 6px;\n}\n.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field:focus {\n outline: none;\n border: none;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .acf-input .select2-selection__clear {\n width: 18px;\n height: 18px;\n margin-top: 12px;\n margin-right: 0;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n}\n.post-type-acf-field-group .acf-input .select2-selection__clear:before {\n content: \"\";\n display: block;\n width: 14px;\n height: 14px;\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.post-type-acf-field-group .acf-input .select2-selection__clear:hover::before {\n background-color: #1D2939;\n}\n.post-type-acf-field-group .acf-label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.post-type-acf-field-group .acf-label .acf-icon-help {\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n}\n.post-type-acf-field-group .acf-label label {\n margin-bottom: 0;\n}\n.post-type-acf-field-group .acf-field-setting-name .acf-tip {\n position: absolute;\n top: 0;\n left: 654px;\n color: #98A2B3;\n}\n.post-type-acf-field-group .acf-field-setting-name .acf-tip .acf-icon-help {\n width: 18px;\n height: 18px;\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 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: flex;\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-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* 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/*---------------------------------------------------------------------------------------------\n*\n* Tabs\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-fields .acf-tab-wrap {\n background: #F9FAFB;\n border-bottom-color: #1D2939;\n}\n.acf-fields .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 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 display: flex;\n align-items: center;\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 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:hover,\n.acf-fields .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 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 background: none;\n border-bottom-color: #0783BE;\n color: #1D2939;\n}\n\n#acf-field-group-options .acf-fields .acf-tab-wrap .acf-tab-group li.active a {\n padding-top: 2px;\n}\n\n.acf-field-editor .acf-field-settings-tab-bar {\n padding-left: 72px;\n}\n@media screen and (max-width: 600px) {\n .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/*---------------------------------------------------------------------------------------------\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/*---------------------------------------------------------------------------------------------\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-right.svg\");\n mask-image: url(\"../../images/icons/icon-chevron-right.svg\");\n}\n.acf-field-object .li-field-label:hover:before {\n cursor: pointer;\n}\n.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.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.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\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* Sub-fields layout\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\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-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-field-object-text.open .handle {\n background-color: #F2E8FF !important;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .handle {\n background-color: transparent;\n}\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .handle:hover {\n background-color: #fbf7ff;\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\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 .handle {\n background-color: #F2E8FF;\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* 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.post-type-acf-field-group #acf-popup .acf-popup-box {\n min-width: 480px;\n}\n.post-type-acf-field-group #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.post-type-acf-field-group #acf-popup .acf-popup-box .title h1,\n.post-type-acf-field-group #acf-popup .acf-popup-box .title h2,\n.post-type-acf-field-group #acf-popup .acf-popup-box .title h3,\n.post-type-acf-field-group #acf-popup .acf-popup-box .title h4 {\n padding-left: 0;\n color: #344054;\n}\n.post-type-acf-field-group #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.post-type-acf-field-group #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.post-type-acf-field-group #acf-popup .acf-popup-box .title .acf-icon:hover:before {\n background-color: #0783BE;\n}\n.post-type-acf-field-group #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.post-type-acf-field-group #acf-popup .acf-popup-box .inner p {\n margin-top: 0;\n margin-bottom: 0;\n}\n.post-type-acf-field-group #acf-popup .acf-popup-box #acf-move-field-form .acf-field-select {\n margin-top: 0;\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-bottom: -24px;\n margin-left: -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* 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/*---------------------------------------------------------------------------------------------\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: 16px;\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* Flexible content field\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .acf-field-setting-fc_layout {\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@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-label,\n.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input {\n max-width: 100%;\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: 600px;\n padding-right: 32px;\n padding-left: 32px;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head {\n min-height: 64px;\n margin-bottom: 24px;\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.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: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 .acf-field-settings-fc_head .acf-fl-actions {\n display: flex;\n}\n.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li {\n margin-right: 16px;\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* Image field\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object-image .acf-hl[data-cols=\"3\"] > li {\n width: auto;\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*\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#DA5A39;\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, #2C9FB8 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\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}\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-type { width: 25%; }\n\t.li-field-key { display: none; }\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\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/* 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/* 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*\n*\tField: Clone\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-object-clone {\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: -1px -1px 0;\n}\n\nhtml[dir=\"rtl\"] .acf-field-object.open > .handle .acf-icon {\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-field-object.open > .handle .li-field-order {\n\tpadding-left: 0 !important;\n\tpadding-right: 15px !important;\n}\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*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #wpcontent {\n\tline-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\ta {\n\t\tcolor: $blue-500;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.h1 {\n\tfont-size: 21px;\n\tfont-weight: 400;\n}\n\n.h2 {\n\tfont-size: 18px;\n\tfont-weight: 400;\n}\n\n.h3 {\n\tfont-size: 16px;\n\tfont-weight: 400;\n}\n\n.post-type-acf-field-group,\n.acf-headerbar {\n\n\th1 {\n\t\t@extend .h1;\n\t}\n\n\th2 {\n\t\t@extend .h2;\n\t}\n\n\th3 {\n\t\t@extend .h3;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.p1 {\n\tfont-size: 15px;\n}\n\n.p2 {\n\tfont-size: 14px;\n}\n\n.p3 {\n\tfont-size: 13.5px;\n}\n\n.p4 {\n\tfont-size: 13px;\n}\n\n.p5 {\n\tfont-size: 12.5px;\n}\n\n.p6 {\n\tfont-size: 12px;\n}\n\n.p7 {\n\tfont-size: 11.5px;\n}\n\n.p8 {\n\tfont-size: 11px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n\t@extend .h2;\n\tcolor: $gray-700;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t.acf-settings-wrap h1,\n\t#acf-admin-tools h1 {\n\t\tdisplay: none;\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.post-type-acf-field-group a:focus {\n\tbox-shadow: none;\n\toutline: none;\n}\n.post-type-acf-field-group a:focus-visible {\n\tbox-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgb(79 148 212 / 80%);\n\toutline: 1px solid transparent;\n}",".post-type-acf-field-group {\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\tbackground-color: red;\n\t\t}\n\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\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: center;\n\n\t\t.acf-label {\n\t\t\torder: 2;\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\tmargin: {\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\n\t\t}\n\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: 0;\n\t\t\t};\n\t\t\ttext-indent: 100%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 14px;\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: $gray-800;\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\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.acf-icon-help {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t}\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Container sizes\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .metabox-holder.columns-1 {\n\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*\n* Max width for notices in 1 column edit field group layout\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group.columns-1 {\n\n\t.notice {\n\t\tmax-width: $max-width;\n\t}\n\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\n\t.acf-headerbar .acf-headerbar-inner{\n\t\tmax-width: 100%;\n\t}\n\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Post stuff\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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*\n* Table\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table header\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table body\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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\n\t\t\t.acf-sortable-handle:before {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\n\t\t}\n\n\t\t// Add divider to show which fields have endpoint\n\t\t&.acf-field-is-endpoint {\n\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\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\n\t\t\t}\n\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\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\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table footer\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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\n\t}\n\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*\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*\n* Field label\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-settings .acf-label {\n\tdisplay: flex;\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}\n\n\t.acf-input-wrap {\n\t\toverflow: visible;\n\t}\n\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* 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\n/*---------------------------------------------------------------------------------------------\n*\n* Tabs\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-fields {\n\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\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\n\t\tli {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\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\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\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: $gray-800;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n#acf-field-group-options .acf-fields .acf-tab-wrap .acf-tab-group li.active a {\n\tpadding: {\n\t\ttop: 2px;\n\t\t};\n}\n\n.acf-field-editor .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*\n* Field group settings\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-field-group-options {\n\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\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\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\n/*---------------------------------------------------------------------------------------------\n*\n* Reorder handles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-list {\n\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\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Expand / collapse field icon\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object {\n\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-right.svg');\n\t\t\tmask-image: url('../../images/icons/icon-chevron-right.svg');\n\t\t}\n\n\t\t&:hover:before {\n\t\t\tcursor: pointer;\n\t\t}\n\n\t}\n\n\t// Open\n\t&.open {\n\n\t\t.li-field-label:before {\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\t\t\n\t\t.acf-input-sub .li-field-label:before {\n\t\t\t-webkit-mask-image: url('../../images/icons/icon-chevron-right.svg');\n\t\t\tmask-image: url('../../images/icons/icon-chevron-right.svg');\n\t\t}\n\t\t\n\t\t.acf-input-sub .acf-field-object.open .li-field-label:before {\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}\n\n}\n\n.acf-thead {\n\t.li-field-label {\n\t\tpadding: {\n\t\t\tleft: 40px;\n\t\t};\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Conditional logic layout\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-settings-main-conditional-logic {\n\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\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\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Prefix & append styling\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-input {\n\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*\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* Sub-fields layout\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub {\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// Left border / active group indicator\n\t.acf-field-object .settings {\n\t\tborder-left: {\n\t\t\tcolor: #BF7DD7;\n\t\t};\n\t}\n\n\t// Row open state background color\n\t.acf-field-object-text.open .handle {\n\t\tbackground-color: #F2E8FF !important;\n\t}\n\n\t// Row hover state background color\n\t.handle {\n\t\tbackground-color: transparent;\n\n\t\t&:hover {\n\t\t\tbackground-color: lighten(#F2E8FF, 3%);\n\t\t}\n\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\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\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object.open .handle {\n\tbackground-color: #F2E8FF;\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*\n* Empty state\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .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 .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\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}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide add title prompt label\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t.acf-headerbar {\n\n\t\t#title-prompt-text {\n\t\t\tdisplay: none;\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Modal styling\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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 .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\n\t\t\t}\n\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\n\t\t}\n\n\t\t// Custom styling for move custom field modal\n\t\t#acf-move-field-form {\n\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\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide original #post-body-content from edit field group page\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-single-field-group {\n\n\t#post-body-content {\n\t\tdisplay: none;\n\t}\n\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\tbottom: -24px;\n\t\tleft: -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*\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,.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*\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\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Display & return format\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-setting-display_format,\n.acf-field-setting-return_format {\n\n\t.acf-label {\n\t\tmargin: {\n\t\t\tbottom: 16px;\n\t\t};\n\t}\n\n\t.acf-radio-list {\n\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\n\t\t\t}\n\n\t\t\tinput[type=\"text\"] {\n\t\t\t\theight: 32px;\n\t\t\t}\n\n\t\t}\n\n\t}\n\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* Flexible content field\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t.acf-field-setting-fc_layout {\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.acf-label,\n\t\t.acf-input {\n\t\t\tmax-width: 100%;\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: 600px;\n\t\t\tpadding: {\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\t\tmin-height: 64px;\n\t\tmargin: {\n\t\t\tbottom: 24px;\n\t\t};\n\t\tpadding: {\n\t\t\tright: 24px;\n\t\t\tleft: 24px;\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\tlabel {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\t@extend .h3;\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\n\t\t}\n\n\t\t.acf-fl-actions {\n\t\t\tdisplay: flex;\n\n\t\t\tli {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 16px;\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* Image field\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object-image {\n\n\t.acf-hl[data-cols=\"3\"] > li {\n\t\twidth: auto;\n\t}\n\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\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*\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 .acf-field-object-flexible-content .acf-is-subfields .acf-field-object {\n\n\t.acf-label,\n\t.acf-input {\n\t\tmax-width: 600px;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Fix default value checkbox focus state\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-admin-single-field-group {\n\t\n\t.acf-field.acf-field-true-false.acf-field-setting-default_value .acf-true-false {\n\t\tborder: none;\n\t\t\n\t\tinput[type=\"checkbox\"] {\n\t\t\tmargin-right: 0;\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 1e5e8d5..85aba97 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;box-shadow:none}#acf-field-group-fields>.postbox-header,#acf-field-group-fields>.handlediv,#acf-field-group-fields>.hndle{display:none}#acf-field-group-fields a{text-decoration:none}#acf-field-group-fields a:active,#acf-field-group-fields a:focus{outline:none;box-shadow:none}#acf-field-group-fields .li-field-order{width:20%}#acf-field-group-fields .li-field-label{width:30%}#acf-field-group-fields .li-field-name{width:25%}#acf-field-group-fields .li-field-type{width:25%}#acf-field-group-fields .li-field-key{display:none}#acf-field-group-fields.show-field-keys .li-field-label,#acf-field-group-fields.show-field-keys .li-field-name,#acf-field-group-fields.show-field-keys .li-field-type,#acf-field-group-fields.show-field-keys .li-field-key{width:20%}#acf-field-group-fields.show-field-keys .li-field-key{display:block}#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 .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}.acf-field-object{border-top:#eee solid 1px;background:#fff}.acf-field-object.ui-sortable-helper{border-top-color:#fff;box-shadow:0 0 0 1px #dfdfdf,0 1px 4px rgba(0,0,0,.1)}.acf-field-object.ui-sortable-placeholder{box-shadow:0 -1px 0 0 #dfdfdf;visibility:visible !important;background:#f9f9f9;border-top-color:transparent;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{padding-top:10px;padding-bottom:10px;word-wrap:break-word}.acf-field-object>.handle .acf-icon{margin:1px 0 0;cursor:move;background:transparent;float:left;height:28px;line-height:26px;width:28px;font-size:13px;color:#444;position:relative;z-index:1}.acf-field-object>.handle strong{display:block;padding-bottom:6px;font-size:14px;line-height:14px;min-height:14px}.acf-field-object>.handle .row-options{visibility:hidden}.acf-field-object>.handle .row-options a{margin-right:4px}.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.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:-1px -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.open>.handle .acf-icon{border-color:#fff;color:#fff}.acf-field-object.open>.handle .acf-required{color:#fff}.acf-field-object:hover>.handle .row-options,.acf-field-object.-hover>.handle .row-options{visibility:visible}.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{visibility:hidden}.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:transparent;border:0 none;border-radius:0}table.conditional-logic-rules tbody td{background:transparent;border:0 none !important;padding:5px 2px !important}.acf-field-object-tab .acf-field-setting-name,.acf-field-object-accordion .acf-field-setting-name,.acf-field-object-tab .acf-field-setting-instructions,.acf-field-object-accordion .acf-field-setting-instructions,.acf-field-object-tab .acf-field-setting-required,.acf-field-object-accordion .acf-field-setting-required,.acf-field-object-tab .acf-field-setting-warning,.acf-field-object-accordion .acf-field-setting-warning,.acf-field-object-tab .acf-field-setting-wrapper,.acf-field-object-accordion .acf-field-setting-wrapper{display:none}.acf-field-object-tab .li-field-name,.acf-field-object-accordion .li-field-name{visibility:hidden}.acf-field-object+.acf-field-object-tab:before,.acf-field-object+.acf-field-object-accordion:before{display:block;content:"";height:5px;width:100%;background:#f5f5f5;border-top:#e1e1e1 solid 1px;border-bottom:#e1e1e1 solid 1px;margin-top:-1px}.acf-admin-3-8 .acf-field-object+.acf-field-object-tab:before,.acf-admin-3-8 .acf-field-object+.acf-field-object-accordion:before{border-color:#e5e5e5}.acf-field-object-tab p:first-child,.acf-field-object-accordion p:first-child{margin:.5em 0}.acf-field-object-accordion .acf-field-setting-instructions{display:table-row}.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:-1px -1px 0}html[dir=rtl] .acf-field-object.open>.handle .acf-icon{float:right}html[dir=rtl] .acf-field-object.open>.handle .li-field-order{padding-left:0 !important;padding-right:15px !important}@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:transparent !important;padding-bottom:0 !important}} +#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-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-type{width:25%}#acf-field-group-fields .li-field-key{display:none}#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 .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 .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}.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-clone li.acf-settings-type-presentation,.acf-field-object-clone .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:-1px -1px 0}html[dir=rtl] .acf-field-object.open>.handle .acf-icon{float:right}html[dir=rtl] .acf-field-object.open>.handle .li-field-order{padding-left:0 !important;padding-right:15px !important}@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}.post-type-acf-field-group #wpcontent{line-height:140%}.post-type-acf-field-group a{color:#0783be}.h1,.post-type-acf-field-group h1,.acf-headerbar h1{font-size:21px;font-weight:400}.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,.post-type-acf-field-group h2,.acf-headerbar h2{font-size:18px;font-weight:400}.h3,.post-type-acf-field-group .acf-field-settings-fc_head label,.post-type-acf-field-group #acf-popup .acf-popup-box .title h1,.post-type-acf-field-group #acf-popup .acf-popup-box .title h2,.post-type-acf-field-group #acf-popup .acf-popup-box .title h3,.post-type-acf-field-group #acf-popup .acf-popup-box .title h4,.post-type-acf-field-group h3,.acf-headerbar h3{font-size:16px;font-weight:400}.p1{font-size:15px}.p2,.post-type-acf-field-group #acf-field-group-fields .acf-field-list.-empty .no-fields-message .no-fields-message-inner p{font-size:14px}.p3{font-size:13.5px}.p4,.acf-field-list .acf-sortable-handle,.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,.post-type-acf-field-group .acf-thead li,.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection__rendered,.post-type-acf-field-group .button,.post-type-acf-field-group input[type=text],.post-type-acf-field-group input[type=search],.post-type-acf-field-group input[type=number],.post-type-acf-field-group textarea,.post-type-acf-field-group select{font-size:13px}.p5,.acf-field-setting-display_format .acf-radio-list li label code,.acf-field-setting-return_format .acf-radio-list li label code,.acf-field-group-settings-footer .acf-created-on,.acf-fields .acf-field-settings-tab-bar li a,.acf-fields .acf-tab-wrap .acf-tab-group li a{font-size:12.5px}.p6,.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-object .handle li.li-field-label .row-options a,.acf-small{font-size:12px}.p7{font-size:11.5px}.p8{font-size:11px}.acf-page-title{color:#344054}.post-type-acf-field-group .acf-settings-wrap h1,.post-type-acf-field-group #acf-admin-tools h1{display:none}.post-type-acf-field-group a:focus{box-shadow:none;outline:none}.post-type-acf-field-group 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)}.post-type-acf-field-group input[type=text],.post-type-acf-field-group input[type=search],.post-type-acf-field-group input[type=number],.post-type-acf-field-group textarea,.post-type-acf-field-group 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}.post-type-acf-field-group input[type=text]:focus,.post-type-acf-field-group input[type=search]:focus,.post-type-acf-field-group input[type=number]:focus,.post-type-acf-field-group textarea:focus,.post-type-acf-field-group select:focus{outline:3px solid #ebf5fa;border-color:#399ccb}.post-type-acf-field-group input[type=text]:disabled,.post-type-acf-field-group input[type=search]:disabled,.post-type-acf-field-group input[type=number]:disabled,.post-type-acf-field-group textarea:disabled,.post-type-acf-field-group select:disabled{background-color:#f9fafb;color:#808a9e}.post-type-acf-field-group input[type=text]::placeholder,.post-type-acf-field-group input[type=search]::placeholder,.post-type-acf-field-group input[type=number]::placeholder,.post-type-acf-field-group textarea::placeholder,.post-type-acf-field-group select::placeholder{color:#98a2b3}.post-type-acf-field-group input[type=text]:read-only{background-color:#f9fafb;color:#98a2b3}.post-type-acf-field-group .acf-field.acf-field-number .acf-label,.post-type-acf-field-group .acf-field.acf-field-number .acf-input input[type=number]{max-width:180px}.post-type-acf-field-group textarea{box-sizing:border-box;padding-top:10px;padding-bottom:10px;height:80px;min-height:56px}.post-type-acf-field-group 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}.post-type-acf-field-group select:hover,.post-type-acf-field-group select:focus{color:#0783be}.post-type-acf-field-group select::before{content:"";display:block;position:absolute;top:5px;left:5px;width:20px;height:20px;background-color:red}.post-type-acf-field-group input[type=radio],.post-type-acf-field-group 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}.post-type-acf-field-group input[type=radio]:hover,.post-type-acf-field-group input[type=checkbox]:hover{background-color:#ebf5fa;border-color:#0783be}.post-type-acf-field-group input[type=radio]:checked,.post-type-acf-field-group input[type=radio]:focus-visible,.post-type-acf-field-group input[type=checkbox]:checked,.post-type-acf-field-group input[type=checkbox]:focus-visible{background-color:#ebf5fa;border-color:#0783be}.post-type-acf-field-group input[type=radio]:checked:before,.post-type-acf-field-group input[type=radio]:focus-visible:before,.post-type-acf-field-group input[type=checkbox]:checked:before,.post-type-acf-field-group 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}.post-type-acf-field-group input[type=radio]:active,.post-type-acf-field-group input[type=checkbox]:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.post-type-acf-field-group input[type=radio]:disabled,.post-type-acf-field-group input[type=checkbox]:disabled{background-color:#f9fafb;border-color:#d0d5dd}.post-type-acf-field-group input[type=radio]:checked:before,.post-type-acf-field-group input[type=radio]:focus:before{background-image:url("../../images/field-states/radio-active.svg")}.post-type-acf-field-group input[type=checkbox]:checked:before,.post-type-acf-field-group input[type=checkbox]:focus:before{background-image:url("../../images/field-states/checkbox-active.svg")}.post-type-acf-field-group .acf-radio-list li input[type=radio],.post-type-acf-field-group .acf-radio-list li input[type=checkbox],.post-type-acf-field-group .acf-checkbox-list li input[type=radio],.post-type-acf-field-group .acf-checkbox-list li input[type=checkbox]{margin-right:6px}.post-type-acf-field-group .acf-radio-list.acf-bl li,.post-type-acf-field-group .acf-checkbox-list.acf-bl li{margin-bottom:8px}.post-type-acf-field-group .acf-radio-list.acf-bl li:last-of-type,.post-type-acf-field-group .acf-checkbox-list.acf-bl li:last-of-type{margin-bottom:0}.post-type-acf-field-group .acf-radio-list label,.post-type-acf-field-group .acf-checkbox-list label{display:flex;align-items:center;align-content:center}.post-type-acf-field-group .acf-switch{width:42px;height:24px;border:none;background-color:#d0d5dd;border-radius:12px}.post-type-acf-field-group .acf-switch:hover{background-color:#98a2b3}.post-type-acf-field-group .acf-switch:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.post-type-acf-field-group .acf-switch.-on{background-color:#0783be}.post-type-acf-field-group .acf-switch.-on:hover{background-color:#066998}.post-type-acf-field-group .acf-switch.-on .acf-switch-slider{left:20px}.post-type-acf-field-group .acf-switch .acf-switch-off,.post-type-acf-field-group .acf-switch .acf-switch-on{visibility:hidden}.post-type-acf-field-group .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)}.post-type-acf-field-group .acf-field-true-false{display:flex;align-items:center}.post-type-acf-field-group .acf-field-true-false .acf-label{order:2;display:inline-flex;align-items:center;margin-bottom:0;margin-left:12px}.post-type-acf-field-group .acf-field-true-false .acf-label label{margin-bottom:0}.post-type-acf-field-group .acf-field-true-false .acf-label .acf-tip{margin-left:12px}.post-type-acf-field-group 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}.post-type-acf-field-group input::file-selector-button:hover{border-color:#066998;cursor:pointer;color:#066998 !important}.post-type-acf-field-group .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}.post-type-acf-field-group .button:hover{background-color:#f3f9fc;border-color:#0783be;color:#0783be}.post-type-acf-field-group .button:focus{background-color:#f3f9fc;outline:3px solid #ebf5fa;color:#0783be}.post-type-acf-field-group .edit-field-group-header{display:block !important}.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection{border:none;line-height:1}.post-type-acf-field-group .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}.post-type-acf-field-group .acf-input .select2-container--focus{outline:3px solid #ebf5fa;border-color:#399ccb;border-radius:6px}.post-type-acf-field-group .acf-input .select2-container--focus .select2-selection__rendered{border-color:#399ccb !important}.post-type-acf-field-group .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}.post-type-acf-field-group .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}.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field{margin:0;padding-left:6px}.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field:focus{outline:none;border:none}.post-type-acf-field-group .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding-top:0;padding-right:6px;padding-bottom:0;padding-left:6px}.post-type-acf-field-group .acf-input .select2-selection__clear{width:18px;height:18px;margin-top:12px;margin-right:0;text-indent:100%;white-space:nowrap;overflow:hidden}.post-type-acf-field-group .acf-input .select2-selection__clear:before{content:"";display:block;width:14px;height:14px;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}.post-type-acf-field-group .acf-input .select2-selection__clear:hover::before{background-color:#1d2939}.post-type-acf-field-group .acf-label{display:flex;align-items:center;justify-content:space-between}.post-type-acf-field-group .acf-label .acf-icon-help{width:18px;height:18px;background-color:#98a2b3}.post-type-acf-field-group .acf-label label{margin-bottom:0}.post-type-acf-field-group .acf-field-setting-name .acf-tip{position:absolute;top:0;left:654px;color:#98a2b3}.post-type-acf-field-group .acf-field-setting-name .acf-tip .acf-icon-help{width:18px;height:18px}.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 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:flex;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-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-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}}.acf-fields .acf-tab-wrap{background:#f9fafb;border-bottom-color:#1d2939}.acf-fields .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{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{display:flex;align-items:center;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{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:hover,.acf-fields .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{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{background:none;border-bottom-color:#0783be;color:#1d2939}#acf-field-group-options .acf-fields .acf-tab-wrap .acf-tab-group li.active a{padding-top:2px}.acf-field-editor .acf-field-settings-tab-bar{padding-left:72px}@media screen and (max-width: 600px){.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}.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")}.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-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.acf-field-object .li-field-label:hover:before{cursor:pointer}.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-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")}.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}.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-wrap .acf-input-sub{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-field-object .settings{border-left-color:#bf7dd7}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .acf-field-object-text.open .handle{background-color:#f2e8ff !important}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .handle{background-color:rgba(0,0,0,0)}.post-type-acf-field-group #acf-field-group-fields .acf-field-list-wrap .acf-input-sub .handle:hover{background-color:#fbf7ff}.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-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 .handle{background-color:#f2e8ff}.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 #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}.post-type-acf-field-group #acf-popup .acf-popup-box{min-width:480px}.post-type-acf-field-group #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}.post-type-acf-field-group #acf-popup .acf-popup-box .title h1,.post-type-acf-field-group #acf-popup .acf-popup-box .title h2,.post-type-acf-field-group #acf-popup .acf-popup-box .title h3,.post-type-acf-field-group #acf-popup .acf-popup-box .title h4{padding-left:0;color:#344054}.post-type-acf-field-group #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)}.post-type-acf-field-group #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")}.post-type-acf-field-group #acf-popup .acf-popup-box .title .acf-icon:hover:before{background-color:#0783be}.post-type-acf-field-group #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}.post-type-acf-field-group #acf-popup .acf-popup-box .inner p{margin-top:0;margin-bottom:0}.post-type-acf-field-group #acf-popup .acf-popup-box #acf-move-field-form .acf-field-select{margin-top:0}.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-bottom:-24px;margin-left:-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-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}.acf-field-setting-display_format .acf-label,.acf-field-setting-return_format .acf-label{margin-bottom:16px}.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}.post-type-acf-field-group .acf-field-setting-fc_layout{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)}@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-label,.post-type-acf-field-group .acf-field-setting-fc_layout .acf-input{max-width:100%}.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:600px;padding-right:32px;padding-left:32px}.post-type-acf-field-group .acf-field-settings-fc_head{min-height:64px;margin-bottom:24px;padding-right:24px;padding-left:24px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eaecf0}.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: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 .acf-field-settings-fc_head .acf-fl-actions{display:flex}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li{margin-right:16px}.post-type-acf-field-group .acf-field-settings-fc_head .acf-fl-actions li:last-of-type{margin-right:0}.acf-field-object-image .acf-hl[data-cols="3"]>li{width:auto}.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} diff --git a/assets/build/css/acf-global.css b/assets/build/css/acf-global.css index 76db6fb..d234708 100644 --- a/assets/build/css/acf-global.css +++ b/assets/build/css/acf-global.css @@ -1,6 +1,7 @@ /*!*****************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/advanced-custom-fields-pro/assets/src/sass/acf-global.scss ***! \*****************************************************************************************************************************************************************************************************************/ +@charset "UTF-8"; /*-------------------------------------------------------------------------------------------- * * Vars @@ -11,6 +12,11 @@ /* responsive */ /*-------------------------------------------------------------------------------------------- * +* ACF 6 ↓ +* +*--------------------------------------------------------------------------------------------*/ +/*-------------------------------------------------------------------------------------------- +* * Mixins * *--------------------------------------------------------------------------------------------*/ @@ -188,14 +194,17 @@ *---------------------------------------------------------------------------------------------*/ /* tooltip */ .acf-tooltip { - background: #2F353E; - border-radius: 5px; - color: #fff; - padding: 5px 10px; + background: #1D2939; + border-radius: 6px; + color: #D0D5DD; + padding-top: 8px; + padding-right: 12px; + padding-bottom: 10px; + padding-left: 12px; position: absolute; - font-size: 12px; - line-height: 1.4em; z-index: 900000; + max-width: 280px; + box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03); /* tip */ /* positions */ } @@ -554,6 +563,8 @@ a.acf-icon.dark.-minus:hover, a.acf-icon.dark.-cancel:hover { padding: 15px; } .acf-box .title h3 { + display: flex; + align-items: center; font-size: 14px; line-height: 1em; margin: 0; @@ -749,7 +760,7 @@ a.acf-icon.dark.-minus:hover, a.acf-icon.dark.-cancel:hover { .acf-tbody > li, .acf-tfoot > li { box-sizing: border-box; - padding: 8px 12px; + padding-top: 14px; font-size: 12px; line-height: 14px; } @@ -1013,7 +1024,7 @@ html[dir=rtl] #acf-popup .acf-popup-box .title .acf-icon { margin-right: -10px; } .acf-hl[data-cols] > li { - padding: 0 10px; + padding: 0 6px 0 10px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; @@ -1035,11 +1046,16 @@ html[dir=rtl] #acf-popup .acf-popup-box .title .acf-icon { /* mobile */ @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; } @@ -1243,11 +1259,35 @@ html[dir=rtl] .acf-table > tbody > tr > td.order + td { #acf-admin-tools .notice { margin-top: 10px; } - -.acf-meta-box-wrap { - margin-top: 10px; +#acf-admin-tools .acf-meta-box-wrap { /* acf-fields */ } +#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; +} +#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-meta-box-wrap .postbox { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; @@ -1270,11 +1310,6 @@ html[dir=rtl] .acf-table > tbody > tr > td.order + td { .acf-meta-box-wrap .postbox .handle-order-lower { display: none; } -.acf-meta-box-wrap .acf-fields { - border: #ebebeb solid 1px; - background: #fafafa; - border-radius: 3px; -} /* grid */ .acf-meta-box-wrap.-grid { @@ -1326,147 +1361,16 @@ html[dir=rtl] .acf-table > tbody > tr > td.order + td { display: block; width: 100%; min-height: 500px; - background: #fafafa; + background: #F9FAFB; + border-color: #D0D5DD; box-shadow: none; padding: 7px; - border-radius: 3px; + border-radius: 6px; } #acf-admin-tool-export .acf-panel-selection .acf-label { display: none; } -/*--------------------------------------------------------------------------------------------- -* -* Admin Navigation -* -*---------------------------------------------------------------------------------------------*/ -.acf-admin-toolbar { - background: #fff; - border-bottom: 1px solid #ccd0d4; - padding-top: 10px; -} -.acf-admin-toolbar h2 { - font-size: 14px; - line-height: 2.5714285714; - display: inline-block; - padding: 5px 0; - margin: 0 10px 0 0; -} -.acf-admin-toolbar h2 i { - vertical-align: middle; - color: #babbbc; -} -.acf-admin-toolbar .acf-tab { - display: inline-block; - font-size: 14px; - line-height: 2.5714285714; - padding: 5px; - margin: 0 5px; - text-decoration: none; - color: inherit; -} -.acf-admin-toolbar .acf-tab.is-active { - border-bottom: #0071a4 solid 3px; - padding-bottom: 10px; -} -.acf-admin-toolbar .acf-tab:hover { - color: #00a0d2; -} -.acf-admin-toolbar .acf-tab:focus { - box-shadow: none; -} -.acf-admin-toolbar a.btn-upgrade { - display: inline-flex; - background: #dee3ff; - border: 1px solid #c6d3f8; - box-sizing: border-box; - border-radius: 0.25rem; - padding: 0 0.75rem; - cursor: pointer; - vertical-align: middle; - margin-top: -6px; - margin-left: 20px; - text-decoration: none; -} -.acf-admin-toolbar a.btn-upgrade:hover { - background: #d1ddff; - border-color: #b9caf9; -} -.acf-admin-toolbar a.btn-upgrade p { - font-family: system-ui; - font-weight: 600; - letter-spacing: 0.2; - line-height: 1; - font-size: 0.625rem; - text-transform: uppercase; - color: #425fdd; - margin-left: 0.65rem; -} -#wpcontent .acf-admin-toolbar { - margin-left: -20px; - padding-left: 20px; -} -@media screen and (max-width: 600px) { - .acf-admin-toolbar { - display: none; - } -} - -/*--------------------------------------------------------------------------------------------- -* -* Field Groups -* -*---------------------------------------------------------------------------------------------*/ -.acf-admin-field-groups .tablenav.top { - display: none; -} -.acf-admin-field-groups .subsubsub { - margin-bottom: 3px; -} -.acf-admin-field-groups .wp-list-table td, .acf-admin-field-groups .wp-list-table th { - box-sizing: border-box; -} -.acf-admin-field-groups .wp-list-table tr:hover { - background: #f7f7f7; -} -@media screen and (min-width: 782px) { - .acf-admin-field-groups .wp-list-table .column-acf-count { - width: 10%; - } -} -.acf-admin-field-groups .wp-list-table .row-actions span.file { - display: block; - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; -} -.acf-admin-field-groups .acf-secondary-text { - color: #a0a5aa; -} - -.acf-multi-dashicon { - position: relative; - z-index: 1; -} -.acf-multi-dashicon:before, .acf-multi-dashicon:after { - width: 18px; - height: 18px; - line-height: 18px; - font-size: 14px; - background: #fff; - border: #7e8993 solid 1px; - border-radius: 2px; - display: block; -} -.acf-multi-dashicon:after { - content: ""; - position: absolute; - top: -3px; - left: -3px; - z-index: -1; - background: #e7e7e7; -} - .acf-css-tooltip { position: relative; } @@ -1662,5 +1566,2725 @@ html[dir=rtl] .acf-table > tbody > tr > td.order + td { background-size: 20px 20px; } } +/*-------------------------------------------------------------------------------------------- +* +* Wrap +* +*--------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .wrap { + margin-top: 48px; + margin-right: 32px; + margin-bottom: 0; + margin-left: 12px; +} +@media screen and (max-width: 768px) { + .post-type-acf-field-group .wrap { + margin-right: 8px; + margin-left: 8px; + } +} +@media screen and (max-width: 768px) { + .post-type-acf-field-group #wpcontent { + padding-left: 0; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Admin Postbox & ACF Postbox +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .postbox, +.post-type-acf-field-group .acf-box { + border: none; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1); +} +.post-type-acf-field-group .postbox .inside, +.post-type-acf-field-group .acf-box .inside { + padding-top: 24px; + padding-right: 24px; + padding-bottom: 24px; + padding-left: 24px; +} +.post-type-acf-field-group .postbox .acf-postbox-inner, +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .postbox .inner, +.post-type-acf-field-group .postbox .inside, +.post-type-acf-field-group .acf-box .inner, +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .postbox .postbox-header, +.post-type-acf-field-group .postbox .title, +.post-type-acf-field-group .acf-box .postbox-header, +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .postbox .postbox-header h2, +.post-type-acf-field-group .postbox .postbox-header h3, +.post-type-acf-field-group .postbox .title h2, +.post-type-acf-field-group .postbox .title h3, +.post-type-acf-field-group .acf-box .postbox-header h2, +.post-type-acf-field-group .acf-box .postbox-header h3, +.post-type-acf-field-group .acf-box .title h2, +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .postbox .hndle, +.post-type-acf-field-group .acf-box .hndle { + padding-top: 0; + padding-right: 24px; + padding-bottom: 0; + padding-left: 24px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Custom ACF postbox header +* +*---------------------------------------------------------------------------------------------*/ +.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; +} +.acf-postbox-header .acf-icon { + background-color: #98A2B3; +} + +/*--------------------------------------------------------------------------------------------- +* +* Screen options button & screen meta container +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group #screen-meta-links { + margin-right: 32px; +} +.post-type-acf-field-group #screen-meta-links .show-settings { + border-color: #D0D5DD; +} +@media screen and (max-width: 768px) { + .post-type-acf-field-group #screen-meta-links { + margin-right: 16px; + margin-bottom: 0; + } +} +.post-type-acf-field-group #screen-meta { + border-color: #D0D5DD; +} + +/*--------------------------------------------------------------------------------------------- +* +* Postbox headings +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group #poststuff .postbox-header h2, +.post-type-acf-field-group #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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Postbox drag state +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group.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; +} +.post-type-acf-field-group .ui-sortable-placeholder { + border: none; +} + +/*-------------------------------------------------------------------------------------------- +* +* Search summary +* +*--------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .subtitle strong { + margin-left: 5px; +} + +/*-------------------------------------------------------------------------------------------- +* +* Action strip +* +*--------------------------------------------------------------------------------------------*/ +.acf-actions-strip { + display: flex; +} +.acf-actions-strip .acf-btn { + margin-right: 8px; +} + +/*-------------------------------------------------------------------------------------------- +* +* Notices +* +*--------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .notice, +.post-type-acf-field-group #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, 0.1); + color: #344054; +} +.post-type-acf-field-group .notice.update-nag, +.post-type-acf-field-group #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; +} +.post-type-acf-field-group .notice .button, +.post-type-acf-field-group #lost-connection-notice .button { + height: auto; + margin-left: 8px; + padding: 0; + border: none; +} +.post-type-acf-field-group .notice > div, +.post-type-acf-field-group #lost-connection-notice > div { + margin-top: 0; + margin-bottom: 0; +} +.post-type-acf-field-group .notice p, +.post-type-acf-field-group #lost-connection-notice p { + flex: 1 0 auto; + margin: 0; + padding: 0; +} +.post-type-acf-field-group .notice p.help, +.post-type-acf-field-group #lost-connection-notice p.help { + margin-top: 0; + padding-top: 0; + color: rgba(52, 64, 84, 0.7); +} +.post-type-acf-field-group .notice .notice-dismiss, +.post-type-acf-field-group #lost-connection-notice .notice-dismiss { + position: absolute; + top: 4px; + right: 8px; +} +.post-type-acf-field-group .notice .notice-dismiss:before, +.post-type-acf-field-group #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"); +} +.post-type-acf-field-group .notice .notice-dismiss:hover::before, +.post-type-acf-field-group #lost-connection-notice .notice-dismiss:hover::before { + background-color: #344054; +} +.post-type-acf-field-group .notice:before, +.post-type-acf-field-group #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"); +} +.post-type-acf-field-group .notice:after, +.post-type-acf-field-group #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, 0.1); +} +.post-type-acf-field-group .notice .local-restore, +.post-type-acf-field-group #lost-connection-notice .local-restore { + align-items: center; + margin-top: -6px; + margin-bottom: 0; +} +.post-type-acf-field-group .notice.is-dismissible { + padding-right: 56px; +} +.post-type-acf-field-group .notice.notice-success { + background-color: #EDF7EF; + border-color: #B6DEB9; +} +.post-type-acf-field-group .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"); +} +.post-type-acf-field-group .notice.notice-success:after { + background-color: #52AA59; +} +.post-type-acf-field-group .notice.notice-error, +.post-type-acf-field-group #lost-connection-notice { + background-color: #F7EEEB; + border-color: #F1B6B3; +} +.post-type-acf-field-group .notice.notice-error:before, +.post-type-acf-field-group #lost-connection-notice:before { + -webkit-mask-image: url("../../images/icons/icon-warning.svg"); + mask-image: url("../../images/icons/icon-warning.svg"); +} +.post-type-acf-field-group .notice.notice-error:after, +.post-type-acf-field-group #lost-connection-notice:after { + background-color: #DA5A39; +} + +/*--------------------------------------------------------------------------------------------- +* +* Global +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group #wpcontent { + line-height: 140%; +} + +/*--------------------------------------------------------------------------------------------- +* +* Links +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group a { + color: #0783BE; +} + +/*--------------------------------------------------------------------------------------------- +* +* Headings +* +*---------------------------------------------------------------------------------------------*/ +.h1, .post-type-acf-field-group h1, +.acf-headerbar h1 { + font-size: 21px; + font-weight: 400; +} + +.h2, .acf-no-field-groups-wrapper .acf-no-field-groups-inner h2, .acf-page-title, .post-type-acf-field-group h2, +.acf-headerbar h2 { + font-size: 18px; + font-weight: 400; +} + +.h3, .post-type-acf-field-group h3, +.acf-headerbar h3, .post-type-acf-field-group .postbox .postbox-header h2, +.post-type-acf-field-group .postbox .postbox-header h3, +.post-type-acf-field-group .postbox .title h2, +.post-type-acf-field-group .postbox .title h3, +.post-type-acf-field-group .acf-box .postbox-header h2, +.post-type-acf-field-group .acf-box .postbox-header h3, +.post-type-acf-field-group .acf-box .title h2, +.post-type-acf-field-group .acf-box .title h3, .acf-postbox-header h2.acf-postbox-title, .post-type-acf-field-group #poststuff .postbox-header h2, +.post-type-acf-field-group #poststuff .postbox-header h3 { + font-size: 16px; + font-weight: 400; +} + +/*--------------------------------------------------------------------------------------------- +* +* Paragraphs +* +*---------------------------------------------------------------------------------------------*/ +.p1, #acf-field-group-pro-features h1 { + font-size: 15px; +} + +.p2, .acf-no-field-groups-wrapper .acf-no-field-groups-inner p, #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label { + font-size: 14px; +} + +.p3, .acf-admin-field-groups .wp-list-table .post-state, .post-type-acf-field-group .subtitle { + font-size: 13.5px; +} + +.p4, .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p, #acf-update-information .form-table th, +#acf-update-information .form-table td, #acf-admin-tools.tool-export .acf-panel h3, .acf-btn.acf-btn-sm, .acf-admin-toolbar .acf-tab, .acf-admin-field-groups .subsubsub li, .acf-admin-field-groups .wp-list-table tbody th, +.acf-admin-field-groups .wp-list-table tbody td, .acf-admin-field-groups .wp-list-table thead th, .acf-admin-field-groups .wp-list-table thead td, +.acf-admin-field-groups .wp-list-table tfoot th, .acf-admin-field-groups .wp-list-table tfoot td, .post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection__rendered, .post-type-acf-field-group .button, .post-type-acf-field-group input[type=text], +.post-type-acf-field-group input[type=search], +.post-type-acf-field-group input[type=number], +.post-type-acf-field-group textarea, +.post-type-acf-field-group select { + font-size: 13px; +} + +.p5, .acf-admin-field-groups .row-actions, .post-type-acf-field-group .notice .button, +.post-type-acf-field-group #lost-connection-notice .button { + font-size: 12.5px; +} + +.p6, #acf-update-information .acf-update-changelog p em, .acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small, .acf-admin-field-groups .row-actions, .acf-small { + font-size: 12px; +} + +.p7, .acf-tooltip, .post-type-acf-field-group .notice p.help, +.post-type-acf-field-group #lost-connection-notice p.help { + font-size: 11.5px; +} + +.p8 { + font-size: 11px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Page titles +* +*---------------------------------------------------------------------------------------------*/ +.acf-page-title { + color: #344054; +} + +/*--------------------------------------------------------------------------------------------- +* +* Hide old / native WP titles from pages +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .acf-settings-wrap h1, +.post-type-acf-field-group #acf-admin-tools h1 { + display: none; +} + +/*--------------------------------------------------------------------------------------------- +* +* Small +* +*---------------------------------------------------------------------------------------------*/ +/*--------------------------------------------------------------------------------------------- +* +* Link focus style +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group a:focus { + box-shadow: none; + outline: none; +} + +.post-type-acf-field-group a:focus-visible { + box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8); + outline: 1px solid transparent; +} + +.post-type-acf-field-group { + /*--------------------------------------------------------------------------------------------- + * + * All Inputs + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Read only text inputs + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Number fields + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Textarea + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Select + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Radio Button & Checkbox base styling + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Radio Buttons + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Checkboxes + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Radio Buttons & Checkbox lists + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * ACF Switch + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * File input button + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Action Buttons + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Edit field group header + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Select2 inputs + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * ACF label + * + *---------------------------------------------------------------------------------------------*/ + /*--------------------------------------------------------------------------------------------- + * + * Tooltip for field name field setting (result of a fix for keyboard navigation) + * + *---------------------------------------------------------------------------------------------*/ +} +.post-type-acf-field-group input[type=text], +.post-type-acf-field-group input[type=search], +.post-type-acf-field-group input[type=number], +.post-type-acf-field-group textarea, +.post-type-acf-field-group 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, 0.1); + border-radius: 6px; + color: #344054; +} +.post-type-acf-field-group input[type=text]:focus, +.post-type-acf-field-group input[type=search]:focus, +.post-type-acf-field-group input[type=number]:focus, +.post-type-acf-field-group textarea:focus, +.post-type-acf-field-group select:focus { + outline: 3px solid #EBF5FA; + border-color: #399CCB; +} +.post-type-acf-field-group input[type=text]:disabled, +.post-type-acf-field-group input[type=search]:disabled, +.post-type-acf-field-group input[type=number]:disabled, +.post-type-acf-field-group textarea:disabled, +.post-type-acf-field-group select:disabled { + background-color: #F9FAFB; + color: #808a9e; +} +.post-type-acf-field-group input[type=text]::placeholder, +.post-type-acf-field-group input[type=search]::placeholder, +.post-type-acf-field-group input[type=number]::placeholder, +.post-type-acf-field-group textarea::placeholder, +.post-type-acf-field-group select::placeholder { + color: #98A2B3; +} +.post-type-acf-field-group input[type=text]:read-only { + background-color: #F9FAFB; + color: #98A2B3; +} +.post-type-acf-field-group .acf-field.acf-field-number .acf-label, +.post-type-acf-field-group .acf-field.acf-field-number .acf-input input[type=number] { + max-width: 180px; +} +.post-type-acf-field-group textarea { + box-sizing: border-box; + padding-top: 10px; + padding-bottom: 10px; + height: 80px; + min-height: 56px; +} +.post-type-acf-field-group 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; +} +.post-type-acf-field-group select:hover, .post-type-acf-field-group select:focus { + color: #0783BE; +} +.post-type-acf-field-group select::before { + content: ""; + display: block; + position: absolute; + top: 5px; + left: 5px; + width: 20px; + height: 20px; + background-color: red; +} +.post-type-acf-field-group input[type=radio], +.post-type-acf-field-group 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; +} +.post-type-acf-field-group input[type=radio]:hover, +.post-type-acf-field-group input[type=checkbox]:hover { + background-color: #EBF5FA; + border-color: #0783BE; +} +.post-type-acf-field-group input[type=radio]:checked, .post-type-acf-field-group input[type=radio]:focus-visible, +.post-type-acf-field-group input[type=checkbox]:checked, +.post-type-acf-field-group input[type=checkbox]:focus-visible { + background-color: #EBF5FA; + border-color: #0783BE; +} +.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus-visible:before, +.post-type-acf-field-group input[type=checkbox]:checked:before, +.post-type-acf-field-group input[type=checkbox]:focus-visible:before { + content: ""; + position: relative; + top: -1px; + left: -1px; + width: 16px; + height: 16px; + margin: 0; + padding: 0; + background-color: transparent; + background-size: cover; + background-repeat: no-repeat; + background-position: center; +} +.post-type-acf-field-group input[type=radio]:active, +.post-type-acf-field-group input[type=checkbox]:active { + box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25); +} +.post-type-acf-field-group input[type=radio]:disabled, +.post-type-acf-field-group input[type=checkbox]:disabled { + background-color: #F9FAFB; + border-color: #D0D5DD; +} +.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus:before { + background-image: url("../../images/field-states/radio-active.svg"); +} +.post-type-acf-field-group input[type=checkbox]:checked:before, .post-type-acf-field-group input[type=checkbox]:focus:before { + background-image: url("../../images/field-states/checkbox-active.svg"); +} +.post-type-acf-field-group .acf-radio-list li input[type=radio], +.post-type-acf-field-group .acf-radio-list li input[type=checkbox], +.post-type-acf-field-group .acf-checkbox-list li input[type=radio], +.post-type-acf-field-group .acf-checkbox-list li input[type=checkbox] { + margin-right: 6px; +} +.post-type-acf-field-group .acf-radio-list.acf-bl li, +.post-type-acf-field-group .acf-checkbox-list.acf-bl li { + margin-bottom: 8px; +} +.post-type-acf-field-group .acf-radio-list.acf-bl li:last-of-type, +.post-type-acf-field-group .acf-checkbox-list.acf-bl li:last-of-type { + margin-bottom: 0; +} +.post-type-acf-field-group .acf-radio-list label, +.post-type-acf-field-group .acf-checkbox-list label { + display: flex; + align-items: center; + align-content: center; +} +.post-type-acf-field-group .acf-switch { + width: 42px; + height: 24px; + border: none; + background-color: #D0D5DD; + border-radius: 12px; +} +.post-type-acf-field-group .acf-switch:hover { + background-color: #98A2B3; +} +.post-type-acf-field-group .acf-switch:active { + box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25); +} +.post-type-acf-field-group .acf-switch.-on { + background-color: #0783BE; +} +.post-type-acf-field-group .acf-switch.-on:hover { + background-color: #066998; +} +.post-type-acf-field-group .acf-switch.-on .acf-switch-slider { + left: 20px; +} +.post-type-acf-field-group .acf-switch .acf-switch-off, +.post-type-acf-field-group .acf-switch .acf-switch-on { + visibility: hidden; +} +.post-type-acf-field-group .acf-switch .acf-switch-slider { + width: 20px; + height: 20px; + border: none; + border-radius: 100px; + box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06); +} +.post-type-acf-field-group .acf-field-true-false { + display: flex; + align-items: center; +} +.post-type-acf-field-group .acf-field-true-false .acf-label { + order: 2; + display: inline-flex; + align-items: center; + margin-bottom: 0; + margin-left: 12px; +} +.post-type-acf-field-group .acf-field-true-false .acf-label label { + margin-bottom: 0; +} +.post-type-acf-field-group .acf-field-true-false .acf-label .acf-tip { + margin-left: 12px; +} +.post-type-acf-field-group 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: transparent; + color: #0783BE !important; + border-radius: 6px; + border-width: 1px; + border-style: solid; + border-color: #0783BE; + text-decoration: none; +} +.post-type-acf-field-group input::file-selector-button:hover { + border-color: #066998; + cursor: pointer; + color: #066998 !important; +} +.post-type-acf-field-group .button { + display: inline-flex; + align-items: center; + height: 40px; + padding-right: 16px; + padding-left: 16px; + background-color: transparent; + border-width: 1px; + border-style: solid; + border-color: #0783BE; + border-radius: 6px; + color: #0783BE; +} +.post-type-acf-field-group .button:hover { + background-color: #f3f9fc; + border-color: #0783BE; + color: #0783BE; +} +.post-type-acf-field-group .button:focus { + background-color: #f3f9fc; + outline: 3px solid #EBF5FA; + color: #0783BE; +} +.post-type-acf-field-group .edit-field-group-header { + display: block !important; +} +.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection { + border: none; + line-height: 1; +} +.post-type-acf-field-group .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, 0.1); + border-radius: 6px; + color: #344054; +} +.post-type-acf-field-group .acf-input .select2-container--focus { + outline: 3px solid #EBF5FA; + border-color: #399CCB; + border-radius: 6px; +} +.post-type-acf-field-group .acf-input .select2-container--focus .select2-selection__rendered { + border-color: #399CCB !important; +} +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field { + margin: 0; + padding-left: 6px; +} +.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field:focus { + outline: none; + border: none; +} +.post-type-acf-field-group .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered { + padding-top: 0; + padding-right: 6px; + padding-bottom: 0; + padding-left: 6px; +} +.post-type-acf-field-group .acf-input .select2-selection__clear { + width: 18px; + height: 18px; + margin-top: 12px; + margin-right: 0; + text-indent: 100%; + white-space: nowrap; + overflow: hidden; +} +.post-type-acf-field-group .acf-input .select2-selection__clear:before { + content: ""; + display: block; + width: 14px; + height: 14px; + 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; +} +.post-type-acf-field-group .acf-input .select2-selection__clear:hover::before { + background-color: #1D2939; +} +.post-type-acf-field-group .acf-label { + display: flex; + align-items: center; + justify-content: space-between; +} +.post-type-acf-field-group .acf-label .acf-icon-help { + width: 18px; + height: 18px; + background-color: #98A2B3; +} +.post-type-acf-field-group .acf-label label { + margin-bottom: 0; +} +.post-type-acf-field-group .acf-field-setting-name .acf-tip { + position: absolute; + top: 0; + left: 654px; + color: #98A2B3; +} +.post-type-acf-field-group .acf-field-setting-name .acf-tip .acf-icon-help { + width: 18px; + height: 18px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Field Groups +* +*---------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups .tablenav.top { + display: none; +} +.acf-admin-field-groups .subsubsub { + margin-bottom: 3px; +} +.acf-admin-field-groups .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, 0.1); +} +.acf-admin-field-groups .wp-list-table strong { + color: #98A2B3; + margin: 0; +} +.acf-admin-field-groups .wp-list-table a.row-title { + font-size: 13px !important; + font-weight: 500; +} +.acf-admin-field-groups .wp-list-table th, +.acf-admin-field-groups .wp-list-table td { + color: #344054; +} +.acf-admin-field-groups .wp-list-table th.sortable a, +.acf-admin-field-groups .wp-list-table td.sortable a { + padding: 0; +} +.acf-admin-field-groups .wp-list-table th.check-column, +.acf-admin-field-groups .wp-list-table td.check-column { + padding-top: 12px; + padding-right: 16px; + padding-left: 16px; +} +@media screen and (max-width: 880px) { + .acf-admin-field-groups .wp-list-table th.check-column, +.acf-admin-field-groups .wp-list-table td.check-column { + vertical-align: top; + padding-right: 2px; + padding-left: 10px; + } +} +.acf-admin-field-groups .wp-list-table th input, +.acf-admin-field-groups .wp-list-table td input { + margin: 0; + padding: 0; +} +.acf-admin-field-groups .wp-list-table thead th, .acf-admin-field-groups .wp-list-table thead td, +.acf-admin-field-groups .wp-list-table tfoot th, .acf-admin-field-groups .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-admin-field-groups .wp-list-table thead th, .acf-admin-field-groups .wp-list-table thead td, +.acf-admin-field-groups .wp-list-table tfoot th, .acf-admin-field-groups .wp-list-table tfoot td { + padding-right: 16px; + padding-left: 8px; + } +} +@media screen and (max-width: 880px) { + .acf-admin-field-groups .wp-list-table thead th.check-column, .acf-admin-field-groups .wp-list-table thead td.check-column, +.acf-admin-field-groups .wp-list-table tfoot th.check-column, .acf-admin-field-groups .wp-list-table tfoot td.check-column { + vertical-align: middle; + } +} +.acf-admin-field-groups .wp-list-table tbody th, +.acf-admin-field-groups .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-admin-field-groups .wp-list-table tbody th, +.acf-admin-field-groups .wp-list-table tbody td { + padding-right: 16px; + padding-left: 8px; + } +} +.acf-admin-field-groups .wp-list-table .column-acf-key { + white-space: nowrap; +} +.acf-admin-field-groups .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-admin-field-groups .wp-list-table .acf-location .dashicons { + position: relative; + bottom: -2px; + width: 16px; + height: 16px; + margin-right: 6px; + font-size: 16px; + color: #98A2B3; +} +.acf-admin-field-groups .wp-list-table .post-state { + color: #667085; +} +.acf-admin-field-groups .wp-list-table tr:hover, +.acf-admin-field-groups .wp-list-table tr:focus-within { + background: #f7f7f7; +} +.acf-admin-field-groups .wp-list-table tr:hover .row-actions, +.acf-admin-field-groups .wp-list-table tr:focus-within .row-actions { + margin-bottom: 0; +} +@media screen and (min-width: 782px) { + .acf-admin-field-groups .wp-list-table .column-acf-count { + width: 10%; + } +} +.acf-admin-field-groups .wp-list-table .row-actions span.file { + display: block; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.acf-admin-field-groups .row-actions { + margin-top: 2px; + padding-top: 0; + padding-right: 0; + padding-bottom: 0; + padding-left: 0; + line-height: 14px; + color: #D0D5DD; +} +.acf-admin-field-groups .row-actions .trash a { + color: #d94f4f; +} +.acf-admin-field-groups .widefat thead td.check-column, +.acf-admin-field-groups .widefat tfoot td.check-column { + padding-top: 0; +} + +/*-------------------------------------------------------------------------------------------- +* +* Row actions +* +*--------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups .row-actions a:hover { + color: #044767; +} +.acf-admin-field-groups .row-actions .trash a { + color: #a00; +} +.acf-admin-field-groups .row-actions .trash a:hover { + color: #f00; +} +.acf-admin-field-groups .row-actions.visible { + margin-bottom: 0; + opacity: 1; +} + +/*-------------------------------------------------------------------------------------------- +* +* Row hover +* +*--------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups #the-list tr:hover td, +.acf-admin-field-groups #the-list tr:hover th { + background-color: #f7fbfd; +} + +/*--------------------------------------------------------------------------------------------- +* +* Table Nav +* +*---------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups .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; +} + +/*-------------------------------------------------------------------------------------------- +* +* Search box +* +*--------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups #posts-filter p.search-box { + margin-top: 5px; + margin-right: 0; + margin-bottom: 24px; + margin-left: 0; +} +.acf-admin-field-groups #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-admin-field-groups #posts-filter p.search-box { + display: flex; + box-sizing: border-box; + padding-right: 24px; + margin-right: 16px; + } + .acf-admin-field-groups #posts-filter p.search-box #post-search-input { + min-width: auto; + } +} + +/*-------------------------------------------------------------------------------------------- +* +* Status tabs +* +*--------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups .subsubsub { + display: flex; + align-items: flex-end; + height: 40px; + margin-bottom: 16px; +} +.acf-admin-field-groups .subsubsub li { + margin-top: 0; + margin-right: 4px; + color: #98A2B3; +} +.acf-admin-field-groups .subsubsub li .count { + color: #667085; +} + +/*-------------------------------------------------------------------------------------------- +* +* Pagination +* +*--------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups .tablenav-pages { + display: flex; + align-items: center; +} +.acf-admin-field-groups .tablenav-pages .displaying-num { + margin-top: 0; + margin-right: 16px; + margin-bottom: 0; + margin-left: 0; +} +.acf-admin-field-groups .tablenav-pages .pagination-links { + display: flex; + align-items: center; +} +.acf-admin-field-groups .tablenav-pages .pagination-links #table-paging { + margin-top: 0; + margin-right: 4px; + margin-bottom: 0; + margin-left: 8px; +} +.acf-admin-field-groups .tablenav-pages .pagination-links #table-paging .total-pages { + margin-right: 0; +} +.acf-admin-field-groups .tablenav-pages.one-page .pagination-links { + display: none; +} + +/*-------------------------------------------------------------------------------------------- +* +* Pagination buttons & icons +* +*--------------------------------------------------------------------------------------------*/ +.acf-admin-field-groups .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: transparent; +} +.acf-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(1), .acf-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(2), .acf-admin-field-groups .tablenav-pages .pagination-links .button:last-child, .acf-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(1):before, .acf-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(2):before, .acf-admin-field-groups .tablenav-pages .pagination-links .button:last-child:before, .acf-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:hover { + border-color: #066998; + background-color: rgba(7, 131, 190, 0.05); +} +.acf-admin-field-groups .tablenav-pages .pagination-links .button:hover:before { + background-color: #066998; +} +.acf-admin-field-groups .tablenav-pages .pagination-links .button.disabled { + background-color: transparent !important; +} +.acf-admin-field-groups .tablenav-pages .pagination-links .button.disabled.disabled:before { + background-color: #D0D5DD; +} + +/*--------------------------------------------------------------------------------------------- +* +* Empty state +* +*---------------------------------------------------------------------------------------------*/ +.acf-no-field-groups-wrapper { + display: flex; + justify-content: center; + padding-top: 48px; + padding-bottom: 48px; +} +.acf-no-field-groups-wrapper .acf-no-field-groups-inner { + display: flex; + flex-wrap: wrap; + justify-content: center; + align-content: center; + align-items: flex-start; + text-align: center; + max-width: 380px; + 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 { + flex: 1 0 100%; +} +.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2 { + margin-top: 32px; + margin-bottom: 0; + padding: 0; + color: #344054; +} +.acf-no-field-groups-wrapper .acf-no-field-groups-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 { + display: block; + position: relative; + margin-top: 32px; +} +.acf-no-field-groups-wrapper .acf-no-field-groups-inner img { + max-width: 284px; + margin-bottom: 0; +} +.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-btn { + margin-top: 32px; +} + +.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 { + background-color: transparent !important; +} +.acf-no-field-groups .wp-list-table thead, +.acf-no-field-groups .wp-list-table tfoot { + display: none; +} +.acf-no-field-groups .no-pages { + display: none; +} + +/*--------------------------------------------------------------------------------------------- +* +* Small screen list table info toggle +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .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; +} +.post-type-acf-field-group .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"); +} + +/*--------------------------------------------------------------------------------------------- +* +* Small screen checkbox +* +*---------------------------------------------------------------------------------------------*/ +@media screen and (max-width: 880px) { + .post-type-acf-field-group .widefat th input[type=checkbox], +.post-type-acf-field-group .widefat thead td input[type=checkbox], +.post-type-acf-field-group .widefat tfoot td input[type=checkbox] { + margin-bottom: 0; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Admin Navigation +* +*---------------------------------------------------------------------------------------------*/ +.acf-admin-toolbar { + display: flex; + justify-content: flex-start; + align-content: center; + align-items: center; + position: unset; + top: 32px; + height: 72px; + z-index: 800; + background: #344054; + color: #98A2B3; +} +@media screen and (max-width: 880px) { + .acf-admin-toolbar { + position: static; + } +} +.acf-admin-toolbar .acf-logo { + margin-right: 32px; +} +.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: transparent; + 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; +} +#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; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Admin Toolbar Icons +* +*---------------------------------------------------------------------------------------------*/ +.acf-admin-toolbar .acf-tab i.acf-icon { + display: none; + margin-right: 8px; + margin-left: -2px; +} +.acf-admin-toolbar .acf-tab.acf-header-tab-acf-field-group 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 { + display: inline-flex; +} +.acf-admin-toolbar .acf-tab.is-active i.acf-icon, .acf-admin-toolbar .acf-tab:hover i.acf-icon { + background-color: #EAECF0; +} +.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-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"); +} + +/*--------------------------------------------------------------------------------------------- +* +* Hide WP default controls +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group h1.wp-heading-inline { + display: none; +} +.post-type-acf-field-group .wrap .wp-heading-inline + .page-title-action { + display: none; +} + +/*--------------------------------------------------------------------------------------------- +* +* Headerbar +* +*---------------------------------------------------------------------------------------------*/ +.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, 0.1); +} +.acf-headerbar .acf-headerbar-inner { + flex: 1 1 auto; + display: flex; + align-items: center; + justify-content: space-between; + max-width: 1440px; +} +.acf-headerbar .acf-page-title { + margin-top: 0; + margin-right: 16px; + margin-bottom: 0; + margin-left: 0; + padding-top: 0; + padding-right: 0; + padding-bottom: 0; + padding-left: 0; +} +@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-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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Edit Field Group Headerbar +* +*---------------------------------------------------------------------------------------------*/ +.acf-headerbar-field-editor { + position: sticky; + top: 32px; + z-index: 700; + 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; +} + +/*--------------------------------------------------------------------------------------------- +* +* ACF Buttons +* +*---------------------------------------------------------------------------------------------*/ +.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, 0.2); + text-decoration: none; + color: #fff !important; + transition: all 0.2s ease-in-out; + transition-property: background, border, box-shadow; +} +.acf-btn:disabled { + background-color: red; +} +.acf-btn:hover { + background-color: #066998; + color: #fff; + cursor: pointer; +} +.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: transparent; + color: #0783BE !important; + border-color: #0783BE; +} +.acf-btn.acf-btn-secondary:hover { + background-color: #f3f9fc; +} +.acf-btn.acf-btn-tertiary { + background-color: transparent; + color: #667085 !important; + border-color: #D0D5DD; +} +.acf-btn.acf-btn-tertiary:hover { + color: #667085 !important; + border-color: #98A2B3; +} + +/*--------------------------------------------------------------------------------------------- +* +* Button icons +* +*---------------------------------------------------------------------------------------------*/ +.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: 18px; + height: 18px; + -webkit-mask-size: 18px; + mask-size: 18px; + margin-right: 4px; + margin-left: -2px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Delete field group button +* +*---------------------------------------------------------------------------------------------*/ +.acf-btn.acf-delete-field-group:hover { + background-color: #fdf8f6; + border-color: #DA5A39 !important; + color: #DA5A39 !important; +} + +/*-------------------------------------------------------------------------------------------- +* +* Icon base styling +* +*--------------------------------------------------------------------------------------------*/ +.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; +} + +/*-------------------------------------------------------------------------------------------- +* +* Icons +* +*--------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group { + /*-------------------------------------------------------------------------------------------- + * + * Inactive group icon + * + *--------------------------------------------------------------------------------------------*/ +} +.post-type-acf-field-group i.acf-icon-plus { + -webkit-mask-image: url("../../images/icons/icon-add.svg"); + mask-image: url("../../images/icons/icon-add.svg"); +} +.post-type-acf-field-group i.acf-icon-stars { + -webkit-mask-image: url("../../images/icons/icon-stars.svg"); + mask-image: url("../../images/icons/icon-stars.svg"); +} +.post-type-acf-field-group i.acf-icon-help { + -webkit-mask-image: url("../../images/icons/icon-help.svg"); + mask-image: url("../../images/icons/icon-help.svg"); +} +.post-type-acf-field-group i.acf-icon-key { + -webkit-mask-image: url("../../images/icons/icon-key.svg"); + mask-image: url("../../images/icons/icon-key.svg"); +} +.post-type-acf-field-group i.acf-icon-trash { + -webkit-mask-image: url("../../images/icons/icon-trash.svg"); + mask-image: url("../../images/icons/icon-trash.svg"); +} +.post-type-acf-field-group i.acf-icon-arrow-right { + -webkit-mask-image: url("../../images/icons/icon-arrow-right.svg"); + mask-image: url("../../images/icons/icon-arrow-right.svg"); +} +.post-type-acf-field-group i.acf-icon-arrow-left { + -webkit-mask-image: url("../../images/icons/icon-arrow-left.svg"); + mask-image: url("../../images/icons/icon-arrow-left.svg"); +} +.post-type-acf-field-group i.acf-icon-chevron-right, +.post-type-acf-field-group .acf-icon.-right { + -webkit-mask-image: url("../../images/icons/icon-chevron-right.svg"); + mask-image: url("../../images/icons/icon-chevron-right.svg"); +} +.post-type-acf-field-group i.acf-icon-chevron-left, +.post-type-acf-field-group .acf-icon.-left { + -webkit-mask-image: url("../../images/icons/icon-chevron-left.svg"); + mask-image: url("../../images/icons/icon-chevron-left.svg"); +} +.post-type-acf-field-group i.acf-icon-key-solid { + -webkit-mask-image: url("../../images/icons/icon-key-solid.svg"); + mask-image: url("../../images/icons/icon-key-solid.svg"); +} +.post-type-acf-field-group i.acf-icon-globe, +.post-type-acf-field-group .acf-icon.-globe { + -webkit-mask-image: url("../../images/icons/icon-globe.svg"); + mask-image: url("../../images/icons/icon-globe.svg"); +} +.post-type-acf-field-group i.acf-icon-image, +.post-type-acf-field-group .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"); +} +.post-type-acf-field-group .post-type-acf-field-group .post-state { + font-weight: normal; +} +.post-type-acf-field-group .post-type-acf-field-group .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"); +} +.post-type-acf-field-group .post-type-acf-field-group .post-state .dashicons.dashicons-hidden:before { + display: none; +} + +/*-------------------------------------------------------------------------------------------- +* +* Edit field group page postbox header icons +* +*--------------------------------------------------------------------------------------------*/ +#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 { + 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 { + 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; +} + +#acf-field-group-fields .postbox-header h2:before, +h3.acf-sub-field-list-title:before { + -webkit-mask-image: url("../../images/icons/icon-fields.svg"); + mask-image: url("../../images/icons/icon-fields.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"); +} + +/*-------------------------------------------------------------------------------------------- +* +* Postbox expand / collapse icon +* +*--------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .postbox-header .handle-actions { + display: flex; +} +.post-type-acf-field-group .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 { + -webkit-mask-image: url("../../images/icons/icon-chevron-down.svg"); + mask-image: url("../../images/icons/icon-chevron-down.svg"); +} + +/*--------------------------------------------------------------------------------------------- +* +* Tools & updates page heading icons +* +*---------------------------------------------------------------------------------------------*/ +.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 #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"); +} + +/*-------------------------------------------------------------------------------------------- +* +* Admin field icons +* +*--------------------------------------------------------------------------------------------*/ +.acf-admin-single-field-group .acf-input .acf-icon { + width: 18px; + height: 18px; +} + +/*-------------------------------------------------------------------------------------------- +* +* Field type icon base styling +* +*--------------------------------------------------------------------------------------------*/ +.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 icons +* +*--------------------------------------------------------------------------------------------*/ +.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"); +} + +/*--------------------------------------------------------------------------------------------- +* +* Tools page layout +* +*---------------------------------------------------------------------------------------------*/ +#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; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Tools export pages +* +*---------------------------------------------------------------------------------------------*/ +#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; +} + +/*--------------------------------------------------------------------------------------------- +* +* Updates layout +* +*---------------------------------------------------------------------------------------------*/ +.acf-settings-wrap.acf-updates { + display: grid; + grid-template-columns: 65% 1fr; + grid-template-rows: min-content 1.3fr; + gap: 32px 32px; + grid-template-areas: "acf-admin-notice acf-admin-notice" ". ."; +} +@media screen and (max-width: 880px) { + .acf-settings-wrap.acf-updates { + 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-notice, +.post-type-acf-field-group .notice { + grid-area: acf-admin-notice; + margin-bottom: 0 !important; +} + +/*--------------------------------------------------------------------------------------------- +* +* ACF Box +* +*---------------------------------------------------------------------------------------------*/ +.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%; + } +} + +/*--------------------------------------------------------------------------------------------- +* +* Notices +* +*---------------------------------------------------------------------------------------------*/ +.acf-settings-wrap.acf-updates .acf-admin-notice { + flex: 1 1 100%; + margin-top: 16px; + margin-right: 0; + margin-bottom: 0 !important; + margin-left: 0; +} + +/*--------------------------------------------------------------------------------------------- +* +* License information +* +*---------------------------------------------------------------------------------------------*/ +#acf-license-information .acf-activation-form { + margin-top: 24px; +} +#acf-license-information label { + font-weight: bold; +} +#acf-license-information .acf-input-wrap { + margin-top: 8px; + margin-bottom: 24px; +} +#acf-license-information #acf_pro_license { + width: 100%; +} + +/*--------------------------------------------------------------------------------------------- +* +* Update information table +* +*---------------------------------------------------------------------------------------------*/ +#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; +} + +/*-------------------------------------------------------------------------------------------- +* +* Header upsell button +* +*--------------------------------------------------------------------------------------------*/ +.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, #2C9FB8 0.44%, #A45CFF 113.3%); + background-size: 180% 80%; + background-position: 100% 0; + transition: background-position 0.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; +} + +/*-------------------------------------------------------------------------------------------- +* +* Upsell block +* +*--------------------------------------------------------------------------------------------*/ +#acf-field-group-pro-features .acf-field-group-pro-features-wrapper { + display: flex; + justify-content: flex-start; + align-content: stretch; + align-items: center; +} +@media screen and (max-width: 768px) { + #acf-field-group-pro-features .acf-field-group-pro-features-wrapper { + flex-direction: row; + flex-wrap: wrap; + justify-content: flex-start; + align-content: flex-start; + align-items: flex-start; + } + #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content, +#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions { + flex: 0 1 100%; + } +} +#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content { + flex: 1 1 auto; + margin-right: 40px; +} +@media screen and (max-width: 768px) { + #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content { + margin-right: 0; + margin-bottom: 8px; + } +} +#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions { + display: flex; + flex-direction: row; + justify-content: flex-end; + min-width: 160px; +} +@media screen and (max-width: 768px) { + #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions { + justify-content: flex-start; + } +} +#acf-field-group-pro-features.postbox { + display: flex; + align-items: center; + min-height: 120px; + background-image: linear-gradient(to right, #1d4373, #24437e, #304288, #413f8f, #543a95); + color: #EAECF0; +} +#acf-field-group-pro-features.postbox .postbox-header { + display: none; +} +#acf-field-group-pro-features.postbox .inside { + width: 100%; + border: none; +} +#acf-field-group-pro-features h1 { + margin-top: 0; + margin-bottom: 4px; + padding-top: 0; + padding-bottom: 0; + font-weight: bold; + color: #F9FAFB; +} +#acf-field-group-pro-features h1 .acf-icon { + margin-right: 8px; +} +#acf-field-group-pro-features .acf-btn { + display: inline-flex; + background-color: rgba(255, 255, 255, 0.2); + border: none; +} +#acf-field-group-pro-features .acf-btn:hover { + background-color: rgba(255, 255, 255, 0.3); +} +#acf-field-group-pro-features .acf-btn .acf-icon { + margin-right: -2px; + margin-left: 8px; +} +#acf-field-group-pro-features .acf-pro-features-list { + display: flex; + justify-content: flex-start; + align-items: center; + flex-wrap: wrap; + margin-top: 16px; + margin-bottom: 0; +} +@media screen and (max-width: 768px) { + #acf-field-group-pro-features .acf-pro-features-list { + flex-direction: row; + flex-wrap: wrap; + justify-content: flex-start; + align-content: flex-start; + align-items: flex-start; + } +} +#acf-field-group-pro-features .acf-pro-features-list li { + display: flex; + box-sizing: border-box; + margin-right: 32px; + margin-bottom: 6px; +} +@media screen and (max-width: 880px) { + #acf-field-group-pro-features .acf-pro-features-list li { + flex: 0 1 calc(33.3% - 32px); + } +} +@media screen and (max-width: 640px) { + #acf-field-group-pro-features .acf-pro-features-list li { + flex: 0 1 100%; + } +} +#acf-field-group-pro-features .acf-pro-features-list li:last-child { + margin-right: 0; +} +#acf-field-group-pro-features .acf-pro-features-list li:before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + margin-right: 8px; + background-color: #52AA59; + 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-check-circle-solid.svg"); + mask-image: url("../../images/icons/icon-check-circle-solid.svg"); +} /*# sourceMappingURL=acf-global.css.map*/ \ No newline at end of file diff --git a/assets/build/css/acf-global.css.map b/assets/build/css/acf-global.css.map index 08093fd..ebee2e7 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;;;;8FAAA;AAMA;AAOA;AAQA;ACrBA;;;;8FAAA;ACCA;;;;8FAAA;AAMA;AACA;EAAU;EAAY;EAAW;EAAkB;EAAgB;ACiBnE;;ADhBA;EAAe;EAAa;EAAgB;EAAW;ACuBvD;;ADtBA;EAAsB;AC0BtB;;ADvBA;AACA;;;EAGI;EACA;EACA;AC0BJ;;ADxBA;;;EAGI;AC2BJ;;ADvBA;AACA;EAAU;EAAY;EAAW;EAAkB;EAAgB;AC+BnE;;AD9BA;EAAe;EAAgB;EAAW;EAAY;ACqCtD;;ADlCA;AACA;EACC;ACqCD;;ADnCA;EACC;ACsCD;ADrCC;EAAI;ACwCL;;ADrCA;AACA;EAAU;ACyCV;;ADxCA;EAAU;AC4CV;;AD3CA;EAAU;AC+CV;;AD5CA;AACA;EAAU;ACgDV;;AD/CA;EAAU;ACmDV;;ADlDA;EAAU;ACsDV;;ADnDA;AACA;;EAEC;EACA;EACA;EACA;EACA;ACsDD;;ADlDA;AACA;EACC;ACqDD;;ADlDA;EACC;ACqDD;;ADjDA;AACA;EACC;ACoDD;;ADhDA;AACA;EACC;ACmDD;;AD/CA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;ACiDD;;AD9CA;EACC;EACA;EACA;EACA;EAEA;EACA;ACgDD;;AD5CA;AACA;EAAiB;ACgDjB;;AD/CA;EAAiB;ACmDjB;;ADjDA;EAA4B;ACqD5B;;ADpDA;EAA4B;ACwD5B;;ADtDA;AACA;EACC;EACA;EACA;EACA;ACyDD;;ADrDA;;;;+FAAA;AAMA;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EAUA;AC4CJ;ADrDI;EACC;EACA;EACA;EACA;EACA;ACuDL;ADlDI;EACC;ACoDL;ADlDK;EACF;EACA;EACA;EACA;EACA;ACoDH;ADhDI;EACC;ACkDL;ADhDK;EACF;EACA;EACA;EACA;EACA;ACkDH;AD9CI;EACA;ACgDJ;AD9CI;EACD;EACA;EACA;EACA;EACA;ACgDH;AD5CI;EACA;AC8CJ;AD5CI;EACD;EACA;EACA;EACA;EACA;AC8CH;AD1CI;EACF;AC4CF;;ADtCA;AACA;EACC;ACyCD;ADvCC;EACC;EACA;ACyCF;ADvCE;EACC;ACyCH;ADtCE;EACC;ACwCH;;ADnCA;EACC;EACA;EACA;EACA;EACA;EACA;ACsCD;;ADnCA;EACC;EACA;ACsCD;;ADlCA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACqCD;ADnCC;ED7OA;EACA;EACA;EACA;AEmRD;;ADnCA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACsCD;ADpCC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACsCF;;ADjCA;EACC;ACoCD;;ADlCA;EACC;ACqCD;;ADnCA;EACC;ACsCD;;ADpCA;EACC;ACuCD;;ADrCA;EACC;ACwCD;;ADtCA;EACC;EAGA;ACuCD;;ADrCA;EACC;EAGA;ACsCD;;ADpCA;EACC;EAGA;ACqCD;;ADnCA;EACC;EAGA;ACoCD;;ADlCA;EACC;ACqCD;;ADnCA;EACC;EAGA;EACA;ACoCD;;ADlCA;EACC;ACqCD;;ADnCA;EACC;EAGA;ACoCD;;ADlCA;EACC;EAGA;ACmCD;;ADjCA;EACC;ACoCD;;ADlCA;EACC;EAGA;ACmCD;;ADjCA;EACC;EAGA;ACkCD;;ADhCA;EACC;ACmCD;;ADjCA;EACC;ACoCD;;ADhCA;EACC;ACmCD;ADlCC;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACmCF;ADjCC;EACC;EACA;ACmCF;ADjCC;EACC;ACmCF;;AD7BA;EACC;EAGA;AC8BD;;AD5BA;EACC;EAGA;AC6BD;;ADzBA;EACC;EACA;EACA;AC4BD;;ADxBA;EACC;EACA;EACA;EACA;EACA;EACA;AC2BD;ADxBC;EACC;EACA;EACA;AC0BF;ADxBC;EAEC;EACA;EACA;ACyBF;ADrBC;EAEC;EACA;ACsBF;;ADjBA;EACC;EACA;EACA;ACoBD;;ADhBA;EACC;EACA;EACA;ACmBD;;ADfA;EACC;EACA;EACA;ACkBD;;ADfC;EACC;EACA;ACkBF;ADhBC;EAEC;ACiBF;;ADZA;EACC;EACA;EACA;ACeD;ADbC;EACC;EACA;ACeF;ADbC;EAEC;ACcF;;ADTA;;EAEC;EACA;EACA;EACA;ACYD;ADPE;;;EAEC;ACUH;;ADLA;;;;8FAAA;AAKA;EACI;EACA;EACA;EACA;EAEA;EA6CH;ACrCD;ADPI;EACF;EACG;EACA;ACSL;ADPE;EACC;EACG;EACA;EACA;ACSN;ADJC;EACI;ACML;ADHC;EACC;EACG;EACA;EACA;EACA;ACKL;ADFC;EACC;ACIF;ADDC;EACC;ACGF;ADAC;EACC;ACEF;ADEE;EACC;ACAH;ADKC;EACI;EACA;EACA;EACA;ACHL;ADKK;EACC;ACHN;AFniBC;EC4iBC,qBFrjBiB;AG+iBnB;ADOE;;EAEC,qBFxjBgB;AGmjBnB;;ADUA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA,mBFjmBY;EEkmBZ;ACRD;ADUC;EACC;EACA;EACA;EACA;EACA;ACRF;ADWC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ACTF;ADUE;EACC;ACRH;ADaC;EACC;ACXF;ADeC;EACC,mBF/nBU;EEgoBV;ACbF;ADiBC;EACC,mBFpoBY;EEqoBZ;ACfF;ADmBC;EACC,mBFzoBY;EE0oBZ;ACjBF;;ADsBA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACG;EACA;EACA;EAEA;EAqBA;EAmBA;EAuBA;ACjFJ;ADsBK;;;EACF;EACA;EACA;EACA;EACG;EACA;AClBN;ADqBE;;EACC;EACA;AClBH;AD6BG;EACI,qBF5qBY;EE6qBf;AC3BJ;AD6BI;EACC;AC3BL;ADuCK;EACF;ACrCH;ADuCG;EACC,qBF/rBe;EEgsBf;ACrCJ;ADuCI;EACC;ACrCL;ADyCG;EACC;ACvCJ;AD+CI;EACC;AC7CL;ADkDM;;;EACC;EACH;AC9CJ;;ADqDA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;ACnDD;;ADuDA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;ACrDD;;ADwDA;;;;+FAAA;AAMA;;;EAGC;EACA;EACA;ACtDD;ADwDC;;;EACC;EACA;EACA;EACA;ACpDF;;ADwDA;EACC;EACA;ACrDD;ADuDC;EACC;EACA;EACA;ACrDF;AFhtBC;EC0wBC,qBFlxBmB;AG2tBrB;;AD2DA;EACC;EACA;ACxDD;;AD2DA;;;;8FAAA;AAQC;EACC;AC3DF;AD8DC;EACC;AC5DF;AD+DC;EACC;AC7DF;AD+DE;EACC;AC7DH;;ADoEA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AClED;ADqEC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ACnEF;ADsEC;EACC;EACA;EACA;EACA;ACpEF;ADwEC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACtEF;AFzxBC;EACC;AE2xBF;ADuEE;EACC;EACA;ACrEH;ADwEG;EACC;EACA;EACA;ACtEJ;ADyEI;EACC;EACA;ACvEL;AD4EE;EACC;EAGA;EACA;AC5EH;ADgFE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AC9EH;ADgFG;EDt5BF;EACA;EACA;EACA;AEy0BD;;ADoFA;EACC;EACA;ACjFD;ADoFC;EACC;EACA;AClFF;ADoFE;EACC;AClFH;ADuFC;EACC;ACrFF;;ADyFA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;ACvFD;AFr3BC;EACC;EACA;EACA;AEu3BF;ADqFC;EACC;EACA;EACA;ACnFF;ADsFC;EACC;EACA;EACA;ACpFF;ADuFC;EACC;EACA;EACA;EACA;ACrFF;ADwFC;EACC;EACA;ACtFF;ADyFC;EACC;EACA;ACvFF;AD0FC;EACC;ACxFF;AD4FC;EAEC;;IAEC;IACA;IACA;IACA;EC3FD;AACF;;ADgGA;;;;8FAAA;AAQC;EACC;EACA;AChGF;ADmGC;EACC;EACA;ACjGF;ADoGC;EACI;EACA;EACA;EACA;EACA;AClGL;ADqGC;EACI;ACnGL;ADqGK;EACC;ACnGN;ADuGC;EACC;EACA;ACrGF;ADuGE;EACC;ACrGH;ADyGC;EACC;EACA;EACA;ACvGF;ADyGE;EACC;EACA;EACA;EACA;ACvGH;ADyGG;EAND;IAOE;ECtGF;AACF;ADwGG;EAVD;IAWE;ECrGF;AACF;ADwGE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACtGH;ADyGE;EACC;ACvGH;;AD4GA;;;;8FAAA;AAMA;EACC;EACA;AC1GD;AD4GC;EACC;EAEA;EACA;EACA;AC3GF;;ADiHA;AACA;EAA8B;AC7G9B;;AD8GA;EAA8B;AC1G9B;;AD2GA;EAA8B;ACvG9B;;AD0GA;AACA;EAEC;IACC;IACA;IACA;ECxGA;ED0GA;IACC;IACA;ECxGD;AACF;ADgHA;;;;8FAAA;AAMA;EACC;EACA;EAEA;EAUA;ACzHD;ADgHC;EACC;EACA;EACA;EACA;EACA;AC9GF;ADoHE;EACC;EACA;AClHH;;ADwHA;AAEC;EAAK;EAAc;ACpHpB;;ADwHA;;;;8FAAA;AAMA;EAA0B;ACrH1B;;ADsHA;EAA0B;AClH1B;;ADoHA;EACC;ACjHD;;ADoHA;EACI;ACjHJ;;ADoHA;EACC;EACA;ACjHD;;ADqHA;EACC;EACA;EACA;AClHD;;ADqHA;EACC;EACA;EACA;AClHD;;ADqHA;;EAEC;AClHD;;ADqHA;EACC;AClHD;;ADsHA;;;;+FAAA;AAMA;EAEC;EACA;EACA;EACA;EACA;ACrHD;AFpmCC;EACC;EACA;EACA;AEsmCF;ADkHC;;EDntCA;EACA;EACA;ECotCC;AC9GF;ADiHC;EACC;EACA;AC/GF;ADkHC;EACC;EACA;EACA;AChHF;ADkHE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,mBF9tCgB;AG8mCnB;ADsHE;EACC,mBF/tCkB;AG2mCrB;;ADyHA;AACA;EAEC;IACC;ECvHA;EDyHA;;IAEC;IACA;IACA;IACA;ECvHD;ED0HA;IACC;ECxHD;ED0HC;IACC;ECxHF;AACF;AD8HA;;;;+FAAA;AAMA;EACC;EACA;EACA;EAoBA;EAUA;EAOA;AC/JD;AD4HC;EACC;EACA;EACA;EACA;EACA;AC1HF;AD4HE;EACC;AC1HH;AD8HC;EACC;EACA;EACA;AC5HF;ADkIE;EACC;AChIH;ADuIC;EACC;EACA;ACrIF;AD0IC;EACC;ACxIF;AD0IE;EACC;EACA;ACxIH;AD2IE;EACC;ACzIH;AFpqCC;ECmzCC,qBF3zCmB;AG+qCrB;;ADiJA;;;;+FAAA;AAQC;EACC;ACjJF;;ADqJA;EACC;EA6BA;AC9KD;ADmJC;EDn2CA;EACA;EACA;AEmtCD;ADiJE;EACC;AC/IH;ADkJE;EACC;EACA;EACA;EACA;EAGA;EACA;EACA;AClJH;ADqJE;;;EAGC;ACnJH;ADyJC;EACC;EACA;EACA;ACvJF;;AD4JA;AACA;EACC;EACA;ACzJD;AD2JC;EACC;EACA;EACA;EACA;ACzJF;AD2JE;EACC;ACzJH;AD4JE;EACC;EACA;EACA;AC1JH;;ADgKA;AACA;EAEC;IACC;IACA;EC9JA;EDgKA;IACC;IACA;IACA;EC9JD;AACF;ADmKA;AACA;EA0BC;AC1LD;ADkKC;EACC;AChKF;ADmKC;EACC;ACjKF;ADoKC;EACC;EACA;AClKF;ADqKC;EACC;EACA;EACA;EAEA;EACA;EACA;EACA;ACpKF;ADyKE;EACC;ACvKH;;AD4KA;;;;+FAAA;AAKA;EACC;EACA;EACA;ACzKD;AD2KC;EACC;EACA;EACA;EACA;EACA;ACzKF;AD2KE;EACC;EACA;ACzKH;AD6KC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AC3KF;AD6KE;EACC;EACA;AC3KH;AD6KE;EACC;AC3KH;AD6KE;EACC;AC3KH;AD+KC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AC7KF;AD+KE;EACC;EACA;AC7KH;ADgLE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AC9KH;ADmLC;EACC;EACA;ACjLF;ADqLC;EACC;IACC;ECnLD;AACF;;ADuLA;;;;+FAAA;AAQC;EACC;ACvLF;AD2LC;EACC;ACzLF;ADgME;EACC;AC9LH;ADkME;EACC;AChMH;ADoME;EACC;IAAoB;ECjMrB;AACF;ADoMG;EACC;EACA;EACA;EACA;AClMJ;AD0MC;EACC;ACxMF;;AD2MA;EACC;EACA;ACxMD;AD0MC;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACzMF;AD2MC;EACC;EACA;EACA;EACA;EACA;EACA;ACzMF;;AD+MA;EACC;AC5MD;AD6MC;EACC;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACG;EACA;EACA;AC9ML;ADgNI;EACC;EACA;EACA;EACA;EAEA;EACH;EACA;EAEG;EACA;AChNL;ADoNE;EACC;AClNH;;AD0NC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACvNF;ADyNE;EACC;EACA;ACvNH;AD0NE;;EAEC;EACA;ACxNH;AD4NC;EACC;EACA;EACA;EACA;EACA;EACA;AC1NF;AD6NC;EACC;AC3NF;AD6NE;EACC;AC3NH;AD8NE;EACC;EACA;AC5NH;ADgOE;EACC;AC9NH;ADiOE;EACC;AC/NH;ADoOC;EACC;IACC;EClOD;EDoOA;IACC;EClOD;AACF;;ADsOA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACnOD;ADqOC;;;EAGC;EACA;EACA;EACA;ACnOF;ADsOC;EACC;EACA;EACA;ACpOF;ADsOE;EACC;EACA;EACA;ACpOH;ADsOE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACpOH;ADqOG;EACC;ACnOJ;ADwOC;EACC;EACA;EACA;EACA;EACA;ACtOF;ADyOC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ACvOF;ADyOE;EACC;EACA;ACvOH;AD2OC;EACC;EACA;EACA;EACA;ACzOF;AD2OE;EACC;ACzOH;AD8OC;EAjFD;IAkFE;IACA;IACA;IACA;EC3OA;AACF;;AD8OA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AC3OD;;AD+OA;;;;+FAAA;AAMA;EAQC;;IAEC;IACA;ECpPA;AACF,C","sources":["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/acf-global.scss"],"sourcesContent":["/*--------------------------------------------------------------------------------------------\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\t// Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t\t// Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t\t// Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\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* 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 { padding: 0; margin: 0; list-style: none; display: block; position: relative; }\n.acf-hl > li { float: left; display: block; margin: 0; padding: 0; }\n.acf-hl > li.acf-fr { float: right; }\n\n\n/* Horizontal List: Clearfix */\n.acf-hl:before, .acf-hl:after,\n.acf-bl:before, .acf-bl:after,\n.acf-cf:before, .acf-cf:after {\n content: \"\";\n display: block;\n line-height: 0;\n}\n.acf-hl:after,\n.acf-bl:after,\n.acf-cf:after {\n clear: both;\n}\n\n\n/* Block List */\n.acf-bl { padding: 0; margin: 0; list-style: none; display: block; position: relative; }\n.acf-bl > li { display: block; margin: 0; padding: 0; float: none; }\n\n\n/* Visibility */\n.acf-hidden { \n\tdisplay: none !important;\n}\n.acf-empty {\n\tdisplay: table-cell !important;\n\t* { display: none !important; }\n}\n\n/* Float */\n.acf-fl { float: left; }\n.acf-fr { float: right; }\n.acf-fn { float: none; }\n\n\n/* Align */\n.acf-al { text-align: left; }\n.acf-ar { text-align: right; }\n.acf-ac { text-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\n/* spinner */\n.acf-spinner {\n\tdisplay: none;\n}\n\n.acf-spinner.is-active {\n\tdisplay: inline-block;\n}\n\n\n/* WP < 4.2 */\n.spinner.is-active {\n\tdisplay: inline-block;\n}\n\n\n/* required */\n.acf-required {\n\tcolor: #f00;\n}\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; \t\n\ttransition: opacity 0.25s 0s ease-in-out, visibility 0s linear 0.25s; \n\t\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\t\n\tvisibility: visible;\n\topacity: 1;\n}\n\n\n/* show if value */\n.show-if-value { display: none; }\n.hide-if-value { display: block; }\n\n.has-value .show-if-value { display: block; }\n.has-value .hide-if-value { display: none; }\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; \t\n\ttransition: none;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* tooltip\n*\n*---------------------------------------------------------------------------------------------*/\n\n/* tooltip */\n.acf-tooltip {\n background: #2F353E;\n border-radius: 5px;\n color: #fff;\n padding: 5px 10px;\n position: absolute;\n font-size: 12px;\n line-height: 1.4em;\n z-index: 900000;\n \n \n /* tip */\n &:before {\n\t border: solid;\n\t border-color: transparent;\n\t border-width: 6px;\n\t content: \"\";\n\t position: absolute;\n\t}\n \n \n /* positions */\n &.top {\n\t margin-top: -8px;\n\t \n\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 }\n \n &.right {\n\t margin-left: 8px;\n\t \n\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 }\n \n &.bottom {\n\t margin-top: 8px;\n\t \n\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 }\n \n &.left {\n\t margin-left: -8px;\n\t \n\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 }\n \n .acf-overlay {\n\t\tz-index: -1;\n\t}\n \n}\n\n\n/* confirm */\n.acf-tooltip.-confirm {\n\tz-index: 900001; // +1 higher than .acf-tooltip\n\t\n\ta {\n\t\ttext-decoration: none;\n\t\tcolor: #9ea3a8;\n\t\t\n\t\t&:hover {\n\t\t\ttext-decoration: underline;\n\t\t}\n\t\t\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*\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\t\n\ti {\n\t\t@include centered();\n\t}\n}\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}\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\t\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\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\t\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;\t\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\t\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\t\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, &: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 background: #FFFFFF;\n border: 1px solid $wp-card-border;\n position: relative;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n \n /* title */\n .title {\n\t\tborder-bottom: 1px solid $wp-card-border;\n\t margin: 0;\n\t padding: 15px;\n\t\t\n\t\th3 {\n\t\t\tfont-size: 14px;\n\t\t line-height: 1em;\n\t\t margin: 0;\n\t\t padding: 0;\n\t\t}\n\t}\n\t\n\t\n\t.inner {\n\t padding: 15px;\n\t}\n\t\n\th2 {\n\t\tcolor: #333333;\n\t font-size: 26px;\n\t line-height: 1.25em;\n\t margin: 0.25em 0 0.75em;\n\t padding: 0;\n\t}\n\t\n\th3 {\n\t\tmargin: 1.5em 0 0;\n\t}\n\t\n\tp {\n\t\tmargin-top: 0.5em;\n\t}\n\t\n\ta {\n\t\ttext-decoration: none;\n\t}\n\t\n\ti {\n\t\t&.dashicons-external {\n\t\t\tmargin-top: -1px;\n\t\t}\n\t}\n\t\n\t/* footer */\n\t.footer {\n\t border-top: 1px solid $wp-card-border;\n\t padding: 12px;\n\t font-size: 13px;\n\t line-height: 1.5;\n\t \n\t p {\n\t\t margin: 0;\n\t }\n\t}\n\t\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\t\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\t\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\t\n\t// dismiss\n\t&.-dismiss {\n\t\tpadding-right: 40px;\n\t}\n\t\n\t// error\n\t&.-error {\n\t\tbackground: $acf_error;\n\t\tborder-color: darken($acf_error, 10%);\n\t}\n\t\n\t// success\n\t&.-success {\n\t\tbackground: $acf_success;\n\t\tborder-color: darken($acf_success, 10%);\n\t}\n\t\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*\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 width: 100%;\n clear: both;\n box-sizing: content-box;\n \n /* defaults */\n > tbody > tr,\n\t> thead > tr {\n \t\n \t> th, > 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 border-style: solid;\n\t\t font-weight: normal;\n\t\t}\n\t\t\n\t\t> th {\n\t\t\tposition: relative;\n\t\t\tcolor: #333333;\n\t\t}\n\t\t\n }\n \n \n /* thead */\n > thead {\n\t \n\t > tr {\n\t\t \n\t\t\t> th {\n\t\t\t border-color: $wp-card-border-1;\n\t\t\t\tborder-width: 0 0 1px 1px;\n\t\t\t\t\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 }\n\t \n }\n \n \n /* tbody */\n > tbody {\n\t \n\t > tr {\n\t\t\tz-index: 1;\n\t\t\t\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\t\t\t\t\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\t\n\t\t\t&:first-child > td {\n\t\t\t\tborder-top-width: 0;\n\t\t\t}\n\t\t}\n\n }\n \n \n /* -clear */\n &.-clear {\n\t border: 0 none;\n\t \n\t > tbody > tr,\n\t > thead > tr {\n\t\t \n\t\t > td, >th {\n\t\t\t border: 0 none;\n\t\t\t\tpadding: 4px;\n\t\t }\n\t }\n }\n}\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\t\n\ttransform: translate(50px, 0);\n\topacity: 0;\n}\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\t\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\t\n\t> li {\n\t\tbox-sizing: border-box;\n\t\tpadding: 8px 12px;\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\t\n\t> li {\n\t\tfont-size: 14px;\n\t\tline-height: 1.4;\n\t\tfont-weight: bold;\n\t}\n\t\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\n\t#poststuff {\n\t\tpadding-top: 15px;\n\t}\n\t\n\t.acf-box {\n\t\tmargin: 20px 0;\n\t}\n\t\n\ttable {\n\t\tmargin: 0;\n\t\t\n\t\t.button {\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n}\n\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\t\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\t\n\t&:before {\n\t\tcontent: '';\n\t\tdisplay: inline-block;\n\t\theight: 100%;\n\t\tvertical-align: middle;\n\t}\n\t\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\t\t\n\t\t// title\n\t\t.title {\n\t\t\tmin-height: 15px;\n\t\t\tline-height: 15px;\n\t\t\t\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\t\t\t\t\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\t\t\n\t\t.inner {\n\t\t\tmin-height: 50px;\n\t\t\t\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\t\t\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\t\t\t\n\t\t\ti {\n\t\t\t\t@include centered();\n\t\t\t}\n\t\t}\n\t\t\n\t}\n}\n\n\n// acf-submit\n.acf-submit {\n\tmargin-bottom: 0;\n\tline-height: 28px; // .button height\n\t\n\t// message\n\tspan { \n\t\tfloat: right;\n\t\tcolor: #999;\n\t\t\n\t\t&.-error {\n\t\t\tcolor: #dd4232;\n\t\t}\n\t}\n\t\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\tborder-left: 4px solid #00a0d2;\n\tpadding: 20px;\n\t@include clearfix();\n\t\n\t.col-content {\n\t\tfloat: left;\n\t\twidth: 55%;\n\t\tpadding-left: 90px;\n\t}\n\t\n\t.col-actions {\n\t\tfloat: right;\n\t\ttext-align: center;\n\t\tpadding: 10px;\n\t}\n\t\n\timg {\n\t\tfloat: left;\n\t\twidth: 70px;\n\t\theight: 70px;\n\t\tmargin: 0 0 0 -90px;\n\t}\n\t\n\th2 {\n\t\tfont-size: 16px;\n\t\tmargin: 2px 0 6.5px;\n\t}\n\t\n\tp {\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\t\n\t.button:before {\n\t\tmargin-top: 11px;\n\t}\n\t\n\t// mobile\n\t@media screen and (max-width: $sm) {\n\t\t\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\n/*--------------------------------------------------------------------------------------------\n*\n*\tWelcome\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-wrap {\n\t\n\th1 {\n\t\tmargin-top: 0;\n\t\tpadding-top: 20px;\n\t}\n\t\n\t.about-text {\n\t\tmargin-top: 0.5em;\n\t\tmin-height: 50px;\n\t}\n\t\n\t.about-headline-callout {\n\t font-size: 2.4em;\n\t font-weight: 300;\n\t line-height: 1.3;\n\t margin: 1.1em 0 0.2em;\n\t text-align: center;\n\t}\n\t\n\t.feature-section {\n\t padding: 40px 0;\n\t \n\t h2 {\n\t\t margin-top: 20px;\n\t }\n\t}\n\t\n\t.changelog {\n\t\tlist-style: disc;\n\t\tpadding-left: 15px;\n\t\t\n\t\tli {\n\t\t\tmargin: 0 0 0.75em;\n\t\t}\n\t}\n\t\n\t.acf-three-col {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: space-between;\n\t\t\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\t\t\t\n\t\t\t@media screen and (max-width: $md) {\n\t\t\t\tmin-width: 48%;\n\t\t\t}\n\t\t\t\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\t\t\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\t\t\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\t\n\t> li {\n\t\tpadding: 0 10px;\n\t\t\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\t\n}\n\n\n/* sizes */\n.acf-hl[data-cols=\"2\"] > li { width: 50%; }\n.acf-hl[data-cols=\"3\"] > li { width: 33.333%; }\n.acf-hl[data-cols=\"4\"] > li { width: 25%; }\n\n\n/* mobile */\n@media screen and (max-width: $sm) {\n\t\n\t.acf-hl[data-cols] {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t\tmargin-top: -10px;\n\t\t\n\t\t> li {\n\t\t\twidth: 100% !important;\n\t\t\tpadding: 10px 0 0;\n\t\t}\n\t\t\n\t}\n\t\n}\n\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tmisc\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-actions {\n\ttext-align: right;\n\tz-index: 1;\n\t\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}\n\t\n\t\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\n/* ul compatibility */\nul.acf-actions {\n\tli { float: right; margin-left: 4px; }\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\n\nhtml[dir=\"rtl\"] .acf-fl { float: right; }\nhtml[dir=\"rtl\"] .acf-fr { float: left; }\n\nhtml[dir=\"rtl\"] .acf-hl > li {\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-hl > li.acf-fr {\n float: left;\n}\n\nhtml[dir=\"rtl\"] .acf-icon.logo {\n\tleft: 0;\n\tright: auto;\n}\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*\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\t\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\t\n\t.acf-postbox-main {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t}\n\t\n\t.acf-postbox-side {\n\t\tfloat: right;\n\t\twidth: 280px;\n\t\tmargin-right: -280px;\n\t\t\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\t\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\n\t.acf-postbox-columns {\n\t\tmargin: 0;\n\t\t\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\t\t\n\t\t.acf-postbox-side {\n\t\t\tmargin-top: 1em;\n\t\t\t\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*\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\t\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\t\t\n\t\ti {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t\n\t.acf-panel-inside {\n\t\tmargin: 0;\n\t\tpadding: 0 12px 12px;\n\t\tdisplay: none;\n\t}\n\t\n\t/* open */\n\t&.-open {\n\t\t\n\t\t.acf-panel-inside {\n\t\t\tdisplay: block;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* inside postbox */\n\t.postbox & {\n\t\tmargin-left: -12px;\n\t\tmargin-right: -12px;\n\t}\n\t\n\t\n\t/* fields */\n\t.acf-field {\n\t\tmargin: 20px 0 0;\n\t\t\n\t\t.acf-label label {\n\t\t\tcolor: #555d66;\n\t\t\tfont-weight: normal;\n\t\t}\n\t\t\n\t\t&:first-child {\n\t\t\tmargin-top: 0;\n\t\t}\n\t}\n\t\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*\n* Admin Tools\n*\n*---------------------------------------------------------------------------------------------*/\n\n#acf-admin-tools {\n\t\n\t.notice {\n\t\tmargin-top: 10px;\n\t}\n}\n\n.acf-meta-box-wrap {\n\tmargin-top: 10px;\n\t\n\t.postbox {\n\t\t@include border-box();\n\t\t\n\t\t.inside {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t\t\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\t\t\t\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\t\t\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\t\n\t\n\t/* acf-fields */\n\t.acf-fields {\n\t\tborder: #ebebeb solid 1px;\n\t\tbackground: #fafafa;\n\t\tborder-radius: 3px;\n\t}\n}\n\n\n/* grid */\n.acf-meta-box-wrap.-grid {\n\tmargin-left: 8px;\n\tmargin-right: 8px;\n\t\n\t.postbox {\n\t\tfloat: left;\n\t\tclear: left;\n\t\twidth: 50%;\n\t\tmargin: 0 0 16px;\n\t\t\n\t\t&:nth-child(odd) {\n\t\t\tmargin-left: -8px;\n\t\t}\n\t\t\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\n/* mobile */\n@media only screen and (max-width: 850px) {\n\t\n\t.acf-meta-box-wrap.-grid {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t\t\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\n/* export tool */\n#acf-admin-tool-export {\n\t\n\tp {\n\t\tmax-width: 800px;\n\t}\n\t\n\tul {\n\t\tcolumn-width: 200px;\n\t}\n\t\n\t.acf-postbox-side .button {\n\t\tmargin: 0;\n\t\twidth: 100%;\n\t}\n\t\n\ttextarea {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\tmin-height: 500px;\n\t\t\n\t\tbackground: #fafafa;\n\t\tbox-shadow: none;\n\t\tpadding: 7px;\n\t\tborder-radius: 3px;\n\t}\n\t\n\t/* panel: selection */\n\t.acf-panel-selection {\n\t\t.acf-label {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Navigation\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\tbackground: #fff;\n\tborder-bottom: 1px solid #ccd0d4;\n\tpadding-top: 10px;\n\t\n\th2 {\n\t\tfont-size: 14px;\n\t\tline-height: math.div(36, 14);\n\t\tdisplay: inline-block;\n\t\tpadding: 5px 0;\n\t\tmargin: 0 10px 0 0;\n\t\t\n\t\ti {\n\t\t\tvertical-align: middle;\n\t\t\tcolor: #babbbc;\n\t\t}\n\t}\n\t\n\t.acf-tab {\n\t\tdisplay: inline-block;\n\t\tfont-size: 14px;\n\t\tline-height: math.div(36, 14);\n\t\tpadding: 5px;\n\t\tmargin: 0 5px;\n\t\ttext-decoration: none;\n\t\tcolor: inherit;\n\t\t\n\t\t&.is-active {\n\t\t\tborder-bottom: #0071a4 solid 3px;\n\t\t\tpadding-bottom: 10px;\n\t\t}\n\t\t&:hover {\n\t\t\tcolor: #00a0d2;\n\t\t}\n\t\t&:focus {\n\t\t\tbox-shadow: none;\n\t\t}\n\t}\n\n\ta.btn-upgrade {\n\t\tdisplay: inline-flex;\n\t\tbackground: #dee3ff;\n\t\tborder: 1px solid #c6d3f8;\n\t\tbox-sizing: border-box;\n\t\tborder-radius: 0.25rem;\n\t\tpadding: 0 0.75rem;\n\t\tcursor:pointer;\n\t\tvertical-align: middle;\n\t\tmargin-top: -6px;\n\t\tmargin-left: 20px;\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tbackground: #d1ddff;\n\t\t\tborder-color: #b9caf9;\n\t\t}\n\n\t\tp {\n\t\t\tfont-family: system-ui;\n\t\t\tfont-weight: 600;\n\t\t\tletter-spacing: 0.2;\n\t\t\tline-height: 1;\n\t\t\tfont-size: 0.625rem;\n\t\t\ttext-transform: uppercase;\n\t\t\tcolor: #425fdd;\n\t\t\tmargin-left: 0.65rem;\n\t\t}\n\t}\n\n\t// Within wpcontent.\n\t#wpcontent & {\n\t\tmargin-left: -20px;\n\t\tpadding-left: 20px;\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/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups {\n\t\n\t// Hide tablenav top.\n\t.tablenav.top {\n\t\tdisplay: none;\n\t}\n\t\n\t// Fix margin due to hidden tablenav.\n\t.subsubsub {\n\t\tmargin-bottom: 3px;\n\t}\n\t\n\t// table.\n\t.wp-list-table {\n\t\t\n\t\t// Use border-box for total width control.\n\t\ttd, th {\n\t\t\tbox-sizing: border-box;\n\t\t}\n\t\t\n\t\t// Add subtle hover background to define row.\n\t\ttr:hover {\n\t\t\tbackground: #f7f7f7;\n\t\t}\n\t\t\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\t\t\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\t\n\t.acf-primary-text {\n\t\t\n\t}\n\t.acf-secondary-text {\n\t\tcolor: #a0a5aa;\n\t}\n}\n.acf-multi-dashicon {\n\tposition: relative;\n\tz-index: 1;\n\t\n\t&:before,\n\t&:after {\n\t\twidth: 18px;\n\t\theight: 18px;\n\t\tline-height: 18px;\n\t\tfont-size: 14px;\n\t\tbackground: #fff;\n\t\tborder: #7e8993 solid 1px;\n\t\tborder-radius: 2px;\n\t\tdisplay: block;\n\t}\n\t&:after {\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t\ttop: -3px;\n\t\tleft: -3px;\n\t\tz-index: -1;\n\t\tbackground: #e7e7e7;\n\t\t\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\t\t\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, -8px);\n\t\t\n\t\tbackground: #191e23;\n\t\tborder-radius: 2px;\n\t\tpadding: 5px 10px;\n\t\t\n\t\tcolor: #fff;\n\t font-size: 12px;\n\t line-height: 1.4em;\n\t white-space: pre;\n\t}\n &:after {\n\t content: \"\";\n\t display: none;\n\t position: absolute;\n\t z-index: 998;\n\t \n\t bottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 4px);\n\t\t\n\t border: solid 6px transparent;\n\t border-top-color: #191e23;\n\t}\n\t\n\t&:hover, &:focus {\n\t\t&:before, &:after {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n// Diff modal.\n.acf-diff {\n\t\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\t\t\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\t\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\t\n\ttable.diff {\n\t\tborder-spacing: 0;\n\t\t\n\t\tcol.diffsplit.middle {\n\t\t\twidth: 0;\n\t\t}\n\n\t\ttd, th {\n\t\t\tpadding-top: 0.25em;\n\t\t\tpadding-bottom: 0.25em;\n\t\t}\n\t\t\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\t\t\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\t\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\t\n\t.acf-modal-title {\n\t\theight: 50px;\n\t\ttop: 0;\n\t\tborder-bottom: 1px solid #ddd;\n\t\t\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;\t\n\t\t\t}\n\t\t}\n\t}\n\t\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\t\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\t\t\n\t\t&.error {\n\t\t\topacity: 1;\n\t\t\tcolor: #b52727;\n\t\t}\n\t}\n\t\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\t\t\n\t\t.button {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t\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\t\n}\n.acf-modal-backdrop {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tbackground: #000;\n\topacity: 0.7;\n\tz-index: 159900;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Retina\n*\n*---------------------------------------------------------------------------------------------*/\n\n@media\nonly screen and (-webkit-min-device-pixel-ratio: 2),\nonly screen and ( min--moz-device-pixel-ratio: 2),\nonly screen and ( -o-min-device-pixel-ratio: 2/1),\nonly screen and ( min-device-pixel-ratio: 2),\nonly screen and ( min-resolution: 192dpi),\nonly screen and ( min-resolution: 2dppx) { \n\t\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\t\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\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, .acf-hl:after,\n.acf-bl:before, .acf-bl:after,\n.acf-cf:before, .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/* 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: #2F353E;\n border-radius: 5px;\n color: #fff;\n padding: 5px 10px;\n position: absolute;\n font-size: 12px;\n line-height: 1.4em;\n z-index: 900000;\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}\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.-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 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, .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, .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: 8px 12px;\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 border-left: 4px solid #00a0d2;\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 .col-actions {\n float: right;\n text-align: center;\n padding: 10px;\n}\n#acf-upgrade-notice img {\n float: left;\n width: 70px;\n height: 70px;\n margin: 0 0 0 -90px;\n}\n#acf-upgrade-notice h2 {\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/*--------------------------------------------------------------------------------------------\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 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 margin-left: 0;\n margin-right: 0;\n margin-top: -10px;\n }\n .acf-hl[data-cols] > li {\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}\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\n.acf-meta-box-wrap {\n margin-top: 10px;\n /* acf-fields */\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.acf-meta-box-wrap .acf-fields {\n border: #ebebeb solid 1px;\n background: #fafafa;\n border-radius: 3px;\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 column-width: 200px;\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: #fafafa;\n box-shadow: none;\n padding: 7px;\n border-radius: 3px;\n}\n#acf-admin-tool-export .acf-panel-selection .acf-label {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Navigation\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n background: #fff;\n border-bottom: 1px solid #ccd0d4;\n padding-top: 10px;\n}\n.acf-admin-toolbar h2 {\n font-size: 14px;\n line-height: 2.5714285714;\n display: inline-block;\n padding: 5px 0;\n margin: 0 10px 0 0;\n}\n.acf-admin-toolbar h2 i {\n vertical-align: middle;\n color: #babbbc;\n}\n.acf-admin-toolbar .acf-tab {\n display: inline-block;\n font-size: 14px;\n line-height: 2.5714285714;\n padding: 5px;\n margin: 0 5px;\n text-decoration: none;\n color: inherit;\n}\n.acf-admin-toolbar .acf-tab.is-active {\n border-bottom: #0071a4 solid 3px;\n padding-bottom: 10px;\n}\n.acf-admin-toolbar .acf-tab:hover {\n color: #00a0d2;\n}\n.acf-admin-toolbar .acf-tab:focus {\n box-shadow: none;\n}\n.acf-admin-toolbar a.btn-upgrade {\n display: inline-flex;\n background: #dee3ff;\n border: 1px solid #c6d3f8;\n box-sizing: border-box;\n border-radius: 0.25rem;\n padding: 0 0.75rem;\n cursor: pointer;\n vertical-align: middle;\n margin-top: -6px;\n margin-left: 20px;\n text-decoration: none;\n}\n.acf-admin-toolbar a.btn-upgrade:hover {\n background: #d1ddff;\n border-color: #b9caf9;\n}\n.acf-admin-toolbar a.btn-upgrade p {\n font-family: system-ui;\n font-weight: 600;\n letter-spacing: 0.2;\n line-height: 1;\n font-size: 0.625rem;\n text-transform: uppercase;\n color: #425fdd;\n margin-left: 0.65rem;\n}\n#wpcontent .acf-admin-toolbar {\n margin-left: -20px;\n padding-left: 20px;\n}\n@media screen and (max-width: 600px) {\n .acf-admin-toolbar {\n display: none;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .tablenav.top {\n display: none;\n}\n.acf-admin-field-groups .subsubsub {\n margin-bottom: 3px;\n}\n.acf-admin-field-groups .wp-list-table td, .acf-admin-field-groups .wp-list-table th {\n box-sizing: border-box;\n}\n.acf-admin-field-groups .wp-list-table tr:hover {\n background: #f7f7f7;\n}\n@media screen and (min-width: 782px) {\n .acf-admin-field-groups .wp-list-table .column-acf-count {\n width: 10%;\n }\n}\n.acf-admin-field-groups .wp-list-table .row-actions span.file {\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.acf-admin-field-groups .acf-secondary-text {\n color: #a0a5aa;\n}\n\n.acf-multi-dashicon {\n position: relative;\n z-index: 1;\n}\n.acf-multi-dashicon:before, .acf-multi-dashicon:after {\n width: 18px;\n height: 18px;\n line-height: 18px;\n font-size: 14px;\n background: #fff;\n border: #7e8993 solid 1px;\n border-radius: 2px;\n display: block;\n}\n.acf-multi-dashicon:after {\n content: \"\";\n position: absolute;\n top: -3px;\n left: -3px;\n z-index: -1;\n background: #e7e7e7;\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, .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: #000;\n opacity: 0.7;\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}"],"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;EAAU;EAAY;EAAW;EAAkB;EAAgB;AHuBnE;;AGtBA;EAAe;EAAa;EAAgB;EAAW;AH6BvD;;AG5BA;EAAsB;AHgCtB;;AG7BA;AACA;;;EAGI;EACA;EACA;AHgCJ;;AG9BA;;;EAGI;AHiCJ;;AG7BA;AACA;EAAU;EAAY;EAAW;EAAkB;EAAgB;AHqCnE;;AGpCA;EAAe;EAAgB;EAAW;EAAY;AH2CtD;;AGxCA;AACA;EACC;AH2CD;;AGzCA;EACC;AH4CD;AG3CC;EAAI;AH8CL;;AG3CA;AACA;EAAU;AH+CV;;AG9CA;EAAU;AHkDV;;AGjDA;EAAU;AHqDV;;AGlDA;AACA;EAAU;AHsDV;;AGrDA;EAAU;AHyDV;;AGxDA;EAAU;AH4DV;;AGzDA;AACA;;EAEC;EACA;EACA;EACA;EACA;AH4DD;;AGxDA;AACA;EACC;AH2DD;;AGxDA;EACC;AH2DD;;AGvDA;AACA;EACC;AH0DD;;AGtDA;AACA;EACC;AHyDD;;AGrDA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AHuDD;;AGpDA;EACC;EACA;EACA;EACA;EAEA;EACA;AHsDD;;AGlDA;AACA;EAAiB;AHsDjB;;AGrDA;EAAiB;AHyDjB;;AGvDA;EAA4B;AH2D5B;;AG1DA;EAA4B;AH8D5B;;AG5DA;AACA;EACC;EACA;EACA;EACA;AH+DD;;AG3DA;;;;+FAAA;AAMA;AACA;EACI,mBFjFO;EEkFP,kBFnDQ;EEoDR,cFxFO;EE0FT;EACA;EACA;EACA;EAEE;EAEA;EACH;EACA;EAGG;EAUA;AH+CJ;AGxDI;EACC;EACA;EACA;EACA;EACA;AH0DL;AGrDI;EACC;AHuDL;AGrDK;EACF;EACA;EACA;EACA;EACA;AHuDH;AGnDI;EACC;AHqDL;AGnDK;EACF;EACA;EACA;EACA;EACA;AHqDH;AGjDI;EACA;AHmDJ;AGjDI;EACD;EACA;EACA;EACA;EACA;AHmDH;AG/CI;EACA;AHiDJ;AG/CI;EACD;EACA;EACA;EACA;EACA;AHiDH;AG7CI;EACF;AH+CF;;AGzCA;AACA;EACC;AH4CD;AG1CC;EACC;EACA;AH4CF;AG1CE;EACC;AH4CH;AGzCE;EACC;AH2CH;;AGtCA;EACC;EACA;EACA;EACA;EACA;EACA;AHyCD;;AGtCA;EACC;EACA;AHyCD;;AGrCA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHwCD;AGtCC;EDnPA;EACA;EACA;EACA;AF4RD;;AGtCA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHyCD;AGvCC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHyCF;;AGpCA;EACC;AHuCD;;AGrCA;EACC;AHwCD;;AGtCA;EACC;AHyCD;;AGvCA;EACC;AH0CD;;AGxCA;EACC;AH2CD;;AGzCA;EACC;EAGA;AH0CD;;AGxCA;EACC;EAGA;AHyCD;;AGvCA;EACC;EAGA;AHwCD;;AGtCA;EACC;EAGA;AHuCD;;AGrCA;EACC;AHwCD;;AGtCA;EACC;EAGA;EACA;AHuCD;;AGrCA;EACC;AHwCD;;AGtCA;EACC;EAGA;AHuCD;;AGrCA;EACC;EAGA;AHsCD;;AGpCA;EACC;AHuCD;;AGrCA;EACC;EAGA;AHsCD;;AGpCA;EACC;EAGA;AHqCD;;AGnCA;EACC;AHsCD;;AGpCA;EACC;AHuCD;;AGnCA;EACC;AHsCD;AGrCC;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHsCF;AGpCC;EACC;EACA;AHsCF;AGpCC;EACC;AHsCF;;AGhCA;EACC;EAGA;AHiCD;;AG/BA;EACC;EAGA;AHgCD;;AG5BA;EACC;EACA;EACA;AH+BD;;AG3BA;EACC;EACA;EACA;EACA;EACA;EACA;AH8BD;AG3BC;EACC;EACA;EACA;AH6BF;AG3BC;EAEC;EACA;EACA;AH4BF;AGxBC;EAEC;EACA;AHyBF;;AGpBA;EACC;EACA;EACA;AHuBD;;AGnBA;EACC;EACA;EACA;AHsBD;;AGlBA;EACC;EACA;EACA;AHqBD;;AGlBC;EACC;EACA;AHqBF;AGnBC;EAEC;AHoBF;;AGfA;EACC;EACA;EACA;AHkBD;AGhBC;EACC;EACA;AHkBF;AGhBC;EAEC;AHiBF;;AGZA;;EAEC;EACA;EACA;EACA;AHeD;AGVE;;;EAEC;AHaH;;AGRA;;;;8FAAA;AAKA;EACI;EACA;EACA;EACA;EAEA;EA+CH;AHpCD;AGVI;EACF;EACG;EACA;AHYL;AGVE;EACC;EACA;EACA;EACG;EACA;EACA;AHYN;AGPC;EACI;AHSL;AGNC;EACC;EACG;EACA;EACA;EACA;AHQL;AGLC;EACC;AHOF;AGJC;EACC;AHMF;AGHC;EACC;AHKF;AGDE;EACC;AHGH;AGEC;EACI;EACA;EACA;EACA;AHAL;AGEK;EACC;AHAN;AE9iBC;ECojBC,qBF7jBiB;AD0jBnB;AGIE;;EAEC,qBFhkBgB;AD8jBnB;;AGOA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA,mBFzmBY;EE0mBZ;AHLD;AGOC;EACC;EACA;EACA;EACA;EACA;AHLF;AGQC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHNF;AGOE;EACC;AHLH;AGUC;EACC;AHRF;AGYC;EACC,mBFvoBU;EEwoBV;AHVF;AGcC;EACC,mBF5oBY;EE6oBZ;AHZF;AGgBC;EACC,mBFjpBY;EEkpBZ;AHdF;;AGmBA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACG;EACA;EACA;EAEA;EAqBA;EAmBA;EAuBA;AH9EJ;AGmBK;;;EACF;EACA;EACA;EACA;EACG;EACA;AHfN;AGkBE;;EACC;EACA;AHfH;AG0BG;EACI,qBFprBY;EEqrBf;AHxBJ;AG0BI;EACC;AHxBL;AGoCK;EACF;AHlCH;AGoCG;EACC,qBFvsBe;EEwsBf;AHlCJ;AGoCI;EACC;AHlCL;AGsCG;EACC;AHpCJ;AG4CI;EACC;AH1CL;AG+CM;;;EACC;EACH;AH3CJ;;AGkDA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AHhDD;;AGoDA;AACA;EACC;EACA;EACA;EACA;EAEA;EACA;AHlDD;;AGqDA;;;;+FAAA;AAMA;;;EAGC;EACA;EACA;AHnDD;AGqDC;;;EACC;EAEC;EAED;EACA;AHnDF;;AGuDA;EACC;EACA;AHpDD;AGsDC;EACC;EACA;EACA;AHpDF;AE3tBC;ECoxBC,qBF5xBmB;ADsuBrB;;AG0DA;EACC;EACA;AHvDD;;AG0DA;;;;8FAAA;AAQC;EACC;AH1DF;AG6DC;EACC;AH3DF;AG8DC;EACC;AH5DF;AG8DE;EACC;AH5DH;;AGmEA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHjED;AGoEC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHlEF;AGqEC;EACC;EACA;EACA;EACA;AHnEF;AGuEC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHrEF;AEpyBC;EACC;AFsyBF;AGsEE;EACC;EACA;AHpEH;AGuEG;EACC;EACA;EACA;AHrEJ;AGwEI;EACC;EACA;AHtEL;AG2EE;EACC;EAGA;EACA;AH3EH;AG+EE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AH7EH;AG+EG;EDh6BF;EACA;EACA;EACA;AFo1BD;;AGmFA;EACC;EACA;AHhFD;AGmFC;EACC;EACA;AHjFF;AGmFE;EACC;AHjFH;AGsFC;EACC;AHpFF;;AGwFA;;;;8FAAA;AAMA;EACC;EACA;EACA;EACA;AHtFD;AEh4BC;EACC;EACA;EACA;AFk4BF;AGoFC;EACC;EACA;EACA;AHlFF;AGqFC;EACC;EACA;EACA;AHnFF;AGsFC;EACC;EACA;EACA;EACA;AHpFF;AGuFC;EACC;EACA;AHrFF;AGwFC;EACC;EACA;AHtFF;AGyFC;EACC;AHvFF;AG2FC;EAEC;;IAEC;IACA;IACA;IACA;EH1FD;AACF;;AG+FA;;;;8FAAA;AAQC;EACC;EACA;AH/FF;AGkGC;EACC;EACA;AHhGF;AGmGC;EACI;EACA;EACA;EACA;EACA;AHjGL;AGoGC;EACI;AHlGL;AGoGK;EACC;AHlGN;AGsGC;EACC;EACA;AHpGF;AGsGE;EACC;AHpGH;A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AG6ME;EACC;AH3MH;AG8ME;EACC;AH5MH;AGiNC;EACC;IACC;EH/MD;EGiNA;IACC;EH/MD;AACF;;AGmNA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHhND;AGkNC;;;EAGC;EACA;EACA;EACA;AHhNF;AGmNC;EACC;EACA;EACA;AHjNF;AGmNE;EACC;EACA;EACA;AHjNH;AGmNE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHjNH;AGkNG;EACC;AHhNJ;AGqNC;EACC;EACA;EACA;EACA;EACA;AHnNF;AGsNC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AHpNF;AGsNE;EACC;EACA;AHpNH;AGwNC;EACC;EACA;EACA;EACA;AHtNF;AGwNE;EACC;AHtNH;AG2NC;EAjFD;IAkFE;IACA;IACA;IACA;EHxNA;AACF;;AG2NA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AHxND;;AG4NA;;;;+FAAA;AAMA;EAQC;;IAEC;IACA;EHjOA;AACF;AGqOA;;;;8FAAA;AAQC;EAEE;EACA;EACA;EACA;AHvOH;AG0OE;EARD;IAUG;IACA;EHxOF;AACF;AG8OE;EADD;IAGG;EH5OF;AACF;;AGmPA;;;;+FAAA;AAKA;;EAEC;EACA,kBFztDW;EE0tDX,6CFvtDc;ADu+Cf;AGkPC;;EAEE;EACA;EACA;EACA;AHhPH;AGoPC;;EAEE;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;AHpPH;AGwPC;;;;EAGE;EACA;EACA;EACA;EAGA;EACA;EACA,yBFryDQ;AD8iDX;AG2PC;;;;EAEC;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAGA;EACA;AH5PH;AG+PE;;;;;;;;EAGE;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAGD,cF10DQ;AD8kDX;AGiQC;;EAEE;EACA;EACA;EACA;AH/PH;;AGsQA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;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;EIZR;ALuoEH;AKpoEE;;;;;EACC,cJYQ;AD8nEX;AK9nEE;EACC,yBJLQ;EIMR,cJFQ;ADkoEX;AKpnEE;;EAEC;ALsnEH;AK5mEC;EACC;EAEC;EACA;EAED;EACA;AL4mEF;AKpmEC;EACC;EACA;EAEC;EACA;EAED;EACA;EACA;ALomEF;AKjmEE;EAEC,cJ1CQ;AD4oEX;AK/lEE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ALimEH;AKvlEC;;EAEC;EACA;EACA;EACA;EAEC;EACA;EACA,qBJrFQ;EIuFT;EACA;ALulEF;AKrlEE;;EACC,yBJnFQ;EIoFR,qBJ/EQ;ADuqEX;AKrlEE;;;EAEC,yBJzFQ;EI0FR,qBJrFQ;AD6qEX;AKtlEG;;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AL0lEJ;AKrlEE;;EACC;ALwlEH;AKrlEE;;EACC,yBJ9HQ;EI+HR,qBJ5HQ;ADotEX;AKxkEG;EACC;AL0kEJ;AKzjEG;EACC;AL2jEJ;AK5iEE;;;;EAGE;AL+iEJ;AK3iEE;;EAEE;AL6iEJ;AK1iEG;;EAEE;AL4iEL;AKriEE;;EACC;EACA;EACA;ALwiEH;AK9hEC;EACC;EACA;EACA;EACA,yBJpNS;EIqNT;ALgiEF;AK9hEE;EACC,yBJvNQ;ADuvEX;AK7hEE;EACC;AL+hEH;AK5hEE;EACC,yBJlNQ;ADgvEX;AK5hEG;EACC,yBJpNO;ADkvEX;AK3hEG;EACC;AL6hEJ;AKxhEE;;EAEC;AL0hEH;AKvhEE;EACC;EACA;EACA;EACA;EACA;ALyhEH;AKphEC;EACC;EACA;ALshEF;AKphEE;EACC;EACA;EACA;EAEC;EACA;ALqhEJ;AKlhEG;EAEE;ALmhEL;AK/gEG;EAEE;ALghEL;AKlgEC;EACC;EACA;EAEC;EAGA;EACA;EACA;EACA;EAED;EACA;EACA,kBJxQU;EI0QT;EACA;EACA,qBJlSQ;EIoST;AL8/DF;AK5/DE;EACC,qBJtSQ;EIuSR;EACA;AL8/DH;AKn/DC;EACC;EACA;EACA;EAEC;EACA;EAED;EACA;EACA;EACA,qBJ/TS;EIgUT,kBJ1SU;EI4SV,cJlUS;ADozEX;AKh/DE;EACC;EACA,qBJtUQ;EIuUR,cJvUQ;ADyzEX;AKh/DE;EACC;EACA,0BJ9SO;EI+SP,cJ5UQ;AD8zEX;AKx+DC;EACC;AL0+DF;AKh+DE;EACC;EACA;ALk+DH;AK/9DE;EACC;EAEC;EACA;EAED;EAEC;EACA;EACA,qBJ9XO;EIgYR,6CJxVY;EIyVZ,kBJ7VS;EI+VT,cJ/XQ;AD21EX;AKz9DE;EACC,0BJ5VO;EI6VP,qBJ3XQ;EI4XR,kBJrWS;ADg0EZ;AKz9DG;EACC;AL29DJ;AKt9DI;EACC;EACA;ALw9DL;AKj9DI;EACC;EACA;ALm9DL;AK58DE;EACC;EAEC;AL68DJ;AK18DG;EACC;EACA;AL48DJ;AKv8DE;EAEE;EACA;EACA;EACA;ALw8DJ;AKp8DE;EACC;EACA;EAEC;EACA;EAED;EACA;EACA;ALo8DH;AKl8DG;EACC;EAEA;EACA,WAFY;EAGZ,YAHY;EAIZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,yBJrdO;ADw5EX;AKh8DG;EACC,yBJrdO;ADu5EX;AKt7DC;EACC;EACA;EACA;ALw7DF;AKt7DE;EAEC,WADY;EAEZ,YAFY;EAGZ,yBJ9eQ;ADq6EX;AKp7DE;EAEE;ALq7DJ;AK16DC;EACC;EACA;EACA;EACA;AL46DF;AK16DE;EACC;EACA;AL46DH;;AMl+EA;;;;+FAAA;AAQC;EACC;ANk+EF;AM99EC;EACC;ANg+EF;AM59EC;EAEE;EACA;EACA;EACA;EAED,kBL2DU;EK1DV;EACA;EACA,6CL2Da;ADi6Ef;AM19EE;EACC,cLiBQ;EKhBR;AN49EH;AMz9EE;EACC;EACA;AN29EH;AMx9EE;;EAEC,cLSQ;ADi9EX;AMx9EG;;EACC;AN29EJ;AMx9EG;;EAEE;EACA;EACA;AN09EL;AMv9EI;EAPD;;IAQE;IAEC;IACA;EN09EJ;AACF;AMr9EG;;EACC;EACA;ANw9EJ;AMl9EE;;EAEC;EAEC;EACA;EAED;EACA,yBLrCQ;EKsCR,qBLpCQ;EKsCR;ANi9EH;AM/8EG;EAbD;;IAeG;IACA;ENk9EH;AACF;AM98EI;EADD;;IAEE;ENk9EH;AACF;AM58EE;;EAEC;EACA;EAEC;EACA;EACA;EACA;EAED;EACA;EAEC;EACA,4BLtEO;EKuEP;AN28EJ;AMv8EG;EAnBD;;IAqBG;IACA;EN08EH;AACF;AMr8EE;EACC;ANu8EH;AMn8EE;EACC;EACA;EACA;EACA;EACA;EAEC;EAED,cLhGQ;ADmiFX;AM/7EE;EACC;EACA;EACA;EACA;EAEC;EAED;EACA,cL7GQ;AD4iFX;AM57EE;EAEC,cLjHQ;AD8iFX;AMz7EE;;EAEC;AN27EH;AMz7EG;;EAEE;AN27EL;AMp7EE;EACC;IAAoB;ENu7ErB;AACF;AMp7EG;EACC;EACA;EACA;EACA;ANs7EJ;AMh7EC;EAEE;EAGA;EACA;EACA;EACA;EAGD;EACA,cL/JS;AD4kFX;AM36EE;EACC,cLxMS;ADqnFZ;AMt6EC;;EAGE;ANu6EH;;AMj6EA;;;;8FAAA;AAUE;EACC;AN+5EH;AM55EE;EACC;AN85EH;AM75EG;EAAU;ANg6Eb;AM75EE;EAEE;EAED;AN65EH;;AMr5EA;;;;8FAAA;AAOC;;EAEC;ANs5EF;;AMj5EA;;;;+FAAA;AAOC;EAEE;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAED,cLjPS;AD+nFX;;AMz4EA;;;;8FAAA;AAKA;EAEE;EACA;EACA;EACA;AN24EF;AMx4EC;EACC;EAEC;EACA;EACA;EACA;ANy4EH;AMr4EC;EAlBD;IAmBE;IACA;IACA;IACA;ENw4EA;EMt4EA;IACC;ENw4ED;AACF;;AMl4EA;;;;8FAAA;AAKA;EACC;EACA;EACA;EAEC;ANo4EF;AMj4EC;EAEE;EACA;EAED,cL9SS;AD+qFX;AM93EE;EACC,cLjTQ;ADirFX;;AMz3EA;;;;8FAAA;AAOC;EACC;EACA;AN03EF;AMx3EE;EAEE;EACA;EACA;EACA;ANy3EJ;AMr3EE;EACC;EACA;ANu3EH;AMr3EG;EAEE;EACA;EACA;EACA;ANs3EL;AMn3EI;EAEE;ANo3EN;AM32EE;EACC;AN62EH;;AMt2EA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAED;ANq2ED;AMl2EC;EAIC;EACA;EACA;EACA;EACA;EAEC;ANg2EH;AM51EE;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EAEA,yBLjZQ;EKkZR;EACA,uBAXY;EAYZ,eAZY;EAaZ;EACA;EACA;EACA;AN41EH;AMt1EC;EACC;EACA;ANw1EF;AMp1EC;EACC;EACA;ANs1EF;AMl1EC;EACC;EACA;ANo1EF;AMh1EC;EACC;EACA;ANk1EF;AM90EC;EACC,qBLtbS;EKubT;ANg1EF;AM90EE;EACC,yBL1bQ;AD0wFX;AM10EC;EACC;AN40EF;AM10EE;EACC,yBLndQ;AD+xFX;;AMr0EA;;;;+FAAA;AAKA;EACC;EACA;EAEC;EACA;ANu0EF;AMp0EC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ANs0EF;AMp0EE;;;EAGC;ANs0EH;AMn0EE;EAGE;EACA;EAED;EACA,cL1fQ;AD4zFX;AM/zEE;EAGE;EACA;EAED;EACA,cLtgBQ;ADo0FX;AM5zEG;EACC;EACA;EAEC;AN6zEL;AMrzEE;EACC;EAEC;ANszEJ;AMlzEE;EAEE;ANmzEJ;;AMzyEC;;;;EAIC;AN4yEF;AMvyEE;;EAEC;ANyyEH;AMpyEC;EACC;ANsyEF;;AMjyEA;;;;+FAAA;AAOC;EACC;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA,yBLnkBS;EKokBT;EACA,uBATY;EAUZ,eAVY;EAWZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ANgyEF;AM7xEC;EACC;EACA;AN+xEF;;AM1xEA;;;;+FAAA;AAOC;EAEC;;;IAGC;EN0xED;AACF;;AO77FA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,mBNqCU;EMpCV,cNiCU;AD+5FX;AO97FC;EAZD;IAaE;EPi8FA;AACF;AO/7FC;EAEE;APg8FH;AO77FE;EACC;EACA;EACA;AP+7FH;AO17FC;EACC;EACA,cNQS;ADo7FX;AOz7FC;EACC;EACA;EACA;EACA;EAEC;EAGA;EACA;EACA;EACA;EAGA;EACA;EACA;EAED,kBNyBU;EMvBV,cNZS;EMaT;APo7FF;AOl7FE;EACC,yBNdQ;EMeR;APo7FH;AOl7FE;EACC,yBNlBQ;EMmBR,cNzBQ;AD68FX;AOl7FE;EAEE;EACA;EACA,qBN1BO;AD68FX;AOh7FE;EACC;APk7FH;AO76FC;EACC;EACA;EAEC;EACA;EACA;EACA;AP86FH;AOz6FC;EACC;IACC;EP26FD;AACF;;AOv6FA;;;;+FAAA;AASE;EACC;EAEC;EACA;APq6FJ;AO75FG;EACC;AP+5FJ;AOx5FG;EACC,yBNvFO;ADi/FX;AOh5FE;EAEC,mEADW;EAEX,2DAFW;APm5Fd;AOz4FE;EAEC,4DADW;EAEX,oDAFW;AP44Fd;AOl4FE;EAEC,8DADW;EAEX,sDAFW;APq4Fd;;AQ3iGA;;;;+FAAA;AAOC;EACC;AR4iGF;AQziGC;EACC;AR2iGF;;AQtiGA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EAEC;EAGA;EACA;EACA;EACA;EAED;EACA,6CP+Cc;ADs/Ff;AQniGC;EACC;EACA;EACA;EACA;EACA,iBPiDU;ADo/FZ;AQliGC;EAEE;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;ARiiGH;AQ7hGC;EA3CD;IA4CE;ERgiGA;AACF;AQ9hGC;EA/CD;IAgDE;IACA;IACA;IACA;IAEC;ERgiGD;AACF;AQ7hGC;EACC;EACA;EACA;AR+hGF;AQ7hGE;EALD;IAME;ERgiGD;EQ9hGC;;IAEC;ERgiGF;EQ7hGC;IAEE;ER8hGH;AACF;AQvhGC;EACC;ARyhGF;AQvhGE;EAHD;IAIE;ER0hGD;AACF;AQthGC;EACC;ARwhGF;AQthGE;EAEE;ARuhGJ;;AQ/gGA;;;;+FAAA;AAKA;EACC;EACA;EACA;EAEC;EAED;ARghGD;AQ9gGC;EATD;IAUE;IACA;IACA;IAEC;IAGA;IACA;ER8gGD;AACF;AQ3gGC;EAtBD;IAuBE;IACA;ER8gGA;AACF;AQzgGE;EAFD;IAGE;IACA;IACA;IACA;IACA;ER4gGD;EQ1gGC;IACC;ER4gGF;EQzgGC;IACC;IACA;IACA;ER2gGF;EQzgGE;IACC;IACA;IACA;IACA;ER2gGH;AACF;AQngGC;EAEE;ARogGH;;ASlsGA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EAEC;EACA;EACA;EACA;EAED,yBR6CU;EQ5CV,kBRkEW;EQhEV;EACA;EACA;EAED;EACA;EACA;EACA;ATisGD;AS/rGC;EACC;ATisGF;AS9rGC;EACC,yBR6BS;EQ5BT;EACA;ATgsGF;AS7rGC;EACC;EAEC;EACA;EACA;EACA;AT8rGH;ASzrGC;EACC;EACA;EACA,qBRSS;ADkrGX;ASzrGE;EACC;AT2rGH;AStrGC;EACC;EACA;EACA,qBRhBS;ADwsGX;AStrGE;EACC;EACA,qBRnBQ;AD2sGX;;ASjrGA;;;;+FAAA;AAOC;EAEC,WADY;EAEZ,YAFY;EAGZ,uBAHY;EAIZ,eAJY;EAMX;EACA;ATgrGH;AS1qGE;EAEC,WADY;EAEZ,YAFY;EAGZ,uBAHY;EAIZ,eAJY;EAMX;EACA;AT0qGJ;;ASlqGA;;;;+FAAA;AAOC;EACC;EACA;EACA;ATmqGF;;AU5xGA;;;;8FAAA;AAKA;EAEC;EACA,WAFY;EAGZ,YAHY;EAIZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AV8xGD;;AU3xGA;;;;8FAAA;AAKA;EAiEC;;;;gGAAA;AVkuGD;AUlyGC;EACC;EACA;AVoyGF;AUjyGC;EACC;EACA;AVmyGF;AUhyGC;EACC;EACA;AVkyGF;AU/xGC;EACC;EACA;AViyGF;AU9xGC;EACC;EACA;AVgyGF;AU7xGC;EACC;EACA;AV+xGF;AU5xGC;EACC;EACA;AV8xGF;AU3xGC;;EAEC;EACA;AV6xGF;AU1xGC;;EAEC;EACA;AV4xGF;AUzxGC;EACC;EACA;AV2xGF;AUxxGC;;EAEC;EACA;AV0xGF;AUvxGC;;EAEC;EACA;AVyxGF;AUhxGE;EACC;AVkxGH;AUhxGG;EAEC;EACA,WAFY;EAGZ,YAHY;EAIZ,yBT5DO;ES6DP;EACA;EACA,uBAPY;EAQZ,eARY;EASZ;EACA;EACA;EACA;EACA;EACA;AVixGJ;AU/wGI;EACC;AVixGL;;AU1wGA;;;;8FAAA;AASE;;;;;;;;EAEC;EACA;EACA;EACA;AV+wGH;AU7wGG;;;;;;;;EACC;EAEA;EACA,WAFY;EAGZ,YAHY;EAKX;EAED,yBTzGO;ES0GP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AVmxGJ;;AU5wGA;;EAEC;EACA;AV+wGD;;AU3wGA;EACC;EACA;AV8wGD;;AU1wGA;EACC;EACA;AV6wGD;;AU1wGA;;;;8FAAA;AAMC;EACC;AV4wGF;AU1wGE;EACC;EAEA;EACA,WAFY;EAGZ,YAHY;EAIZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AV2wGH;AUpwGG;EACC;EACA;AVswGJ;;AUhwGA;;;;+FAAA;AAUE;;;;;;;;EAEC;EACA;EACA;EACA;AVowGH;AUlwGG;;;;;;;;EACC;EAEA;EACA,WAFY;EAGZ,YAHY;EAKX;EAED,yBT5MO;ES6MP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AVwwGJ;;AUjwGA;EACC;EACA;AVowGD;;AUhwGA;EACC;EACA;AVmwGD;;AU/vGA;EACC;EACA;AVkwGD;;AU9vGA;EACC;EACA;AViwGD;;AU9vGA;;;;8FAAA;AAMC;EAEC,WADY;EAEZ,YAFY;AViwGd;;AW1iHA;;;;8FAAA;AAKA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,yBVyCU;EUvCT;EACA;EACA,qBVuCS;EUrCV;AX2iHD;AWziHC;EAEC;EACA,WAFY;EAGZ,YAHY;EAIZ;EACA,yBVgCS;EU/BT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AX0iHF;;AWriHA;;;;8FAAA;AAOA;EACC;EACA;AXsiHD;;AWliHA;EACC;EACA;AXqiHD;;AWjiHA;EACC;EACA;AXoiHD;;AWhiHA;EACC;EACA;AXmiHD;;AW/hHA;EACC;EACA;AXkiHD;;AW9hHA;EACC;EACA;AXiiHD;;AW7hHA;EACC;EACA;AXgiHD;;AW5hHA;EACC;EACA;AX+hHD;;AW3hHA;EACC;EACA;AX8hHD;;AW1hHA;EACC;EACA;AX6hHD;;AWzhHA;EACC;EACA;AX4hHD;;AWxhHA;EACC;EACA;AX2hHD;;AWvhHA;EACC;EACA;AX0hHD;;AWthHA;EACC;EACA;AXyhHD;;AWrhHA;EACC;EACA;AXwhHD;;AWphHA;EACC;EACA;AXuhHD;;AWnhHA;EACC;EACA;AXshHD;;AWlhHA;EACC;EACA;AXqhHD;;AWjhHA;EACC;EACA;AXohHD;;AWhhHA;EACC;EACA;AXmhHD;;AW/gHA;EACC;EACA;AXkhHD;;AW9gHA;EACC;EACA;AXihHD;;AW7gHA;EACC;EACA;AXghHD;;AW5gHA;EACC;EACA;AX+gHD;;AW3gHA;EACC;EACA;AX8gHD;;AW1gHA;EACC;EACA;AX6gHD;;AWzgHA;EACC;EACA;AX4gHD;;AWxgHA;EACC;EACA;AX2gHD;;AWvgHA;EACC;EACA;AX0gHD;;AWtgHA;EACC;EACA;AXygHD;;AWrgHA;EACC;EACA;AXwgHD;;AWpgHA;EACC;EACA;AXugHD;;AWngHA;EACC;EACA;AXsgHD;;AWlgHA;EACC;EACA;AXqgHD;;AWhgHA;EACC;EACA;AXmgHD;;AW//GA;EACC;EACA;AXkgHD;;AYxwHA;;;;+FAAA;AAOC;EACC;AZywHF;AYtwHC;EAEE;EACA;EACA;EACA;AZuwHH;AYpwHE;EACC;EACA;EACA;EAEC;AZqwHJ;AYlwHG;EARD;IASE;EZqwHF;AACF;AY/vHC;EAEE;AZgwHH;AY5vHC;EACC;EACA;EACA;EACA;EACA;AZ8vHF;AY5vHE;EAPD;IAQE;IACA;IACA;IACA;IACA;IACA;IACA;EZ+vHD;AACF;;AYzvHA;;;;+FAAA;AASE;EACC;AZwvHH;AYpvHE;EAEE;AZqvHJ;AYhvHE;EACC;EACA;EAEC;EACA;EACA;EACA;AZivHJ;AY7uHE;EAEE;EACA;EACA;EACA;EAED;AZ6uHH;AY3uHG;EACC;AZ6uHJ;AY3uHI;EACC;EACA;AZ6uHL;AY1uHI;EACC;AZ4uHL;AYzuHI;EACC;EACA;EACA;AZ2uHL;AYpuHE;EACC;AZsuHH;AYnuHE;EACC;AZquHH;AYnuHG;EACC;EACA;EACA,cXpFO;ADyzHX;AYluHI;EACC;AZouHL;AY7tHE;EAEE;EAGA;EACA;EACA,qBX1GO;EW4GR,kBXxES;ADmyHZ;AYztHG;EACC;EACA;EACA;EACA;EACA;EACA;EAEC;EACA;EAGA;EACA;EACA,4BX7HM;ADq1HX;AYrtHI;EACC;AZutHL;;Aat4HA;;;;+FAAA;AAKA;EACC;EACA;EACA;EACA;EACA,8DACA;Abw4HD;Aar4HC;EATD;IAUE;IACA;IACA;IACA;IACA;IACA;IACA;Ebw4HA;AACF;;Aap4HA;;EAEC;EACA;Abu4HD;;Aap4HA;;;;+FAAA;AAOC;EAEE;EACA;EACA;EACA;Abo4HH;Aaj4HE;EAEE;EACA;EACA;EACA;Abk4HJ;Aa93HE;EAjBD;IAkBE;Ebi4HD;AACF;;Aa33HA;;;;+FAAA;AAOC;EACC;EAEC;EACA;EACA;EACA;Ab23HH;;Aar3HA;;;;+FAAA;AAOC;EAEE;Abq3HH;Aaj3HC;EACC;Abm3HF;Aah3HC;EAEE;EACA;Abi3HH;Aa72HC;EACC;Ab+2HF;;Aa12HA;;;;+FAAA;AASE;;EAGE;EACA;EACA;EACA;EAGD,cZhFQ;ADs7HX;Aaj2HC;EAEE;EACA;EAGA;EAGA;EACA;EACA,yBZrGQ;EYuGT,cZlGS;AD+7HX;Aa31HE;EAEE;Ab41HJ;Aax1HE;EAEE;EACA;Aby1HJ;Aat1HG;EAEE;Abu1HL;Aan1HG;EAEC,cZ1HO;AD88HX;Aa70HC;EACC;Ab+0HF;;AclgIA;;;;8FAAA;AAOC;EACC;EACA;EACA;EAEC;EACA;EACA;EACA;EAED,oEb8Da;Ea7Db;EACA;EACA;EACA,kBb8DU;Ea7DV;AdigIF;Ac//HE;EAjBD;IAkBE;EdkgID;AACF;AchgIE;EACC;AdkgIH;Ac//HE;EACC;EACA;EACA;AdigIH;Ac9/HE;EACC;EAEC;EACA;EAGD;EACA;EACA;Ad6/HH;Ac1/HE;EAEC,WADY;EAEZ,YAFY;EAIX;EACA;EAED,yBbdQ;ADugIX;;Acl/HA;;;;8FAAA;AAOC;EACC;EACA;EACA;EACA;Adm/HF;Acj/HE;EAND;IAOE;IACA;IACA;IACA;IACA;Edo/HD;Ecl/HC;;IAEC;Edo/HF;AACF;Ach/HE;EACC;EAEC;Adi/HJ;Ac9+HG;EAND;IAQG;IACA;Edg/HH;AACF;Ac3+HE;EACC;EACA;EACA;EACA;Ad6+HH;Ac3+HG;EAND;IAOE;Ed8+HF;AACF;Acx+HC;EACC;EACA;EACA;EACA;EACA,cbhFS;AD0jIX;Acx+HE;EACC;Ad0+HH;Acv+HE;EACC;EACA;Ady+HH;Acp+HC;EAEE;EACA;EAGA;EACA;EAGD;EACA,cb1GS;AD2kIX;Ac/9HE;EAEE;Adg+HJ;Acz9HC;EACC;EACA;EACA;Ad29HF;Acz9HE;EACC;Ad29HH;Acx9HE;EAEE;EACA;Ady9HJ;Acl9HC;EACC;EACA;EACA;EACA;EAEC;EACA;Adm9HH;Ach9HE;EAVD;IAWE;IACA;IACA;IACA;IACA;Edm9HD;AACF;Acj9HE;EACC;EACA;EAEC;EACA;Adk9HJ;Ac/8HG;EARD;IASE;Edk9HF;AACF;Ach9HG;EAZD;IAaE;Edm9HF;AACF;Acj9HG;EAEE;Adk9HL;Ac98HG;EACC;EAEA;EACA,WAFY;EAGZ,YAHY;EAKX;EAED,yBbhKY;EaiKZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Ad68HJ,C","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-upsells.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, .acf-hl:after,\n.acf-bl:before, .acf-bl:after,\n.acf-cf:before, .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/* 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}\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.-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, .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, .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 border-left: 4px solid #00a0d2;\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 .col-actions {\n float: right;\n text-align: center;\n padding: 10px;\n}\n#acf-upgrade-notice img {\n float: left;\n width: 70px;\n height: 70px;\n margin: 0 0 0 -90px;\n}\n#acf-upgrade-notice h2 {\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/*--------------------------------------------------------------------------------------------\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}\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}\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\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 column-width: 200px;\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 {\n display: none;\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, .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: #000;\n opacity: 0.7;\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.post-type-acf-field-group .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 .post-type-acf-field-group .wrap {\n margin-right: 8px;\n margin-left: 8px;\n }\n}\n@media screen and (max-width: 768px) {\n .post-type-acf-field-group #wpcontent {\n padding-left: 0;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Admin Postbox & ACF Postbox\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .postbox,\n.post-type-acf-field-group .acf-box {\n border: none;\n border-radius: 8px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group .postbox .inside,\n.post-type-acf-field-group .acf-box .inside {\n padding-top: 24px;\n padding-right: 24px;\n padding-bottom: 24px;\n padding-left: 24px;\n}\n.post-type-acf-field-group .postbox .acf-postbox-inner,\n.post-type-acf-field-group .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.post-type-acf-field-group .postbox .inner,\n.post-type-acf-field-group .postbox .inside,\n.post-type-acf-field-group .acf-box .inner,\n.post-type-acf-field-group .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.post-type-acf-field-group .postbox .postbox-header,\n.post-type-acf-field-group .postbox .title,\n.post-type-acf-field-group .acf-box .postbox-header,\n.post-type-acf-field-group .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.post-type-acf-field-group .postbox .postbox-header h2,\n.post-type-acf-field-group .postbox .postbox-header h3,\n.post-type-acf-field-group .postbox .title h2,\n.post-type-acf-field-group .postbox .title h3,\n.post-type-acf-field-group .acf-box .postbox-header h2,\n.post-type-acf-field-group .acf-box .postbox-header h3,\n.post-type-acf-field-group .acf-box .title h2,\n.post-type-acf-field-group .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.post-type-acf-field-group .postbox .hndle,\n.post-type-acf-field-group .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.acf-postbox-header .acf-icon {\n background-color: #98A2B3;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Screen options button & screen meta container\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #screen-meta-links {\n margin-right: 32px;\n}\n.post-type-acf-field-group #screen-meta-links .show-settings {\n border-color: #D0D5DD;\n}\n@media screen and (max-width: 768px) {\n .post-type-acf-field-group #screen-meta-links {\n margin-right: 16px;\n margin-bottom: 0;\n }\n}\n.post-type-acf-field-group #screen-meta {\n border-color: #D0D5DD;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox headings\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #poststuff .postbox-header h2,\n.post-type-acf-field-group #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.post-type-acf-field-group.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.post-type-acf-field-group .ui-sortable-placeholder {\n border: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n* Search summary\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .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.post-type-acf-field-group .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.post-type-acf-field-group .notice,\n.post-type-acf-field-group #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.post-type-acf-field-group .notice.update-nag,\n.post-type-acf-field-group #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.post-type-acf-field-group .notice .button,\n.post-type-acf-field-group #lost-connection-notice .button {\n height: auto;\n margin-left: 8px;\n padding: 0;\n border: none;\n}\n.post-type-acf-field-group .notice > div,\n.post-type-acf-field-group #lost-connection-notice > div {\n margin-top: 0;\n margin-bottom: 0;\n}\n.post-type-acf-field-group .notice p,\n.post-type-acf-field-group #lost-connection-notice p {\n flex: 1 0 auto;\n margin: 0;\n padding: 0;\n}\n.post-type-acf-field-group .notice p.help,\n.post-type-acf-field-group #lost-connection-notice p.help {\n margin-top: 0;\n padding-top: 0;\n color: rgba(52, 64, 84, 0.7);\n}\n.post-type-acf-field-group .notice .notice-dismiss,\n.post-type-acf-field-group #lost-connection-notice .notice-dismiss {\n position: absolute;\n top: 4px;\n right: 8px;\n}\n.post-type-acf-field-group .notice .notice-dismiss:before,\n.post-type-acf-field-group #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.post-type-acf-field-group .notice .notice-dismiss:hover::before,\n.post-type-acf-field-group #lost-connection-notice .notice-dismiss:hover::before {\n background-color: #344054;\n}\n.post-type-acf-field-group .notice:before,\n.post-type-acf-field-group #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.post-type-acf-field-group .notice:after,\n.post-type-acf-field-group #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.post-type-acf-field-group .notice .local-restore,\n.post-type-acf-field-group #lost-connection-notice .local-restore {\n align-items: center;\n margin-top: -6px;\n margin-bottom: 0;\n}\n.post-type-acf-field-group .notice.is-dismissible {\n padding-right: 56px;\n}\n.post-type-acf-field-group .notice.notice-success {\n background-color: #EDF7EF;\n border-color: #B6DEB9;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .notice.notice-success:after {\n background-color: #52AA59;\n}\n.post-type-acf-field-group .notice.notice-error,\n.post-type-acf-field-group #lost-connection-notice {\n background-color: #F7EEEB;\n border-color: #F1B6B3;\n}\n.post-type-acf-field-group .notice.notice-error:before,\n.post-type-acf-field-group #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.post-type-acf-field-group .notice.notice-error:after,\n.post-type-acf-field-group #lost-connection-notice:after {\n background-color: #DA5A39;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #wpcontent {\n line-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group a {\n color: #0783BE;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.h1, .post-type-acf-field-group h1,\n.acf-headerbar h1 {\n font-size: 21px;\n font-weight: 400;\n}\n\n.h2, .acf-no-field-groups-wrapper .acf-no-field-groups-inner h2, .acf-page-title, .post-type-acf-field-group h2,\n.acf-headerbar h2 {\n font-size: 18px;\n font-weight: 400;\n}\n\n.h3, .post-type-acf-field-group h3,\n.acf-headerbar h3, .post-type-acf-field-group .postbox .postbox-header h2,\n.post-type-acf-field-group .postbox .postbox-header h3,\n.post-type-acf-field-group .postbox .title h2,\n.post-type-acf-field-group .postbox .title h3,\n.post-type-acf-field-group .acf-box .postbox-header h2,\n.post-type-acf-field-group .acf-box .postbox-header h3,\n.post-type-acf-field-group .acf-box .title h2,\n.post-type-acf-field-group .acf-box .title h3, .acf-postbox-header h2.acf-postbox-title, .post-type-acf-field-group #poststuff .postbox-header h2,\n.post-type-acf-field-group #poststuff .postbox-header h3 {\n font-size: 16px;\n font-weight: 400;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.p1, #acf-field-group-pro-features h1 {\n font-size: 15px;\n}\n\n.p2, .acf-no-field-groups-wrapper .acf-no-field-groups-inner p, #acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label {\n font-size: 14px;\n}\n\n.p3, .acf-admin-field-groups .wp-list-table .post-state, .post-type-acf-field-group .subtitle {\n font-size: 13.5px;\n}\n\n.p4, .acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p, #acf-update-information .form-table th,\n#acf-update-information .form-table td, #acf-admin-tools.tool-export .acf-panel h3, .acf-btn.acf-btn-sm, .acf-admin-toolbar .acf-tab, .acf-admin-field-groups .subsubsub li, .acf-admin-field-groups .wp-list-table tbody th,\n.acf-admin-field-groups .wp-list-table tbody td, .acf-admin-field-groups .wp-list-table thead th, .acf-admin-field-groups .wp-list-table thead td,\n.acf-admin-field-groups .wp-list-table tfoot th, .acf-admin-field-groups .wp-list-table tfoot td, .post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection__rendered, .post-type-acf-field-group .button, .post-type-acf-field-group input[type=text],\n.post-type-acf-field-group input[type=search],\n.post-type-acf-field-group input[type=number],\n.post-type-acf-field-group textarea,\n.post-type-acf-field-group select {\n font-size: 13px;\n}\n\n.p5, .acf-admin-field-groups .row-actions, .post-type-acf-field-group .notice .button,\n.post-type-acf-field-group #lost-connection-notice .button {\n font-size: 12.5px;\n}\n\n.p6, #acf-update-information .acf-update-changelog p em, .acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small, .acf-admin-field-groups .row-actions, .acf-small {\n font-size: 12px;\n}\n\n.p7, .acf-tooltip, .post-type-acf-field-group .notice p.help,\n.post-type-acf-field-group #lost-connection-notice p.help {\n font-size: 11.5px;\n}\n\n.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.post-type-acf-field-group .acf-settings-wrap h1,\n.post-type-acf-field-group #acf-admin-tools h1 {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group a:focus {\n box-shadow: none;\n outline: none;\n}\n\n.post-type-acf-field-group 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.post-type-acf-field-group {\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}\n.post-type-acf-field-group input[type=text],\n.post-type-acf-field-group input[type=search],\n.post-type-acf-field-group input[type=number],\n.post-type-acf-field-group textarea,\n.post-type-acf-field-group 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.post-type-acf-field-group input[type=text]:focus,\n.post-type-acf-field-group input[type=search]:focus,\n.post-type-acf-field-group input[type=number]:focus,\n.post-type-acf-field-group textarea:focus,\n.post-type-acf-field-group select:focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n}\n.post-type-acf-field-group input[type=text]:disabled,\n.post-type-acf-field-group input[type=search]:disabled,\n.post-type-acf-field-group input[type=number]:disabled,\n.post-type-acf-field-group textarea:disabled,\n.post-type-acf-field-group select:disabled {\n background-color: #F9FAFB;\n color: #808a9e;\n}\n.post-type-acf-field-group input[type=text]::placeholder,\n.post-type-acf-field-group input[type=search]::placeholder,\n.post-type-acf-field-group input[type=number]::placeholder,\n.post-type-acf-field-group textarea::placeholder,\n.post-type-acf-field-group select::placeholder {\n color: #98A2B3;\n}\n.post-type-acf-field-group input[type=text]:read-only {\n background-color: #F9FAFB;\n color: #98A2B3;\n}\n.post-type-acf-field-group .acf-field.acf-field-number .acf-label,\n.post-type-acf-field-group .acf-field.acf-field-number .acf-input input[type=number] {\n max-width: 180px;\n}\n.post-type-acf-field-group textarea {\n box-sizing: border-box;\n padding-top: 10px;\n padding-bottom: 10px;\n height: 80px;\n min-height: 56px;\n}\n.post-type-acf-field-group 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.post-type-acf-field-group select:hover, .post-type-acf-field-group select:focus {\n color: #0783BE;\n}\n.post-type-acf-field-group select::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 5px;\n left: 5px;\n width: 20px;\n height: 20px;\n background-color: red;\n}\n.post-type-acf-field-group input[type=radio],\n.post-type-acf-field-group 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.post-type-acf-field-group input[type=radio]:hover,\n.post-type-acf-field-group input[type=checkbox]:hover {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.post-type-acf-field-group input[type=radio]:checked, .post-type-acf-field-group input[type=radio]:focus-visible,\n.post-type-acf-field-group input[type=checkbox]:checked,\n.post-type-acf-field-group input[type=checkbox]:focus-visible {\n background-color: #EBF5FA;\n border-color: #0783BE;\n}\n.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus-visible:before,\n.post-type-acf-field-group input[type=checkbox]:checked:before,\n.post-type-acf-field-group 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.post-type-acf-field-group input[type=radio]:active,\n.post-type-acf-field-group input[type=checkbox]:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.post-type-acf-field-group input[type=radio]:disabled,\n.post-type-acf-field-group input[type=checkbox]:disabled {\n background-color: #F9FAFB;\n border-color: #D0D5DD;\n}\n.post-type-acf-field-group input[type=radio]:checked:before, .post-type-acf-field-group input[type=radio]:focus:before {\n background-image: url(\"../../images/field-states/radio-active.svg\");\n}\n.post-type-acf-field-group input[type=checkbox]:checked:before, .post-type-acf-field-group input[type=checkbox]:focus:before {\n background-image: url(\"../../images/field-states/checkbox-active.svg\");\n}\n.post-type-acf-field-group .acf-radio-list li input[type=radio],\n.post-type-acf-field-group .acf-radio-list li input[type=checkbox],\n.post-type-acf-field-group .acf-checkbox-list li input[type=radio],\n.post-type-acf-field-group .acf-checkbox-list li input[type=checkbox] {\n margin-right: 6px;\n}\n.post-type-acf-field-group .acf-radio-list.acf-bl li,\n.post-type-acf-field-group .acf-checkbox-list.acf-bl li {\n margin-bottom: 8px;\n}\n.post-type-acf-field-group .acf-radio-list.acf-bl li:last-of-type,\n.post-type-acf-field-group .acf-checkbox-list.acf-bl li:last-of-type {\n margin-bottom: 0;\n}\n.post-type-acf-field-group .acf-radio-list label,\n.post-type-acf-field-group .acf-checkbox-list label {\n display: flex;\n align-items: center;\n align-content: center;\n}\n.post-type-acf-field-group .acf-switch {\n width: 42px;\n height: 24px;\n border: none;\n background-color: #D0D5DD;\n border-radius: 12px;\n}\n.post-type-acf-field-group .acf-switch:hover {\n background-color: #98A2B3;\n}\n.post-type-acf-field-group .acf-switch:active {\n box-shadow: 0px 0px 0px 3px #EBF5FA, 0px 0px 0px rgba(255, 54, 54, 0.25);\n}\n.post-type-acf-field-group .acf-switch.-on {\n background-color: #0783BE;\n}\n.post-type-acf-field-group .acf-switch.-on:hover {\n background-color: #066998;\n}\n.post-type-acf-field-group .acf-switch.-on .acf-switch-slider {\n left: 20px;\n}\n.post-type-acf-field-group .acf-switch .acf-switch-off,\n.post-type-acf-field-group .acf-switch .acf-switch-on {\n visibility: hidden;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .acf-field-true-false {\n display: flex;\n align-items: center;\n}\n.post-type-acf-field-group .acf-field-true-false .acf-label {\n order: 2;\n display: inline-flex;\n align-items: center;\n margin-bottom: 0;\n margin-left: 12px;\n}\n.post-type-acf-field-group .acf-field-true-false .acf-label label {\n margin-bottom: 0;\n}\n.post-type-acf-field-group .acf-field-true-false .acf-label .acf-tip {\n margin-left: 12px;\n}\n.post-type-acf-field-group 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.post-type-acf-field-group input::file-selector-button:hover {\n border-color: #066998;\n cursor: pointer;\n color: #066998 !important;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .button:hover {\n background-color: #f3f9fc;\n border-color: #0783BE;\n color: #0783BE;\n}\n.post-type-acf-field-group .button:focus {\n background-color: #f3f9fc;\n outline: 3px solid #EBF5FA;\n color: #0783BE;\n}\n.post-type-acf-field-group .edit-field-group-header {\n display: block !important;\n}\n.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection {\n border: none;\n line-height: 1;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .acf-input .select2-container--focus {\n outline: 3px solid #EBF5FA;\n border-color: #399CCB;\n border-radius: 6px;\n}\n.post-type-acf-field-group .acf-input .select2-container--focus .select2-selection__rendered {\n border-color: #399CCB !important;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .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.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field {\n margin: 0;\n padding-left: 6px;\n}\n.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field:focus {\n outline: none;\n border: none;\n}\n.post-type-acf-field-group .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.post-type-acf-field-group .acf-input .select2-selection__clear {\n width: 18px;\n height: 18px;\n margin-top: 12px;\n margin-right: 0;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n}\n.post-type-acf-field-group .acf-input .select2-selection__clear:before {\n content: \"\";\n display: block;\n width: 14px;\n height: 14px;\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.post-type-acf-field-group .acf-input .select2-selection__clear:hover::before {\n background-color: #1D2939;\n}\n.post-type-acf-field-group .acf-label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.post-type-acf-field-group .acf-label .acf-icon-help {\n width: 18px;\n height: 18px;\n background-color: #98A2B3;\n}\n.post-type-acf-field-group .acf-label label {\n margin-bottom: 0;\n}\n.post-type-acf-field-group .acf-field-setting-name .acf-tip {\n position: absolute;\n top: 0;\n left: 654px;\n color: #98A2B3;\n}\n.post-type-acf-field-group .acf-field-setting-name .acf-tip .acf-icon-help {\n width: 18px;\n height: 18px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .tablenav.top {\n display: none;\n}\n.acf-admin-field-groups .subsubsub {\n margin-bottom: 3px;\n}\n.acf-admin-field-groups .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-admin-field-groups .wp-list-table strong {\n color: #98A2B3;\n margin: 0;\n}\n.acf-admin-field-groups .wp-list-table a.row-title {\n font-size: 13px !important;\n font-weight: 500;\n}\n.acf-admin-field-groups .wp-list-table th,\n.acf-admin-field-groups .wp-list-table td {\n color: #344054;\n}\n.acf-admin-field-groups .wp-list-table th.sortable a,\n.acf-admin-field-groups .wp-list-table td.sortable a {\n padding: 0;\n}\n.acf-admin-field-groups .wp-list-table th.check-column,\n.acf-admin-field-groups .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-admin-field-groups .wp-list-table th.check-column,\n.acf-admin-field-groups .wp-list-table td.check-column {\n vertical-align: top;\n padding-right: 2px;\n padding-left: 10px;\n }\n}\n.acf-admin-field-groups .wp-list-table th input,\n.acf-admin-field-groups .wp-list-table td input {\n margin: 0;\n padding: 0;\n}\n.acf-admin-field-groups .wp-list-table thead th, .acf-admin-field-groups .wp-list-table thead td,\n.acf-admin-field-groups .wp-list-table tfoot th, .acf-admin-field-groups .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-admin-field-groups .wp-list-table thead th, .acf-admin-field-groups .wp-list-table thead td,\n.acf-admin-field-groups .wp-list-table tfoot th, .acf-admin-field-groups .wp-list-table tfoot td {\n padding-right: 16px;\n padding-left: 8px;\n }\n}\n@media screen and (max-width: 880px) {\n .acf-admin-field-groups .wp-list-table thead th.check-column, .acf-admin-field-groups .wp-list-table thead td.check-column,\n.acf-admin-field-groups .wp-list-table tfoot th.check-column, .acf-admin-field-groups .wp-list-table tfoot td.check-column {\n vertical-align: middle;\n }\n}\n.acf-admin-field-groups .wp-list-table tbody th,\n.acf-admin-field-groups .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-admin-field-groups .wp-list-table tbody th,\n.acf-admin-field-groups .wp-list-table tbody td {\n padding-right: 16px;\n padding-left: 8px;\n }\n}\n.acf-admin-field-groups .wp-list-table .column-acf-key {\n white-space: nowrap;\n}\n.acf-admin-field-groups .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-admin-field-groups .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-admin-field-groups .wp-list-table .post-state {\n color: #667085;\n}\n.acf-admin-field-groups .wp-list-table tr:hover,\n.acf-admin-field-groups .wp-list-table tr:focus-within {\n background: #f7f7f7;\n}\n.acf-admin-field-groups .wp-list-table tr:hover .row-actions,\n.acf-admin-field-groups .wp-list-table tr:focus-within .row-actions {\n margin-bottom: 0;\n}\n@media screen and (min-width: 782px) {\n .acf-admin-field-groups .wp-list-table .column-acf-count {\n width: 10%;\n }\n}\n.acf-admin-field-groups .wp-list-table .row-actions span.file {\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.acf-admin-field-groups .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-admin-field-groups .row-actions .trash a {\n color: #d94f4f;\n}\n.acf-admin-field-groups .widefat thead td.check-column,\n.acf-admin-field-groups .widefat tfoot td.check-column {\n padding-top: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow actions\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .row-actions a:hover {\n color: #044767;\n}\n.acf-admin-field-groups .row-actions .trash a {\n color: #a00;\n}\n.acf-admin-field-groups .row-actions .trash a:hover {\n color: #f00;\n}\n.acf-admin-field-groups .row-actions.visible {\n margin-bottom: 0;\n opacity: 1;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRow hover\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups #the-list tr:hover td,\n.acf-admin-field-groups #the-list tr:hover th {\n background-color: #f7fbfd;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Table Nav\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .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-admin-field-groups #posts-filter p.search-box {\n margin-top: 5px;\n margin-right: 0;\n margin-bottom: 24px;\n margin-left: 0;\n}\n.acf-admin-field-groups #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-admin-field-groups #posts-filter p.search-box {\n display: flex;\n box-sizing: border-box;\n padding-right: 24px;\n margin-right: 16px;\n }\n .acf-admin-field-groups #posts-filter p.search-box #post-search-input {\n min-width: auto;\n }\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tStatus tabs\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .subsubsub {\n display: flex;\n align-items: flex-end;\n height: 40px;\n margin-bottom: 16px;\n}\n.acf-admin-field-groups .subsubsub li {\n margin-top: 0;\n margin-right: 4px;\n color: #98A2B3;\n}\n.acf-admin-field-groups .subsubsub li .count {\n color: #667085;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .tablenav-pages {\n display: flex;\n align-items: center;\n}\n.acf-admin-field-groups .tablenav-pages .displaying-num {\n margin-top: 0;\n margin-right: 16px;\n margin-bottom: 0;\n margin-left: 0;\n}\n.acf-admin-field-groups .tablenav-pages .pagination-links {\n display: flex;\n align-items: center;\n}\n.acf-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links #table-paging .total-pages {\n margin-right: 0;\n}\n.acf-admin-field-groups .tablenav-pages.one-page .pagination-links {\n display: none;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tPagination buttons & icons\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(1), .acf-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(2), .acf-admin-field-groups .tablenav-pages .pagination-links .button:last-child, .acf-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(1):before, .acf-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(2):before, .acf-admin-field-groups .tablenav-pages .pagination-links .button:last-child:before, .acf-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:hover {\n border-color: #066998;\n background-color: rgba(7, 131, 190, 0.05);\n}\n.acf-admin-field-groups .tablenav-pages .pagination-links .button:hover:before {\n background-color: #066998;\n}\n.acf-admin-field-groups .tablenav-pages .pagination-links .button.disabled {\n background-color: transparent !important;\n}\n.acf-admin-field-groups .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 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 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: 380px;\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 flex: 1 0 100%;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2 {\n margin-top: 32px;\n margin-bottom: 0;\n padding: 0;\n color: #344054;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-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 display: block;\n position: relative;\n margin-top: 32px;\n}\n.acf-no-field-groups-wrapper .acf-no-field-groups-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 margin-top: 32px;\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 background-color: transparent !important;\n}\n.acf-no-field-groups .wp-list-table thead,\n.acf-no-field-groups .wp-list-table tfoot {\n display: none;\n}\n.acf-no-field-groups .no-pages {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen list table info toggle\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .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.post-type-acf-field-group .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 .post-type-acf-field-group .widefat th input[type=checkbox],\n.post-type-acf-field-group .widefat thead td input[type=checkbox],\n.post-type-acf-field-group .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 display: flex;\n justify-content: flex-start;\n align-content: center;\n align-items: center;\n position: unset;\n top: 32px;\n height: 72px;\n z-index: 800;\n background: #344054;\n color: #98A2B3;\n}\n@media screen and (max-width: 880px) {\n .acf-admin-toolbar {\n position: static;\n }\n}\n.acf-admin-toolbar .acf-logo {\n margin-right: 32px;\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#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/*---------------------------------------------------------------------------------------------\n*\n* Admin Toolbar Icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar .acf-tab i.acf-icon {\n display: none;\n margin-right: 8px;\n margin-left: -2px;\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-tools i.acf-icon, .acf-admin-toolbar .acf-tab.acf-header-tab-acf-settings-updates 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 background-color: #EAECF0;\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-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\n/*---------------------------------------------------------------------------------------------\n*\n* Hide WP default controls\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group h1.wp-heading-inline {\n display: none;\n}\n.post-type-acf-field-group .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}\n.acf-headerbar .acf-page-title {\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@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-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\n/*---------------------------------------------------------------------------------------------\n*\n* Edit Field Group Headerbar\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-headerbar-field-editor {\n position: sticky;\n top: 32px;\n z-index: 700;\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/*---------------------------------------------------------------------------------------------\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:disabled {\n background-color: red;\n}\n.acf-btn:hover {\n background-color: #066998;\n color: #fff;\n cursor: pointer;\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-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\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: 18px;\n height: 18px;\n -webkit-mask-size: 18px;\n mask-size: 18px;\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: #fdf8f6;\n border-color: #DA5A39 !important;\n color: #DA5A39 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcon base styling\n*\n*--------------------------------------------------------------------------------------------*/\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.post-type-acf-field-group {\n /*--------------------------------------------------------------------------------------------\n *\n *\tInactive group icon\n *\n *--------------------------------------------------------------------------------------------*/\n}\n.post-type-acf-field-group 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.post-type-acf-field-group 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.post-type-acf-field-group 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.post-type-acf-field-group 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.post-type-acf-field-group i.acf-icon-trash {\n -webkit-mask-image: url(\"../../images/icons/icon-trash.svg\");\n mask-image: url(\"../../images/icons/icon-trash.svg\");\n}\n.post-type-acf-field-group 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.post-type-acf-field-group 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.post-type-acf-field-group i.acf-icon-chevron-right,\n.post-type-acf-field-group .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.post-type-acf-field-group i.acf-icon-chevron-left,\n.post-type-acf-field-group .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.post-type-acf-field-group 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.post-type-acf-field-group i.acf-icon-globe,\n.post-type-acf-field-group .acf-icon.-globe {\n -webkit-mask-image: url(\"../../images/icons/icon-globe.svg\");\n mask-image: url(\"../../images/icons/icon-globe.svg\");\n}\n.post-type-acf-field-group i.acf-icon-image,\n.post-type-acf-field-group .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.post-type-acf-field-group .post-type-acf-field-group .post-state {\n font-weight: normal;\n}\n.post-type-acf-field-group .post-type-acf-field-group .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.post-type-acf-field-group .post-type-acf-field-group .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 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 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#acf-field-group-fields .postbox-header h2:before,\nh3.acf-sub-field-list-title:before {\n -webkit-mask-image: url(\"../../images/icons/icon-fields.svg\");\n mask-image: url(\"../../images/icons/icon-fields.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/*--------------------------------------------------------------------------------------------\n*\n*\tPostbox expand / collapse icon\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .postbox-header .handle-actions {\n display: flex;\n}\n.post-type-acf-field-group .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 -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\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: grid;\n grid-template-columns: 65% 1fr;\n grid-template-rows: min-content 1.3fr;\n gap: 32px 32px;\n grid-template-areas: \"acf-admin-notice acf-admin-notice\" \". .\";\n}\n@media screen and (max-width: 880px) {\n .acf-settings-wrap.acf-updates {\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.acf-admin-notice,\n.post-type-acf-field-group .notice {\n grid-area: acf-admin-notice;\n margin-bottom: 0 !important;\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-bottom: 0 !important;\n margin-left: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* License information\n*\n*---------------------------------------------------------------------------------------------*/\n#acf-license-information .acf-activation-form {\n margin-top: 24px;\n}\n#acf-license-information label {\n font-weight: bold;\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 .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 upsell 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, #2C9FB8 0.44%, #A45CFF 113.3%);\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-field-group-pro-features .acf-field-group-pro-features-wrapper {\n display: flex;\n justify-content: flex-start;\n align-content: stretch;\n align-items: center;\n}\n@media screen and (max-width: 768px) {\n #acf-field-group-pro-features .acf-field-group-pro-features-wrapper {\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 #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,\n#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions {\n flex: 0 1 100%;\n }\n}\n#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content {\n flex: 1 1 auto;\n margin-right: 40px;\n}\n@media screen and (max-width: 768px) {\n #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content {\n margin-right: 0;\n margin-bottom: 8px;\n }\n}\n#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 justify-content: flex-end;\n min-width: 160px;\n}\n@media screen and (max-width: 768px) {\n #acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions {\n justify-content: flex-start;\n }\n}\n#acf-field-group-pro-features.postbox {\n display: flex;\n align-items: center;\n min-height: 120px;\n background-image: linear-gradient(to right, #1d4373, #24437e, #304288, #413f8f, #543a95);\n color: #EAECF0;\n}\n#acf-field-group-pro-features.postbox .postbox-header {\n display: none;\n}\n#acf-field-group-pro-features.postbox .inside {\n width: 100%;\n border: none;\n}\n#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-field-group-pro-features h1 .acf-icon {\n margin-right: 8px;\n}\n#acf-field-group-pro-features .acf-btn {\n display: inline-flex;\n background-color: rgba(255, 255, 255, 0.2);\n border: none;\n}\n#acf-field-group-pro-features .acf-btn:hover {\n background-color: rgba(255, 255, 255, 0.3);\n}\n#acf-field-group-pro-features .acf-btn .acf-icon {\n margin-right: -2px;\n margin-left: 8px;\n}\n#acf-field-group-pro-features .acf-pro-features-list {\n display: flex;\n justify-content: flex-start;\n align-items: center;\n flex-wrap: wrap;\n margin-top: 16px;\n margin-bottom: 0;\n}\n@media screen and (max-width: 768px) {\n #acf-field-group-pro-features .acf-pro-features-list {\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#acf-field-group-pro-features .acf-pro-features-list li {\n display: flex;\n box-sizing: border-box;\n margin-right: 32px;\n margin-bottom: 6px;\n}\n@media screen and (max-width: 880px) {\n #acf-field-group-pro-features .acf-pro-features-list li {\n flex: 0 1 calc(33.3% - 32px);\n }\n}\n@media screen and (max-width: 640px) {\n #acf-field-group-pro-features .acf-pro-features-list li {\n flex: 0 1 100%;\n }\n}\n#acf-field-group-pro-features .acf-pro-features-list li:last-child {\n margin-right: 0;\n}\n#acf-field-group-pro-features .acf-pro-features-list li:before {\n content: \"\";\n display: inline-block;\n width: 16px;\n height: 16px;\n margin-right: 8px;\n background-color: #52AA59;\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-check-circle-solid.svg\");\n mask-image: url(\"../../images/icons/icon-check-circle-solid.svg\");\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#DA5A39;\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, #2C9FB8 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\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 { padding: 0; margin: 0; list-style: none; display: block; position: relative; }\n.acf-hl > li { float: left; display: block; margin: 0; padding: 0; }\n.acf-hl > li.acf-fr { float: right; }\n\n\n/* Horizontal List: Clearfix */\n.acf-hl:before, .acf-hl:after,\n.acf-bl:before, .acf-bl:after,\n.acf-cf:before, .acf-cf:after {\n content: \"\";\n display: block;\n line-height: 0;\n}\n.acf-hl:after,\n.acf-bl:after,\n.acf-cf:after {\n clear: both;\n}\n\n\n/* Block List */\n.acf-bl { padding: 0; margin: 0; list-style: none; display: block; position: relative; }\n.acf-bl > li { display: block; margin: 0; padding: 0; float: none; }\n\n\n/* Visibility */\n.acf-hidden {\n\tdisplay: none !important;\n}\n.acf-empty {\n\tdisplay: table-cell !important;\n\t* { display: none !important; }\n}\n\n/* Float */\n.acf-fl { float: left; }\n.acf-fr { float: right; }\n.acf-fn { float: none; }\n\n\n/* Align */\n.acf-al { text-align: left; }\n.acf-ar { text-align: right; }\n.acf-ac { text-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\n/* spinner */\n.acf-spinner {\n\tdisplay: none;\n}\n\n.acf-spinner.is-active {\n\tdisplay: inline-block;\n}\n\n\n/* WP < 4.2 */\n.spinner.is-active {\n\tdisplay: inline-block;\n}\n\n\n/* required */\n.acf-required {\n\tcolor: #f00;\n}\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\n/* show if value */\n.show-if-value { display: none; }\n.hide-if-value { display: block; }\n\n.has-value .show-if-value { display: block; }\n.has-value .hide-if-value { display: none; }\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*\n* tooltip\n*\n*---------------------------------------------------------------------------------------------*/\n\n/* tooltip */\n.acf-tooltip {\n background: $gray-800;\n border-radius: $radius-md;\n color: $gray-300;\n padding: {\n\t\ttop: 8px;\n\t\tright: 12px;\n\t\tbottom: 10px;\n\t\tleft: 12px;\n\t};\n position: absolute;\n @extend .p7;\n z-index: 900000;\n\tmax-width: 280px;\n\tbox-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);\n\n\n /* tip */\n &:before {\n\t border: solid;\n\t border-color: transparent;\n\t border-width: 6px;\n\t content: \"\";\n\t position: absolute;\n\t}\n\n\n /* positions */\n &.top {\n\t margin-top: -8px;\n\n\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 }\n\n &.right {\n\t margin-left: 8px;\n\n\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 }\n\n &.bottom {\n\t margin-top: 8px;\n\n\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 }\n\n &.left {\n\t margin-left: -8px;\n\n\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 }\n\n .acf-overlay {\n\t\tz-index: -1;\n\t}\n\n}\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*\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*\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}\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\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, &: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 background: #FFFFFF;\n border: 1px solid $wp-card-border;\n position: relative;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n\n /* title */\n .title {\n\t\tborder-bottom: 1px solid $wp-card-border;\n\t margin: 0;\n\t padding: 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 line-height: 1em;\n\t\t margin: 0;\n\t\t padding: 0;\n\t\t}\n\t}\n\n\n\t.inner {\n\t padding: 15px;\n\t}\n\n\th2 {\n\t\tcolor: #333333;\n\t font-size: 26px;\n\t line-height: 1.25em;\n\t margin: 0.25em 0 0.75em;\n\t padding: 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 border-top: 1px solid $wp-card-border;\n\t padding: 12px;\n\t font-size: 13px;\n\t line-height: 1.5;\n\n\t p {\n\t\t margin: 0;\n\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*\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 width: 100%;\n clear: both;\n box-sizing: content-box;\n\n /* defaults */\n > tbody > tr,\n\t> thead > tr {\n\n \t> th, > 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 border-style: solid;\n\t\t font-weight: normal;\n\t\t}\n\n\t\t> th {\n\t\t\tposition: relative;\n\t\t\tcolor: #333333;\n\t\t}\n\n }\n\n\n /* thead */\n > thead {\n\n\t > tr {\n\n\t\t\t> th {\n\t\t\t border-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\n\t }\n\n }\n\n\n /* tbody */\n > tbody {\n\n\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\n }\n\n\n /* -clear */\n &.-clear {\n\t border: 0 none;\n\n\t > tbody > tr,\n\t > thead > tr {\n\n\t\t > td, >th {\n\t\t\t border: 0 none;\n\t\t\t\tpadding: 4px;\n\t\t }\n\t }\n }\n}\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\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\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/*--------------------------------------------------------------------------------------------\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\n\t}\n}\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\tborder-left: 4px solid #00a0d2;\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.col-actions {\n\t\tfloat: right;\n\t\ttext-align: center;\n\t\tpadding: 10px;\n\t}\n\n\timg {\n\t\tfloat: left;\n\t\twidth: 70px;\n\t\theight: 70px;\n\t\tmargin: 0 0 0 -90px;\n\t}\n\n\th2 {\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\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\n/*--------------------------------------------------------------------------------------------\n*\n*\tWelcome\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-wrap {\n\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 font-size: 2.4em;\n\t font-weight: 300;\n\t line-height: 1.3;\n\t margin: 1.1em 0 0.2em;\n\t text-align: center;\n\t}\n\n\t.feature-section {\n\t padding: 40px 0;\n\n\t h2 {\n\t\t margin-top: 20px;\n\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\n\n/* sizes */\n.acf-hl[data-cols=\"2\"] > li { width: 50%; }\n.acf-hl[data-cols=\"3\"] > li { width: 33.333%; }\n.acf-hl[data-cols=\"4\"] > li { width: 25%; }\n\n\n/* mobile */\n@media screen and (max-width: $sm) {\n\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\n\t}\n\n}\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}\n\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\n/* ul compatibility */\nul.acf-actions {\n\tli { float: right; margin-left: 4px; }\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tRTL\n*\n*--------------------------------------------------------------------------------------------*/\n\nhtml[dir=\"rtl\"] .acf-fl { float: right; }\nhtml[dir=\"rtl\"] .acf-fr { float: left; }\n\nhtml[dir=\"rtl\"] .acf-hl > li {\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-hl > li.acf-fr {\n float: left;\n}\n\nhtml[dir=\"rtl\"] .acf-icon.logo {\n\tleft: 0;\n\tright: auto;\n}\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*\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\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*\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\n\t\t.acf-panel-inside {\n\t\t\tdisplay: block;\n\t\t}\n\n\t}\n\n\n\t/* inside postbox */\n\t.postbox & {\n\t\tmargin-left: -12px;\n\t\tmargin-right: -12px;\n\t}\n\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*\n* Admin Tools\n*\n*---------------------------------------------------------------------------------------------*/\n\n#acf-admin-tools {\n\n\t.notice {\n\t\tmargin-top: 10px;\n\t}\n\n\t.acf-meta-box-wrap {\n\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}\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}\n\t}\n\n}\n\n.acf-meta-box-wrap {\n\n\t.postbox {\n\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\n\t}\n\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\n/* mobile */\n@media only screen and (max-width: 850px) {\n\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\n/* export tool */\n#acf-admin-tool-export {\n\n\tp {\n\t\tmax-width: 800px;\n\t}\n\n\tul {\n\t\tcolumn-width: 200px;\n\t}\n\n\t.acf-postbox-side .button {\n\t\tmargin: 0;\n\t\twidth: 100%;\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 {\n\t\t\tdisplay: none;\n\t\t}\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 font-size: 12px;\n\t line-height: 1.4em;\n\t white-space: pre;\n\t}\n &:after {\n\t content: \"\";\n\t display: none;\n\t position: absolute;\n\t z-index: 998;\n\n\t bottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 4px);\n\n\t border: solid 6px transparent;\n\t border-top-color: #191e23;\n\t}\n\n\t&:hover, &:focus {\n\t\t&:before, &:after {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n// Diff modal.\n.acf-diff {\n\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, th {\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}\n.acf-modal-backdrop {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tbackground: #000;\n\topacity: 0.7;\n\tz-index: 159900;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Retina\n*\n*---------------------------------------------------------------------------------------------*/\n\n@media\nonly screen and (-webkit-min-device-pixel-ratio: 2),\nonly screen and ( min--moz-device-pixel-ratio: 2),\nonly screen and ( -o-min-device-pixel-ratio: 2/1),\nonly screen and ( min-device-pixel-ratio: 2),\nonly screen and ( min-resolution: 192dpi),\nonly screen and ( min-resolution: 2dppx) {\n\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*\n* Wrap\n*\n*--------------------------------------------------------------------------------------------*/\n\n.post-type-acf-field-group {\n\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\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/*---------------------------------------------------------------------------------------------\n*\n* Admin Postbox & ACF Postbox\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group .postbox,\n.post-type-acf-field-group .acf-box {\n\tborder: none;\n\tborder-radius: $radius-lg;\n\tbox-shadow: $elevation-01;\n\n\t.inside {\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\t}\n\n\t.acf-postbox-inner {\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: 24px;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t};\n\t}\n\n\t.inner,\n\t.inside {\n\t\tmargin: {\n\t\t\ttop: 0 !important;\n\t\t\tright: 0 !important;\n\t\t\tbottom: 0 !important;\n\t\t\tleft: 0 !important;\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}\n\n\t.postbox-header,\n\t.title {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tbox-sizing: border-box;\n\t\tmin-height: 64px;\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: 24px;\n\t\t};\n\t\tborder-bottom: {\n\t\t\twidth: 0;\n\t\t\tstyle: none;\n\t\t};\n\n\t\th2,\n\t\th3 {\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\t@extend .h3;\n\t\t\tcolor: $gray-700;\n\t\t}\n\n\t}\n\n\t.hndle {\n\t\tpadding: {\n\t\t\ttop: 0;\n\t\t\tright: 24px;\n\t\t\tbottom: 0;\n\t\t\tleft: 24px;\n\t\t};\n\t}\n\n}\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 .h3;\n\t\tcolor: $gray-700;\n\t}\n\n\t.acf-icon {\n\t\tbackground-color: $gray-400;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Screen options button & screen meta container\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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\n\t}\n\n\t#screen-meta {\n\t\tborder-color: $gray-300;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox headings\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t#poststuff {\n\n\t\t.postbox-header {\n\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 .h3;\n\t\t\t\tcolor: $gray-700 !important;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Postbox drag state\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t&.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables {\n\t\tbox-sizing: border-box;\n\t\tpadding: 2px;\n\t\toutline: none;\n\t\tbackground-image: repeating-linear-gradient(0deg, $gray-500, $gray-500 5px, transparent 5px, transparent 10px, $gray-500 10px), repeating-linear-gradient(90deg, $gray-500, $gray-500 5px, transparent 5px, transparent 10px, $gray-500 10px), repeating-linear-gradient(180deg, $gray-500, $gray-500 5px, transparent 5px, transparent 10px, $gray-500 10px), repeating-linear-gradient(270deg, $gray-500, $gray-500 5px, transparent 5px, transparent 10px, $gray-500 10px);\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*\n* Search summary\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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\n\t}\n\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*\n* Notices\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\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\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,.7);\n\t\t\t}\n\n\t\t}\n\n\t\t// Dismiss button\n\t\t.notice-dismiss {\n\t\t\tposition: absolute;\n\t\t\ttop: 4px;\n\t\t\tright: 8px;\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\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\n\t\t}\n\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\n\t}\n\n\t// Error notice\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\n\t}\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #wpcontent {\n\tline-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\ta {\n\t\tcolor: $blue-500;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.h1 {\n\tfont-size: 21px;\n\tfont-weight: 400;\n}\n\n.h2 {\n\tfont-size: 18px;\n\tfont-weight: 400;\n}\n\n.h3 {\n\tfont-size: 16px;\n\tfont-weight: 400;\n}\n\n.post-type-acf-field-group,\n.acf-headerbar {\n\n\th1 {\n\t\t@extend .h1;\n\t}\n\n\th2 {\n\t\t@extend .h2;\n\t}\n\n\th3 {\n\t\t@extend .h3;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.p1 {\n\tfont-size: 15px;\n}\n\n.p2 {\n\tfont-size: 14px;\n}\n\n.p3 {\n\tfont-size: 13.5px;\n}\n\n.p4 {\n\tfont-size: 13px;\n}\n\n.p5 {\n\tfont-size: 12.5px;\n}\n\n.p6 {\n\tfont-size: 12px;\n}\n\n.p7 {\n\tfont-size: 11.5px;\n}\n\n.p8 {\n\tfont-size: 11px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n\t@extend .h2;\n\tcolor: $gray-700;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t.acf-settings-wrap h1,\n\t#acf-admin-tools h1 {\n\t\tdisplay: none;\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.post-type-acf-field-group a:focus {\n\tbox-shadow: none;\n\toutline: none;\n}\n.post-type-acf-field-group a:focus-visible {\n\tbox-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgb(79 148 212 / 80%);\n\toutline: 1px solid transparent;\n}",".post-type-acf-field-group {\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\tbackground-color: red;\n\t\t}\n\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\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: center;\n\n\t\t.acf-label {\n\t\t\torder: 2;\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\tmargin: {\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\n\t\t}\n\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: 0;\n\t\t\t};\n\t\t\ttext-indent: 100%;\n\t\t\twhite-space: nowrap;\n\t\t\toverflow: hidden;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 14px;\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: $gray-800;\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\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.acf-icon-help {\n\t\t\twidth: 18px;\n\t\t\theight: 18px;\n\t\t}\n\t}\n}\n","/*---------------------------------------------------------------------------------------------\n*\n* Field Groups\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups {\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}\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// 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-admin-field-groups {\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-admin-field-groups {\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-admin-field-groups {\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-admin-field-groups #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\n\t\t#post-search-input {\n\t\t\tmin-width: auto;\n\t\t}\n\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tStatus tabs\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-admin-field-groups .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-admin-field-groups {\n\n\t.tablenav-pages {\n\t\tdisplay: flex;\n\t\talign-items: center;\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-admin-field-groups .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\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\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: 380px;\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 .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\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};\n\n.acf-no-field-groups {\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}\n\n\t.no-pages {\n\t\tdisplay: none;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small screen list table info toggle\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\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.post-type-acf-field-group {\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\tdisplay: flex;\n\tjustify-content: flex-start;\n\talign-content: center;\n\talign-items: center;\n\tposition: unset;\n\ttop: 32px;\n\theight: 72px;\n\tz-index: 800;\n\tbackground: $gray-700;\n\tcolor: $gray-400;\n\n\t@media screen and (max-width: $md) {\n\t\tposition: static;\n\t}\n\n\t.acf-logo {\n\t\tmargin: {\n\t\t\tright: 32px;\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\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// 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/*---------------------------------------------------------------------------------------------\n*\n* Admin Toolbar Icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-admin-toolbar {\n\n\t.acf-tab {\n\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}\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-tools,\n\t\t&.acf-header-tab-acf-settings-updates {\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\n\t\t\ti.acf-icon {\n\t\t\t\tbackground-color: $gray-200;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t// Field groups tab\n\t.acf-header-tab-acf-field-group {\n\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\n\t}\n\n\t// Field groups tab\n\t.acf-header-tab-acf-tools {\n\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\n\t}\n\n\t// Field groups tab\n\t.acf-header-tab-acf-settings-updates {\n\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\n\t}\n\n\n}","/*---------------------------------------------------------------------------------------------\n*\n* Hide WP default controls\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\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}\n\n\t.acf-page-title {\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\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-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\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}\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: 700;\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","/*---------------------------------------------------------------------------------------------\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 .2s ease-in-out;\n\ttransition-property: background, border, box-shadow;\n\n\t&:disabled {\n\t\tbackground-color: red;\n\t}\n\n\t&:hover {\n\t\tbackground-color: $color-primary-hover;\n\t\tcolor: #fff;\n\t\tcursor: pointer;\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\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\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Button icons\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn {\n\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\n\t\ti.acf-icon {\n\t\t\t$icon-size: 18px;\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: 4px;\n\t\t\t\tleft: -2px;\n\t\t\t};\n\t\t}\n\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Delete field group button\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-btn.acf-delete-field-group {\n\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.post-type-acf-field-group i.acf-icon {\n\t$icon-size: 20px;\n\tdisplay: inline-flex;\n\twidth: $icon-size;\n\theight: $icon-size;\n\tbackground-color: currentColor;\n\tborder: none;\n\tborder-radius: 0;\n\t-webkit-mask-size: contain;\n\tmask-size: contain;\n\t-webkit-mask-repeat: no-repeat;\n\tmask-repeat: no-repeat;\n\t-webkit-mask-position: center;\n\tmask-position: center;\n\ttext-indent: 500%;\n\twhite-space: nowrap;\n\toverflow: hidden;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tIcons\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\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-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\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-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\n\t/*--------------------------------------------------------------------------------------------\n\t*\n\t*\tInactive group icon\n\t*\n\t*--------------------------------------------------------------------------------------------*/\n\t.post-type-acf-field-group {\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\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// Field icon\n#acf-field-group-fields .postbox-header h2:before,\nh3.acf-sub-field-list-title:before {\n\t-webkit-mask-image: url(\"../../images/icons/icon-fields.svg\");\n\tmask-image: url(\"../../images/icons/icon-fields.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/*--------------------------------------------------------------------------------------------\n*\n*\tPostbox expand / collapse icon\n*\n*--------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\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\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: grid;\n\tgrid-template-columns: 65% 1fr;\n\tgrid-template-rows: min-content 1.3fr;\n\tgap: 32px 32px;\n\tgrid-template-areas:\n\t\"acf-admin-notice acf-admin-notice\"\n\t\". .\";\n\n\t@media screen and (max-width: $md) {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: flex-start;\n\t\talign-content: flex-start;\n\t\talign-items: center;\n\t\tgrid-column-gap: 8px;\n\t\tgrid-row-gap: 8px;\n\t}\n\n}\n\n.acf-admin-notice,\n.post-type-acf-field-group .notice {\n\tgrid-area: acf-admin-notice;\n\tmargin-bottom: 0 !important;\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\tbottom: 0 !important;\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\n\t.acf-activation-form {\n\t\tmargin: {\n\t\t\ttop: 24px;\n\t\t};\n\t}\n\n\tlabel {\n\t\tfont-weight: bold;\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\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 upsell 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\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-field-group-pro-features {\n\n\t.acf-field-group-pro-features-wrapper {\n\t\tdisplay: flex;\n\t\tjustify-content: flex-start;\n\t\talign-content: stretch;\n\t\talign-items: center;\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tflex-direction: row;\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.acf-field-group-pro-features-content,\n\t\t\t.acf-field-group-pro-features-actions {\n\t\t\t\tflex: 0 1 100%;\n\t\t\t}\n\n\t\t}\n\n\t\t.acf-field-group-pro-features-content {\n\t\t\tflex: 1 1 auto;\n\t\t\tmargin: {\n\t\t\t\tright: 40px;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: 768px) {\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\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\tjustify-content: flex-end;\n\t\t\tmin-width: 160px;\n\n\t\t\t@media screen and (max-width: 768px) {\n\t\t\t\tjustify-content: flex-start;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t&.postbox {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tmin-height: 120px;\n\t\tbackground-image: linear-gradient(to right, #1d4373, #24437e, #304288, #413f8f, #543a95);\n\t\tcolor: $gray-200;\n\n\t\t.postbox-header {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.inside {\n\t\t\twidth: 100%;\n\t\t\tborder: none;\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 .p1;\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,.2);\n\t\tborder: none;\n\n\t\t&:hover {\n\t\t\tbackground-color: rgba(#fff,.3);\n\t\t}\n\n\t\t.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\n\t}\n\n\t// Features list\n\t.acf-pro-features-list {\n\t\tdisplay: flex;\n\t\tjustify-content: flex-start;\n\t\talign-items: center;\n\t\tflex-wrap: wrap;\n\t\tmargin: {\n\t\t\ttop: 16px;\n\t\t\tbottom: 0;\n\t\t};\n\n\t\t@media screen and (max-width: 768px) {\n\t\t\tflex-direction: row;\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}\n\n\t\tli {\n\t\t\tdisplay: flex;\n\t\t\tbox-sizing: border-box;\n\t\t\tmargin: {\n\t\t\t\tright: 32px;\n\t\t\t\tbottom: 6px;\n\t\t\t};\n\n\t\t\t@media screen and (max-width: 880px) {\n\t\t\t\tflex: 0 1 calc(33.3% - 32px);\n\t\t\t}\n\n\t\t\t@media screen and (max-width: $sm) {\n\t\t\t\tflex: 0 1 100%;\n\t\t\t}\n\n\t\t\t&:last-child {\n\t\t\t\tmargin: {\n\t\t\t\t\tright: 0;\n\t\t\t\t};\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\t$icon-size: 16px;\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: $color-success;\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-check-circle-solid.svg');\n\t\t\t\tmask-image: url('../../images/icons/icon-check-circle-solid.svg');\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\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 53d6dde..4d32a98 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:transparent 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-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:#2f353e;border-radius:5px;color:#fff;padding:5px 10px;position:absolute;font-size:12px;line-height:1.4em;z-index:900000}.acf-tooltip:before{border:solid;border-color:transparent;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:transparent 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:""}.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.-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:transparent;background:transparent;color:#444}.acf-icon.light{border-color:transparent;background:#f5f5f5;color:#23282d}.acf-icon.dark{border-color:transparent !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:transparent !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{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:transparent !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:8px 12px;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;border-left:4px solid #00a0d2;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 .col-actions{float:right;text-align:center;padding:10px}#acf-upgrade-notice img{float:left;width:70px;height:70px;margin:0 0 0 -90px}#acf-upgrade-notice h2{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-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 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]{margin-left:0;margin-right:0;margin-top:-10px}.acf-hl[data-cols]>li{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}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-meta-box-wrap{margin-top:10px}.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 .acf-fields{border:#ebebeb solid 1px;background:#fafafa;border-radius:3px}.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{column-width:200px}#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:#fafafa;box-shadow:none;padding:7px;border-radius:3px}#acf-admin-tool-export .acf-panel-selection .acf-label{display:none}.acf-admin-toolbar{background:#fff;border-bottom:1px solid #ccd0d4;padding-top:10px}.acf-admin-toolbar h2{font-size:14px;line-height:2.5714285714;display:inline-block;padding:5px 0;margin:0 10px 0 0}.acf-admin-toolbar h2 i{vertical-align:middle;color:#babbbc}.acf-admin-toolbar .acf-tab{display:inline-block;font-size:14px;line-height:2.5714285714;padding:5px;margin:0 5px;text-decoration:none;color:inherit}.acf-admin-toolbar .acf-tab.is-active{border-bottom:#0071a4 solid 3px;padding-bottom:10px}.acf-admin-toolbar .acf-tab:hover{color:#00a0d2}.acf-admin-toolbar .acf-tab:focus{box-shadow:none}.acf-admin-toolbar a.btn-upgrade{display:inline-flex;background:#dee3ff;border:1px solid #c6d3f8;box-sizing:border-box;border-radius:.25rem;padding:0 .75rem;cursor:pointer;vertical-align:middle;margin-top:-6px;margin-left:20px;text-decoration:none}.acf-admin-toolbar a.btn-upgrade:hover{background:#d1ddff;border-color:#b9caf9}.acf-admin-toolbar a.btn-upgrade p{font-family:system-ui;font-weight:600;letter-spacing:.2;line-height:1;font-size:.625rem;text-transform:uppercase;color:#425fdd;margin-left:.65rem}#wpcontent .acf-admin-toolbar{margin-left:-20px;padding-left:20px}@media screen and (max-width: 600px){.acf-admin-toolbar{display:none}}.acf-admin-field-groups .tablenav.top{display:none}.acf-admin-field-groups .subsubsub{margin-bottom:3px}.acf-admin-field-groups .wp-list-table td,.acf-admin-field-groups .wp-list-table th{box-sizing:border-box}.acf-admin-field-groups .wp-list-table tr:hover{background:#f7f7f7}@media screen and (min-width: 782px){.acf-admin-field-groups .wp-list-table .column-acf-count{width:10%}}.acf-admin-field-groups .wp-list-table .row-actions span.file{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.acf-admin-field-groups .acf-secondary-text{color:#a0a5aa}.acf-multi-dashicon{position:relative;z-index:1}.acf-multi-dashicon:before,.acf-multi-dashicon:after{width:18px;height:18px;line-height:18px;font-size:14px;background:#fff;border:#7e8993 solid 1px;border-radius:2px;display:block}.acf-multi-dashicon:after{content:"";position:absolute;top:-3px;left:-3px;z-index:-1;background:#e7e7e7}.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 transparent;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:transparent;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:#000;opacity:.7;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-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-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:""}.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.-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;border-left:4px solid #00a0d2;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 .col-actions{float:right;text-align:center;padding:10px}#acf-upgrade-notice img{float:left;width:70px;height:70px;margin:0 0 0 -90px}#acf-upgrade-notice h2{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-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}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}#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-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{column-width:200px}#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{display:none}.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:#000;opacity:.7;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}}.post-type-acf-field-group .wrap{margin-top:48px;margin-right:32px;margin-bottom:0;margin-left:12px}@media screen and (max-width: 768px){.post-type-acf-field-group .wrap{margin-right:8px;margin-left:8px}}@media screen and (max-width: 768px){.post-type-acf-field-group #wpcontent{padding-left:0}}.post-type-acf-field-group .postbox,.post-type-acf-field-group .acf-box{border:none;border-radius:8px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group .postbox .inside,.post-type-acf-field-group .acf-box .inside{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px}.post-type-acf-field-group .postbox .acf-postbox-inner,.post-type-acf-field-group .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}.post-type-acf-field-group .postbox .inner,.post-type-acf-field-group .postbox .inside,.post-type-acf-field-group .acf-box .inner,.post-type-acf-field-group .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}.post-type-acf-field-group .postbox .postbox-header,.post-type-acf-field-group .postbox .title,.post-type-acf-field-group .acf-box .postbox-header,.post-type-acf-field-group .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}.post-type-acf-field-group .postbox .postbox-header h2,.post-type-acf-field-group .postbox .postbox-header h3,.post-type-acf-field-group .postbox .title h2,.post-type-acf-field-group .postbox .title h3,.post-type-acf-field-group .acf-box .postbox-header h2,.post-type-acf-field-group .acf-box .postbox-header h3,.post-type-acf-field-group .acf-box .title h2,.post-type-acf-field-group .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}.post-type-acf-field-group .postbox .hndle,.post-type-acf-field-group .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}.acf-postbox-header .acf-icon{background-color:#98a2b3}.post-type-acf-field-group #screen-meta-links{margin-right:32px}.post-type-acf-field-group #screen-meta-links .show-settings{border-color:#d0d5dd}@media screen and (max-width: 768px){.post-type-acf-field-group #screen-meta-links{margin-right:16px;margin-bottom:0}}.post-type-acf-field-group #screen-meta{border-color:#d0d5dd}.post-type-acf-field-group #poststuff .postbox-header h2,.post-type-acf-field-group #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}.post-type-acf-field-group.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}.post-type-acf-field-group .ui-sortable-placeholder{border:none}.post-type-acf-field-group .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}.post-type-acf-field-group .subtitle strong{margin-left:5px}.acf-actions-strip{display:flex}.acf-actions-strip .acf-btn{margin-right:8px}.post-type-acf-field-group .notice,.post-type-acf-field-group #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}.post-type-acf-field-group .notice.update-nag,.post-type-acf-field-group #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}.post-type-acf-field-group .notice .button,.post-type-acf-field-group #lost-connection-notice .button{height:auto;margin-left:8px;padding:0;border:none}.post-type-acf-field-group .notice>div,.post-type-acf-field-group #lost-connection-notice>div{margin-top:0;margin-bottom:0}.post-type-acf-field-group .notice p,.post-type-acf-field-group #lost-connection-notice p{flex:1 0 auto;margin:0;padding:0}.post-type-acf-field-group .notice p.help,.post-type-acf-field-group #lost-connection-notice p.help{margin-top:0;padding-top:0;color:rgba(52,64,84,.7)}.post-type-acf-field-group .notice .notice-dismiss,.post-type-acf-field-group #lost-connection-notice .notice-dismiss{position:absolute;top:4px;right:8px}.post-type-acf-field-group .notice .notice-dismiss:before,.post-type-acf-field-group #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")}.post-type-acf-field-group .notice .notice-dismiss:hover::before,.post-type-acf-field-group #lost-connection-notice .notice-dismiss:hover::before{background-color:#344054}.post-type-acf-field-group .notice:before,.post-type-acf-field-group #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")}.post-type-acf-field-group .notice:after,.post-type-acf-field-group #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)}.post-type-acf-field-group .notice .local-restore,.post-type-acf-field-group #lost-connection-notice .local-restore{align-items:center;margin-top:-6px;margin-bottom:0}.post-type-acf-field-group .notice.is-dismissible{padding-right:56px}.post-type-acf-field-group .notice.notice-success{background-color:#edf7ef;border-color:#b6deb9}.post-type-acf-field-group .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")}.post-type-acf-field-group .notice.notice-success:after{background-color:#52aa59}.post-type-acf-field-group .notice.notice-error,.post-type-acf-field-group #lost-connection-notice{background-color:#f7eeeb;border-color:#f1b6b3}.post-type-acf-field-group .notice.notice-error:before,.post-type-acf-field-group #lost-connection-notice:before{-webkit-mask-image:url("../../images/icons/icon-warning.svg");mask-image:url("../../images/icons/icon-warning.svg")}.post-type-acf-field-group .notice.notice-error:after,.post-type-acf-field-group #lost-connection-notice:after{background-color:#da5a39}.post-type-acf-field-group #wpcontent{line-height:140%}.post-type-acf-field-group a{color:#0783be}.h1,.post-type-acf-field-group h1,.acf-headerbar h1{font-size:21px;font-weight:400}.h2,.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2,.acf-page-title,.post-type-acf-field-group h2,.acf-headerbar h2{font-size:18px;font-weight:400}.h3,.post-type-acf-field-group h3,.acf-headerbar h3,.post-type-acf-field-group .postbox .postbox-header h2,.post-type-acf-field-group .postbox .postbox-header h3,.post-type-acf-field-group .postbox .title h2,.post-type-acf-field-group .postbox .title h3,.post-type-acf-field-group .acf-box .postbox-header h2,.post-type-acf-field-group .acf-box .postbox-header h3,.post-type-acf-field-group .acf-box .title h2,.post-type-acf-field-group .acf-box .title h3,.acf-postbox-header h2.acf-postbox-title,.post-type-acf-field-group #poststuff .postbox-header h2,.post-type-acf-field-group #poststuff .postbox-header h3{font-size:16px;font-weight:400}.p1,#acf-field-group-pro-features h1{font-size:15px}.p2,.acf-no-field-groups-wrapper .acf-no-field-groups-inner p,#acf-admin-tools .acf-meta-box-wrap .acf-fields .acf-label{font-size:14px}.p3,.acf-admin-field-groups .wp-list-table .post-state,.post-type-acf-field-group .subtitle{font-size:13.5px}.p4,.acf-admin-toolbar a.acf-admin-toolbar-upgrade-btn p,#acf-update-information .form-table th,#acf-update-information .form-table td,#acf-admin-tools.tool-export .acf-panel h3,.acf-btn.acf-btn-sm,.acf-admin-toolbar .acf-tab,.acf-admin-field-groups .subsubsub li,.acf-admin-field-groups .wp-list-table tbody th,.acf-admin-field-groups .wp-list-table tbody td,.acf-admin-field-groups .wp-list-table thead th,.acf-admin-field-groups .wp-list-table thead td,.acf-admin-field-groups .wp-list-table tfoot th,.acf-admin-field-groups .wp-list-table tfoot td,.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection__rendered,.post-type-acf-field-group .button,.post-type-acf-field-group input[type=text],.post-type-acf-field-group input[type=search],.post-type-acf-field-group input[type=number],.post-type-acf-field-group textarea,.post-type-acf-field-group select{font-size:13px}.p5,.acf-admin-field-groups .row-actions,.post-type-acf-field-group .notice .button,.post-type-acf-field-group #lost-connection-notice .button{font-size:12.5px}.p6,#acf-update-information .acf-update-changelog p em,.acf-no-field-groups-wrapper .acf-no-field-groups-inner p.acf-small,.acf-admin-field-groups .row-actions,.acf-small{font-size:12px}.p7,.acf-tooltip,.post-type-acf-field-group .notice p.help,.post-type-acf-field-group #lost-connection-notice p.help{font-size:11.5px}.p8{font-size:11px}.acf-page-title{color:#344054}.post-type-acf-field-group .acf-settings-wrap h1,.post-type-acf-field-group #acf-admin-tools h1{display:none}.post-type-acf-field-group a:focus{box-shadow:none;outline:none}.post-type-acf-field-group 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)}.post-type-acf-field-group input[type=text],.post-type-acf-field-group input[type=search],.post-type-acf-field-group input[type=number],.post-type-acf-field-group textarea,.post-type-acf-field-group 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}.post-type-acf-field-group input[type=text]:focus,.post-type-acf-field-group input[type=search]:focus,.post-type-acf-field-group input[type=number]:focus,.post-type-acf-field-group textarea:focus,.post-type-acf-field-group select:focus{outline:3px solid #ebf5fa;border-color:#399ccb}.post-type-acf-field-group input[type=text]:disabled,.post-type-acf-field-group input[type=search]:disabled,.post-type-acf-field-group input[type=number]:disabled,.post-type-acf-field-group textarea:disabled,.post-type-acf-field-group select:disabled{background-color:#f9fafb;color:#808a9e}.post-type-acf-field-group input[type=text]::placeholder,.post-type-acf-field-group input[type=search]::placeholder,.post-type-acf-field-group input[type=number]::placeholder,.post-type-acf-field-group textarea::placeholder,.post-type-acf-field-group select::placeholder{color:#98a2b3}.post-type-acf-field-group input[type=text]:read-only{background-color:#f9fafb;color:#98a2b3}.post-type-acf-field-group .acf-field.acf-field-number .acf-label,.post-type-acf-field-group .acf-field.acf-field-number .acf-input input[type=number]{max-width:180px}.post-type-acf-field-group textarea{box-sizing:border-box;padding-top:10px;padding-bottom:10px;height:80px;min-height:56px}.post-type-acf-field-group 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}.post-type-acf-field-group select:hover,.post-type-acf-field-group select:focus{color:#0783be}.post-type-acf-field-group select::before{content:"";display:block;position:absolute;top:5px;left:5px;width:20px;height:20px;background-color:red}.post-type-acf-field-group input[type=radio],.post-type-acf-field-group 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}.post-type-acf-field-group input[type=radio]:hover,.post-type-acf-field-group input[type=checkbox]:hover{background-color:#ebf5fa;border-color:#0783be}.post-type-acf-field-group input[type=radio]:checked,.post-type-acf-field-group input[type=radio]:focus-visible,.post-type-acf-field-group input[type=checkbox]:checked,.post-type-acf-field-group input[type=checkbox]:focus-visible{background-color:#ebf5fa;border-color:#0783be}.post-type-acf-field-group input[type=radio]:checked:before,.post-type-acf-field-group input[type=radio]:focus-visible:before,.post-type-acf-field-group input[type=checkbox]:checked:before,.post-type-acf-field-group 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}.post-type-acf-field-group input[type=radio]:active,.post-type-acf-field-group input[type=checkbox]:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.post-type-acf-field-group input[type=radio]:disabled,.post-type-acf-field-group input[type=checkbox]:disabled{background-color:#f9fafb;border-color:#d0d5dd}.post-type-acf-field-group input[type=radio]:checked:before,.post-type-acf-field-group input[type=radio]:focus:before{background-image:url("../../images/field-states/radio-active.svg")}.post-type-acf-field-group input[type=checkbox]:checked:before,.post-type-acf-field-group input[type=checkbox]:focus:before{background-image:url("../../images/field-states/checkbox-active.svg")}.post-type-acf-field-group .acf-radio-list li input[type=radio],.post-type-acf-field-group .acf-radio-list li input[type=checkbox],.post-type-acf-field-group .acf-checkbox-list li input[type=radio],.post-type-acf-field-group .acf-checkbox-list li input[type=checkbox]{margin-right:6px}.post-type-acf-field-group .acf-radio-list.acf-bl li,.post-type-acf-field-group .acf-checkbox-list.acf-bl li{margin-bottom:8px}.post-type-acf-field-group .acf-radio-list.acf-bl li:last-of-type,.post-type-acf-field-group .acf-checkbox-list.acf-bl li:last-of-type{margin-bottom:0}.post-type-acf-field-group .acf-radio-list label,.post-type-acf-field-group .acf-checkbox-list label{display:flex;align-items:center;align-content:center}.post-type-acf-field-group .acf-switch{width:42px;height:24px;border:none;background-color:#d0d5dd;border-radius:12px}.post-type-acf-field-group .acf-switch:hover{background-color:#98a2b3}.post-type-acf-field-group .acf-switch:active{box-shadow:0px 0px 0px 3px #ebf5fa,0px 0px 0px rgba(255,54,54,.25)}.post-type-acf-field-group .acf-switch.-on{background-color:#0783be}.post-type-acf-field-group .acf-switch.-on:hover{background-color:#066998}.post-type-acf-field-group .acf-switch.-on .acf-switch-slider{left:20px}.post-type-acf-field-group .acf-switch .acf-switch-off,.post-type-acf-field-group .acf-switch .acf-switch-on{visibility:hidden}.post-type-acf-field-group .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)}.post-type-acf-field-group .acf-field-true-false{display:flex;align-items:center}.post-type-acf-field-group .acf-field-true-false .acf-label{order:2;display:inline-flex;align-items:center;margin-bottom:0;margin-left:12px}.post-type-acf-field-group .acf-field-true-false .acf-label label{margin-bottom:0}.post-type-acf-field-group .acf-field-true-false .acf-label .acf-tip{margin-left:12px}.post-type-acf-field-group 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}.post-type-acf-field-group input::file-selector-button:hover{border-color:#066998;cursor:pointer;color:#066998 !important}.post-type-acf-field-group .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}.post-type-acf-field-group .button:hover{background-color:#f3f9fc;border-color:#0783be;color:#0783be}.post-type-acf-field-group .button:focus{background-color:#f3f9fc;outline:3px solid #ebf5fa;color:#0783be}.post-type-acf-field-group .edit-field-group-header{display:block !important}.post-type-acf-field-group .acf-input .select2-container.-acf .select2-selection{border:none;line-height:1}.post-type-acf-field-group .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}.post-type-acf-field-group .acf-input .select2-container--focus{outline:3px solid #ebf5fa;border-color:#399ccb;border-radius:6px}.post-type-acf-field-group .acf-input .select2-container--focus .select2-selection__rendered{border-color:#399ccb !important}.post-type-acf-field-group .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}.post-type-acf-field-group .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}.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field{margin:0;padding-left:6px}.post-type-acf-field-group .acf-input .select2-container .select2-search--inline .select2-search__field:focus{outline:none;border:none}.post-type-acf-field-group .acf-input .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding-top:0;padding-right:6px;padding-bottom:0;padding-left:6px}.post-type-acf-field-group .acf-input .select2-selection__clear{width:18px;height:18px;margin-top:12px;margin-right:0;text-indent:100%;white-space:nowrap;overflow:hidden}.post-type-acf-field-group .acf-input .select2-selection__clear:before{content:"";display:block;width:14px;height:14px;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}.post-type-acf-field-group .acf-input .select2-selection__clear:hover::before{background-color:#1d2939}.post-type-acf-field-group .acf-label{display:flex;align-items:center;justify-content:space-between}.post-type-acf-field-group .acf-label .acf-icon-help{width:18px;height:18px;background-color:#98a2b3}.post-type-acf-field-group .acf-label label{margin-bottom:0}.post-type-acf-field-group .acf-field-setting-name .acf-tip{position:absolute;top:0;left:654px;color:#98a2b3}.post-type-acf-field-group .acf-field-setting-name .acf-tip .acf-icon-help{width:18px;height:18px}.acf-admin-field-groups .tablenav.top{display:none}.acf-admin-field-groups .subsubsub{margin-bottom:3px}.acf-admin-field-groups .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-admin-field-groups .wp-list-table strong{color:#98a2b3;margin:0}.acf-admin-field-groups .wp-list-table a.row-title{font-size:13px !important;font-weight:500}.acf-admin-field-groups .wp-list-table th,.acf-admin-field-groups .wp-list-table td{color:#344054}.acf-admin-field-groups .wp-list-table th.sortable a,.acf-admin-field-groups .wp-list-table td.sortable a{padding:0}.acf-admin-field-groups .wp-list-table th.check-column,.acf-admin-field-groups .wp-list-table td.check-column{padding-top:12px;padding-right:16px;padding-left:16px}@media screen and (max-width: 880px){.acf-admin-field-groups .wp-list-table th.check-column,.acf-admin-field-groups .wp-list-table td.check-column{vertical-align:top;padding-right:2px;padding-left:10px}}.acf-admin-field-groups .wp-list-table th input,.acf-admin-field-groups .wp-list-table td input{margin:0;padding:0}.acf-admin-field-groups .wp-list-table thead th,.acf-admin-field-groups .wp-list-table thead td,.acf-admin-field-groups .wp-list-table tfoot th,.acf-admin-field-groups .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-admin-field-groups .wp-list-table thead th,.acf-admin-field-groups .wp-list-table thead td,.acf-admin-field-groups .wp-list-table tfoot th,.acf-admin-field-groups .wp-list-table tfoot td{padding-right:16px;padding-left:8px}}@media screen and (max-width: 880px){.acf-admin-field-groups .wp-list-table thead th.check-column,.acf-admin-field-groups .wp-list-table thead td.check-column,.acf-admin-field-groups .wp-list-table tfoot th.check-column,.acf-admin-field-groups .wp-list-table tfoot td.check-column{vertical-align:middle}}.acf-admin-field-groups .wp-list-table tbody th,.acf-admin-field-groups .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-admin-field-groups .wp-list-table tbody th,.acf-admin-field-groups .wp-list-table tbody td{padding-right:16px;padding-left:8px}}.acf-admin-field-groups .wp-list-table .column-acf-key{white-space:nowrap}.acf-admin-field-groups .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-admin-field-groups .wp-list-table .acf-location .dashicons{position:relative;bottom:-2px;width:16px;height:16px;margin-right:6px;font-size:16px;color:#98a2b3}.acf-admin-field-groups .wp-list-table .post-state{color:#667085}.acf-admin-field-groups .wp-list-table tr:hover,.acf-admin-field-groups .wp-list-table tr:focus-within{background:#f7f7f7}.acf-admin-field-groups .wp-list-table tr:hover .row-actions,.acf-admin-field-groups .wp-list-table tr:focus-within .row-actions{margin-bottom:0}@media screen and (min-width: 782px){.acf-admin-field-groups .wp-list-table .column-acf-count{width:10%}}.acf-admin-field-groups .wp-list-table .row-actions span.file{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.acf-admin-field-groups .row-actions{margin-top:2px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;line-height:14px;color:#d0d5dd}.acf-admin-field-groups .row-actions .trash a{color:#d94f4f}.acf-admin-field-groups .widefat thead td.check-column,.acf-admin-field-groups .widefat tfoot td.check-column{padding-top:0}.acf-admin-field-groups .row-actions a:hover{color:#044767}.acf-admin-field-groups .row-actions .trash a{color:#a00}.acf-admin-field-groups .row-actions .trash a:hover{color:red}.acf-admin-field-groups .row-actions.visible{margin-bottom:0;opacity:1}.acf-admin-field-groups #the-list tr:hover td,.acf-admin-field-groups #the-list tr:hover th{background-color:#f7fbfd}.acf-admin-field-groups .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-admin-field-groups #posts-filter p.search-box{margin-top:5px;margin-right:0;margin-bottom:24px;margin-left:0}.acf-admin-field-groups #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-admin-field-groups #posts-filter p.search-box{display:flex;box-sizing:border-box;padding-right:24px;margin-right:16px}.acf-admin-field-groups #posts-filter p.search-box #post-search-input{min-width:auto}}.acf-admin-field-groups .subsubsub{display:flex;align-items:flex-end;height:40px;margin-bottom:16px}.acf-admin-field-groups .subsubsub li{margin-top:0;margin-right:4px;color:#98a2b3}.acf-admin-field-groups .subsubsub li .count{color:#667085}.acf-admin-field-groups .tablenav-pages{display:flex;align-items:center}.acf-admin-field-groups .tablenav-pages .displaying-num{margin-top:0;margin-right:16px;margin-bottom:0;margin-left:0}.acf-admin-field-groups .tablenav-pages .pagination-links{display:flex;align-items:center}.acf-admin-field-groups .tablenav-pages .pagination-links #table-paging{margin-top:0;margin-right:4px;margin-bottom:0;margin-left:8px}.acf-admin-field-groups .tablenav-pages .pagination-links #table-paging .total-pages{margin-right:0}.acf-admin-field-groups .tablenav-pages.one-page .pagination-links{display:none}.acf-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(1),.acf-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(2),.acf-admin-field-groups .tablenav-pages .pagination-links .button:last-child,.acf-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(1):before,.acf-admin-field-groups .tablenav-pages .pagination-links .button:nth-child(2):before,.acf-admin-field-groups .tablenav-pages .pagination-links .button:last-child:before,.acf-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .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-admin-field-groups .tablenav-pages .pagination-links .button:hover{border-color:#066998;background-color:rgba(7,131,190,.05)}.acf-admin-field-groups .tablenav-pages .pagination-links .button:hover:before{background-color:#066998}.acf-admin-field-groups .tablenav-pages .pagination-links .button.disabled{background-color:rgba(0,0,0,0) !important}.acf-admin-field-groups .tablenav-pages .pagination-links .button.disabled.disabled:before{background-color:#d0d5dd}.acf-no-field-groups-wrapper{display:flex;justify-content:center;padding-top:48px;padding-bottom:48px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner{display:flex;flex-wrap:wrap;justify-content:center;align-content:center;align-items:flex-start;text-align:center;max-width:380px;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{flex:1 0 100%}.acf-no-field-groups-wrapper .acf-no-field-groups-inner h2{margin-top:32px;margin-bottom:0;padding:0;color:#344054}.acf-no-field-groups-wrapper .acf-no-field-groups-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{display:block;position:relative;margin-top:32px}.acf-no-field-groups-wrapper .acf-no-field-groups-inner img{max-width:284px;margin-bottom:0}.acf-no-field-groups-wrapper .acf-no-field-groups-inner .acf-btn{margin-top:32px}.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{background-color:rgba(0,0,0,0) !important}.acf-no-field-groups .wp-list-table thead,.acf-no-field-groups .wp-list-table tfoot{display:none}.acf-no-field-groups .no-pages{display:none}.post-type-acf-field-group .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}.post-type-acf-field-group .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){.post-type-acf-field-group .widefat th input[type=checkbox],.post-type-acf-field-group .widefat thead td input[type=checkbox],.post-type-acf-field-group .widefat tfoot td input[type=checkbox]{margin-bottom:0}}.acf-admin-toolbar{display:flex;justify-content:flex-start;align-content:center;align-items:center;position:unset;top:32px;height:72px;z-index:800;background:#344054;color:#98a2b3}@media screen and (max-width: 880px){.acf-admin-toolbar{position:static}}.acf-admin-toolbar .acf-logo{margin-right:32px}.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}#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}}.acf-admin-toolbar .acf-tab i.acf-icon{display:none;margin-right:8px;margin-left:-2px}.acf-admin-toolbar .acf-tab.acf-header-tab-acf-field-group 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{display:inline-flex}.acf-admin-toolbar .acf-tab.is-active i.acf-icon,.acf-admin-toolbar .acf-tab:hover i.acf-icon{background-color:#eaecf0}.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-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")}.post-type-acf-field-group h1.wp-heading-inline{display:none}.post-type-acf-field-group .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}.acf-headerbar .acf-page-title{margin-top:0;margin-right:16px;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}@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-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-field-editor{position:sticky;top:32px;z-index:700;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}.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:disabled{background-color:red}.acf-btn:hover{background-color:#066998;color:#fff;cursor:pointer}.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-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 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:18px;height:18px;-webkit-mask-size:18px;mask-size:18px;margin-right:4px;margin-left:-2px}.acf-btn.acf-delete-field-group:hover{background-color:#fdf8f6;border-color:#da5a39 !important;color:#da5a39 !important}.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}.post-type-acf-field-group i.acf-icon-plus{-webkit-mask-image:url("../../images/icons/icon-add.svg");mask-image:url("../../images/icons/icon-add.svg")}.post-type-acf-field-group i.acf-icon-stars{-webkit-mask-image:url("../../images/icons/icon-stars.svg");mask-image:url("../../images/icons/icon-stars.svg")}.post-type-acf-field-group i.acf-icon-help{-webkit-mask-image:url("../../images/icons/icon-help.svg");mask-image:url("../../images/icons/icon-help.svg")}.post-type-acf-field-group i.acf-icon-key{-webkit-mask-image:url("../../images/icons/icon-key.svg");mask-image:url("../../images/icons/icon-key.svg")}.post-type-acf-field-group i.acf-icon-trash{-webkit-mask-image:url("../../images/icons/icon-trash.svg");mask-image:url("../../images/icons/icon-trash.svg")}.post-type-acf-field-group i.acf-icon-arrow-right{-webkit-mask-image:url("../../images/icons/icon-arrow-right.svg");mask-image:url("../../images/icons/icon-arrow-right.svg")}.post-type-acf-field-group i.acf-icon-arrow-left{-webkit-mask-image:url("../../images/icons/icon-arrow-left.svg");mask-image:url("../../images/icons/icon-arrow-left.svg")}.post-type-acf-field-group i.acf-icon-chevron-right,.post-type-acf-field-group .acf-icon.-right{-webkit-mask-image:url("../../images/icons/icon-chevron-right.svg");mask-image:url("../../images/icons/icon-chevron-right.svg")}.post-type-acf-field-group i.acf-icon-chevron-left,.post-type-acf-field-group .acf-icon.-left{-webkit-mask-image:url("../../images/icons/icon-chevron-left.svg");mask-image:url("../../images/icons/icon-chevron-left.svg")}.post-type-acf-field-group i.acf-icon-key-solid{-webkit-mask-image:url("../../images/icons/icon-key-solid.svg");mask-image:url("../../images/icons/icon-key-solid.svg")}.post-type-acf-field-group i.acf-icon-globe,.post-type-acf-field-group .acf-icon.-globe{-webkit-mask-image:url("../../images/icons/icon-globe.svg");mask-image:url("../../images/icons/icon-globe.svg")}.post-type-acf-field-group i.acf-icon-image,.post-type-acf-field-group .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")}.post-type-acf-field-group .post-type-acf-field-group .post-state{font-weight:normal}.post-type-acf-field-group .post-type-acf-field-group .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")}.post-type-acf-field-group .post-type-acf-field-group .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{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{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}#acf-field-group-fields .postbox-header h2:before,h3.acf-sub-field-list-title:before{-webkit-mask-image:url("../../images/icons/icon-fields.svg");mask-image:url("../../images/icons/icon-fields.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")}.post-type-acf-field-group .postbox-header .handle-actions{display:flex}.post-type-acf-field-group .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{-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 #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:grid;grid-template-columns:65% 1fr;grid-template-rows:min-content 1.3fr;gap:32px 32px;grid-template-areas:"acf-admin-notice acf-admin-notice" ". ."}@media screen and (max-width: 880px){.acf-settings-wrap.acf-updates{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-notice,.post-type-acf-field-group .notice{grid-area:acf-admin-notice;margin-bottom:0 !important}.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-bottom:0 !important;margin-left:0}#acf-license-information .acf-activation-form{margin-top:24px}#acf-license-information label{font-weight:bold}#acf-license-information .acf-input-wrap{margin-top:8px;margin-bottom:24px}#acf-license-information #acf_pro_license{width:100%}#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, #2C9FB8 0.44%, #A45CFF 113.3%);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-field-group-pro-features .acf-field-group-pro-features-wrapper{display:flex;justify-content:flex-start;align-content:stretch;align-items:center}@media screen and (max-width: 768px){#acf-field-group-pro-features .acf-field-group-pro-features-wrapper{flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content,#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions{flex:0 1 100%}}#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content{flex:1 1 auto;margin-right:40px}@media screen and (max-width: 768px){#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-content{margin-right:0;margin-bottom:8px}}#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions{display:flex;flex-direction:row;justify-content:flex-end;min-width:160px}@media screen and (max-width: 768px){#acf-field-group-pro-features .acf-field-group-pro-features-wrapper .acf-field-group-pro-features-actions{justify-content:flex-start}}#acf-field-group-pro-features.postbox{display:flex;align-items:center;min-height:120px;background-image:linear-gradient(to right, #1d4373, #24437e, #304288, #413f8f, #543a95);color:#eaecf0}#acf-field-group-pro-features.postbox .postbox-header{display:none}#acf-field-group-pro-features.postbox .inside{width:100%;border:none}#acf-field-group-pro-features h1{margin-top:0;margin-bottom:4px;padding-top:0;padding-bottom:0;font-weight:bold;color:#f9fafb}#acf-field-group-pro-features h1 .acf-icon{margin-right:8px}#acf-field-group-pro-features .acf-btn{display:inline-flex;background-color:rgba(255,255,255,.2);border:none}#acf-field-group-pro-features .acf-btn:hover{background-color:rgba(255,255,255,.3)}#acf-field-group-pro-features .acf-btn .acf-icon{margin-right:-2px;margin-left:8px}#acf-field-group-pro-features .acf-pro-features-list{display:flex;justify-content:flex-start;align-items:center;flex-wrap:wrap;margin-top:16px;margin-bottom:0}@media screen and (max-width: 768px){#acf-field-group-pro-features .acf-pro-features-list{flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}}#acf-field-group-pro-features .acf-pro-features-list li{display:flex;box-sizing:border-box;margin-right:32px;margin-bottom:6px}@media screen and (max-width: 880px){#acf-field-group-pro-features .acf-pro-features-list li{flex:0 1 calc(33.3% - 32px)}}@media screen and (max-width: 640px){#acf-field-group-pro-features .acf-pro-features-list li{flex:0 1 100%}}#acf-field-group-pro-features .acf-pro-features-list li:last-child{margin-right:0}#acf-field-group-pro-features .acf-pro-features-list li:before{content:"";display:inline-block;width:16px;height:16px;margin-right:8px;background-color:#52aa59;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-check-circle-solid.svg");mask-image:url("../../images/icons/icon-check-circle-solid.svg")} diff --git a/assets/build/css/acf-input.css b/assets/build/css/acf-input.css index dbd9e7c..79bac21 100644 --- a/assets/build/css/acf-input.css +++ b/assets/build/css/acf-input.css @@ -1,6 +1,7 @@ /*!****************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/advanced-custom-fields-pro/assets/src/sass/acf-input.scss ***! \****************************************************************************************************************************************************************************************************************/ +@charset "UTF-8"; /*-------------------------------------------------------------------------------------------- * * Vars @@ -11,9 +12,132 @@ /* responsive */ /*-------------------------------------------------------------------------------------------- * +* ACF 6 ↓ +* +*--------------------------------------------------------------------------------------------*/ +/*-------------------------------------------------------------------------------------------- +* * Mixins * *--------------------------------------------------------------------------------------------*/ +/*--------------------------------------------------------------------------------------------- +* +* Global +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group #wpcontent { + line-height: 140%; +} + +/*--------------------------------------------------------------------------------------------- +* +* Links +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group a { + color: #0783BE; +} + +/*--------------------------------------------------------------------------------------------- +* +* Headings +* +*---------------------------------------------------------------------------------------------*/ +.h1, .post-type-acf-field-group h1, +.acf-headerbar h1 { + font-size: 21px; + font-weight: 400; +} + +.h2, .acf-page-title, .post-type-acf-field-group h2, +.acf-headerbar h2 { + font-size: 18px; + font-weight: 400; +} + +.h3, .post-type-acf-field-group h3, +.acf-headerbar h3 { + font-size: 16px; + font-weight: 400; +} + +/*--------------------------------------------------------------------------------------------- +* +* Paragraphs +* +*---------------------------------------------------------------------------------------------*/ +.p1 { + font-size: 15px; +} + +.p2 { + font-size: 14px; +} + +.p3 { + font-size: 13.5px; +} + +.p4 { + font-size: 13px; +} + +.p5 { + font-size: 12.5px; +} + +.p6, .acf-field p.description, .acf-small { + font-size: 12px; +} + +.p7, .acf-field-setting-prefix_label p.description code, +.acf-field-setting-prefix_name p.description code { + font-size: 11.5px; +} + +.p8 { + font-size: 11px; +} + +/*--------------------------------------------------------------------------------------------- +* +* Page titles +* +*---------------------------------------------------------------------------------------------*/ +.acf-page-title { + color: #344054; +} + +/*--------------------------------------------------------------------------------------------- +* +* Hide old / native WP titles from pages +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group .acf-settings-wrap h1, +.post-type-acf-field-group #acf-admin-tools h1 { + display: none; +} + +/*--------------------------------------------------------------------------------------------- +* +* Small +* +*---------------------------------------------------------------------------------------------*/ +/*--------------------------------------------------------------------------------------------- +* +* Link focus style +* +*---------------------------------------------------------------------------------------------*/ +.post-type-acf-field-group a:focus { + box-shadow: none; + outline: none; +} + +.post-type-acf-field-group a:focus-visible { + box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8); + outline: 1px solid transparent; +} + /*-------------------------------------------------------------------------------------------- * * acf-field @@ -43,7 +167,7 @@ } .acf-field .acf-label label { display: block; - font-weight: bold; + font-weight: 500; margin: 0 0 3px; padding: 0; } @@ -53,8 +177,10 @@ .acf-field .acf-input { vertical-align: top; } -.acf-field .acf-input > p.description { - margin-top: 5px; +.acf-field p.description { + display: block; + margin-top: 6px; + color: #667085; } .acf-field .acf-notice { margin: 0 0 15px; @@ -77,7 +203,8 @@ color: #bd4b0e; border-color: #d16226; } -td.acf-field, tr.acf-field { +td.acf-field, +tr.acf-field { margin: 0; } @@ -103,7 +230,8 @@ html[dir=rtl] .acf-field[data-width] + .acf-field[data-width] { border-left: none; border-right: 1px solid #eeeeee; } -td.acf-field[data-width], tr.acf-field[data-width] { +td.acf-field[data-width], +tr.acf-field[data-width] { float: none; } @@ -140,8 +268,10 @@ html[dir=rtl] .acf-field.-c0 { .acf-fields > .acf-field { position: relative; margin: 0; - padding: 15px 12px; - border-top: #EEEEEE solid 1px; + padding: 16px; + border-top-width: 1px; + border-top-style: solid; + border-top-color: #EAECF0; } .acf-fields > .acf-field:first-child { border-top: none; @@ -189,8 +319,8 @@ td.acf-fields { display: block; position: absolute; z-index: 0; - background: #F9F9F9; - border-color: #E1E1E1; + background: #f9f9f9; + border-color: #e1e1e1; border-style: solid; border-width: 0 1px 0 0; top: 0; @@ -273,13 +403,13 @@ html[dir=rtl] .acf-fields.-left > .acf-field > .acf-input { .acf-table tr.acf-field > td.acf-label { padding: 15px 12px; margin: 0; - background: #F9F9F9; + background: #f9f9f9; width: 20%; } .acf-table tr.acf-field > td.acf-input { padding: 15px 12px; margin: 0; - border-left-color: #E1E1E1; + border-left-color: #e1e1e1; } .acf-sortable-tr-helper { @@ -296,10 +426,8 @@ html[dir=rtl] .acf-fields.-left > .acf-field > .acf-input { position: relative; } .acf-postbox > .inside { - margin: 0 !important; - /* override WP style - do not delete - you have tried this before */ - padding: 0 !important; - /* override WP style - do not delete - you have tried this before */ + margin: 0 !important; /* override WP style - do not delete - you have tried this before */ + padding: 0 !important; /* override WP style - do not delete - you have tried this before */ } .acf-postbox .acf-hndle-cog { color: #72777c; @@ -349,8 +477,7 @@ html[dir=rtl] .acf-fields.-left > .acf-field > .acf-input { display: none !important; } .acf-postbox.seamless > .inside { - display: block !important; - /* stop metabox from hiding when closed */ + display: block !important; /* stop metabox from hiding when closed */ margin-left: -12px !important; margin-right: -12px !important; } @@ -375,11 +502,11 @@ html[dir=rtl] .acf-fields.-left > .acf-field > .acf-input { } } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Inputs * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-field input[type=text], .acf-field input[type=password], .acf-field input[type=date], @@ -427,11 +554,11 @@ body.acf-browser-firefox .acf-field select { padding: 4px 5px; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Text * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-input-prepend, .acf-input-append, .acf-input-wrap { @@ -440,7 +567,7 @@ body.acf-browser-firefox .acf-field select { .acf-input-prepend, .acf-input-append { - font-size: 14px; + font-size: 13px; line-height: 1.4; padding: 4px 8px; background: #f5f5f5; @@ -471,10 +598,10 @@ body.acf-browser-firefox .acf-field select { overflow: hidden; } .acf-input-wrap .acf-is-prepended { - border-radius: 0 3px 3px 0 !important; + border-radius: 0 6px 6px 0 !important; } .acf-input-wrap .acf-is-appended { - border-radius: 3px 0 0 3px !important; + border-radius: 6px 0 0 6px !important; } .acf-input-wrap .acf-is-prepended.acf-is-appended { border-radius: 0 !important; @@ -507,11 +634,11 @@ html[dir=rtl] input.acf-is-prepended.acf-is-appended { border-radius: 0 !important; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Color Picker * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-color-picker .wp-color-result { border-color: #7e8993; } @@ -523,11 +650,11 @@ html[dir=rtl] input.acf-is-prepended.acf-is-appended { z-index: 1; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Url * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-url i { position: absolute; top: 5px; @@ -542,11 +669,11 @@ html[dir=rtl] input.acf-is-prepended.acf-is-appended { opacity: 1; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Select2 (v3) * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .select2-container.-acf { /* open */ /* single open */ @@ -569,7 +696,7 @@ html[dir=rtl] input.acf-is-prepended.acf-is-appended { .select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper { background: #5897fb; border-color: #3f87fa; - color: #fff; + color: #fff !important; box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); } .select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper a { @@ -590,23 +717,23 @@ html[dir=rtl] input.acf-is-prepended.acf-is-appended { padding: 5px 5px 5px 7px; } .select2-container.-acf .select2-choice { - border-color: #BBBBBB; + border-color: #bbbbbb; } .select2-container.-acf .select2-choice .select2-arrow { background: transparent; - border-left-color: #DFDFDF; + border-left-color: #dfdfdf; padding-left: 1px; } .select2-container.-acf .select2-choice .select2-result-description { display: none; } .select2-container.-acf.select2-container-active .select2-choices, .select2-container.-acf.select2-dropdown-open .select2-choices { - border-color: #5B9DD9; + border-color: #5b9dd9; border-radius: 3px 3px 0 0; } .select2-container.-acf.select2-dropdown-open .select2-choice { background: #fff; - border-color: #5B9DD9; + border-color: #5b9dd9; } /* rtl */ @@ -642,11 +769,11 @@ html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow { opacity: 0.75; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Select2 (v4) * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .select2-container.-acf li { margin-bottom: 0; } @@ -685,9 +812,9 @@ html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow { white-space: normal; } .select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper { - background: #5897fb; - border-color: #3f87fa; - color: #fff; + background: #0783BE; + border-color: #066998; + color: #fff !important; box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); } .select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper span { @@ -699,8 +826,8 @@ html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow { padding: 0; } .select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-placeholder { - background-color: #f7f7f7; - border-color: #f7f7f7; + background-color: #F2F4F7; + border-color: #F2F4F7; visibility: visible !important; } .select2-container.-acf .select2-selection--multiple .select2-search__field { @@ -714,6 +841,30 @@ html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow { white-space: normal; } +.select2-dropdown { + border-color: #6BB5D8 !important; + margin-top: -5px; + overflow: hidden; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1); +} + +.select2-dropdown.select2-dropdown--above { + margin-top: 0; +} + +.select2-container--default .select2-results__option[aria-selected=true] { + background-color: #F9FAFB !important; + color: #667085; +} +.select2-container--default .select2-results__option[aria-selected=true]:hover { + color: #399CCB; +} + +.select2-container--default .select2-results__option--highlighted[aria-selected] { + color: #fff !important; + background-color: #0783BE !important; +} + .select2-dropdown .select2-results__option { margin-bottom: 0; } @@ -726,11 +877,11 @@ html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow { min-height: 0; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Link * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-link .link-wrap { display: none; border: #ccd0d4 solid 1px; @@ -765,20 +916,26 @@ html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow { z-index: 900001 !important; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Radio * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ ul.acf-radio-list, ul.acf-checkbox-list { background: transparent; + border: 1px solid transparent; position: relative; padding: 1px; margin: 0; /* hl */ /* rtl */ } +ul.acf-radio-list:focus-within, +ul.acf-checkbox-list:focus-within { + border: 1px solid #A5D2E7; + border-radius: 6px; +} ul.acf-radio-list li, ul.acf-checkbox-list li { font-size: 13px; @@ -826,11 +983,11 @@ html[dir=rtl] ul.acf-checkbox-list input[type=radio] { margin-right: 0; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Button Group * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-button-group { display: inline-block; /* default (horizontal) */ @@ -913,20 +1070,89 @@ html[dir=rtl] .acf-button-group label:last-child { border-color: #007cba; } -/*--------------------------------------------------------------------------------------------- +.post-type-acf-field-group .acf-button-group { + display: flex; + align-items: stretch; + align-content: center; + height: 40px; + border-radius: 6px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1); +} +.post-type-acf-field-group .acf-button-group label { + display: inline-flex; + align-items: center; + align-content: center; + border: #D0D5DD solid 1px; + padding: 6px 16px; + color: #475467; + font-weight: 500; +} +.post-type-acf-field-group .acf-button-group label:hover { + color: #0783BE; +} +.post-type-acf-field-group .acf-button-group label.selected { + background: #F9FAFB; + color: #0783BE; +} +.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice { + display: inline-flex; + align-items: center; + padding-top: 4px; + padding-right: auto; + padding-bottom: 4px; + padding-left: 8px; + background-color: #EBF5FA; + border-color: #A5D2E7; + color: #0783BE; +} +.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove { + order: 2; + width: 14px; + height: 14px; + margin-right: 0; + margin-left: 4px; + color: #6BB5D8; + text-indent: 100%; + white-space: nowrap; + overflow: hidden; +} +.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover { + color: #0783BE; +} +.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:before { + content: ""; + display: block; + width: 14px; + height: 14px; + top: 0; + left: 0; + 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-close.svg"); + mask-image: url("../../images/icons/icon-close.svg"); +} + +/*----------------------------------------------------------------------------- * * Checkbox * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-checkbox-list .button { margin: 10px 0 0; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * True / False * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-switch { display: inline-block; border-radius: 5px; @@ -1029,6 +1255,14 @@ html[dir=rtl] .acf-button-group label:last-child { margin: 0; } +.acf-admin-single-field-group .acf-true-false { + border: 1px solid transparent; +} +.acf-admin-single-field-group .acf-true-false:focus-within { + border: 1px solid #399CCB; + border-radius: 120px; +} + /* in media modal */ .compat-item .acf-true-false .message { float: none; @@ -1039,7 +1273,7 @@ html[dir=rtl] .acf-button-group label:last-child { /*-------------------------------------------------------------------------- * * Google Map -* +* *-------------------------------------------------------------------------*/ .acf-google-map { position: relative; @@ -1139,7 +1373,7 @@ html[dir=rtl] .pac-container .pac-item { /*-------------------------------------------------------------------------- * * Relationship -* +* *-------------------------------------------------------------------------*/ .acf-relationship { background: #fff; @@ -1168,12 +1402,14 @@ html[dir=rtl] .pac-container .pac-item { .acf-relationship .filters .filter:first-child { padding-left: 7px; } -.acf-relationship .filters .filter input, .acf-relationship .filters .filter select { +.acf-relationship .filters .filter input, +.acf-relationship .filters .filter select { margin: 0; - float: none; - /* potential fix for media popup? */ + float: none; /* potential fix for media popup? */ } -.acf-relationship .filters .filter input:focus, .acf-relationship .filters .filter input:active, .acf-relationship .filters .filter select:focus, .acf-relationship .filters .filter select:active { +.acf-relationship .filters .filter input:focus, .acf-relationship .filters .filter input:active, +.acf-relationship .filters .filter select:focus, +.acf-relationship .filters .filter select:active { outline: none; box-shadow: none; } @@ -1240,7 +1476,7 @@ html[dir=rtl] .pac-container .pac-item { margin-top: 1px; } .acf-relationship .list .acf-rel-item:hover { - background: #3875D7; + background: #3875d7; color: #fff; } .acf-relationship .list .acf-rel-item:hover .thumbnail { @@ -1288,10 +1524,10 @@ html[dir=rtl] .pac-container .pac-item { float: left; } .acf-relationship .selection .choices { - background: #F9F9F9; + background: #f9f9f9; } .acf-relationship .selection .choices .list { - border-right: #DFDFDF solid 1px; + border-right: #dfdfdf solid 1px; } .acf-relationship .selection .values .acf-icon { position: absolute; @@ -1325,7 +1561,7 @@ html[dir=rtl] .acf-relationship .selection .values .acf-icon { /*-------------------------------------------------------------------------- * * WYSIWYG -* +* *-------------------------------------------------------------------------*/ .acf-editor-wrap.delay .acf-editor-toolbar { content: ""; @@ -1359,11 +1595,11 @@ html[dir=rtl] .acf-relationship .selection .values .acf-icon { z-index: 900000 !important; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Tab * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-field-tab { display: none !important; } @@ -1398,7 +1634,7 @@ html[dir=rtl] .acf-relationship .selection .values .acf-icon { transition: none; } .acf-tab-group li a:hover { - background: #FFF; + background: #fff; } .acf-tab-group li a:focus { outline: none; @@ -1411,7 +1647,7 @@ html[dir=rtl] .acf-tab-group li { margin: 0 0 0 0.5em; } .acf-tab-group li.active a { - background: #F1F1F1; + background: #f1f1f1; color: #000; padding-bottom: 6px; margin-bottom: -1px; @@ -1420,7 +1656,7 @@ html[dir=rtl] .acf-tab-group li { } .acf-fields > .acf-tab-wrap { - background: #F9F9F9; + background: #f9f9f9; } .acf-fields > .acf-tab-wrap .acf-tab-group { position: relative; @@ -1429,22 +1665,9 @@ html[dir=rtl] .acf-tab-group li { z-index: 2; margin-bottom: -1px; } -.acf-fields > .acf-tab-wrap .acf-tab-group li a { - background: #f1f1f1; - border-color: #ccd0d4; -} -.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover { - background: #FFF; -} -.acf-fields > .acf-tab-wrap .acf-tab-group li.active a { - background: #FFFFFF; -} .acf-admin-3-8 .acf-fields > .acf-tab-wrap .acf-tab-group { border-color: #dfdfdf; } -.acf-fields > .acf-tab-wrap:first-child .acf-tab-group { - border-top: none; -} .acf-fields.-left > .acf-tab-wrap .acf-tab-group { padding-left: 20%; @@ -1472,8 +1695,7 @@ html[dir=rtl] .acf-fields.-left > .acf-tab-wrap .acf-tab-group { left: 0; width: 20%; border: 0 none; - padding: 0 !important; - /* important overrides 'left aligned labels' */ + padding: 0 !important; /* important overrides 'left aligned labels' */ margin: 1px 0 0; } .acf-tab-wrap.-left .acf-tab-group li { @@ -1496,7 +1718,7 @@ html[dir=rtl] .acf-fields.-left > .acf-tab-wrap .acf-tab-group { color: #00a0d2; } .acf-tab-wrap.-left .acf-tab-group li.active a { - border-color: #DFDFDF; + border-color: #dfdfdf; color: #000; margin-right: -1px; background: #fff; @@ -1515,8 +1737,8 @@ html[dir=rtl] .acf-tab-wrap.-left .acf-tab-group li.active a { position: relative; z-index: 1; height: 10px; - border-top: #DFDFDF solid 1px; - border-bottom: #DFDFDF solid 1px; + border-top: #dfdfdf solid 1px; + border-bottom: #dfdfdf solid 1px; margin-bottom: -1px; } .acf-tab-wrap.-left:first-child .acf-tab-group li:first-child a { @@ -1538,15 +1760,15 @@ html[dir=rtl] .acf-tab-wrap.-left .acf-tab-group li.active a { left: 0; width: 20%; bottom: 0; - border-right: #DFDFDF solid 1px; - background: #F9F9F9; + border-right: #dfdfdf solid 1px; + background: #f9f9f9; z-index: 1; } html[dir=rtl] .acf-fields.-sidebar { padding: 0 20% 0 0 !important; } html[dir=rtl] .acf-fields.-sidebar:before { - border-left: #DFDFDF solid 1px; + border-left: #dfdfdf solid 1px; border-right-width: 0; left: auto; right: 0; @@ -1559,7 +1781,7 @@ html[dir=rtl] .acf-fields.-sidebar.-left { padding: 0 180px 0 0 !important; } .acf-fields.-sidebar.-left:before { - background: #F1F1F1; + background: #f1f1f1; border-color: #dfdfdf; width: 180px; } @@ -1570,7 +1792,7 @@ html[dir=rtl] .acf-fields.-sidebar.-left { border-color: #e4e4e4; } .acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a { - background: #F9F9F9; + background: #f9f9f9; } .acf-fields.-sidebar > .acf-field-tab + .acf-field { border-top: none; @@ -1663,7 +1885,7 @@ html[dir=rtl] .acf-fields.-sidebar.-left { } .acf-gallery-side .acf-tab-group li.active a { - background: #F9F9F9 !important; + background: #f9f9f9 !important; } /* withing widget */ @@ -1672,7 +1894,7 @@ html[dir=rtl] .acf-fields.-sidebar.-left { } .widget .acf-tab-group li a { - background: #F1F1F1; + background: #f1f1f1; } .widget .acf-tab-group li.active a { @@ -1682,7 +1904,7 @@ html[dir=rtl] .acf-fields.-sidebar.-left { /* media popup (edit image) */ .media-modal.acf-expanded .compat-attachment-fields > tbody > tr.acf-tab-wrap .acf-tab-group { padding-left: 23%; - border-bottom-color: #DDDDDD; + border-bottom-color: #dddddd; } /* table */ @@ -1728,7 +1950,7 @@ html[dir=rtl] .form-table > tbody > tr.acf-tab-wrap .acf-tab-group { .acf-oembed .canvas { position: relative; min-height: 250px; - background: #F9F9F9; + background: #f9f9f9; } .acf-oembed .canvas .canvas-media { position: relative; @@ -1854,7 +2076,7 @@ html[dir=rtl] .acf-image-uploader .image-wrap { left: 0; bottom: 0; padding: 10px; - background: #F1F1F1; + background: #f1f1f1; border-right: #d5d9dd solid 1px; } .acf-file-uploader .file-icon img { @@ -1882,7 +2104,7 @@ html[dir=rtl] .acf-image-uploader .image-wrap { html[dir=rtl] .acf-file-uploader .file-icon { left: auto; right: 0; - border-left: #E5E5E5 solid 1px; + border-left: #e5e5e5 solid 1px; border-right: none; } html[dir=rtl] .acf-file-uploader .file-info { @@ -1890,11 +2112,11 @@ html[dir=rtl] .acf-file-uploader .file-info { margin-left: 0; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Date Picker * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-ui-datepicker .ui-datepicker { z-index: 900000 !important; } @@ -1918,11 +2140,11 @@ html[dir=rtl] .acf-file-uploader .file-info { color: #ffffff !important; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Separator field * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-field-separator { /* fields */ } @@ -1943,11 +2165,11 @@ html[dir=rtl] .acf-file-uploader .file-info { z-index: 2; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Taxonomy * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-taxonomy-field { position: relative; /* hover */ @@ -1974,11 +2196,11 @@ html[dir=rtl] .acf-file-uploader .file-info { margin: -9px; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Range * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-range-wrap { /* rtl */ } @@ -2019,11 +2241,11 @@ html[dir=rtl] .acf-range-wrap .acf-prepend { margin: 0 0 0 7px; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * acf-accordion * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .acf-accordion { margin: -1px 0; padding: 0; @@ -2194,11 +2416,11 @@ tr.acf-accordion + tr.acf-accordion { padding-bottom: 5px; } -/*--------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * Block Editor * -*---------------------------------------------------------------------------------------------*/ +*-----------------------------------------------------------------------------*/ .block-editor .edit-post-sidebar .acf-postbox > .postbox-header, .block-editor .edit-post-sidebar .acf-postbox > .hndle { border-bottom-width: 0 !important; @@ -2239,12 +2461,60 @@ tr.acf-accordion + tr.acf-accordion { padding: 15px; } .block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-title label { - font-weight: bold; + font-weight: 500; + color: rgb(30, 30, 30); +} +.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-title svg.acf-accordion-icon { + right: 16px; } .block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-content > .acf-fields { border-top-width: 0; } +/*----------------------------------------------------------------------------- +* +* Prefix field label & prefix field names +* +*-----------------------------------------------------------------------------*/ +.acf-field-setting-prefix_label p.description, +.acf-field-setting-prefix_name p.description { + order: 3; + margin-top: 0; + margin-left: 16px; +} +.acf-field-setting-prefix_label p.description code, +.acf-field-setting-prefix_name p.description code { + padding-top: 4px; + padding-right: 6px; + padding-bottom: 4px; + padding-left: 6px; + background-color: #F2F4F7; + border-radius: 4px; + color: #667085; +} + +/*----------------------------------------------------------------------------- +* +* Editor tab styles +* +*-----------------------------------------------------------------------------*/ +.acf-fields > .acf-tab-wrap:first-child .acf-tab-group { + border-top: none; +} + +.acf-fields > .acf-tab-wrap .acf-tab-group li.active a { + background: #ffffff; +} + +.acf-fields > .acf-tab-wrap .acf-tab-group li a { + background: #f1f1f1; + border-color: #ccd0d4; +} + +.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover { + background: #fff; +} + /*-------------------------------------------------------------------------------------------- * * User diff --git a/assets/build/css/acf-input.css.map b/assets/build/css/acf-input.css.map index 85537ec..ae5df2c 100644 --- a/assets/build/css/acf-input.css.map +++ b/assets/build/css/acf-input.css.map @@ -1 +1 @@ -{"version":3,"file":"acf-input.css","mappings":"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;EACA;EACA;EACA;EACA;ACnTJ;ADqTI;EACC;EACA;EACA;EACA;ACnTL;ADsTI;EACC;ACpTL;ADsTK;EACC;EACA;ACpTN;AD0TG;EACC;EACA;ACxTJ;AD0TI;EACC;ACxTL;AD0TK;EACC;ACxTN;AD+TG;EACC;AC7TJ;AD+TI;EACC;EACA;EACA;AC7TL;AD+TK;EACC;AC7TN;AD+TM;EACC;AC7TP;ADoUE;EACC;AClUH;ADoUG;;;EAGC;AClUJ;AD2UC;EAEC;EASA;EAWA;AC5VF;AFpvCC;EACC;EACA;EACA;AEsvCF;ADqUE;;EAEC;EACA;EACA;ACnUH;ADuUE;EACC;ACrUH;ADuUG;EACC;ACrUJ;AD8UG;EACC;EACA;EACA;EACA;EAEA;AC7UJ;AD8UI;EACC;EACA;AC5UL;ADiVG;EACC;AC/UJ;ADkVG;EACC;AChVJ;ADkVI;EACC;AChVL;;AD4VA;AAKE;EACC;AC7VH;ADgWE;EACC;AC9VH;;ADoWA;;;;2EAAA;AAWE;EACC;EACA;EACA;EACA;EACA;EACA;ACvWH;AD0WE;EACI;EACA;EACA;ACxWN;AD4WC;EACC;AC1WF;AD6WC;EACC;EACA;AC3WF;AD8WC;EACC;AC5WF;AD+WC;EACC,qBF1pDe;EE2pDf;AC7WF;;ADkXA;EACC;AC/WD;;ADkXA;;;;+FAAA;AAMA;EACC;AChXD;;ADoXA;EACC;ACjXD;;ADqXA;EACC;EACA;AClXD;;ADsXA;EACC;EACA;ACnXD;ADqXC;EACI;ACnXL;ADqXK;EACF;EACA;EAEA;EACA;EACG;EACA;EAEA;EACA;EACA;EACA;EACA;ACrXN;ADuXM;EACF;ACrXJ;ADwXG;EACC;EACA;ACtXJ;ADyXG;EACC;ACvXJ;AD8XE;EACC;AC5XH;ADiYE;EACC;EACA;EACG;EACA;EACA;EACA;AC/XN;;ADsYA;EACC;ACnYD;ADsYC;EACC;EACA;EACA;EAGA;EACA;ACtYF;ADwYE;EACC;EACA,qBFnwDc;AG63CjB;ADwYG;EACC;ACtYJ;AD0YE;EACC;ACxYH;AFp3CC;ECiwDE,qBFzwDkB;AG+3CrB;ADgZC;EACC;AC9YF;;ADwZC;EACC;EAEA;EAMA;AC3ZF;ADsZE;EAJD;IAKE;ECnZD;AACF;ADuZE;EACC;EACA;EAEA;ACtZH;ADuZG;EALD;IAME;ECpZF;AACF;;AD8ZC;EACC;EACA;EACA;EACA;EACA;EAAuB;EACvB;AC1ZF;AD6ZE;EACC;EACA;AC3ZH;AD6ZG;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AC3ZJ;AD6ZI;EACC;AC3ZL;AD+ZG;EACC;EACA;EACA;EACA;AC7ZJ;ADkaE;EACC;EACA;AChaH;ADkaG;EACC;EACA;AChaJ;ADsaC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACpaF;AD6aG;EACC;AC3aJ;;ADkbA;AACA;EACC;EACA;EAEA;EAeA;AC9bD;ADgbC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AC9aF;ADmbC;EACC;ACjbF;ADmbE;EACC;EACA;EACA;EACA;ACjbH;ADubC;EACC;EAEA;ACtbF;ADubE;EACC;ACrbH;ADwbE;EACC;EACA;EACA;ACtbH;ADybE;EACC;ACvbH;ADybG;EACC;ACvbJ;AD0bG;EACC;ACxbJ;AD+bC;EACC;AC7bF;;ADmcA;EACC;AChcD;ADmcC;EACC;EACA;EACA;EACA;ACjcF;ADmcE;EACC;ACjcH;ADmcG;EACC;ACjcJ;ADqcE;EACC;ACncH;;ADycA;AAIC;EACC;ACzcF;AD2cE;EACC;ACzcH;AD8cC;EACC;EACA;EACA,kBF9/DG;EE+/DH,mBF//DG;AGmjDL;AD8cE;EACC;EACA,qBF5/Dc;AGgjDjB;AD8cG;EACC;EACA,qBFhgEa;AGojDjB;AD8cI;EACC;AC5cL;ADgdG;EACC;AC9cJ;ADsdE;EACC;EACA;ACpdH;ADudE;EACC;ACrdH;ADudG;EACC;EACA;EACA;ACrdJ;ADwdG;EACC;ACtdJ;;ADkeE;;EAAI;AC7dN;AD8dE;;;EAAsB;ACzdxB;;AD6dA;EACC;AC1dD;;AD+dA;AACA;EACC;AC5dD;;AD+dA;EACC;EACA;AC5dD;;AD+dA;EACC;AC5dD;;ADieA;AACA;EACC;AC9dD;;ADieA;EACC;AC9dD;;ADieA;EACC;AC9dD;;ADkeA;AACA;EACC;EACA;AC/dD;;ADmeA;AAGA;EACC;ACleD;;ADqeA;AACC;EACC;ACleF;;ADseA;;;;8FAAA;AAMA;EACC;EACA;EACA;ACpeD;ADseC;EACC;EACA;EACA;ACpeF;ADseE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACpeH;ADueE;EACC;ACreH;ADyeC;EACC;EACA;EACA;ACveF;ADyeE;EACC;EACA;ACveH;AD0eE;EACC;EACA;EACA;EACA;ACxeH;AD2eE;EDjqED;EACA;EACA;EACA;ECgqEE;EAEA;EACA;EACA;EACA;ACveH;AD0eE;EACC;ACxeH;AD2eE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ACzeH;AD2eG;EACC;EACA;EACA;ACzeJ;ADgfE;EACC;AC9eH;ADifE;EACC;AC/eH;ADkfE;EACC;AChfH;;ADsfA;;;;8FAAA;AAMA;EAEC;EAQA;EAiCA;EAMA;ACjiBD;AFrvDC;EACC;EACA;EACA;AEuvDF;ADgfC;EACC;AC9eF;ADmfC;EACC;EACA;EAuBA;ACvgBF;ADkfE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;AClfH;ADmfG;EACC;EACA;ACjfJ;ADufE;EACC;ACrfH;AD2fC;EACC;ACzfF;ADggBE;EACC;AC9fH;;ADsgBA;;;;8FAAA;AAMA;EACC;EA8CA;EAMA;ACtjBD;ADogBC;EACC;AClgBF;ADqgBC;EACC;EACA;EACA;EACA;ACngBF;ADsgBC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ACpgBF;ADsgBE;EACC;EACA;EACA;EACA;ACpgBH;ADwgBC;EACC;EACA;ACtgBF;ADwgBE;EACC;EACA;EACA;EACA;ACtgBH;ADygBE;EACC;ACvgBH;AD4gBC;EACC;AC1gBF;ADihBE;EACC;EACA;EACA;EACA;AC/gBH;ADkhBE;EACC;EACA;AChhBH;;ADuhBA;;;;+FAAA;AAMA;EACC;ACrhBD;ADuhBC;EACC;EACA;ACrhBF;;AD0hBA;AACA;EACC;EACA;EACA;EACA;ACvhBD;;AD0hBA;EACC;EACA;EACA;EACA;ACvhBD;;AD2hBA;;;;+FAAA;AAMA;EAeC;ACviBD;AD0hBC;EACC;ACxhBF;AD0hBE;EACC;ACxhBH;AD4hBC;EACC;AC1hBF;AD+hBC;EACC;EACA;EACA;EACA;EACA;AC7hBF;;ADmiBA;;;;+FAAA;AAMA;EACC;EAmBA;EAQA;AC1jBD;ADiiBC;EACC;EACA;EACA;EACA;AC/hBF;ADkiBC;EACC;EACA;AChiBF;ADkiBE;EACC;AChiBH;ADuiBE;EACC;ACriBH;AD4iBE;EACC;EACA;AC1iBH;;ADijBA;;;;+FAAA;AAMA;EAmCC;ACjlBD;ADgjBC;;EAEC;EACA;EACA;EACA;AC9iBF;ADijBC;EACC;AC/iBF;ADkjBC;EACC;EACA;EACA;EACA;EACA;AChjBF;ADkjBE;EACC;AChjBH;ADqjBC;EACC;EACA;EACA;EACA;ACnjBF;AD0jBE;EACC;EACA;ACxjBH;AD2jBE;EAAc;ACxjBhB;ADyjBE;EAAe;ACtjBjB;;AD6jBA;;;;+FAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;AC3jBD;AD8jBC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AC5jBF;AD8jBE;EACC;AC5jBH;AD+jBE;EACC;EACA;EACA;EACA;AC7jBH;ADgkBE;EACC;AC9jBH;ADikBE;EACC;AC/jBH;ADmkBE;EACC;EACA;EACA;EACA;EACA;EACA;ACjkBH;ADqkBC;EACC;EACA;EACA;ACnkBF;ADwkBE;EACC;ACtkBH;;AD4kBA;EACC;EACA;EACA,qBF1kFkB;AGigEnB;AD2kBC;EACC;EACA;EACA;EACA;ACzkBF;AD4kBC;EACC;EACA;EACA;AC1kBF;AD4kBE;EACC;AC1kBH;AD4kBG;EACC;AC1kBJ;;ADilBA;AAEC;EACC;AC/kBF;ADklBC;EACC;EACA;EACA;EACA;AChlBF;ADmlBC;EACC;ACjlBF;;ADslBA;AACA;EACC;EACA;ACnlBD;ADqlBC;EACC;ACnlBF;;ADwlBA;AACA;EACC;ACrlBD;ADulBC;EACC;EACA;ACrlBF;ADwlBC;EACC;ACtlBF;;AD2lBA;AACA;EACC;EACA;ACxlBD;;AD4lBA;EACC;EACA;ACzlBD;AD2lBC;EACC;ACzlBF;;AD+lBA;AACA;EACC;AC5lBD;AD8lBC;EACC;AC5lBF;;ADimBA;AACA;EACC,iBF1rFiB;EE2rFjB,kBF3rFiB;EE4rFjB;AC9lBD;;ADkmBA;AAMA;AACA;;;;;;;;;CAAA;AAYA;AACA;EACC;EACA;ACtmBD;ADwmBC;EACC;ACtmBF;ADymBC;EACC;ACvmBF;;ADinBC;EACC;AC9mBF;ADknBC;EACC;AChnBF;ADonBC;EACC;AClnBF;;ADunBA;;;;+FAAA;AAYG;;EAEC;AC3nBJ;AD8nBI;;EAEC;AC5nBL;ADkoBE;EACC;EACA;AChoBH;ADkoBG;EACC;EACA;EACA;EACA;EAGA;EACA;EACA;ACloBJ;ADqoBI;EACC;ACnoBL;ADooBK;EACC;ACloBN;ADuoBI;EACC;EACA;EACA;ACroBL;ADuoBK;EACC;ACroBN;ADwoBK;EACC;EACA;ACtoBN;ADuoBM;EACC;ACroBP;AD0oBM;EACC;ACxoBP;;AClsEA;;;;8FAAA;AAMA;EAEC;EAkCA;EAYA;ADupED;ACpsEC;EAEC;EAkBA;ADorEF;ACrsEE;EACC;EACG;EAEA;ADssEN;ACrsEG;EACC;ADusEJ;ACpsEM;EACF;EACA;ADssEJ;AC/rEE;EACC;EAEA;ADgsEH;AC/rEG;EACC;ADisEJ;ACzrEC;EACC;EAEA;AD0rEF;ACzrEE;EACC;AD2rEH;ACprEC;EACC;ADsrEF;;ACjrEA;;EAGC;EAgBA;ADoqED;ACnrEC;;;;;;;;;;;;;;EAOI;AD4rEL;ACzrEC;;EACC;AD4rEF;ACvrEC;;;;;;;;;;;;;;;;EAQI;ADisEL;;AC3rEC;EACC;AD8rEF;AC3rEC;EACC;EAWF;;;;;;;;GAAA;AD2rEA;ACpsEE;EACC;ADssEH;ACpsEG;EACC;EACA;ADssEJ;ACvrEC;EACC;ADyrEF;;ACprEA;;;;8FAAA;AAOA;EACC;ADqrED;ACjrEE;EACC;ADmrEH;ACjrEG;EACC;EACA;ADmrEJ;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","sources":["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/_fields.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-input.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_forms.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_media.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_input.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_postbox.scss"],"sourcesContent":["/*--------------------------------------------------------------------------------------------\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\t// Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t\t// Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t\t// Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\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* 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*\tacf-field\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-field,\n.acf-field .acf-label,\n.acf-field .acf-input {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tposition: relative;\n}\n\n.acf-field {\n\tmargin: 15px 0;\n\t\n\t// clear is important as it will avoid any layout issues with floating fields\n\t// do not delete (you have tried this)\n\tclear: both;\n\t\n\t// description\n\tp.description {\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\t\n\t// label\n\t.acf-label {\n\t\tvertical-align: top;\n\t\tmargin: 0 0 10px;\n\t\t\n\t\tlabel {\n\t\t display: block;\n\t\t font-weight: bold;\n\t\t margin: 0 0 3px;\n\t\t\tpadding: 0;\n\t\t}\n\t\t\n\t\t&:empty {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t}\n\t\n\t// input\n\t.acf-input {\n\t\tvertical-align: top;\n\t\t\n\t\t> p.description {\n\t\t\tmargin-top: 5px;\n\t\t}\n\t}\n\t\n\t// notice\n\t.acf-notice {\n\t\tmargin: 0 0 15px;\n\t\tbackground: #edf2ff;\n\t\tcolor: #0c6ca0;\n\t\tborder-color: #2183b9;\n\n\t\t// error\n\t\t&.-error {\n\t\t\tbackground: #ffe6e6;\n\t\t\tcolor: #cc2727;\n\t\t\tborder-color: #d12626;\n\t\t}\n\t\t\n\t\t// success\n\t\t&.-success {\n\t\t\tbackground: #eefbe8;\n\t\t\tcolor: #0e7b17;\n\t\t\tborder-color: #32a23b;\n\t\t}\n\t\t\n\t\t// warning\n\t\t&.-warning {\n\t\t\tbackground: #fff3e6;\n\t\t\tcolor: #bd4b0e;\n\t\t\tborder-color: #d16226;\n\t\t}\n\t}\n\t\n\t// table\n\t@at-root td#{&}, tr#{&} {\n\t\tmargin: 0;\n\t}\n}\n\n// width\n.acf-field[data-width] {\n\tfloat: left;\n\tclear: none;\n\t\n\t// next\n\t+ .acf-field[data-width] {\n\t\tborder-left: 1px solid #eeeeee;\t\n\t}\n\t\n\t// rtl\n\thtml[dir=\"rtl\"] & {\n\t\tfloat: right;\n\t\t\n\t\t+ .acf-field[data-width] {\n\t\t\tborder-left: none;\n\t\t\tborder-right: 1px solid #eeeeee;\t\n\t\t}\n\t}\n\t\n\t// table\n\t@at-root td#{&}, tr#{&} {\n\t\tfloat: none;\n\t}\n\t\n\t// mobile\n/*\n\t@media screen and (max-width: $sm) {\n\t\tfloat: none;\n\t\twidth: auto;\n\t\tborder-left-width: 0;\n\t\tborder-right-width: 0;\n\t}\n*/\n}\n\n\n// float helpers\n.acf-field.-c0 {\n\tclear: both;\n\tborder-left-width: 0 !important;\n\t\n\t// rtl\n\thtml[dir=\"rtl\"] & {\n\t\tborder-left-width: 1px !important;\n\t\tborder-right-width: 0 !important;\n\t}\n}\n\n.acf-field.-r0 {\n\tborder-top-width: 0 !important;\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-fields {\n\tposition: relative;\n\t\n\t// clearifx\n\t@include clearfix();\n\t\n\t// border\n\t&.-border {\n\t\tborder: $wp-card-border solid 1px;\n\t\tbackground: #fff;\n\t}\n\t\n\t// field\n\t> .acf-field {\n\t\tposition: relative;\n\t\tmargin: 0;\n\t\tpadding: $field_padding;\n\t\tborder-top: #EEEEEE solid 1px;\n\t\t\n\t\t// first\n\t\t&:first-child {\n\t\t\tborder-top: none;\n\t\t\tmargin-top: 0;\n\t\t}\n\t}\n\t\n\t// table\n\t@at-root td#{&} {\n\t\tpadding: 0 !important;\n\t}\n}\n\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (clear)\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-fields.-clear > .acf-field {\n\tborder: none;\n\tpadding: 0;\n\tmargin: 15px 0;\n\t\n\t// width\n\t&[data-width] {\n\t\tborder: none !important;\n\t}\n\t\n\t// label\n\t> .acf-label {\n\t\tpadding: 0;\n\t}\n\t\n\t// input\n\t> .acf-input {\n\t\tpadding: 0;\n\t}\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (left)\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-fields.-left > .acf-field {\n\tpadding: $fy 0;\n\t\n\t// clearifx\n\t@include clearfix();\n\t\n\t// sidebar\n\t&:before {\n\t\tcontent: \"\";\n\t display: block;\n\t position: absolute;\n\t z-index: 0;\n\t background: #F9F9F9;\n\t border-color: #E1E1E1;\n\t border-style: solid;\n\t border-width: 0 1px 0 0;\n\t top: 0;\n\t bottom: 0;\n\t left: 0;\n\t width: 20%;\n\t}\n\t\n\t// width\n\t&[data-width] {\n\t\tfloat: none;\n\t\twidth: auto !important;\n\t\tborder-left-width: 0 !important;\n\t\tborder-right-width: 0 !important;\n\t}\n\t\n\t// label\n\t> .acf-label {\n\t\tfloat: left;\n\t\twidth: 20%;\n\t\tmargin: 0;\n\t\tpadding: 0 $fx;\n\t}\n\t\n\t// input\n\t> .acf-input {\n\t\tfloat: left;\n\t\twidth: 80%;\n\t\tmargin: 0;\n\t\tpadding: 0 $fx;\n\t}\n\t\n\t// rtl\n\thtml[dir=\"rtl\"] & {\n\t\t\n\t\t// sidebar\n\t\t&:before {\n\t\t\tborder-width: 0 0 0 1px;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\n\t\t\n\t\t// label\n\t\t> .acf-label {\n\t\t\tfloat: right;\n\t\t}\n\t\t\n\t\t// input\n\t\t> .acf-input {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t\n\t// In sidebar.\n\t#side-sortables & {\n\t\t&:before { \n\t\t\tdisplay: none;\n\t\t}\n\t\t> .acf-label {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 10px;\n\t\t}\n\t\t> .acf-input {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\t\n\t// mobile\n\t@media screen and (max-width: $sm) {\n\t\t\n\t\t// sidebar\n\t\t&:before { \n\t\t\tdisplay: none;\n\t\t}\n\t\t\n\t\t// label\n\t\t> .acf-label {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 10px;\n\t\t}\n\t\t\n\t\t// input\n\t\t> .acf-input {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n}\n\n/* clear + left */\n.acf-fields.-clear.-left > .acf-field {\n\tpadding: 0;\n\tborder: none;\n\t\n\t// sidebar\n\t&:before {\n\t\tdisplay: none;\n\t}\n\t\n\t// label\n\t> .acf-label {\n\t\tpadding: 0;\n\t}\n\t\n\t// input\n\t> .acf-input {\n\t\tpadding: 0;\n\t}\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-table tr.acf-field {\n\t\n\t// label\n\t> td.acf-label {\n\t\tpadding: $fp;\n\t\tmargin: 0;\n\t\tbackground: #F9F9F9;\n\t width: 20%;\n\t}\n\t\n\t// input\n\t> td.acf-input {\n\t\tpadding: $fp;\n\t\tmargin: 0;\n\t\tborder-left-color: #E1E1E1;\n\t}\n}\n\n.acf-sortable-tr-helper {\n\tposition: relative !important;\n\tdisplay: table-row !important;\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-postbox\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-postbox {\n\tposition: relative;\n\t\n\t// inside\n\t> .inside {\n\t\tmargin: 0 !important; /* override WP style - do not delete - you have tried this before */\n\t\tpadding: 0 !important; /* override WP style - do not delete - you have tried this before */\n\t}\n\n\t// Edit cog.\n\t.acf-hndle-cog {\n\t\tcolor: #72777c;\n\t\tfont-size: 16px;\n\t\tline-height: 36px;\n\t\theight: 36px; // Mimic WP 5.5\n\t\twidth: 1.62rem; // Mimic WP 5.5\n\t\tposition: relative;\n\t\tdisplay: none;\n\t\t&:hover {\n\t\t\tcolor: #191e23;\n\t\t}\n\t}\n\n\t// Show on hover.\n\t> .hndle:hover,\n\t> .postbox-header:hover {\n\t\t.acf-hndle-cog {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n\n\t// WP < 5.5 styling\n\t> .hndle {\n\t\t.acf-hndle-cog {\n\t\t\theight: 20px;\n\t\t\tline-height: 20px;\n\t\t\tfloat: right;\n\t\t\twidth: auto;\n\t\t\t&:hover {\n\t\t\t\tcolor: #777777;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t// replace\n\t.acf-replace-with-fields {\n\t\tpadding: 15px;\n\t\ttext-align: center;\n\t}\n}\n\n// Correct margin around #acf_after_title\n#post-body-content #acf_after_title-sortables {\n\tmargin: 20px 0 -20px;\n}\n\n/* seamless */\n.acf-postbox.seamless {\n\tborder: 0 none;\n\tbackground: transparent;\n\tbox-shadow: none;\n\t\n\t\n\t/* hide hndle */\n\t> .postbox-header,\n\t> .hndle,\n\t> .handlediv {\n\t\tdisplay: none !important;\n\t}\n\t\n\t\n\t/* inside */\n\t> .inside {\n\t\tdisplay: block !important; /* stop metabox from hiding when closed */\n\t\tmargin-left: -$field_padding_x !important;\n\t\tmargin-right: -$field_padding_x !important;\n\t\t\n\t\t> .acf-field {\n\t\t\tborder-color: transparent;\n\t\t}\n\t}\n}\n\n\n/* seamless (left) */\n.acf-postbox.seamless > .acf-fields.-left {\n\t\n\t/* hide sidebar bg */\n\t> .acf-field:before { \n\t\tdisplay: none;\n\t}\n\t\n\t\n\t/* mobile */\n\t@media screen and (max-width: 782px) {\n\t\t\n\t\t/* remove padding */\n\t\t& > .acf-field > .acf-label,\n\t\t& > .acf-field > .acf-input {\n\t\t\tpadding: 0;\t\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Inputs\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field {\n\tinput[type=\"text\"],\n\tinput[type=\"password\"],\n\tinput[type=\"date\"],\n\tinput[type=\"datetime\"],\n\tinput[type=\"datetime-local\"],\n\tinput[type=\"email\"],\n\tinput[type=\"month\"],\n\tinput[type=\"number\"],\n\tinput[type=\"search\"],\n\tinput[type=\"tel\"],\n\tinput[type=\"time\"],\n\tinput[type=\"url\"],\n\tinput[type=\"week\"],\n\ttextarea,\n\tselect {\n\t width: 100%;\n\t\tpadding: 4px 8px;\n\t\tmargin: 0;\n\t\tbox-sizing: border-box;\n\t font-size: 14px;\n\t line-height: 1.4;\n\t \n\t // WP Admin 3.8\n\t\t@include wp-admin('3-8') {\n\t\t\tpadding: 3px 5px;\n\t\t}\n\t}\n\ttextarea {\n\t\tresize: vertical;\n\t}\n}\n\n// Fix extra padding in Firefox.\nbody.acf-browser-firefox .acf-field select {\n\tpadding: 4px 5px;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Text\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-input-prepend,\n.acf-input-append,\n.acf-input-wrap {\n\tbox-sizing: border-box;\n}\n\n.acf-input-prepend,\n.acf-input-append {\n\tfont-size: 14px;\n\tline-height: 1.4;\n\tpadding: 4px 8px;\n\tbackground: #f5f5f5;\n\tborder: $wp-input-border solid 1px;\n\tmin-height: 30px;\n\t\n\t// WP Admin 3.8\n\t@include wp-admin('3-8') {\n\t\tpadding: 3px 5px;\n\t\tborder-color: $wp38-input-border;\n\t\tmin-height: 28px;\n\t}\n}\n\n.acf-input-prepend {\n\tfloat: left;\n\tborder-right-width: 0;\n\tborder-radius: 3px 0 0 3px;\n}\n\n.acf-input-append {\n\tfloat: right;\n\tborder-left-width: 0;\n\tborder-radius: 0 3px 3px 0;\n}\n\n.acf-input-wrap {\n\tposition: relative;\n\toverflow: hidden;\n\t.acf-is-prepended {\n\t\tborder-radius: 0 3px 3px 0 !important;\n\t}\n\t.acf-is-appended {\n\t\tborder-radius: 3px 0 0 3px !important;\n\t}\n\t.acf-is-prepended.acf-is-appended {\n\t\tborder-radius: 0 !important;\n\t}\n}\n\n/* rtl */\nhtml[dir=\"rtl\"] .acf-input-prepend {\n\tborder-left-width: 0;\n\tborder-right-width: 1px;\n\tborder-radius: 0 3px 3px 0;\n\t\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-input-append {\n\tborder-left-width: 1px;\n\tborder-right-width: 0;\n\tborder-radius: 3px 0 0 3px;\n\tfloat: left;\n}\n\nhtml[dir=\"rtl\"] input.acf-is-prepended {\n\tborder-radius: 3px 0 0 3px !important;\n}\n\nhtml[dir=\"rtl\"] input.acf-is-appended {\n\tborder-radius: 0 3px 3px 0 !important;\n}\n\nhtml[dir=\"rtl\"] input.acf-is-prepended.acf-is-appended {\n\tborder-radius: 0 !important;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Color Picker\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-color-picker {\n\t.wp-color-result {\n\t\tborder-color: $wp-input-border;\n\t\t@include wp-admin('3-8') {\n\t\t\tborder-color: $wp-card-border;\n\t\t}\n\t}\n\t.wp-picker-active {\n\t\tposition: relative;\n\t\tz-index: 1;\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Url\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-url {\n\t\n\ti {\n\t\tposition: absolute;\n\t\ttop: 5px;\n\t\tleft: 5px;\n\t\topacity: 0.5;\n\t\tcolor: #7e8993;\n\t}\n\t\n\tinput[type=\"url\"] {\n\t\tpadding-left: 27px !important;\n\t}\n\t\n\t&.-valid i {\n\t\topacity: 1;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Select2 (v3)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.select2-container.-acf {\n\t\n\t.select2-choices {\n\t\tbackground: #fff;\n\t border-color: #ddd;\n\t box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;\n\t min-height: 31px;\n\t \n\t .select2-search-choice {\n\t\t\tmargin: 5px 0 5px 5px;\n\t\t\tpadding: 3px 5px 3px 18px;\n\t\t\tborder-color: #bbb;\n\t\t\tbackground: #f9f9f9;\n\t\t\tbox-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;\n\t\t\t\n\t\t\t/* sortable item*/\n\t\t\t &.ui-sortable-helper {\n\t\t\t\t background: #5897fb;\n\t\t\t\t border-color: darken(#5897fb, 5%);\n\t\t\t\t color: #fff;\n\t\t\t\t box-shadow: 0 0 3px rgba(0,0,0,0.1);\n\t\t\t\t \n\t\t\t\t a {\n\t\t\t\t\t visibility: hidden;\n\t\t\t\t }\n\t\t\t }\n\t\t\t \n\t\t\t \n\t\t\t /* sortable shadow */\n\t\t\t &.ui-sortable-placeholder {\n\t\t\t\t background-color: #f7f7f7;\n\t\t\t\t border-color: #f7f7f7;\n\t\t\t\t visibility: visible !important;\n\t\t\t }\n\t\t}\n\t\t\n\t\t.select2-search-choice-focus {\n\t\t\tborder-color: #999;\n\t\t}\n\t\t\n\t\t.select2-search-field input {\n\t\t\theight: 31px;\n\t\t\tline-height: 22px;\n\t\t\tmargin: 0;\n\t\t\tpadding: 5px 5px 5px 7px;\n\t\t}\n\t}\n\t\n\t.select2-choice {\n\t border-color: #BBBBBB;\n\t \n\t .select2-arrow {\n\t\t\tbackground: transparent;\n\t\t\tborder-left-color: #DFDFDF;\n\t\t\tpadding-left: 1px;\n\t\t}\n\t\t\n\t\t.select2-result-description { \n\t\t\tdisplay: none;\t\n\t\t}\n\t}\n\t\n\t\n\t\n\t/* open */\n\t&.select2-container-active .select2-choices,\n\t&.select2-dropdown-open .select2-choices {\n\t\tborder-color: #5B9DD9;\n\t\tborder-radius: 3px 3px 0 0;\n\t}\n\t\n\t\n\t/* single open */\n\t&.select2-dropdown-open .select2-choice {\n\t\tbackground: #fff;\n\t\tborder-color: #5B9DD9;\n\t}\n\t\n}\n\n/* rtl */\nhtml[dir=\"rtl\"] .select2-container.-acf {\n\t\n\t.select2-search-choice-close {\n\t left: 24px;\n\t}\n\t\n\t.select2-choice > .select2-chosen {\n\t margin-left: 42px;\n\t}\n\t\n\t.select2-choice .select2-arrow {\n\t padding-left: 0;\n\t padding-right: 1px; \n\t}\n}\n\n\n/* description */\n.select2-drop {\n\t\n\t/* search*/\n\t.select2-search {\n\t\tpadding: 4px 4px 0;\n\t}\n\t\n\t\n\t/* result */\n\t.select2-result {\n\t\n\t\t.select2-result-description {\n\t\t\tcolor: #999;\n\t\t\tfont-size: 12px;\n\t\t\tmargin-left: 5px;\n\t\t}\n\t\t\n\t\t\n\t\t/* hover*/\n\t\t&.select2-highlighted {\n\t\t\t\n\t\t\t.select2-result-description {\n\t\t\t\tcolor: #fff;\n\t\t\t\topacity: 0.75;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\n\t}\n\t\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Select2 (v4)\n*\n*---------------------------------------------------------------------------------------------*/\n.select2-container.-acf {\n\t// Reset WP default style.\n\tli {\n\t\tmargin-bottom: 0;\n\t}\n\n\t// select2 4.1 specific targeting for plugin conflict resolution.\n\t&[data-select2-id^='select2-data'] {\n\t\t.select2-selection--multiple {\n\t\t\toverflow: hidden;\n\t\t}\n\t}\n\n\t// Customize border color to match WP admin.\n\t.select2-selection {\n\t\tborder-color: $wp-input-border;\n\n\t\t// WP Admin 3.8\n\t\t@include wp-admin('3-8') {\n\t\t\tborder-color: #aaa;\n\t\t}\n\t}\n\n\t// Multiple wrap.\n\t.select2-selection--multiple {\n\n\t\t// If no value, increase hidden search input full width.\n\t\t// Overrides calculated px width issues.\n\t\t.select2-search--inline:first-child {\n\t\t\tfloat: none;\n\t\t\tinput {\n\t\t\t\twidth: 100% !important;\n\t\t\t}\n\t\t}\n\n\t\t// ul: Remove padding because li already has margin-right.\n\t\t.select2-selection__rendered {\n\t\t\tpadding-right: 0;\n\t\t}\n\n\t\t// incredibly specific targeting of an ID that only gets applied in select2 4.1 to solve plugin conflicts\n\t\t.select2-selection__rendered[id^='select2-acf-field'] {\n\t\t\tdisplay: inline;\n\t\t\tpadding: 0;\n\t\t\tmargin: 0;\n\n\t\t\t.select2-selection__choice {\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\n\t\t// li\n\t\t.select2-selection__choice {\n\t\t\tbackground-color: #f7f7f7;\n\t\t\tborder-color: #cccccc;\n\n\t\t\t// Allow choice to wrap multiple lines.\n\t\t\tmax-width: 100%;\n\t\t\toverflow: hidden;\n\t\t\tword-wrap: normal !important;\n\t\t\twhite-space: normal;\n\n\t\t\t// Sortable.\n\t\t\t&.ui-sortable-helper {\n\t\t\t\tbackground: #5897fb;\n\t\t\t\tborder-color: darken(#5897fb, 5%);\n\t\t\t\tcolor: #fff;\n\t\t\t\tbox-shadow: 0 0 3px rgba(0, 0, 0, 0.1);\n\n\t\t\t\tspan {\n\t\t\t\t\tvisibility: hidden;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Fixed for select2's 4.1 css changes when loaded by another plugin.\n\t\t\t.select2-selection__choice__remove {\n\t\t\t\tposition: static;\n\t\t\t\tborder-right: none;\n\t\t\t\tpadding: 0;\n\t\t\t}\n\n\t\t\t// Sortable shadow\n\t\t\t&.ui-sortable-placeholder {\n\t\t\t\tbackground-color: #f7f7f7;\n\t\t\t\tborder-color: #f7f7f7;\n\t\t\t\tvisibility: visible !important;\n\t\t\t}\n\t\t}\n\n\t\t// search\n\t\t.select2-search__field {\n\t\t\tbox-shadow: none !important;\n\t\t\tmin-height: 0;\n\t\t}\n\t}\n\n\t// Fix single select pushing out repeater field table width.\n\t.acf-row & .select2-selection--single {\n\t\toverflow: hidden;\n\t\t.select2-selection__rendered {\n\t\t\twhite-space: normal;\n\t\t}\n\t}\n}\n\n// remove bottom margin on options\n.select2-dropdown .select2-results__option {\n\tmargin-bottom: 0;\n}\n\n// z-index helper.\n.select2-container {\n\t.select2-dropdown {\n\t\tz-index: 900000;\n\n\t\t// Reset input height.\n\t\t.select2-search__field {\n\t\t\tline-height: 1.4;\n\t\t\tmin-height: 0;\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Link\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-link {\n\t\n\t.link-wrap {\n\t\tdisplay: none;\n\t\tborder: $wp-card-border solid 1px;\n\t\tborder-radius: 3px;\n\t\tpadding: 5px;\n\t\tline-height: 26px;\n\t\tbackground: #fff;\n\t\t\n\t\tword-wrap: break-word;\n\t\tword-break: break-all;\n\t\t\n\t\t.link-title {\n\t\t\tpadding: 0 5px;\n\t\t}\n\t}\n\t\n\t// Has value.\n\t&.-value {\n\t\t.button {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.acf-icon.-link-ext {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.link-wrap {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n\t\n\t// Is external.\n\t&.-external {\n\t\t.acf-icon.-link-ext {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n\n#wp-link-backdrop { \n\tz-index: 900000 !important;\n}\n#wp-link-wrap { \n\tz-index: 900001 !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Radio\n*\n*---------------------------------------------------------------------------------------------*/\n\nul.acf-radio-list,\nul.acf-checkbox-list {\n\tbackground: transparent;\n\tposition: relative;\n\tpadding: 1px;\n\tmargin: 0;\n\t\n\tli {\n\t\tfont-size: 13px;\n\t\tline-height: 22px;\n\t\tmargin: 0;\n\t\tposition: relative;\n\t\tword-wrap: break-word;\n\t\t\n\t\tlabel {\n\t\t\tdisplay: inline;\n\t\t}\n\n\t\tinput[type=\"checkbox\"],\n\t\tinput[type=\"radio\"] {\n\t\t\tmargin: -1px 4px 0 0;\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t\n\t\tinput[type=\"text\"] {\n\t\t\twidth: auto;\n\t\t\tvertical-align: middle;\n\t\t\tmargin: 2px 0;\n\t\t}\n\t\t\n\t\t\n\t\t/* attachment sidebar fix*/\n\t\tspan {\n\t\t\tfloat: none;\n\t\t}\n\t\t\n\t\ti {\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\t\n\t\n\t/* hl */\n\t&.acf-hl {\n\t\t\n\t\tli {\n\t\t\tmargin-right: 20px;\n\t\t\tclear: none;\n\t\t}\n\t}\n\t\n\t\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\t\n\t\tinput[type=\"checkbox\"],\n\t\tinput[type=\"radio\"] {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 0;\n\t\t}\n\t}\n\t\n\t\n\t\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Button Group\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-button-group {\n\tdisplay: inline-block;\n\t\n\tlabel {\n\t\tdisplay: inline-block;\n\t\tborder: $wp-input-border solid 1px;\n\t\tposition: relative;\n\t\tz-index: 1;\n\t\tpadding: 5px 10px;\n\t\tbackground: #fff;\n\t\t\n\t\t&:hover {\n\t\t\tcolor: #016087;\n\t\t\tbackground: #f3f5f6;\n\t\t\tborder-color: #0071a1;\n\t\t\tz-index: 2;\n\t\t}\n\t\t\n\t\t&.selected {\n\t\t\tborder-color: #007cba;\n\t\t\tbackground: lighten(#007cba, 5%);\n\t\t\tcolor: #fff;\n\t\t\tz-index: 2;\n\t\t}\n\t}\n\t\n\tinput {\n\t\tdisplay: none !important;\n\t}\n\t\n\t\n\t/* default (horizontal) */\n\t& {\n\t\tpadding-left: 1px;\n\t\tdisplay: inline-flex;\n\t\tflex-direction: row;\n\t\tflex-wrap: nowrap;\n\t\t\n\t\tlabel {\n\t\t\tmargin: 0 0 0 -1px;\n\t\t\tflex: 1;\n\t\t\ttext-align: center;\n\t\t\twhite-space: nowrap;\n\t\t\n\t\t\t// corners\n\t\t\t&:first-child { \n\t\t\t\tborder-radius: 3px 0 0 3px;\n\t\t\t\thtml[dir=\"rtl\"] & { border-radius: 0 3px 3px 0; }\n\t\t\t}\n\t\t\t&:last-child { \n\t\t\t\tborder-radius: 0 3px 3px 0;\n\t\t\t\thtml[dir=\"rtl\"] & { border-radius: 3px 0 0 3px; }\n\t\t\t}\n\t\t\t&:only-child { border-radius: 3px; }\n\t\t}\n\t}\n\t\n\t\n\t/* vertical */\n\t&.-vertical {\n\t\tpadding-left: 0;\n\t\tpadding-top: 1px;\n\t\tflex-direction: column;\n\t\t\n\t\tlabel {\n\t\t\tmargin: -1px 0 0 0;\n\t\t\t\n\t\t\t// corners\n\t\t\t&:first-child { border-radius: 3px 3px 0 0; }\n\t\t\t&:last-child { border-radius: 0 0 3px 3px; }\n\t\t\t&:only-child { border-radius: 3px; }\n\t\t\t\n\t\t}\n\t}\n\t\n\t// WP Admin 3.8\n\t@include wp-admin('3-8') {\n\t\tlabel {\n\t\t\tborder-color: $wp-card-border;\n\t\t\t&:hover {\n\t\t\t\tborder-color: #0071a1;\n\t\t\t}\n\t\t\t&.selected {\n\t\t\t\tborder-color: #007cba;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Checkbox\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-checkbox-list {\n\t\n\t.button {\n\t\tmargin: 10px 0 0;\n\t}\n\t\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* True / False\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-switch {\n\tdisplay: inline-block;\n\tborder-radius: 5px;\n\tcursor: pointer;\n\tposition: relative;\n\tbackground: #f5f5f5;\n\theight: 30px;\n\tvertical-align: middle;\n\tborder: $wp-input-border solid 1px;\n\t\n\t-webkit-transition: background 0.25s ease;\n\t-moz-transition: background 0.25s ease;\n\t-o-transition: background 0.25s ease;\n\ttransition: background 0.25s ease;\n\t\n\tspan {\n\t\tdisplay: inline-block;\n\t\tfloat: left;\n\t\ttext-align: center;\n\t\t\n\t\tfont-size: 13px;\n\t\tline-height: 22px;\n\t\t\n\t\tpadding: 4px 10px;\n\t\tmin-width: 15px;\n\t\t\n\t\ti {\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\t\n\t.acf-switch-on {\n\t\tcolor: #fff;\n\t\ttext-shadow: #007cba 0 1px 0;\n\t}\n\t\n\t.acf-switch-off {\n\t\t\n\t}\n\t\n\t.acf-switch-slider {\n\t\tposition: absolute;\n\t\ttop: 2px;\n\t\tleft: 2px;\n\t\tbottom: 2px;\n\t\tright: 50%;\n\t\tz-index: 1;\n\t\tbackground: #fff;\n\t\tborder-radius: 3px;\n\t\tborder: $wp-input-border solid 1px;\n\t\t\n\t\t-webkit-transition: all 0.25s ease;\n\t\t-moz-transition: all 0.25s ease;\n\t\t-o-transition: all 0.25s ease;\n\t\ttransition: all 0.25s ease;\n\t\t\n\t\ttransition-property: left, right;\n\t}\n\t\n\t/* hover */\n\t&:hover,\n\t&.-focus {\n\t\tborder-color: #0071a1;\n\t\tbackground: #f3f5f6;\n\t\tcolor: #016087;\n\t\t.acf-switch-slider{\n\t\t\tborder-color: #0071a1;\n\t\t}\n\t}\n\t\n\t/* active */\n\t&.-on {\n\t\tbackground: #0d99d5;\n\t\tborder-color: #007cba;\n\t\t\n\t\t.acf-switch-slider {\n\t\t\tleft: 50%;\n\t\t\tright: 2px;\n\t\t\tborder-color: #007cba;\n\t\t}\n\t\t\n\t\t/* hover */\n\t\t&:hover {\n\t\t\tborder-color: #007cba;\n\t\t}\n\t}\n\t\n\t/* message */\n\t+ span {\n\t\tmargin-left: 6px;\n\t}\n\t\n\t// WP Admin 3.8\n\t@include wp-admin('3-8') {\n\t\tborder-color: $wp-card-border;\n\t\t.acf-switch-slider {\n\t\t\tborder-color: $wp-card-border;\n\t\t}\n\t\t\n\t\t&:hover,\n\t\t&.-focus {\n\t\t\tborder-color: #0071a1;\n\t\t\t.acf-switch-slider{\n\t\t\t\tborder-color: #0071a1;\n\t\t\t}\n\t\t}\n\t\t\n\t\t&.-on {\n\t\t\tborder-color: #007cba;\n\t\t\t.acf-switch-slider {\n\t\t\t\tborder-color: #007cba;\n\t\t\t}\n\t\t\t&:hover {\n\t\t\t\tborder-color: #007cba;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n/* checkbox */\n.acf-switch-input {\n\topacity: 0;\n\tposition: absolute;\n\tmargin: 0;\n}\n\n\n/* in media modal */\n.compat-item .acf-true-false {\n\t\n\t.message {\n\t\tfloat: none;\n\t\tpadding: 0;\n\t\tvertical-align: middle;\n\t}\n\t\n}\n\n\n/*--------------------------------------------------------------------------\n*\n*\tGoogle Map\n*\t\n*-------------------------------------------------------------------------*/\n\n.acf-google-map {\n\tposition: relative;\n\tborder: $wp-card-border solid 1px;\n\tbackground: #fff;\n\t\n\t.title {\n\t\tposition: relative;\n\t\tborder-bottom: $wp-card-border solid 1px;\n\t\t\n\t\t.search {\n\t\t\tmargin: 0;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 30px;\n\t\t\theight: 40px;\n\t\t\tpadding: 5px 10px;\n\t\t\tborder: 0 none;\n\t\t\tbox-shadow: none;\n\t\t\tborder-radius: 0;\n\t\t\tfont-family: inherit;\n\t\t\tcursor: text;\n\t\t}\n\t\t\n\t\t.acf-loading {\n\t\t\tposition: absolute;\n\t\t\ttop: 10px;\n\t\t\tright: 11px;\n\t\t\tdisplay: none;\n\t\t}\n\t\t\n\t\t// Avoid icons disapearing when click/blur events conflict.\n\t\t.acf-icon:active {\n\t\t\tdisplay: inline-block !important;\n\t\t}\n\t}\n\t\n\t.canvas {\n\t\theight: 400px;\n\t}\n\t\n\t// Show actions on hover.\n\t&:hover .title .acf-actions { \n\t\tdisplay: block;\n\t}\n\t\n\t// Default state (show locate, hide search and cancel).\n\t.title {\n\t\t.acf-icon.-location {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t\t.acf-icon.-cancel,\n\t\t.acf-icon.-search {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t\n\t// Has value (hide locate, show cancel).\n\t&.-value .title { \n\t\t.search {\n\t\t\tfont-weight: bold;\n\t\t}\n\t\t.acf-icon.-location {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.acf-icon.-cancel {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n\t\n\t// Is searching (hide locate, show search and cancel).\n\t&.-searching .title {\n\t\t.acf-icon.-location {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.acf-icon.-cancel,\n\t\t.acf-icon.-search {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t\t\n\t\t// Show actions.\n\t\t.acf-actions { \n\t\t\tdisplay: block;\n\t\t}\n\t\t\n\t\t// Change search font-weght.\n\t\t.search {\n\t\t\tfont-weight: normal !important;\n\t\t}\n\t}\n\t\n\t// Loading.\n\t&.-loading .title {\n\t\ta {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\ti {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n\t\n}\n\n\n\n/* autocomplete */\n.pac-container {\n\tborder-width: 1px 0;\n\tbox-shadow: none;\n}\n\n.pac-container:after {\n\tdisplay: none;\n}\n\n.pac-container .pac-item:first-child {\n\tborder-top: 0 none;\n}\n.pac-container .pac-item {\n\tpadding: 5px 10px;\n\tcursor: pointer;\n}\n\n\nhtml[dir=\"rtl\"] .pac-container .pac-item {\n\ttext-align: right;\n}\n\t\n\t\n/*--------------------------------------------------------------------------\n*\n*\tRelationship\n*\t\n*-------------------------------------------------------------------------*/\n\n.acf-relationship {\n\tbackground: #fff;\n\tborder: $wp-card-border solid 1px;\n\t\n\t// Filters.\n\t.filters {\n\t\t@include clearfix();\n\t\tborder-bottom: $wp-card-border solid 1px;\n\t\tbackground: #fff;\n\t\t\n\t\t.filter {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tfloat: left;\n\t\t\twidth: 100%;\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: 7px 7px 7px 0;\n\t\t\t&:first-child {\n\t\t\t\tpadding-left: 7px;\n\t\t\t}\n\n\t\t\t// inputs\n\t\t\tinput, select {\n\t\t\t\tmargin: 0;\n\t\t\t\tfloat: none; /* potential fix for media popup? */\n\t\t\t\t\n\t\t\t\t&:focus,\n\t\t\t\t&:active {\n\t\t\t\t\toutline: none;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t}\n\t\t\t}\n\t\t\tinput {\n\t\t\t\tborder-color: transparent;\n\t\t\t\tbox-shadow: none;\n\t\t\t\tpadding-left: 3px;\n\t\t\t\tpadding-right: 3px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* widths */\n\t\t&.-f2 {\n\t\t\t.filter { width: 50%; }\n\t\t}\n\t\t&.-f3 {\n\t\t\t.filter { width: 25%; }\n\t\t\t.filter.-search { width: 50%; }\n\t\t}\n\t}\n\t\n\t\n\t/* list */\n\t.list {\n\t\tmargin: 0;\n\t\tpadding: 5px;\n\t\theight: 160px;\n\t\toverflow: auto;\n\t\t\n\t\t.acf-rel-label,\n\t\t.acf-rel-item,\n\t\tp {\n\t\t\tpadding: 5px;\n\t\t\tmargin: 0;\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\tmin-height: 18px;\n\t\t}\n\t\t\n\t\t.acf-rel-label {\n\t\t\tfont-weight: bold;\n\t\t}\n\t\t\n\t\t.acf-rel-item {\n\t\t\tcursor: pointer;\n\t\t\t\n\t\t\tb {\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t\t\n\t\t\t.thumbnail {\n\t\t\t\tbackground: darken(#f9f9f9, 10%);\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: -2px 5px 0 0;\n\t\t\t\t\n\t\t\t\timg {\n\t\t\t\t\tmax-width: 22px;\n\t\t\t\t\tmax-height: 22px;\n\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t&.-icon {\n\t\t\t\t\tbackground: #fff;\n\t\t\t\t\t\n\t\t\t\t\timg {\n\t\t\t\t\t\tmax-height: 20px;\n\t\t\t\t\t\tmargin-top: 1px;\n\t\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&:hover {\n\t\t\t\tbackground: #3875D7;\n\t\t\t\tcolor: #fff;\n\t\t\t\t\n\t\t\t\t.thumbnail {\n\t\t\t\t\tbackground: lighten(#3875D7, 25%);\n\t\t\t\t\t\n\t\t\t\t\t&.-icon {\n\t\t\t\t\t\tbackground: #fff;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t/* disabled */\n\t\t\t&.disabled {\n\t\t\t\topacity: 0.5;\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: transparent;\n\t\t\t\t\tcolor: #333;\n\t\t\t\t\tcursor: default;\n\t\t\t\t\t\n\t\t\t\t\t.thumbnail {\n\t\t\t\t\t\tbackground: darken(#f9f9f9, 10%);\n\t\t\t\t\t\t\n\t\t\t\t\t\t&.-icon {\n\t\t\t\t\t\t\tbackground: #fff;\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\tul {\n\t\t\tpadding-bottom: 5px;\n\t\t\t\n\t\t\t.acf-rel-label,\n\t\t\t.acf-rel-item,\n\t\t\tp {\n\t\t\t\tpadding-left: 20px;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* selection (bottom) */\n\t.selection {\n\t\t@include clearfix();\n\t\tposition: relative;\n\t\t\n\t\t.values,\n\t\t.choices {\n\t\t\twidth: 50%;\n\t\t\tbackground: #fff;\n\t\t\tfloat: left\n\t\t}\n\t\t\n\t\t/* choices */\n\t\t.choices {\n\t\t\tbackground: #F9F9F9;\n\t\t\t\n\t\t\t.list {\n\t\t\t\tborder-right: #DFDFDF solid 1px;\n\t\t\t}\n\n\t\t}\n\t\t\n\t\t\n\t\t/* values */\n\t\t.values {\n\t\t\t\n\t\t\t.acf-icon {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 4px;\n\t\t\t\tright: 7px;\n\t\t\t\tdisplay: none;\n\t\t\t\t\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: 7px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t.acf-rel-item:hover .acf-icon {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\t.acf-rel-item {\n\t\t\t\tcursor: move;\n\t\t\t\t\n\t\t\t\tb {\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\t\t\n\t}\n\n\n}\n\n/* menu item fix */\n.menu-item {\n\t\n\t.acf-relationship {\n\t\t\n\t\tul {\n\t\t\twidth: auto;\n\t\t}\n\t\t\n\t\tli {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n\n/*--------------------------------------------------------------------------\n*\n*\tWYSIWYG\n*\t\n*-------------------------------------------------------------------------*/\n\n.acf-editor-wrap {\n\t\n\t// Delay.\n\t&.delay {\n\t\t\n\t\t.acf-editor-toolbar {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tbackground: #f5f5f5;\n\t\t\tborder-bottom: #dddddd solid 1px;\n\t\t\tcolor: #555d66;\n\t\t\tpadding: 10px;\n\t\t}\n\t\t\n\t\t.wp-editor-area {\n\t\t padding: 10px;\n\t\t border: none;\n\t\t color: inherit !important; // Fixes white text bug.\n\t\t}\n\t}\n\t\n\tiframe{ \n\t\tmin-height: 200px;\n\t}\n\t\n\t.wp-editor-container{ \n\t\tborder: 1px solid $wp-card-border;\n\t\tbox-shadow: none !important;\n\t}\n\t\n\t.wp-editor-tabs {\n\t\tbox-sizing: content-box;\n\t}\n\t\n\t.wp-switch-editor {\n\t\tborder-color: $wp-card-border;\n\t\tborder-bottom-color: transparent;\n\t}\n}\n\n// Full Screen Mode.\n#mce_fullscreen_container {\n\tz-index: 900000 !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tTab\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-tab {\n\tdisplay: none !important;\n}\n\n// class to hide fields\n.hidden-by-tab {\n\tdisplay: none !important;\n}\n\n// ensure floating fields do not disturb tab wrap\n.acf-tab-wrap {\n\tclear: both;\n\tz-index: 1;\n}\n\n// tab group\n.acf-tab-group {\n\tborder-bottom: #ccc solid 1px;\n\tpadding: 10px 10px 0;\n\t\n\tli {\n\t margin: 0 0.5em 0 0;\n\t \n\t a {\n\t\t\tpadding: 5px 10px;\n\t\t\tdisplay: block;\n\t\t\t\n\t\t\tcolor: #555;\n\t\t\tfont-size: 14px;\n\t\t font-weight: 600;\n\t\t line-height: 24px;\n\t\t \n\t\t border: #ccc solid 1px;\n\t\t border-bottom: 0 none;\n\t\t text-decoration: none;\n\t\t background: #e5e5e5;\n\t\t transition: none;\n\t\t \n\t\t &:hover {\n\t\t\t\tbackground: #FFF;\n\t\t\t}\n\t\t\t\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\t\t\t\n\t\t\t&:empty {\n\t\t\t\tdisplay: none;\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\tmargin: 0 0 0 0.5em;\n\t\t}\n\t\t\n\t\t\n\t\t// active\n\t\t&.active a {\n\t\t\tbackground: #F1F1F1;\n\t\t\tcolor: #000;\n\t\t padding-bottom: 6px;\n\t\t margin-bottom: -1px;\n\t\t position: relative;\n\t\t z-index: 1;\n\t\t}\n\t}\n}\n\n\n// inside acf-fields\n.acf-fields > .acf-tab-wrap {\n\tbackground: #F9F9F9;\n\t\n\t// group\n\t.acf-tab-group {\n\t\tposition: relative;\n\t\tborder-top: $wp-card-border solid 1px;\n\t\tborder-bottom: $wp-card-border solid 1px;\n\t\t\n\t\t// Pull next element (field) up and underneith.\n\t\tz-index: 2;\n\t\tmargin-bottom: -1px;\n\t\t\n\t\tli a {\n\t\t\tbackground: #f1f1f1;\n\t\t\tborder-color: $wp-card-border;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tbackground: #FFF;\n\t\t\t}\n\t\t}\n\t\t\t\n\t\tli.active a {\n\t\t\tbackground: #FFFFFF;\n\t\t}\n\t\t\n\t\t// WP Admin 3.8\n\t\t@include wp-admin('3-8') {\n\t\t\tborder-color: $wp38-card-border-1;\n\t\t}\n\t}\n\t\n\t// first child\n\t// fixes issue causing double border-top due to WP postbox .handlediv\n\t&:first-child .acf-tab-group {\n\t\tborder-top: none;\n\t}\n\t\n}\n\n\n// inside acf-fields.-left \n.acf-fields.-left > .acf-tab-wrap {\n\t\n\t// group\n\t.acf-tab-group {\n\t\tpadding-left: 20%;\n\t\t\n\t\t/* mobile */\n\t\t@media screen and (max-width: $sm) {\n\t\t\tpadding-left: 10px;\n\t\t}\n\t\t\n\t\t\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tpadding-left: 0;\n\t\t\tpadding-right: 20%;\n\t\t\t\n\t\t\t/* mobile */\n\t\t\t@media screen and (max-width: 850px) {\n\t\t\t\tpadding-right: 10px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n// left\n.acf-tab-wrap.-left {\n\t\n\t// group\n\t.acf-tab-group {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\twidth: 20%;\n\t\tborder: 0 none;\n\t\tpadding: 0 !important; /* important overrides 'left aligned labels' */\n\t\tmargin: 1px 0 0;\n\t\t\n\t\t// li\n\t\tli {\n\t\t\tfloat: none;\n\t\t\tmargin: -1px 0 0;\n\t\t\t\n\t\t\ta {\n\t\t\t\tborder: 1px solid #ededed;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tline-height: 18px;\n\t\t\t\tcolor: #0073aa;\n\t\t\t\tpadding: 10px;\n\t\t\t\tmargin: 0;\n\t\t\t\tfont-weight: normal;\n\t\t\t\tborder-width: 1px 0;\n\t\t\t\tborder-radius: 0;\n\t\t\t\tbackground: transparent;\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: #00a0d2;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t&.active a {\n\t\t\t\tborder-color:#DFDFDF;\n\t\t\t\tcolor: #000;\n\t\t\t\tmargin-right: -1px;\n\t\t\t\tbackground: #fff;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// rtl\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t\t\n\t\t\tli.active a {\n\t\t\t\tmargin-right: 0; \n\t\t\t\tmargin-left: -1px;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t// space before field\n\t.acf-field + &:before {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tz-index: 1;\n\t\theight: 10px;\n\t\tborder-top: #DFDFDF solid 1px;\n\t\tborder-bottom: #DFDFDF solid 1px;\n\t\tmargin-bottom: -1px;\n\t}\n\t\n\t\n\t// first child has negative margin issues\n\t&:first-child {\n\t\t\n\t\t.acf-tab-group {\n\t\t\t\n\t\t\tli:first-child a {\n\t\t\t\tborder-top: none;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n/* sidebar */\n.acf-fields.-sidebar {\n\tpadding: 0 0 0 20% !important;\n\tposition: relative;\n\t\n\t/* before */\n\t&:before {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\twidth: 20%;\n\t\tbottom: 0;\n\t\tborder-right: #DFDFDF solid 1px;\n\t\tbackground: #F9F9F9;\n\t\tz-index: 1;\n\t}\n\t\n\t\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\tpadding: 0 20% 0 0 !important;\n\t\t\n\t\t&:before {\n\t\t\tborder-left: #DFDFDF solid 1px;\n\t\t\tborder-right-width: 0;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\n\t}\n\t\n\t\n\t// left\n\t&.-left {\n\t\tpadding: 0 0 0 180px !important;\n\t\t\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tpadding: 0 180px 0 0 !important;\n\t\t}\n\t\t\n\t\t&:before {\n\t\t\tbackground: #F1F1F1;\n\t\t\tborder-color: #dfdfdf;\n\t\t\twidth: 180px;\n\t\t}\n\t\t\n\t\t> .acf-tab-wrap.-left .acf-tab-group {\n\t\t\twidth: 180px;\n\t\t\t\n\t\t\tli a {\n\t\t\t\tborder-color: #e4e4e4;\n\t\t\t}\n\t\t\t\n\t\t\tli.active a {\n\t\t\t\tbackground: #F9F9F9;\n\t\t\t}\n\t\t\t\n\t\t}\n\t}\n\t\n\t// fix double border\n\t> .acf-field-tab + .acf-field {\n\t\tborder-top: none;\n\t}\t\n}\n\n\n// clear\n.acf-fields.-clear > .acf-tab-wrap {\n\tbackground: transparent;\n\t\n\t// group\n\t.acf-tab-group {\n\t\tmargin-top: 0;\n\t\tborder-top: none;\n\t\tpadding-left: 0;\n\t\tpadding-right: 0;\n\t\t\n\t\tli a {\n\t\t\tbackground: #e5e5e5;\n\t\t\t\n\t\t\t&:hover {\n\t\t\t\tbackground: #fff;\n\t\t\t}\n\t\t}\n\t\t\n\t\tli.active a {\n\t\t\tbackground: #f1f1f1;\n\t\t}\n\t}\n}\n\n\n/* seamless */\n.acf-postbox.seamless {\n\t\n\t// sidebar\n\t> .acf-fields.-sidebar {\n\t\tmargin-left: 0 !important;\n\t\t\n\t\t&:before {\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n\t\n\t// default\n\t> .acf-fields > .acf-tab-wrap {\n\t\tbackground: transparent;\n\t\tmargin-bottom: 10px;\n\t\tpadding-left: $fx;\n\t\tpadding-right: $fx;\n\t\t\n\t\t.acf-tab-group {\n\t\t\tborder-top: 0 none;\n\t\t\tborder-color: $wp-card-border;\n\t\t\t\n\t\t\tli a {\n\t\t\t\tbackground: #e5e5e5;\n\t\t\t\tborder-color: $wp-card-border;\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: #fff;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tli.active a {\n\t\t\t\tbackground: #f1f1f1;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t// left tabs\n\t> .acf-fields > .acf-tab-wrap.-left {\n\t\t\n\t\t&:before {\n\t\t\tborder-top: none;\n\t\t\theight: auto;\n\t\t}\n\t\t\n\t\t.acf-tab-group {\n\t\t\tmargin-bottom: 0;\n\t\t\t\n\t\t\tli a {\n\t\t\t\tborder-width: 1px 0 1px 1px !important;\n\t\t\t\tborder-color: #cccccc;\n\t\t\t\tbackground: #e5e5e5;\n\t\t\t}\n\t\t\t\n\t\t\tli.active a {\n\t\t\t\tbackground: #f1f1f1;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n}\n\n\n// menu\n.menu-edit, \n.widget {\n\t.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li {\n\t\ta { background: #f1f1f1; }\n\t\ta:hover, &.active a { background: #fff; }\n\t}\n}\n\n.compat-item .acf-tab-wrap td {\n\tdisplay: block;\n}\n\n\n\n/* within gallery sidebar */\n.acf-gallery-side .acf-tab-wrap {\n\tborder-top: 0 none !important;\n}\n\n.acf-gallery-side .acf-tab-wrap .acf-tab-group {\n\tmargin: 10px 0 !important;\n\tpadding: 0 !important;\n}\n\n.acf-gallery-side .acf-tab-group li.active a {\n\tbackground: #F9F9F9 !important;\n}\n\n\n\n/* withing widget */\n.widget .acf-tab-group {\n\tborder-bottom-color: #e8e8e8;\n}\n\n.widget .acf-tab-group li a {\n\tbackground: #F1F1F1;\n}\n\n.widget .acf-tab-group li.active a {\n\tbackground: #fff;\n}\n\n\n/* media popup (edit image) */\n.media-modal.acf-expanded .compat-attachment-fields > tbody > tr.acf-tab-wrap .acf-tab-group {\n\tpadding-left: 23%;\n\tborder-bottom-color: #DDDDDD;\n}\n\n\n/* table */\n\n\n.form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n\tpadding: 0 5px 0 210px;\n}\n\n/* rtl */\n\thtml[dir=\"rtl\"] .form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n\t\tpadding: 0 210px 0 5px;\n\t}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\toembed\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-oembed {\n\tposition: relative;\n\tborder: $wp-card-border solid 1px;\n\tbackground: #fff;\n\t\n\t.title {\n\t\tposition: relative;\n\t\tborder-bottom: $wp-card-border solid 1px;\n\t\tpadding: 5px 10px;\n\t\t\n\t\t.input-search {\n\t\t\tmargin: 0;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 30px;\n\t\t\theight: 30px;\n\t\t\tpadding: 0;\n\t\t\tborder: 0 none;\n\t\t\tbox-shadow: none;\n\t\t\tborder-radius: 0;\n\t\t\tfont-family: inherit;\n\t\t\tcursor: text;\n\t\t}\n\t\t\n\t\t.acf-actions {\n\t\t\tpadding: 6px;\n\t\t}\n\t}\n\t\n\t.canvas {\n\t\tposition: relative;\n\t\tmin-height: 250px;\n\t\tbackground: #F9F9F9;\n\t\t\n\t\t.canvas-media {\n\t\t\tposition: relative;\n\t\t\tz-index: 1;\n\t\t}\n\t\t\n\t\tiframe {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\twidth: 100%;\n\t\t}\n\t\t\n\t\t.acf-icon.-picture {\n\t\t\t@include centered();\n\t\t\tz-index: 0;\n\t\t\t\n\t\t\theight: 42px;\n\t\t\twidth: 42px;\n\t\t\tfont-size: 42px;\n\t\t\tcolor: #999;\n\t\t}\n\t\t\n\t\t.acf-loading-overlay {\n\t\t\tbackground: rgba(255,255,255,0.9);\n\t\t}\n\t\t\n\t\t.canvas-error {\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 0%;\n\t\t\tright: 0%;\n\t\t\tmargin: -9px 0 0 0;\n\t\t\ttext-align: center;\n\t\t\tdisplay: none;\n\t\t\t\n\t\t\tp {\n\t\t\t\tpadding: 8px;\n\t\t\t\tmargin: 0;\n\t\t\t\tdisplay: inline;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t// has value\n\t&.has-value {\n\t\t.canvas {\n\t\t\tmin-height: 50px;\n\t\t}\n\t\t\n\t\t.input-search {\n\t\t\tfont-weight: bold;\n\t\t}\n\t\t\n\t\t.title:hover .acf-actions {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tImage\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-image-uploader {\n\t@include clearfix();\n\tposition: relative;\n\t\n\t\n\tp {\n\t\tmargin: 0;\n\t}\n\t\n\t\n\t/* image wrap*/\n\t.image-wrap {\n\t\tposition: relative;\n\t\tfloat: left;\n\t\t\n\t\timg {\n\t\t\tmax-width: 100%;\n\t\t\tmax-height: 100%;\n\t\t\twidth: auto;\n\t\t\theight: auto;\n\t\t\tdisplay: block;\n\t\t\tmin-width: 30px;\n\t\t\tmin-height: 30px;\n\t\t\tbackground: #f1f1f1;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\t\n\t\t\t\n\t\t\t/* svg */\n\t\t\t&[src$=\".svg\"] {\n\t\t\t\tmin-height: 100px;\n\t\t\t\tmin-width: 100px;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\t/* hover */\n\t\t&:hover .acf-actions {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n\t\n\t\n\t/* input */\n\tinput.button {\n\t\twidth: auto;\n\t}\n\t\n\t\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\t\n\t\t.image-wrap {\n\t\t\tfloat: right;\n\t\t}\n\t\t\n\t}\n\t\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tFile\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-file-uploader {\n\tposition: relative;\n\t\n\tp {\n\t\tmargin: 0;\n\t}\n\t\n\t.file-wrap {\n\t\tborder: $wp-card-border solid 1px;\n\t\tmin-height: 84px;\n\t\tposition: relative;\n\t\tbackground: #fff;\n\t}\n\t\n\t.file-icon {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tbottom: 0;\n\t\tpadding: 10px;\n\t\tbackground: #F1F1F1;\n\t\tborder-right: $wp-card-border-1 solid 1px;\n\t\t\n\t\timg {\n\t\t\tdisplay: block;\n\t\t\tpadding: 0;\n\t\t\tmargin: 0;\n\t\t\tmax-width: 48px;\n\t\t}\n\t}\n\t\n\t.file-info {\n\t\tpadding: 10px;\n\t\tmargin-left: 69px;\n\t\t\n\t\tp {\n\t\t\tmargin: 0 0 2px;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.4em;\n\t\t\tword-break: break-all;\n\t\t}\n\t\t\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\t}\n\t\n\t/* hover */\n\t&:hover .acf-actions {\n\t\tdisplay: block;\n\t}\n\t\n\t\n\t/* rtl */\n\thtml[dir=\"rtl\"] & { \n\t\t\n\t\t.file-icon {\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t\tborder-left: #E5E5E5 solid 1px;\n\t\t\tborder-right: none;\n\t\t}\n\t\t\n\t\t.file-info {\n\t\t\tmargin-right: 69px;\n\t\t\tmargin-left: 0;\n\t\t}\n\t}\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tDate Picker\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-ui-datepicker .ui-datepicker {\n\tz-index: 900000 !important;\n\t\n\t.ui-widget-header a {\n\t\tcursor: pointer;\n\t\ttransition: none;\n\t}\n}\n\n\n/* fix highlight state overriding hover / active */\n.acf-ui-datepicker .ui-state-highlight.ui-state-hover {\n\tborder: 1px solid #98b7e8 !important;\n\tbackground: #98b7e8 !important;\n\tfont-weight: normal !important;\n\tcolor: #ffffff !important;\n}\n\n.acf-ui-datepicker .ui-state-highlight.ui-state-active {\n\tborder: 1px solid #3875d7 !important;\n\tbackground: #3875d7 !important; \n\tfont-weight: normal !important;\n\tcolor: #ffffff !important;\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tSeparator field\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-separator {\n\t\n\t.acf-label {\n\t\tmargin-bottom: 0;\n\t\t\n\t\tlabel {\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\t\n\t.acf-input {\n\t\tdisplay: none;\n\t}\n\t\n\t\n\t/* fields */\n\t.acf-fields > & {\n\t\tbackground: #f9f9f9;\n\t\tborder-bottom: 1px solid #dfdfdf;\n\t\tborder-top: 1px solid #dfdfdf;\n\t\tmargin-bottom: -1px;\n\t\tz-index: 2;\n\t}\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tTaxonomy\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-taxonomy-field {\n\tposition: relative;\n\t\n\t.categorychecklist-holder {\n\t\tborder: $wp-card-border solid 1px;\n\t\tborder-radius: 3px;\n\t\tmax-height: 200px;\n\t\toverflow: auto;\n\t}\n\t\n\t.acf-checkbox-list {\n\t\tmargin: 0;\n\t\tpadding: 10px;\n\t\t\n\t\tul.children {\n\t\t\tpadding-left: 18px;\n\t\t}\n\t}\n\t\n\t\n\t/* hover */\n\t&:hover {\n\t\t.acf-actions {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n\t\n\t\n\t/* select */\n\t&[data-ftype=\"select\"] {\n\t\t.acf-actions {\n\t\t\tpadding: 0;\n\t\t\tmargin: -9px;\n\t\t}\n\t}\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tRange\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-range-wrap {\n\t\n\t.acf-append,\n\t.acf-prepend {\n\t\tdisplay: inline-block;\n\t\tvertical-align: middle;\n\t\tline-height: 28px;\n\t\tmargin: 0 7px 0 0;\n\t}\n\t\n\t.acf-append {\n\t\tmargin: 0 0 0 7px;\n\t}\n\t\n\tinput[type=\"range\"] {\n\t\tdisplay: inline-block;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tvertical-align: middle;\n\t\theight: 28px;\n\t\t\n\t\t&:focus {\n\t\t\toutline: none;\n\t\t}\n\t\t\n\t}\n\t\n\tinput[type=\"number\"] {\n\t\tdisplay: inline-block;\n\t\tmin-width: 3em;\n\t\tmargin-left: 10px;\n\t\tvertical-align: middle;\n\t}\n\t\n\t\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\t\n\t\tinput[type=\"number\"] {\n\t\t\tmargin-right: 10px;\n\t\t\tmargin-left: 0;\n\t\t}\n\t\t\n\t\t.acf-append { margin: 0 7px 0 0; }\n\t\t.acf-prepend { margin: 0 0 0 7px; }\n\t\t\n\t}\n\t\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-accordion\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-accordion {\n\tmargin: -1px 0;\n\tpadding: 0;\n\tbackground: #fff;\n\tborder-top: 1px solid $wp-card-border-1;\n\tborder-bottom: 1px solid $wp-card-border-1;\n\tz-index: 1; // Display above following field.\n\t\n\t// Title.\n\t.acf-accordion-title {\n\t\tmargin: 0;\n\t\tpadding: 12px;\n\t\tfont-weight: bold;\n\t\tcursor: pointer;\n\t\tfont-size: inherit;\n\t\tfont-size: 13px;\n\t\tline-height: 1.4em;\n\t\t\n\t\t&:hover {\n\t\t\tbackground: #f3f4f5;\n\t\t}\n\t\t\n\t\tlabel {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.4em;\n\t\t}\n\t\t\n\t\tp {\n\t\t\tfont-weight: normal;\n\t\t}\n\t\t\n\t\t.acf-accordion-icon {\n\t\t\tfloat: right;\n\t\t}\n\t\t\n\t\t// Gutenberg uses SVG.\n\t\tsvg.acf-accordion-icon {\n\t\t\tposition: absolute;\n\t\t\tright: 10px;\n\t\t\ttop: 50%;\n\t\t\ttransform: translateY(-50%);\n\t\t\tcolor: #191e23;\n\t\t\tfill: currentColor;\n\t\t}\n\t}\n\t\n\t.acf-accordion-content {\n\t\tmargin: 0;\n\t\tpadding: 0 12px 12px;\n\t\tdisplay: none;\n\t}\n\t\n\t// Open.\n\t&.-open {\n\t\t> .acf-accordion-content {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n// Field specific overrides\n.acf-field.acf-accordion {\n\tmargin: -1px 0;\n\tpadding: 0 !important; // !important needed to avoid Gutenberg sidebar issues.\n\tborder-color: $wp-card-border-1;\n\t\n\t.acf-label.acf-accordion-title {\n\t\tpadding: 12px;\n\t\twidth: auto;\n\t\tfloat: none;\n\t\twidth: auto;\n\t}\n\t\n\t.acf-input.acf-accordion-content {\n\t\tpadding: 0;\n\t\tfloat: none;\n\t\twidth: auto;\n\t\t\n\t\t> .acf-fields {\n\t\t\tborder-top: $wp-card-border-2 solid 1px;\n\t\t\t\n\t\t\t&.-clear {\n\t\t\t\tpadding: 0 $fx $fy;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n/* field specific (left) */\n.acf-fields.-left > .acf-field.acf-accordion {\n\t&:before {\n\t\tdisplay: none;\n\t}\n\t\n\t.acf-accordion-title {\n\t\twidth: auto;\n\t\tmargin: 0 !important;\n\t\tpadding: 12px;\n\t\tfloat: none !important;\t\n\t}\n\t\n\t.acf-accordion-content {\n\t\tpadding: 0 !important;\n\t}\n}\n\n\n/* field specific (clear) */\n.acf-fields.-clear > .acf-field.acf-accordion {\n\tborder: #cccccc solid 1px;\n\tbackground: transparent;\n\t\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -16px;\n\t}\n}\n\n\n/* table */\ntr.acf-field.acf-accordion {\n\tbackground: transparent;\n\t\n\t> .acf-input {\n\t\tpadding: 0 !important;\n\t\tborder: #cccccc solid 1px;\n\t}\n\t\n\t.acf-accordion-content {\n\t\tpadding: 0 12px 12px;\n\t}\n}\n\n\n/* #addtag */\n#addtag div.acf-field.error {\n\tborder: 0 none;\n\tpadding: 8px 0;\t\n}\n\n\n#addtag > .acf-field.acf-accordion {\n\tpadding-right: 0;\n\tmargin-right: 5%;\n\t\n\t+ p.submit {\n\t\tmargin-top: 0;\n\t}\n}\n\n\n\n/* border */\ntr.acf-accordion {\n\tmargin: 15px 0 !important;\n\t\n\t+ tr.acf-accordion {\n\t\tmargin-top: -16px !important;\n\t}\n}\n\n\n/* seamless */\n.acf-postbox.seamless > .acf-fields > .acf-accordion {\n\tmargin-left: $field_padding_x;\n\tmargin-right: $field_padding_x;\n\tborder: $wp-card-border solid 1px;\n}\n\n\n/* rtl */\nhtml[dir=\"rtl\"] .acf-accordion {\n\t\n}\n\n\n/* menu item */\n/*\n.menu-item-settings > .field-acf > .acf-field.acf-accordion {\n\tborder: #dfdfdf solid 1px;\n\tmargin: 10px -13px 10px -11px;\n\t\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -11px;\n\t}\n}\n*/\n\n\n/* widget */\n.widget .widget-content > .acf-field.acf-accordion {\n\tborder: #dfdfdf solid 1px;\n\tmargin-bottom: 10px;\n\t\n\t.acf-accordion-title {\n\t\tmargin-bottom: 0;\n\t}\n\t\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -11px;\n\t}\n}\n\n\n\n// media modal\n.media-modal .compat-attachment-fields .acf-field.acf-accordion {\n\t\n\t// siblings\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -1px;\n\t}\n\t\n\t// input\n\t> .acf-input {\n\t\twidth: 100%;\n\t}\n\t\n\t// table\n\t.compat-attachment-fields > tbody > tr > td {\n\t\tpadding-bottom: 5px;\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tBlock Editor\n*\n*---------------------------------------------------------------------------------------------*/\n.block-editor {\n\t\n\t// Sidebar\n\t.edit-post-sidebar {\n\n\t\t// Remove metabox hndle border to simulate component panel.\n\t\t.acf-postbox {\n\t\t\t> .postbox-header,\n\t\t\t> .hndle {\n\t\t\t\tborder-bottom-width: 0 !important;\n\t\t\t}\n\t\t\t&.closed {\n\t\t\t\t>.postbox-header,\n\t\t\t\t> .hndle {\n\t\t\t\t\tborder-bottom-width: 1px !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Field wrap. \n\t\t.acf-fields {\n\t\t\tmin-height: 1px;\n\t\t\toverflow: auto; // Fixes margin-collapse issue in WP 5.3.\n\n\t\t\t> .acf-field {\n\t\t\t\tborder-width: 0;\n\t\t\t\tborder-color: #e2e4e7;\n\t\t\t\tmargin: 16px;\n\t\t\t\tpadding: 0;\n\t\t\t\t\n\t\t\t\t// Force full width.\n\t\t\t\twidth: auto !important;\n\t\t\t\tmin-height: 0 !important;\n\t\t\t\tfloat: none !important;\n\t\t\t\t\n\t\t\t\t// Field labels.\n\t\t\t\t> .acf-label {\n\t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\tlabel {\n\t\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// Accordions.\n\t\t\t\t&.acf-accordion {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tborder-top-width: 1px;\n\t\t\t\t\t\n\t\t\t\t\t&:first-child {\n\t\t\t\t\t\tborder-top-width: 0;\t\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t.acf-accordion-title {\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 15px;\n\t\t\t\t\t\tlabel {\n\t\t\t\t\t\t\tfont-weight: bold;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t.acf-accordion-content {\n\t\t\t\t\t\t> .acf-fields {\n\t\t\t\t\t\t\tborder-top-width: 0;\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*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-field\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-field,\n.acf-field .acf-label,\n.acf-field .acf-input {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n position: relative;\n}\n\n.acf-field {\n margin: 15px 0;\n clear: both;\n}\n.acf-field p.description {\n display: block;\n margin: 0;\n padding: 0;\n}\n.acf-field .acf-label {\n vertical-align: top;\n margin: 0 0 10px;\n}\n.acf-field .acf-label label {\n display: block;\n font-weight: bold;\n margin: 0 0 3px;\n padding: 0;\n}\n.acf-field .acf-label:empty {\n margin-bottom: 0;\n}\n.acf-field .acf-input {\n vertical-align: top;\n}\n.acf-field .acf-input > p.description {\n margin-top: 5px;\n}\n.acf-field .acf-notice {\n margin: 0 0 15px;\n background: #edf2ff;\n color: #0c6ca0;\n border-color: #2183b9;\n}\n.acf-field .acf-notice.-error {\n background: #ffe6e6;\n color: #cc2727;\n border-color: #d12626;\n}\n.acf-field .acf-notice.-success {\n background: #eefbe8;\n color: #0e7b17;\n border-color: #32a23b;\n}\n.acf-field .acf-notice.-warning {\n background: #fff3e6;\n color: #bd4b0e;\n border-color: #d16226;\n}\ntd.acf-field, tr.acf-field {\n margin: 0;\n}\n\n.acf-field[data-width] {\n float: left;\n clear: none;\n /*\n \t@media screen and (max-width: $sm) {\n \t\tfloat: none;\n \t\twidth: auto;\n \t\tborder-left-width: 0;\n \t\tborder-right-width: 0;\n \t}\n */\n}\n.acf-field[data-width] + .acf-field[data-width] {\n border-left: 1px solid #eeeeee;\n}\nhtml[dir=rtl] .acf-field[data-width] {\n float: right;\n}\nhtml[dir=rtl] .acf-field[data-width] + .acf-field[data-width] {\n border-left: none;\n border-right: 1px solid #eeeeee;\n}\ntd.acf-field[data-width], tr.acf-field[data-width] {\n float: none;\n}\n\n.acf-field.-c0 {\n clear: both;\n border-left-width: 0 !important;\n}\nhtml[dir=rtl] .acf-field.-c0 {\n border-left-width: 1px !important;\n border-right-width: 0 !important;\n}\n\n.acf-field.-r0 {\n border-top-width: 0 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-fields {\n position: relative;\n}\n.acf-fields:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-fields.-border {\n border: #ccd0d4 solid 1px;\n background: #fff;\n}\n.acf-fields > .acf-field {\n position: relative;\n margin: 0;\n padding: 15px 12px;\n border-top: #EEEEEE solid 1px;\n}\n.acf-fields > .acf-field:first-child {\n border-top: none;\n margin-top: 0;\n}\ntd.acf-fields {\n padding: 0 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (clear)\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-fields.-clear > .acf-field {\n border: none;\n padding: 0;\n margin: 15px 0;\n}\n.acf-fields.-clear > .acf-field[data-width] {\n border: none !important;\n}\n.acf-fields.-clear > .acf-field > .acf-label {\n padding: 0;\n}\n.acf-fields.-clear > .acf-field > .acf-input {\n padding: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (left)\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-fields.-left > .acf-field {\n padding: 15px 0;\n}\n.acf-fields.-left > .acf-field:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-fields.-left > .acf-field:before {\n content: \"\";\n display: block;\n position: absolute;\n z-index: 0;\n background: #F9F9F9;\n border-color: #E1E1E1;\n border-style: solid;\n border-width: 0 1px 0 0;\n top: 0;\n bottom: 0;\n left: 0;\n width: 20%;\n}\n.acf-fields.-left > .acf-field[data-width] {\n float: none;\n width: auto !important;\n border-left-width: 0 !important;\n border-right-width: 0 !important;\n}\n.acf-fields.-left > .acf-field > .acf-label {\n float: left;\n width: 20%;\n margin: 0;\n padding: 0 12px;\n}\n.acf-fields.-left > .acf-field > .acf-input {\n float: left;\n width: 80%;\n margin: 0;\n padding: 0 12px;\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-field:before {\n border-width: 0 0 0 1px;\n left: auto;\n right: 0;\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-field > .acf-label {\n float: right;\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-field > .acf-input {\n float: right;\n}\n#side-sortables .acf-fields.-left > .acf-field:before {\n display: none;\n}\n#side-sortables .acf-fields.-left > .acf-field > .acf-label {\n width: 100%;\n margin-bottom: 10px;\n}\n#side-sortables .acf-fields.-left > .acf-field > .acf-input {\n width: 100%;\n}\n@media screen and (max-width: 640px) {\n .acf-fields.-left > .acf-field:before {\n display: none;\n }\n .acf-fields.-left > .acf-field > .acf-label {\n width: 100%;\n margin-bottom: 10px;\n }\n .acf-fields.-left > .acf-field > .acf-input {\n width: 100%;\n }\n}\n\n/* clear + left */\n.acf-fields.-clear.-left > .acf-field {\n padding: 0;\n border: none;\n}\n.acf-fields.-clear.-left > .acf-field:before {\n display: none;\n}\n.acf-fields.-clear.-left > .acf-field > .acf-label {\n padding: 0;\n}\n.acf-fields.-clear.-left > .acf-field > .acf-input {\n padding: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-table tr.acf-field > td.acf-label {\n padding: 15px 12px;\n margin: 0;\n background: #F9F9F9;\n width: 20%;\n}\n.acf-table tr.acf-field > td.acf-input {\n padding: 15px 12px;\n margin: 0;\n border-left-color: #E1E1E1;\n}\n\n.acf-sortable-tr-helper {\n position: relative !important;\n display: table-row !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-postbox\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-postbox {\n position: relative;\n}\n.acf-postbox > .inside {\n margin: 0 !important;\n /* override WP style - do not delete - you have tried this before */\n padding: 0 !important;\n /* override WP style - do not delete - you have tried this before */\n}\n.acf-postbox .acf-hndle-cog {\n color: #72777c;\n font-size: 16px;\n line-height: 36px;\n height: 36px;\n width: 1.62rem;\n position: relative;\n display: none;\n}\n.acf-postbox .acf-hndle-cog:hover {\n color: #191e23;\n}\n.acf-postbox > .hndle:hover .acf-hndle-cog,\n.acf-postbox > .postbox-header:hover .acf-hndle-cog {\n display: inline-block;\n}\n.acf-postbox > .hndle .acf-hndle-cog {\n height: 20px;\n line-height: 20px;\n float: right;\n width: auto;\n}\n.acf-postbox > .hndle .acf-hndle-cog:hover {\n color: #777777;\n}\n.acf-postbox .acf-replace-with-fields {\n padding: 15px;\n text-align: center;\n}\n\n#post-body-content #acf_after_title-sortables {\n margin: 20px 0 -20px;\n}\n\n/* seamless */\n.acf-postbox.seamless {\n border: 0 none;\n background: transparent;\n box-shadow: none;\n /* hide hndle */\n /* inside */\n}\n.acf-postbox.seamless > .postbox-header,\n.acf-postbox.seamless > .hndle,\n.acf-postbox.seamless > .handlediv {\n display: none !important;\n}\n.acf-postbox.seamless > .inside {\n display: block !important;\n /* stop metabox from hiding when closed */\n margin-left: -12px !important;\n margin-right: -12px !important;\n}\n.acf-postbox.seamless > .inside > .acf-field {\n border-color: transparent;\n}\n\n/* seamless (left) */\n.acf-postbox.seamless > .acf-fields.-left {\n /* hide sidebar bg */\n /* mobile */\n}\n.acf-postbox.seamless > .acf-fields.-left > .acf-field:before {\n display: none;\n}\n@media screen and (max-width: 782px) {\n .acf-postbox.seamless > .acf-fields.-left {\n /* remove padding */\n }\n .acf-postbox.seamless > .acf-fields.-left > .acf-field > .acf-label, .acf-postbox.seamless > .acf-fields.-left > .acf-field > .acf-input {\n padding: 0;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Inputs\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field input[type=text],\n.acf-field input[type=password],\n.acf-field input[type=date],\n.acf-field input[type=datetime],\n.acf-field input[type=datetime-local],\n.acf-field input[type=email],\n.acf-field input[type=month],\n.acf-field input[type=number],\n.acf-field input[type=search],\n.acf-field input[type=tel],\n.acf-field input[type=time],\n.acf-field input[type=url],\n.acf-field input[type=week],\n.acf-field textarea,\n.acf-field select {\n width: 100%;\n padding: 4px 8px;\n margin: 0;\n box-sizing: border-box;\n font-size: 14px;\n line-height: 1.4;\n}\n.acf-admin-3-8 .acf-field input[type=text],\n.acf-admin-3-8 .acf-field input[type=password],\n.acf-admin-3-8 .acf-field input[type=date],\n.acf-admin-3-8 .acf-field input[type=datetime],\n.acf-admin-3-8 .acf-field input[type=datetime-local],\n.acf-admin-3-8 .acf-field input[type=email],\n.acf-admin-3-8 .acf-field input[type=month],\n.acf-admin-3-8 .acf-field input[type=number],\n.acf-admin-3-8 .acf-field input[type=search],\n.acf-admin-3-8 .acf-field input[type=tel],\n.acf-admin-3-8 .acf-field input[type=time],\n.acf-admin-3-8 .acf-field input[type=url],\n.acf-admin-3-8 .acf-field input[type=week],\n.acf-admin-3-8 .acf-field textarea,\n.acf-admin-3-8 .acf-field select {\n padding: 3px 5px;\n}\n.acf-field textarea {\n resize: vertical;\n}\n\nbody.acf-browser-firefox .acf-field select {\n padding: 4px 5px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Text\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-input-prepend,\n.acf-input-append,\n.acf-input-wrap {\n box-sizing: border-box;\n}\n\n.acf-input-prepend,\n.acf-input-append {\n font-size: 14px;\n line-height: 1.4;\n padding: 4px 8px;\n background: #f5f5f5;\n border: #7e8993 solid 1px;\n min-height: 30px;\n}\n.acf-admin-3-8 .acf-input-prepend,\n.acf-admin-3-8 .acf-input-append {\n padding: 3px 5px;\n border-color: #dddddd;\n min-height: 28px;\n}\n\n.acf-input-prepend {\n float: left;\n border-right-width: 0;\n border-radius: 3px 0 0 3px;\n}\n\n.acf-input-append {\n float: right;\n border-left-width: 0;\n border-radius: 0 3px 3px 0;\n}\n\n.acf-input-wrap {\n position: relative;\n overflow: hidden;\n}\n.acf-input-wrap .acf-is-prepended {\n border-radius: 0 3px 3px 0 !important;\n}\n.acf-input-wrap .acf-is-appended {\n border-radius: 3px 0 0 3px !important;\n}\n.acf-input-wrap .acf-is-prepended.acf-is-appended {\n border-radius: 0 !important;\n}\n\n/* rtl */\nhtml[dir=rtl] .acf-input-prepend {\n border-left-width: 0;\n border-right-width: 1px;\n border-radius: 0 3px 3px 0;\n float: right;\n}\n\nhtml[dir=rtl] .acf-input-append {\n border-left-width: 1px;\n border-right-width: 0;\n border-radius: 3px 0 0 3px;\n float: left;\n}\n\nhtml[dir=rtl] input.acf-is-prepended {\n border-radius: 3px 0 0 3px !important;\n}\n\nhtml[dir=rtl] input.acf-is-appended {\n border-radius: 0 3px 3px 0 !important;\n}\n\nhtml[dir=rtl] input.acf-is-prepended.acf-is-appended {\n border-radius: 0 !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Color Picker\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-color-picker .wp-color-result {\n border-color: #7e8993;\n}\n.acf-admin-3-8 .acf-color-picker .wp-color-result {\n border-color: #ccd0d4;\n}\n.acf-color-picker .wp-picker-active {\n position: relative;\n z-index: 1;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Url\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-url i {\n position: absolute;\n top: 5px;\n left: 5px;\n opacity: 0.5;\n color: #7e8993;\n}\n.acf-url input[type=url] {\n padding-left: 27px !important;\n}\n.acf-url.-valid i {\n opacity: 1;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Select2 (v3)\n*\n*---------------------------------------------------------------------------------------------*/\n.select2-container.-acf {\n /* open */\n /* single open */\n}\n.select2-container.-acf .select2-choices {\n background: #fff;\n border-color: #ddd;\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;\n min-height: 31px;\n}\n.select2-container.-acf .select2-choices .select2-search-choice {\n margin: 5px 0 5px 5px;\n padding: 3px 5px 3px 18px;\n border-color: #bbb;\n background: #f9f9f9;\n box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;\n /* sortable item*/\n /* sortable shadow */\n}\n.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper {\n background: #5897fb;\n border-color: #3f87fa;\n color: #fff;\n box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);\n}\n.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper a {\n visibility: hidden;\n}\n.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-placeholder {\n background-color: #f7f7f7;\n border-color: #f7f7f7;\n visibility: visible !important;\n}\n.select2-container.-acf .select2-choices .select2-search-choice-focus {\n border-color: #999;\n}\n.select2-container.-acf .select2-choices .select2-search-field input {\n height: 31px;\n line-height: 22px;\n margin: 0;\n padding: 5px 5px 5px 7px;\n}\n.select2-container.-acf .select2-choice {\n border-color: #BBBBBB;\n}\n.select2-container.-acf .select2-choice .select2-arrow {\n background: transparent;\n border-left-color: #DFDFDF;\n padding-left: 1px;\n}\n.select2-container.-acf .select2-choice .select2-result-description {\n display: none;\n}\n.select2-container.-acf.select2-container-active .select2-choices, .select2-container.-acf.select2-dropdown-open .select2-choices {\n border-color: #5B9DD9;\n border-radius: 3px 3px 0 0;\n}\n.select2-container.-acf.select2-dropdown-open .select2-choice {\n background: #fff;\n border-color: #5B9DD9;\n}\n\n/* rtl */\nhtml[dir=rtl] .select2-container.-acf .select2-search-choice-close {\n left: 24px;\n}\nhtml[dir=rtl] .select2-container.-acf .select2-choice > .select2-chosen {\n margin-left: 42px;\n}\nhtml[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow {\n padding-left: 0;\n padding-right: 1px;\n}\n\n/* description */\n.select2-drop {\n /* search*/\n /* result */\n}\n.select2-drop .select2-search {\n padding: 4px 4px 0;\n}\n.select2-drop .select2-result {\n /* hover*/\n}\n.select2-drop .select2-result .select2-result-description {\n color: #999;\n font-size: 12px;\n margin-left: 5px;\n}\n.select2-drop .select2-result.select2-highlighted .select2-result-description {\n color: #fff;\n opacity: 0.75;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Select2 (v4)\n*\n*---------------------------------------------------------------------------------------------*/\n.select2-container.-acf li {\n margin-bottom: 0;\n}\n.select2-container.-acf[data-select2-id^=select2-data] .select2-selection--multiple {\n overflow: hidden;\n}\n.select2-container.-acf .select2-selection {\n border-color: #7e8993;\n}\n.acf-admin-3-8 .select2-container.-acf .select2-selection {\n border-color: #aaa;\n}\n.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child {\n float: none;\n}\n.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child input {\n width: 100% !important;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__rendered {\n padding-right: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field] {\n display: inline;\n padding: 0;\n margin: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field] .select2-selection__choice {\n margin-right: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice {\n background-color: #f7f7f7;\n border-color: #cccccc;\n max-width: 100%;\n overflow: hidden;\n word-wrap: normal !important;\n white-space: normal;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper {\n background: #5897fb;\n border-color: #3f87fa;\n color: #fff;\n box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper span {\n visibility: hidden;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {\n position: static;\n border-right: none;\n padding: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-placeholder {\n background-color: #f7f7f7;\n border-color: #f7f7f7;\n visibility: visible !important;\n}\n.select2-container.-acf .select2-selection--multiple .select2-search__field {\n box-shadow: none !important;\n min-height: 0;\n}\n.acf-row .select2-container.-acf .select2-selection--single {\n overflow: hidden;\n}\n.acf-row .select2-container.-acf .select2-selection--single .select2-selection__rendered {\n white-space: normal;\n}\n\n.select2-dropdown .select2-results__option {\n margin-bottom: 0;\n}\n\n.select2-container .select2-dropdown {\n z-index: 900000;\n}\n.select2-container .select2-dropdown .select2-search__field {\n line-height: 1.4;\n min-height: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Link\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-link .link-wrap {\n display: none;\n border: #ccd0d4 solid 1px;\n border-radius: 3px;\n padding: 5px;\n line-height: 26px;\n background: #fff;\n word-wrap: break-word;\n word-break: break-all;\n}\n.acf-link .link-wrap .link-title {\n padding: 0 5px;\n}\n.acf-link.-value .button {\n display: none;\n}\n.acf-link.-value .acf-icon.-link-ext {\n display: none;\n}\n.acf-link.-value .link-wrap {\n display: inline-block;\n}\n.acf-link.-external .acf-icon.-link-ext {\n display: inline-block;\n}\n\n#wp-link-backdrop {\n z-index: 900000 !important;\n}\n\n#wp-link-wrap {\n z-index: 900001 !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Radio\n*\n*---------------------------------------------------------------------------------------------*/\nul.acf-radio-list,\nul.acf-checkbox-list {\n background: transparent;\n position: relative;\n padding: 1px;\n margin: 0;\n /* hl */\n /* rtl */\n}\nul.acf-radio-list li,\nul.acf-checkbox-list li {\n font-size: 13px;\n line-height: 22px;\n margin: 0;\n position: relative;\n word-wrap: break-word;\n /* attachment sidebar fix*/\n}\nul.acf-radio-list li label,\nul.acf-checkbox-list li label {\n display: inline;\n}\nul.acf-radio-list li input[type=checkbox],\nul.acf-radio-list li input[type=radio],\nul.acf-checkbox-list li input[type=checkbox],\nul.acf-checkbox-list li input[type=radio] {\n margin: -1px 4px 0 0;\n vertical-align: middle;\n}\nul.acf-radio-list li input[type=text],\nul.acf-checkbox-list li input[type=text] {\n width: auto;\n vertical-align: middle;\n margin: 2px 0;\n}\nul.acf-radio-list li span,\nul.acf-checkbox-list li span {\n float: none;\n}\nul.acf-radio-list li i,\nul.acf-checkbox-list li i {\n vertical-align: middle;\n}\nul.acf-radio-list.acf-hl li,\nul.acf-checkbox-list.acf-hl li {\n margin-right: 20px;\n clear: none;\n}\nhtml[dir=rtl] ul.acf-radio-list input[type=checkbox],\nhtml[dir=rtl] ul.acf-radio-list input[type=radio],\nhtml[dir=rtl] ul.acf-checkbox-list input[type=checkbox],\nhtml[dir=rtl] ul.acf-checkbox-list input[type=radio] {\n margin-left: 4px;\n margin-right: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Button Group\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-button-group {\n display: inline-block;\n /* default (horizontal) */\n /* vertical */\n}\n.acf-button-group label {\n display: inline-block;\n border: #7e8993 solid 1px;\n position: relative;\n z-index: 1;\n padding: 5px 10px;\n background: #fff;\n}\n.acf-button-group label:hover {\n color: #016087;\n background: #f3f5f6;\n border-color: #0071a1;\n z-index: 2;\n}\n.acf-button-group label.selected {\n border-color: #007cba;\n background: #008dd4;\n color: #fff;\n z-index: 2;\n}\n.acf-button-group input {\n display: none !important;\n}\n.acf-button-group {\n padding-left: 1px;\n display: inline-flex;\n flex-direction: row;\n flex-wrap: nowrap;\n}\n.acf-button-group label {\n margin: 0 0 0 -1px;\n flex: 1;\n text-align: center;\n white-space: nowrap;\n}\n.acf-button-group label:first-child {\n border-radius: 3px 0 0 3px;\n}\nhtml[dir=rtl] .acf-button-group label:first-child {\n border-radius: 0 3px 3px 0;\n}\n.acf-button-group label:last-child {\n border-radius: 0 3px 3px 0;\n}\nhtml[dir=rtl] .acf-button-group label:last-child {\n border-radius: 3px 0 0 3px;\n}\n.acf-button-group label:only-child {\n border-radius: 3px;\n}\n.acf-button-group.-vertical {\n padding-left: 0;\n padding-top: 1px;\n flex-direction: column;\n}\n.acf-button-group.-vertical label {\n margin: -1px 0 0 0;\n}\n.acf-button-group.-vertical label:first-child {\n border-radius: 3px 3px 0 0;\n}\n.acf-button-group.-vertical label:last-child {\n border-radius: 0 0 3px 3px;\n}\n.acf-button-group.-vertical label:only-child {\n border-radius: 3px;\n}\n.acf-admin-3-8 .acf-button-group label {\n border-color: #ccd0d4;\n}\n.acf-admin-3-8 .acf-button-group label:hover {\n border-color: #0071a1;\n}\n.acf-admin-3-8 .acf-button-group label.selected {\n border-color: #007cba;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Checkbox\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-checkbox-list .button {\n margin: 10px 0 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* True / False\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-switch {\n display: inline-block;\n border-radius: 5px;\n cursor: pointer;\n position: relative;\n background: #f5f5f5;\n height: 30px;\n vertical-align: middle;\n border: #7e8993 solid 1px;\n -webkit-transition: background 0.25s ease;\n -moz-transition: background 0.25s ease;\n -o-transition: background 0.25s ease;\n transition: background 0.25s ease;\n /* hover */\n /* active */\n /* message */\n}\n.acf-switch span {\n display: inline-block;\n float: left;\n text-align: center;\n font-size: 13px;\n line-height: 22px;\n padding: 4px 10px;\n min-width: 15px;\n}\n.acf-switch span i {\n vertical-align: middle;\n}\n.acf-switch .acf-switch-on {\n color: #fff;\n text-shadow: #007cba 0 1px 0;\n}\n.acf-switch .acf-switch-slider {\n position: absolute;\n top: 2px;\n left: 2px;\n bottom: 2px;\n right: 50%;\n z-index: 1;\n background: #fff;\n border-radius: 3px;\n border: #7e8993 solid 1px;\n -webkit-transition: all 0.25s ease;\n -moz-transition: all 0.25s ease;\n -o-transition: all 0.25s ease;\n transition: all 0.25s ease;\n transition-property: left, right;\n}\n.acf-switch:hover, .acf-switch.-focus {\n border-color: #0071a1;\n background: #f3f5f6;\n color: #016087;\n}\n.acf-switch:hover .acf-switch-slider, .acf-switch.-focus .acf-switch-slider {\n border-color: #0071a1;\n}\n.acf-switch.-on {\n background: #0d99d5;\n border-color: #007cba;\n /* hover */\n}\n.acf-switch.-on .acf-switch-slider {\n left: 50%;\n right: 2px;\n border-color: #007cba;\n}\n.acf-switch.-on:hover {\n border-color: #007cba;\n}\n.acf-switch + span {\n margin-left: 6px;\n}\n.acf-admin-3-8 .acf-switch {\n border-color: #ccd0d4;\n}\n.acf-admin-3-8 .acf-switch .acf-switch-slider {\n border-color: #ccd0d4;\n}\n.acf-admin-3-8 .acf-switch:hover, .acf-admin-3-8 .acf-switch.-focus {\n border-color: #0071a1;\n}\n.acf-admin-3-8 .acf-switch:hover .acf-switch-slider, .acf-admin-3-8 .acf-switch.-focus .acf-switch-slider {\n border-color: #0071a1;\n}\n.acf-admin-3-8 .acf-switch.-on {\n border-color: #007cba;\n}\n.acf-admin-3-8 .acf-switch.-on .acf-switch-slider {\n border-color: #007cba;\n}\n.acf-admin-3-8 .acf-switch.-on:hover {\n border-color: #007cba;\n}\n\n/* checkbox */\n.acf-switch-input {\n opacity: 0;\n position: absolute;\n margin: 0;\n}\n\n/* in media modal */\n.compat-item .acf-true-false .message {\n float: none;\n padding: 0;\n vertical-align: middle;\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tGoogle Map\n*\t\n*-------------------------------------------------------------------------*/\n.acf-google-map {\n position: relative;\n border: #ccd0d4 solid 1px;\n background: #fff;\n}\n.acf-google-map .title {\n position: relative;\n border-bottom: #ccd0d4 solid 1px;\n}\n.acf-google-map .title .search {\n margin: 0;\n font-size: 14px;\n line-height: 30px;\n height: 40px;\n padding: 5px 10px;\n border: 0 none;\n box-shadow: none;\n border-radius: 0;\n font-family: inherit;\n cursor: text;\n}\n.acf-google-map .title .acf-loading {\n position: absolute;\n top: 10px;\n right: 11px;\n display: none;\n}\n.acf-google-map .title .acf-icon:active {\n display: inline-block !important;\n}\n.acf-google-map .canvas {\n height: 400px;\n}\n.acf-google-map:hover .title .acf-actions {\n display: block;\n}\n.acf-google-map .title .acf-icon.-location {\n display: inline-block;\n}\n.acf-google-map .title .acf-icon.-cancel,\n.acf-google-map .title .acf-icon.-search {\n display: none;\n}\n.acf-google-map.-value .title .search {\n font-weight: bold;\n}\n.acf-google-map.-value .title .acf-icon.-location {\n display: none;\n}\n.acf-google-map.-value .title .acf-icon.-cancel {\n display: inline-block;\n}\n.acf-google-map.-searching .title .acf-icon.-location {\n display: none;\n}\n.acf-google-map.-searching .title .acf-icon.-cancel,\n.acf-google-map.-searching .title .acf-icon.-search {\n display: inline-block;\n}\n.acf-google-map.-searching .title .acf-actions {\n display: block;\n}\n.acf-google-map.-searching .title .search {\n font-weight: normal !important;\n}\n.acf-google-map.-loading .title a {\n display: none !important;\n}\n.acf-google-map.-loading .title i {\n display: inline-block;\n}\n\n/* autocomplete */\n.pac-container {\n border-width: 1px 0;\n box-shadow: none;\n}\n\n.pac-container:after {\n display: none;\n}\n\n.pac-container .pac-item:first-child {\n border-top: 0 none;\n}\n\n.pac-container .pac-item {\n padding: 5px 10px;\n cursor: pointer;\n}\n\nhtml[dir=rtl] .pac-container .pac-item {\n text-align: right;\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tRelationship\n*\t\n*-------------------------------------------------------------------------*/\n.acf-relationship {\n background: #fff;\n border: #ccd0d4 solid 1px;\n /* list */\n /* selection (bottom) */\n}\n.acf-relationship .filters {\n border-bottom: #ccd0d4 solid 1px;\n background: #fff;\n /* widths */\n}\n.acf-relationship .filters:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-relationship .filters .filter {\n margin: 0;\n padding: 0;\n float: left;\n width: 100%;\n box-sizing: border-box;\n padding: 7px 7px 7px 0;\n}\n.acf-relationship .filters .filter:first-child {\n padding-left: 7px;\n}\n.acf-relationship .filters .filter input, .acf-relationship .filters .filter select {\n margin: 0;\n float: none;\n /* potential fix for media popup? */\n}\n.acf-relationship .filters .filter input:focus, .acf-relationship .filters .filter input:active, .acf-relationship .filters .filter select:focus, .acf-relationship .filters .filter select:active {\n outline: none;\n box-shadow: none;\n}\n.acf-relationship .filters .filter input {\n border-color: transparent;\n box-shadow: none;\n padding-left: 3px;\n padding-right: 3px;\n}\n.acf-relationship .filters.-f2 .filter {\n width: 50%;\n}\n.acf-relationship .filters.-f3 .filter {\n width: 25%;\n}\n.acf-relationship .filters.-f3 .filter.-search {\n width: 50%;\n}\n.acf-relationship .list {\n margin: 0;\n padding: 5px;\n height: 160px;\n overflow: auto;\n}\n.acf-relationship .list .acf-rel-label,\n.acf-relationship .list .acf-rel-item,\n.acf-relationship .list p {\n padding: 5px;\n margin: 0;\n display: block;\n position: relative;\n min-height: 18px;\n}\n.acf-relationship .list .acf-rel-label {\n font-weight: bold;\n}\n.acf-relationship .list .acf-rel-item {\n cursor: pointer;\n /* hover */\n /* disabled */\n}\n.acf-relationship .list .acf-rel-item b {\n text-decoration: underline;\n font-weight: normal;\n}\n.acf-relationship .list .acf-rel-item .thumbnail {\n background: #e0e0e0;\n width: 22px;\n height: 22px;\n float: left;\n margin: -2px 5px 0 0;\n}\n.acf-relationship .list .acf-rel-item .thumbnail img {\n max-width: 22px;\n max-height: 22px;\n margin: 0 auto;\n display: block;\n}\n.acf-relationship .list .acf-rel-item .thumbnail.-icon {\n background: #fff;\n}\n.acf-relationship .list .acf-rel-item .thumbnail.-icon img {\n max-height: 20px;\n margin-top: 1px;\n}\n.acf-relationship .list .acf-rel-item:hover {\n background: #3875D7;\n color: #fff;\n}\n.acf-relationship .list .acf-rel-item:hover .thumbnail {\n background: #a2bfec;\n}\n.acf-relationship .list .acf-rel-item:hover .thumbnail.-icon {\n background: #fff;\n}\n.acf-relationship .list .acf-rel-item.disabled {\n opacity: 0.5;\n}\n.acf-relationship .list .acf-rel-item.disabled:hover {\n background: transparent;\n color: #333;\n cursor: default;\n}\n.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail {\n background: #e0e0e0;\n}\n.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail.-icon {\n background: #fff;\n}\n.acf-relationship .list ul {\n padding-bottom: 5px;\n}\n.acf-relationship .list ul .acf-rel-label,\n.acf-relationship .list ul .acf-rel-item,\n.acf-relationship .list ul p {\n padding-left: 20px;\n}\n.acf-relationship .selection {\n position: relative;\n /* choices */\n /* values */\n}\n.acf-relationship .selection:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-relationship .selection .values,\n.acf-relationship .selection .choices {\n width: 50%;\n background: #fff;\n float: left;\n}\n.acf-relationship .selection .choices {\n background: #F9F9F9;\n}\n.acf-relationship .selection .choices .list {\n border-right: #DFDFDF solid 1px;\n}\n.acf-relationship .selection .values .acf-icon {\n position: absolute;\n top: 4px;\n right: 7px;\n display: none;\n /* rtl */\n}\nhtml[dir=rtl] .acf-relationship .selection .values .acf-icon {\n right: auto;\n left: 7px;\n}\n.acf-relationship .selection .values .acf-rel-item:hover .acf-icon {\n display: block;\n}\n.acf-relationship .selection .values .acf-rel-item {\n cursor: move;\n}\n.acf-relationship .selection .values .acf-rel-item b {\n text-decoration: none;\n}\n\n/* menu item fix */\n.menu-item .acf-relationship ul {\n width: auto;\n}\n.menu-item .acf-relationship li {\n display: block;\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tWYSIWYG\n*\t\n*-------------------------------------------------------------------------*/\n.acf-editor-wrap.delay .acf-editor-toolbar {\n content: \"\";\n display: block;\n background: #f5f5f5;\n border-bottom: #dddddd solid 1px;\n color: #555d66;\n padding: 10px;\n}\n.acf-editor-wrap.delay .wp-editor-area {\n padding: 10px;\n border: none;\n color: inherit !important;\n}\n.acf-editor-wrap iframe {\n min-height: 200px;\n}\n.acf-editor-wrap .wp-editor-container {\n border: 1px solid #ccd0d4;\n box-shadow: none !important;\n}\n.acf-editor-wrap .wp-editor-tabs {\n box-sizing: content-box;\n}\n.acf-editor-wrap .wp-switch-editor {\n border-color: #ccd0d4;\n border-bottom-color: transparent;\n}\n\n#mce_fullscreen_container {\n z-index: 900000 !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tTab\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-tab {\n display: none !important;\n}\n\n.hidden-by-tab {\n display: none !important;\n}\n\n.acf-tab-wrap {\n clear: both;\n z-index: 1;\n}\n\n.acf-tab-group {\n border-bottom: #ccc solid 1px;\n padding: 10px 10px 0;\n}\n.acf-tab-group li {\n margin: 0 0.5em 0 0;\n}\n.acf-tab-group li a {\n padding: 5px 10px;\n display: block;\n color: #555;\n font-size: 14px;\n font-weight: 600;\n line-height: 24px;\n border: #ccc solid 1px;\n border-bottom: 0 none;\n text-decoration: none;\n background: #e5e5e5;\n transition: none;\n}\n.acf-tab-group li a:hover {\n background: #FFF;\n}\n.acf-tab-group li a:focus {\n outline: none;\n box-shadow: none;\n}\n.acf-tab-group li a:empty {\n display: none;\n}\nhtml[dir=rtl] .acf-tab-group li {\n margin: 0 0 0 0.5em;\n}\n.acf-tab-group li.active a {\n background: #F1F1F1;\n color: #000;\n padding-bottom: 6px;\n margin-bottom: -1px;\n position: relative;\n z-index: 1;\n}\n\n.acf-fields > .acf-tab-wrap {\n background: #F9F9F9;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group {\n position: relative;\n border-top: #ccd0d4 solid 1px;\n border-bottom: #ccd0d4 solid 1px;\n z-index: 2;\n margin-bottom: -1px;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li a {\n background: #f1f1f1;\n border-color: #ccd0d4;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {\n background: #FFF;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {\n background: #FFFFFF;\n}\n.acf-admin-3-8 .acf-fields > .acf-tab-wrap .acf-tab-group {\n border-color: #dfdfdf;\n}\n.acf-fields > .acf-tab-wrap:first-child .acf-tab-group {\n border-top: none;\n}\n\n.acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-left: 20%;\n /* mobile */\n /* rtl */\n}\n@media screen and (max-width: 640px) {\n .acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-left: 10px;\n }\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-left: 0;\n padding-right: 20%;\n /* mobile */\n}\n@media screen and (max-width: 850px) {\n html[dir=rtl] .acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-right: 10px;\n }\n}\n\n.acf-tab-wrap.-left .acf-tab-group {\n position: absolute;\n left: 0;\n width: 20%;\n border: 0 none;\n padding: 0 !important;\n /* important overrides 'left aligned labels' */\n margin: 1px 0 0;\n}\n.acf-tab-wrap.-left .acf-tab-group li {\n float: none;\n margin: -1px 0 0;\n}\n.acf-tab-wrap.-left .acf-tab-group li a {\n border: 1px solid #ededed;\n font-size: 13px;\n line-height: 18px;\n color: #0073aa;\n padding: 10px;\n margin: 0;\n font-weight: normal;\n border-width: 1px 0;\n border-radius: 0;\n background: transparent;\n}\n.acf-tab-wrap.-left .acf-tab-group li a:hover {\n color: #00a0d2;\n}\n.acf-tab-wrap.-left .acf-tab-group li.active a {\n border-color: #DFDFDF;\n color: #000;\n margin-right: -1px;\n background: #fff;\n}\nhtml[dir=rtl] .acf-tab-wrap.-left .acf-tab-group {\n left: auto;\n right: 0;\n}\nhtml[dir=rtl] .acf-tab-wrap.-left .acf-tab-group li.active a {\n margin-right: 0;\n margin-left: -1px;\n}\n.acf-field + .acf-tab-wrap.-left:before {\n content: \"\";\n display: block;\n position: relative;\n z-index: 1;\n height: 10px;\n border-top: #DFDFDF solid 1px;\n border-bottom: #DFDFDF solid 1px;\n margin-bottom: -1px;\n}\n.acf-tab-wrap.-left:first-child .acf-tab-group li:first-child a {\n border-top: none;\n}\n\n/* sidebar */\n.acf-fields.-sidebar {\n padding: 0 0 0 20% !important;\n position: relative;\n /* before */\n /* rtl */\n}\n.acf-fields.-sidebar:before {\n content: \"\";\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n width: 20%;\n bottom: 0;\n border-right: #DFDFDF solid 1px;\n background: #F9F9F9;\n z-index: 1;\n}\nhtml[dir=rtl] .acf-fields.-sidebar {\n padding: 0 20% 0 0 !important;\n}\nhtml[dir=rtl] .acf-fields.-sidebar:before {\n border-left: #DFDFDF solid 1px;\n border-right-width: 0;\n left: auto;\n right: 0;\n}\n.acf-fields.-sidebar.-left {\n padding: 0 0 0 180px !important;\n /* rtl */\n}\nhtml[dir=rtl] .acf-fields.-sidebar.-left {\n padding: 0 180px 0 0 !important;\n}\n.acf-fields.-sidebar.-left:before {\n background: #F1F1F1;\n border-color: #dfdfdf;\n width: 180px;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group {\n width: 180px;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li a {\n border-color: #e4e4e4;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a {\n background: #F9F9F9;\n}\n.acf-fields.-sidebar > .acf-field-tab + .acf-field {\n border-top: none;\n}\n\n.acf-fields.-clear > .acf-tab-wrap {\n background: transparent;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group {\n margin-top: 0;\n border-top: none;\n padding-left: 0;\n padding-right: 0;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {\n background: #e5e5e5;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover {\n background: #fff;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a {\n background: #f1f1f1;\n}\n\n/* seamless */\n.acf-postbox.seamless > .acf-fields.-sidebar {\n margin-left: 0 !important;\n}\n.acf-postbox.seamless > .acf-fields.-sidebar:before {\n background: transparent;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap {\n background: transparent;\n margin-bottom: 10px;\n padding-left: 12px;\n padding-right: 12px;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group {\n border-top: 0 none;\n border-color: #ccd0d4;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li a {\n background: #e5e5e5;\n border-color: #ccd0d4;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {\n background: #fff;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li.active a {\n background: #f1f1f1;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left:before {\n border-top: none;\n height: auto;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group {\n margin-bottom: 0;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group li a {\n border-width: 1px 0 1px 1px !important;\n border-color: #cccccc;\n background: #e5e5e5;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group li.active a {\n background: #f1f1f1;\n}\n\n.menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a,\n.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {\n background: #f1f1f1;\n}\n.menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover, .menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a,\n.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover,\n.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a {\n background: #fff;\n}\n\n.compat-item .acf-tab-wrap td {\n display: block;\n}\n\n/* within gallery sidebar */\n.acf-gallery-side .acf-tab-wrap {\n border-top: 0 none !important;\n}\n\n.acf-gallery-side .acf-tab-wrap .acf-tab-group {\n margin: 10px 0 !important;\n padding: 0 !important;\n}\n\n.acf-gallery-side .acf-tab-group li.active a {\n background: #F9F9F9 !important;\n}\n\n/* withing widget */\n.widget .acf-tab-group {\n border-bottom-color: #e8e8e8;\n}\n\n.widget .acf-tab-group li a {\n background: #F1F1F1;\n}\n\n.widget .acf-tab-group li.active a {\n background: #fff;\n}\n\n/* media popup (edit image) */\n.media-modal.acf-expanded .compat-attachment-fields > tbody > tr.acf-tab-wrap .acf-tab-group {\n padding-left: 23%;\n border-bottom-color: #DDDDDD;\n}\n\n/* table */\n.form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n padding: 0 5px 0 210px;\n}\n\n/* rtl */\nhtml[dir=rtl] .form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n padding: 0 210px 0 5px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\toembed\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-oembed {\n position: relative;\n border: #ccd0d4 solid 1px;\n background: #fff;\n}\n.acf-oembed .title {\n position: relative;\n border-bottom: #ccd0d4 solid 1px;\n padding: 5px 10px;\n}\n.acf-oembed .title .input-search {\n margin: 0;\n font-size: 14px;\n line-height: 30px;\n height: 30px;\n padding: 0;\n border: 0 none;\n box-shadow: none;\n border-radius: 0;\n font-family: inherit;\n cursor: text;\n}\n.acf-oembed .title .acf-actions {\n padding: 6px;\n}\n.acf-oembed .canvas {\n position: relative;\n min-height: 250px;\n background: #F9F9F9;\n}\n.acf-oembed .canvas .canvas-media {\n position: relative;\n z-index: 1;\n}\n.acf-oembed .canvas iframe {\n display: block;\n margin: 0;\n padding: 0;\n width: 100%;\n}\n.acf-oembed .canvas .acf-icon.-picture {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 0;\n height: 42px;\n width: 42px;\n font-size: 42px;\n color: #999;\n}\n.acf-oembed .canvas .acf-loading-overlay {\n background: rgba(255, 255, 255, 0.9);\n}\n.acf-oembed .canvas .canvas-error {\n position: absolute;\n top: 50%;\n left: 0%;\n right: 0%;\n margin: -9px 0 0 0;\n text-align: center;\n display: none;\n}\n.acf-oembed .canvas .canvas-error p {\n padding: 8px;\n margin: 0;\n display: inline;\n}\n.acf-oembed.has-value .canvas {\n min-height: 50px;\n}\n.acf-oembed.has-value .input-search {\n font-weight: bold;\n}\n.acf-oembed.has-value .title:hover .acf-actions {\n display: block;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tImage\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-image-uploader {\n position: relative;\n /* image wrap*/\n /* input */\n /* rtl */\n}\n.acf-image-uploader:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-image-uploader p {\n margin: 0;\n}\n.acf-image-uploader .image-wrap {\n position: relative;\n float: left;\n /* hover */\n}\n.acf-image-uploader .image-wrap img {\n max-width: 100%;\n max-height: 100%;\n width: auto;\n height: auto;\n display: block;\n min-width: 30px;\n min-height: 30px;\n background: #f1f1f1;\n margin: 0;\n padding: 0;\n /* svg */\n}\n.acf-image-uploader .image-wrap img[src$=\".svg\"] {\n min-height: 100px;\n min-width: 100px;\n}\n.acf-image-uploader .image-wrap:hover .acf-actions {\n display: block;\n}\n.acf-image-uploader input.button {\n width: auto;\n}\nhtml[dir=rtl] .acf-image-uploader .image-wrap {\n float: right;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tFile\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-file-uploader {\n position: relative;\n /* hover */\n /* rtl */\n}\n.acf-file-uploader p {\n margin: 0;\n}\n.acf-file-uploader .file-wrap {\n border: #ccd0d4 solid 1px;\n min-height: 84px;\n position: relative;\n background: #fff;\n}\n.acf-file-uploader .file-icon {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n padding: 10px;\n background: #F1F1F1;\n border-right: #d5d9dd solid 1px;\n}\n.acf-file-uploader .file-icon img {\n display: block;\n padding: 0;\n margin: 0;\n max-width: 48px;\n}\n.acf-file-uploader .file-info {\n padding: 10px;\n margin-left: 69px;\n}\n.acf-file-uploader .file-info p {\n margin: 0 0 2px;\n font-size: 13px;\n line-height: 1.4em;\n word-break: break-all;\n}\n.acf-file-uploader .file-info a {\n text-decoration: none;\n}\n.acf-file-uploader:hover .acf-actions {\n display: block;\n}\nhtml[dir=rtl] .acf-file-uploader .file-icon {\n left: auto;\n right: 0;\n border-left: #E5E5E5 solid 1px;\n border-right: none;\n}\nhtml[dir=rtl] .acf-file-uploader .file-info {\n margin-right: 69px;\n margin-left: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tDate Picker\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-ui-datepicker .ui-datepicker {\n z-index: 900000 !important;\n}\n.acf-ui-datepicker .ui-datepicker .ui-widget-header a {\n cursor: pointer;\n transition: none;\n}\n\n/* fix highlight state overriding hover / active */\n.acf-ui-datepicker .ui-state-highlight.ui-state-hover {\n border: 1px solid #98b7e8 !important;\n background: #98b7e8 !important;\n font-weight: normal !important;\n color: #ffffff !important;\n}\n\n.acf-ui-datepicker .ui-state-highlight.ui-state-active {\n border: 1px solid #3875d7 !important;\n background: #3875d7 !important;\n font-weight: normal !important;\n color: #ffffff !important;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tSeparator field\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-separator {\n /* fields */\n}\n.acf-field-separator .acf-label {\n margin-bottom: 0;\n}\n.acf-field-separator .acf-label label {\n font-weight: normal;\n}\n.acf-field-separator .acf-input {\n display: none;\n}\n.acf-fields > .acf-field-separator {\n background: #f9f9f9;\n border-bottom: 1px solid #dfdfdf;\n border-top: 1px solid #dfdfdf;\n margin-bottom: -1px;\n z-index: 2;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tTaxonomy\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-taxonomy-field {\n position: relative;\n /* hover */\n /* select */\n}\n.acf-taxonomy-field .categorychecklist-holder {\n border: #ccd0d4 solid 1px;\n border-radius: 3px;\n max-height: 200px;\n overflow: auto;\n}\n.acf-taxonomy-field .acf-checkbox-list {\n margin: 0;\n padding: 10px;\n}\n.acf-taxonomy-field .acf-checkbox-list ul.children {\n padding-left: 18px;\n}\n.acf-taxonomy-field:hover .acf-actions {\n display: block;\n}\n.acf-taxonomy-field[data-ftype=select] .acf-actions {\n padding: 0;\n margin: -9px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tRange\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-range-wrap {\n /* rtl */\n}\n.acf-range-wrap .acf-append,\n.acf-range-wrap .acf-prepend {\n display: inline-block;\n vertical-align: middle;\n line-height: 28px;\n margin: 0 7px 0 0;\n}\n.acf-range-wrap .acf-append {\n margin: 0 0 0 7px;\n}\n.acf-range-wrap input[type=range] {\n display: inline-block;\n padding: 0;\n margin: 0;\n vertical-align: middle;\n height: 28px;\n}\n.acf-range-wrap input[type=range]:focus {\n outline: none;\n}\n.acf-range-wrap input[type=number] {\n display: inline-block;\n min-width: 3em;\n margin-left: 10px;\n vertical-align: middle;\n}\nhtml[dir=rtl] .acf-range-wrap input[type=number] {\n margin-right: 10px;\n margin-left: 0;\n}\nhtml[dir=rtl] .acf-range-wrap .acf-append {\n margin: 0 7px 0 0;\n}\nhtml[dir=rtl] .acf-range-wrap .acf-prepend {\n margin: 0 0 0 7px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* acf-accordion\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-accordion {\n margin: -1px 0;\n padding: 0;\n background: #fff;\n border-top: 1px solid #d5d9dd;\n border-bottom: 1px solid #d5d9dd;\n z-index: 1;\n}\n.acf-accordion .acf-accordion-title {\n margin: 0;\n padding: 12px;\n font-weight: bold;\n cursor: pointer;\n font-size: inherit;\n font-size: 13px;\n line-height: 1.4em;\n}\n.acf-accordion .acf-accordion-title:hover {\n background: #f3f4f5;\n}\n.acf-accordion .acf-accordion-title label {\n margin: 0;\n padding: 0;\n font-size: 13px;\n line-height: 1.4em;\n}\n.acf-accordion .acf-accordion-title p {\n font-weight: normal;\n}\n.acf-accordion .acf-accordion-title .acf-accordion-icon {\n float: right;\n}\n.acf-accordion .acf-accordion-title svg.acf-accordion-icon {\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n color: #191e23;\n fill: currentColor;\n}\n.acf-accordion .acf-accordion-content {\n margin: 0;\n padding: 0 12px 12px;\n display: none;\n}\n.acf-accordion.-open > .acf-accordion-content {\n display: block;\n}\n\n.acf-field.acf-accordion {\n margin: -1px 0;\n padding: 0 !important;\n border-color: #d5d9dd;\n}\n.acf-field.acf-accordion .acf-label.acf-accordion-title {\n padding: 12px;\n width: auto;\n float: none;\n width: auto;\n}\n.acf-field.acf-accordion .acf-input.acf-accordion-content {\n padding: 0;\n float: none;\n width: auto;\n}\n.acf-field.acf-accordion .acf-input.acf-accordion-content > .acf-fields {\n border-top: #eeeeee solid 1px;\n}\n.acf-field.acf-accordion .acf-input.acf-accordion-content > .acf-fields.-clear {\n padding: 0 12px 15px;\n}\n\n/* field specific (left) */\n.acf-fields.-left > .acf-field.acf-accordion:before {\n display: none;\n}\n.acf-fields.-left > .acf-field.acf-accordion .acf-accordion-title {\n width: auto;\n margin: 0 !important;\n padding: 12px;\n float: none !important;\n}\n.acf-fields.-left > .acf-field.acf-accordion .acf-accordion-content {\n padding: 0 !important;\n}\n\n/* field specific (clear) */\n.acf-fields.-clear > .acf-field.acf-accordion {\n border: #cccccc solid 1px;\n background: transparent;\n}\n.acf-fields.-clear > .acf-field.acf-accordion + .acf-field.acf-accordion {\n margin-top: -16px;\n}\n\n/* table */\ntr.acf-field.acf-accordion {\n background: transparent;\n}\ntr.acf-field.acf-accordion > .acf-input {\n padding: 0 !important;\n border: #cccccc solid 1px;\n}\ntr.acf-field.acf-accordion .acf-accordion-content {\n padding: 0 12px 12px;\n}\n\n/* #addtag */\n#addtag div.acf-field.error {\n border: 0 none;\n padding: 8px 0;\n}\n\n#addtag > .acf-field.acf-accordion {\n padding-right: 0;\n margin-right: 5%;\n}\n#addtag > .acf-field.acf-accordion + p.submit {\n margin-top: 0;\n}\n\n/* border */\ntr.acf-accordion {\n margin: 15px 0 !important;\n}\ntr.acf-accordion + tr.acf-accordion {\n margin-top: -16px !important;\n}\n\n/* seamless */\n.acf-postbox.seamless > .acf-fields > .acf-accordion {\n margin-left: 12px;\n margin-right: 12px;\n border: #ccd0d4 solid 1px;\n}\n\n/* rtl */\n/* menu item */\n/*\n.menu-item-settings > .field-acf > .acf-field.acf-accordion {\n\tborder: #dfdfdf solid 1px;\n\tmargin: 10px -13px 10px -11px;\n\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -11px;\n\t}\n}\n*/\n/* widget */\n.widget .widget-content > .acf-field.acf-accordion {\n border: #dfdfdf solid 1px;\n margin-bottom: 10px;\n}\n.widget .widget-content > .acf-field.acf-accordion .acf-accordion-title {\n margin-bottom: 0;\n}\n.widget .widget-content > .acf-field.acf-accordion + .acf-field.acf-accordion {\n margin-top: -11px;\n}\n\n.media-modal .compat-attachment-fields .acf-field.acf-accordion + .acf-field.acf-accordion {\n margin-top: -1px;\n}\n.media-modal .compat-attachment-fields .acf-field.acf-accordion > .acf-input {\n width: 100%;\n}\n.media-modal .compat-attachment-fields .acf-field.acf-accordion .compat-attachment-fields > tbody > tr > td {\n padding-bottom: 5px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tBlock Editor\n*\n*---------------------------------------------------------------------------------------------*/\n.block-editor .edit-post-sidebar .acf-postbox > .postbox-header,\n.block-editor .edit-post-sidebar .acf-postbox > .hndle {\n border-bottom-width: 0 !important;\n}\n.block-editor .edit-post-sidebar .acf-postbox.closed > .postbox-header,\n.block-editor .edit-post-sidebar .acf-postbox.closed > .hndle {\n border-bottom-width: 1px !important;\n}\n.block-editor .edit-post-sidebar .acf-fields {\n min-height: 1px;\n overflow: auto;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field {\n border-width: 0;\n border-color: #e2e4e7;\n margin: 16px;\n padding: 0;\n width: auto !important;\n min-height: 0 !important;\n float: none !important;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field > .acf-label {\n margin-bottom: 5px;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field > .acf-label label {\n font-weight: normal;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion {\n padding: 0;\n margin: 0;\n border-top-width: 1px;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion:first-child {\n border-top-width: 0;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-title {\n margin: 0;\n padding: 15px;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-title label {\n font-weight: bold;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-content > .acf-fields {\n border-top-width: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tUser\n*\n*--------------------------------------------------------------------------------------------*/\n.form-table > tbody {\n /* field */\n /* tab wrap */\n /* misc */\n}\n.form-table > tbody > .acf-field {\n /* label */\n /* input */\n}\n.form-table > tbody > .acf-field > .acf-label {\n padding: 20px 10px 20px 0;\n width: 210px;\n /* rtl */\n}\nhtml[dir=rtl] .form-table > tbody > .acf-field > .acf-label {\n padding: 20px 0 20px 10px;\n}\n.form-table > tbody > .acf-field > .acf-label label {\n font-size: 14px;\n color: #23282d;\n}\n.form-table > tbody > .acf-field > .acf-input {\n padding: 15px 10px;\n /* rtl */\n}\nhtml[dir=rtl] .form-table > tbody > .acf-field > .acf-input {\n padding: 15px 10px 15px 5%;\n}\n.form-table > tbody > .acf-tab-wrap td {\n padding: 15px 5% 15px 0;\n /* rtl */\n}\nhtml[dir=rtl] .form-table > tbody > .acf-tab-wrap td {\n padding: 15px 0 15px 5%;\n}\n.form-table > tbody .form-table th.acf-th {\n width: auto;\n}\n\n#your-profile,\n#createuser {\n /* override for user css */\n /* allow sub fields to display correctly */\n}\n#your-profile .acf-field input[type=text],\n#your-profile .acf-field input[type=password],\n#your-profile .acf-field input[type=number],\n#your-profile .acf-field input[type=search],\n#your-profile .acf-field input[type=email],\n#your-profile .acf-field input[type=url],\n#your-profile .acf-field select,\n#createuser .acf-field input[type=text],\n#createuser .acf-field input[type=password],\n#createuser .acf-field input[type=number],\n#createuser .acf-field input[type=search],\n#createuser .acf-field input[type=email],\n#createuser .acf-field input[type=url],\n#createuser .acf-field select {\n max-width: 25em;\n}\n#your-profile .acf-field textarea,\n#createuser .acf-field textarea {\n max-width: 500px;\n}\n#your-profile .acf-field .acf-field input[type=text],\n#your-profile .acf-field .acf-field input[type=password],\n#your-profile .acf-field .acf-field input[type=number],\n#your-profile .acf-field .acf-field input[type=search],\n#your-profile .acf-field .acf-field input[type=email],\n#your-profile .acf-field .acf-field input[type=url],\n#your-profile .acf-field .acf-field textarea,\n#your-profile .acf-field .acf-field select,\n#createuser .acf-field .acf-field input[type=text],\n#createuser .acf-field .acf-field input[type=password],\n#createuser .acf-field .acf-field input[type=number],\n#createuser .acf-field .acf-field input[type=search],\n#createuser .acf-field .acf-field input[type=email],\n#createuser .acf-field .acf-field input[type=url],\n#createuser .acf-field .acf-field textarea,\n#createuser .acf-field .acf-field select {\n max-width: none;\n}\n\n#registerform h2 {\n margin: 1em 0;\n}\n#registerform .acf-field {\n margin-top: 0;\n /*\n \t\t.acf-input {\n \t\t\tinput {\n \t\t\t\tfont-size: 24px;\n \t\t\t\tpadding: 5px;\n \t\t\t\theight: auto;\n \t\t\t}\n \t\t}\n */\n}\n#registerform .acf-field .acf-label {\n margin-bottom: 0;\n}\n#registerform .acf-field .acf-label label {\n font-weight: normal;\n line-height: 1.5;\n}\n#registerform p.submit {\n text-align: right;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tTerm\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-term-fields {\n padding-right: 5%;\n}\n#acf-term-fields > .acf-field > .acf-label {\n margin: 0;\n}\n#acf-term-fields > .acf-field > .acf-label label {\n font-size: 12px;\n font-weight: normal;\n}\n\np.submit .spinner,\np.submit .acf-spinner {\n vertical-align: top;\n float: none;\n margin: 4px 4px 0;\n}\n\n#edittag .acf-fields.-left > .acf-field {\n padding-left: 220px;\n}\n#edittag .acf-fields.-left > .acf-field:before {\n width: 209px;\n}\n#edittag .acf-fields.-left > .acf-field > .acf-label {\n width: 220px;\n margin-left: -220px;\n padding: 0 10px;\n}\n#edittag .acf-fields.-left > .acf-field > .acf-input {\n padding: 0;\n}\n\n#edittag > .acf-fields.-left {\n width: 96%;\n}\n#edittag > .acf-fields.-left > .acf-field > .acf-label {\n padding-left: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tComment\n*\n*--------------------------------------------------------------------------------------------*/\n.editcomment td:first-child {\n white-space: nowrap;\n width: 131px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWidget\n*\n*--------------------------------------------------------------------------------------------*/\n#widgets-right .widget .acf-field .description {\n padding-left: 0;\n padding-right: 0;\n}\n\n.acf-widget-fields > .acf-field .acf-label {\n margin-bottom: 5px;\n}\n.acf-widget-fields > .acf-field .acf-label label {\n font-weight: normal;\n margin: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tNav Menu\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-menu-settings {\n border-top: 1px solid #eee;\n margin-top: 2em;\n}\n.acf-menu-settings.-seamless {\n border-top: none;\n margin-top: 15px;\n}\n.acf-menu-settings.-seamless > h2 {\n display: none;\n}\n.acf-menu-settings .list li {\n display: block;\n margin-bottom: 0;\n}\n\n.acf-fields.acf-menu-item-fields {\n clear: both;\n padding-top: 1px;\n}\n.acf-fields.acf-menu-item-fields > .acf-field {\n margin: 5px 0;\n padding-right: 10px;\n}\n.acf-fields.acf-menu-item-fields > .acf-field .acf-label {\n margin-bottom: 0;\n}\n.acf-fields.acf-menu-item-fields > .acf-field .acf-label label {\n font-style: italic;\n font-weight: normal;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Attachment Form (single)\n*\n*---------------------------------------------------------------------------------------------*/\n#post .compat-attachment-fields .compat-field-acf-form-data {\n display: none;\n}\n#post .compat-attachment-fields,\n#post .compat-attachment-fields > tbody,\n#post .compat-attachment-fields > tbody > tr,\n#post .compat-attachment-fields > tbody > tr > th,\n#post .compat-attachment-fields > tbody > tr > td {\n display: block;\n}\n#post .compat-attachment-fields > tbody > .acf-field {\n margin: 15px 0;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-label {\n margin: 0;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-label label {\n margin: 0;\n padding: 0;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-label label p {\n margin: 0 0 3px !important;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-input {\n margin: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n/* WP sets tables to act as divs. ACF uses tables, so these muct be reset */\n.media-modal .compat-attachment-fields td.acf-input table {\n display: table;\n table-layout: auto;\n}\n.media-modal .compat-attachment-fields td.acf-input table tbody {\n display: table-row-group;\n}\n.media-modal .compat-attachment-fields td.acf-input table tr {\n display: table-row;\n}\n.media-modal .compat-attachment-fields td.acf-input table td, .media-modal .compat-attachment-fields td.acf-input table th {\n display: table-cell;\n}\n\n/* field widths floats */\n.media-modal .compat-attachment-fields > tbody > .acf-field {\n margin: 5px 0;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-label {\n min-width: 30%;\n margin: 0;\n padding: 0;\n float: left;\n text-align: right;\n display: block;\n float: left;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-label > label {\n padding-top: 6px;\n margin: 0;\n color: #666666;\n font-weight: 400;\n line-height: 16px;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-input {\n width: 65%;\n margin: 0;\n padding: 0;\n float: right;\n display: block;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field p.description {\n margin: 0;\n}\n\n/* restricted selection (copy of WP .upload-errors)*/\n.acf-selection-error {\n background: #ffebe8;\n border: 1px solid #c00;\n border-radius: 3px;\n padding: 8px;\n margin: 20px 0 0;\n}\n.acf-selection-error .selection-error-label {\n background: #CC0000;\n border-radius: 3px;\n color: #fff;\n font-weight: bold;\n margin-right: 8px;\n padding: 2px 4px;\n}\n.acf-selection-error .selection-error-message {\n color: #b44;\n display: block;\n padding-top: 8px;\n word-wrap: break-word;\n white-space: pre-wrap;\n}\n\n/* disabled attachment */\n.media-modal .attachment.acf-disabled .thumbnail {\n opacity: 0.25 !important;\n}\n.media-modal .attachment.acf-disabled .attachment-preview:before {\n background: rgba(0, 0, 0, 0.15);\n z-index: 1;\n position: relative;\n}\n\n/* misc */\n.media-modal {\n /* compat-item */\n /* allow line breaks in upload error */\n /* fix required span */\n /* sidebar */\n /* mobile md */\n}\n.media-modal .compat-field-acf-form-data,\n.media-modal .compat-field-acf-blank {\n display: none !important;\n}\n.media-modal .upload-error-message {\n white-space: pre-wrap;\n}\n.media-modal .acf-required {\n padding: 0 !important;\n margin: 0 !important;\n float: none !important;\n color: #f00 !important;\n}\n.media-modal .media-sidebar .compat-item {\n padding-bottom: 20px;\n}\n@media (max-width: 900px) {\n .media-modal {\n /* label */\n /* field */\n }\n .media-modal .setting span,\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-label {\n width: 98%;\n float: none;\n text-align: left;\n min-height: 0;\n padding: 0;\n }\n .media-modal .setting input,\n.media-modal .setting textarea,\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-input {\n float: none;\n height: auto;\n max-width: none;\n width: 98%;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Media Model (expand details)\n*\n*---------------------------------------------------------------------------------------------*/\n.media-modal .acf-expand-details {\n float: right;\n padding: 8px 10px;\n margin-right: 6px;\n font-size: 13px;\n height: 18px;\n line-height: 18px;\n color: #666;\n text-decoration: none;\n}\n.media-modal .acf-expand-details:focus, .media-modal .acf-expand-details:active {\n outline: 0 none;\n box-shadow: none;\n color: #666;\n}\n.media-modal .acf-expand-details:hover {\n color: #000;\n}\n.media-modal .acf-expand-details .is-open {\n display: none;\n}\n.media-modal .acf-expand-details .is-closed {\n display: block;\n}\n@media (max-width: 640px) {\n .media-modal .acf-expand-details {\n display: none;\n }\n}\n\n/* expanded */\n.media-modal.acf-expanded {\n /* toggle */\n}\n.media-modal.acf-expanded .acf-expand-details .is-open {\n display: block;\n}\n.media-modal.acf-expanded .acf-expand-details .is-closed {\n display: none;\n}\n.media-modal.acf-expanded .attachments-browser .media-toolbar,\n.media-modal.acf-expanded .attachments-browser .attachments {\n right: 740px;\n}\n.media-modal.acf-expanded .media-sidebar {\n width: 708px;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail {\n float: left;\n max-height: none;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail img {\n max-width: 100%;\n max-height: 200px;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .details {\n float: right;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting .name,\n.media-modal.acf-expanded .media-sidebar .compat-attachment-fields > tbody > .acf-field > .acf-label {\n min-width: 20%;\n margin-right: 0;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .details,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting input,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting textarea,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting + .description,\n.media-modal.acf-expanded .media-sidebar .compat-attachment-fields > tbody > .acf-field > .acf-input {\n min-width: 77%;\n}\n@media (max-width: 900px) {\n .media-modal.acf-expanded .attachments-browser .media-toolbar {\n display: none;\n }\n .media-modal.acf-expanded .attachments {\n display: none;\n }\n .media-modal.acf-expanded .media-sidebar {\n width: auto;\n max-width: none !important;\n bottom: 0 !important;\n }\n .media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail {\n min-width: 0;\n max-width: none;\n width: 30%;\n }\n .media-modal.acf-expanded .media-sidebar .attachment-info .details {\n min-width: 0;\n max-width: none;\n width: 67%;\n }\n}\n@media (max-width: 640px) {\n .media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail, .media-modal.acf-expanded .media-sidebar .attachment-info .details {\n width: 100%;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-media-modal {\n /* hide embed settings */\n}\n.acf-media-modal .media-embed .setting.align,\n.acf-media-modal .media-embed .setting.link-to {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Select Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Edit Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-media-modal.-edit {\n /* resize modal */\n left: 15%;\n right: 15%;\n top: 100px;\n bottom: 100px;\n /* hide elements */\n /* full width */\n /* tidy up incorrect distance */\n /* title box shadow (to match media grid) */\n /* sidebar */\n /* mobile md */\n /* mobile sm */\n}\n.acf-media-modal.-edit .media-frame-menu,\n.acf-media-modal.-edit .media-frame-router,\n.acf-media-modal.-edit .media-frame-content .attachments,\n.acf-media-modal.-edit .media-frame-content .media-toolbar {\n display: none;\n}\n.acf-media-modal.-edit .media-frame-title,\n.acf-media-modal.-edit .media-frame-content,\n.acf-media-modal.-edit .media-frame-toolbar,\n.acf-media-modal.-edit .media-sidebar {\n width: auto;\n left: 0;\n right: 0;\n}\n.acf-media-modal.-edit .media-frame-content {\n top: 50px;\n}\n.acf-media-modal.-edit .media-frame-title {\n border-bottom: 1px solid #DFDFDF;\n box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);\n}\n.acf-media-modal.-edit .media-sidebar {\n padding: 0 16px;\n /* WP details */\n /* ACF fields */\n /* WP required message */\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details {\n overflow: visible;\n /* hide 'Attachment Details' heading */\n /* remove overflow */\n /* move thumbnail */\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details > h3, .acf-media-modal.-edit .media-sidebar .attachment-details > h2 {\n display: none;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .attachment-info {\n background: #fff;\n border-bottom: #dddddd solid 1px;\n padding: 16px;\n margin: 0 -16px 16px;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .thumbnail {\n margin: 0 16px 0 0;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .setting {\n margin: 0 0 5px;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .setting span {\n margin: 0;\n}\n.acf-media-modal.-edit .media-sidebar .compat-attachment-fields > tbody > .acf-field {\n margin: 0 0 5px;\n}\n.acf-media-modal.-edit .media-sidebar .compat-attachment-fields > tbody > .acf-field p.description {\n margin-top: 3px;\n}\n.acf-media-modal.-edit .media-sidebar .media-types-required-info {\n display: none;\n}\n@media (max-width: 900px) {\n .acf-media-modal.-edit {\n top: 30px;\n right: 30px;\n bottom: 30px;\n left: 30px;\n }\n}\n@media (max-width: 640px) {\n .acf-media-modal.-edit {\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n}\n@media (max-width: 480px) {\n .acf-media-modal.-edit .media-frame-content {\n top: 40px;\n }\n}\n\n.acf-temp-remove {\n position: relative;\n opacity: 1;\n -webkit-transition: all 0.25s ease;\n -moz-transition: all 0.25s ease;\n -o-transition: all 0.25s ease;\n transition: all 0.25s ease;\n overflow: hidden;\n /* overlay prevents hover */\n}\n.acf-temp-remove:after {\n display: block;\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 99;\n}\n\n.hidden-by-conditional-logic {\n display: none !important;\n}\n.hidden-by-conditional-logic.appear-empty {\n display: table-cell !important;\n}\n.hidden-by-conditional-logic.appear-empty .acf-input {\n display: none !important;\n}\n\n.acf-postbox.acf-hidden {\n display: none !important;\n}\n\n.acf-attention {\n transition: border 0.25s ease-out;\n}\n.acf-attention.-focused {\n border: #23282d solid 1px !important;\n transition: none;\n}\n\ntr.acf-attention {\n transition: box-shadow 0.25s ease-out;\n position: relative;\n}\ntr.acf-attention.-focused {\n box-shadow: #23282d 0 0 0px 1px !important;\n}\n\n#editor .edit-post-layout__metaboxes {\n padding: 0;\n}\n#editor .edit-post-layout__metaboxes .edit-post-meta-boxes-area {\n margin: 0;\n}\n#editor .metabox-location-side .postbox-container {\n float: none;\n}\n#editor .postbox {\n color: #444;\n}\n#editor .postbox > .postbox-header .hndle {\n border-bottom: none;\n}\n#editor .postbox > .postbox-header .hndle:hover {\n background: transparent;\n}\n#editor .postbox > .postbox-header .handle-actions .handle-order-higher,\n#editor .postbox > .postbox-header .handle-actions .handle-order-lower {\n width: 1.62rem;\n}\n#editor .postbox > .postbox-header .handle-actions .acf-hndle-cog {\n height: 44px;\n line-height: 44px;\n}\n#editor .postbox > .postbox-header:hover {\n background: #f0f0f0;\n}\n#editor .postbox:last-child.closed > .postbox-header {\n border-bottom: none;\n}\n#editor .postbox:last-child > .inside {\n border-bottom: none;\n}\n#editor .block-editor-writing-flow__click-redirect {\n min-height: 50px;\n}\n\nbody.is-dragging-metaboxes #acf_after_title-sortables {\n outline: 3px dashed #646970;\n display: flow-root;\n min-height: 60px;\n margin-bottom: 3px !important;\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tUser\n*\n*--------------------------------------------------------------------------------------------*/\n\n.form-table > tbody {\n\t\n\t/* field */\n\t> .acf-field {\n\t\t\n\t\t/* label */\n\t\t> .acf-label {\n\t\t\tpadding: 20px 10px 20px 0;\n\t\t width: 210px;\n\t\t \n\t\t /* rtl */\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tpadding: 20px 0 20px 10px;\n\t\t\t}\n\t\t\t\n\t\t label {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tcolor: #23282d;\n\t\t\t}\n\t\t \n\t\t}\n\t\t\n\t\t\n\t\t/* input */\n\t\t> .acf-input {\n\t\t\tpadding: 15px 10px;\n\t\t\t\n\t\t\t/* rtl */\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tpadding: 15px 10px 15px 5%;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* tab wrap */\n\t> .acf-tab-wrap td {\n\t\tpadding: 15px 5% 15px 0;\n\t\t\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tpadding: 15px 0 15px 5%;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* misc */\n\t.form-table th.acf-th {\n\t\twidth: auto;\n\t}\n\t\n}\n\n#your-profile,\n#createuser {\n\t\n\t/* override for user css */\n\t.acf-field input[type=\"text\"],\n\t.acf-field input[type=\"password\"],\n\t.acf-field input[type=\"number\"],\n\t.acf-field input[type=\"search\"],\n\t.acf-field input[type=\"email\"],\n\t.acf-field input[type=\"url\"],\n\t.acf-field select {\n\t max-width: 25em;\n\t}\n\t\n\t.acf-field textarea {\n\t\tmax-width: 500px;\n\t}\n\t\n\t\n\t/* allow sub fields to display correctly */\n\t.acf-field .acf-field input[type=\"text\"],\n\t.acf-field .acf-field input[type=\"password\"],\n\t.acf-field .acf-field input[type=\"number\"],\n\t.acf-field .acf-field input[type=\"search\"],\n\t.acf-field .acf-field input[type=\"email\"],\n\t.acf-field .acf-field input[type=\"url\"],\n\t.acf-field .acf-field textarea,\n\t.acf-field .acf-field select {\n\t max-width: none;\n\t}\n}\n\n#registerform {\n\t\n\th2 {\n\t\tmargin: 1em 0;\n\t}\n\t\n\t.acf-field {\n\t\tmargin-top: 0;\n\t\t\n\t\t.acf-label {\n\t\t\tmargin-bottom: 0;\n\t\t\t\n\t\t\tlabel {\n\t\t\t\tfont-weight: normal;\n\t\t\t\tline-height: 1.5;\n\t\t\t}\n\t\t}\n\t\t\n/*\n\t\t.acf-input {\n\t\t\tinput {\n\t\t\t\tfont-size: 24px;\n\t\t\t\tpadding: 5px;\n\t\t\t\theight: auto;\n\t\t\t}\n\t\t}\n*/\n\t}\n\t\n\tp.submit {\n\t\ttext-align: right;\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tTerm\n*\n*--------------------------------------------------------------------------------------------*/\n\n// add term\n#acf-term-fields {\n\tpadding-right: 5%;\n\t\n\t> .acf-field {\n\t\t\n\t\t> .acf-label {\n\t\t\tmargin: 0;\n\t\t\t\n\t\t\tlabel {\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t}\n\t\n}\n\np.submit .spinner,\np.submit .acf-spinner {\n\tvertical-align: top;\n\tfloat: none;\n\tmargin: 4px 4px 0;\n}\n\n\n// edit term\n#edittag .acf-fields.-left {\n\t\n\t> .acf-field {\n\t\tpadding-left: 220px;\n\t\t\n\t\t&:before {\n\t\t\twidth: 209px;\n\t\t}\n\t\t\n\t\t> .acf-label {\n\t\t\twidth: 220px;\n\t\t\tmargin-left: -220px;\n\t\t\tpadding: 0 10px;\n\t\t}\n\t\t\n\t\t> .acf-input {\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n#edittag > .acf-fields.-left {\n\twidth: 96%;\n\t\n\t> .acf-field { \n\t\t\n\t\t> .acf-label {\n\t\t\tpadding-left: 0;\n\t\t}\n\t}\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tComment\n*\n*--------------------------------------------------------------------------------------------*/\n\n.editcomment td:first-child {\n white-space: nowrap;\n width: 131px;\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWidget\n*\n*--------------------------------------------------------------------------------------------*/\n\n#widgets-right .widget .acf-field .description {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\n.acf-widget-fields {\n\t\n\t> .acf-field {\n\t\t\n\t\t.acf-label {\n\t\t\tmargin-bottom: 5px;\n\t\t\t\n\t\t\tlabel {\n\t\t\t\tfont-weight: normal;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tNav Menu\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-menu-settings {\n\tborder-top: 1px solid #eee;\n margin-top: 2em;\n\t\n\t// seamless\n\t&.-seamless {\n\t\tborder-top: none;\n\t\tmargin-top: 15px;\n\t\t\n\t\t> h2 { display: none; }\n\t}\n\t\n\t// Fix relationship conflict.\n\t.list li {\n\t\tdisplay: block;\n\t\tmargin-bottom: 0;\n\t}\n}\n\n.acf-fields.acf-menu-item-fields {\n\tclear: both;\n\tpadding-top: 1px; // Fixes margin overlap.\n\t\n\t> .acf-field {\n\t\tmargin: 5px 0;\n\t\tpadding-right: 10px;\n\t\t\n\t\t.acf-label {\n\t\t\tmargin-bottom: 0;\n\t\t\tlabel {\n\t\t\t\tfont-style: italic;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Attachment Form (single)\n*\n*---------------------------------------------------------------------------------------------*/\n\n#post .compat-attachment-fields {\n\t\n\t.compat-field-acf-form-data {\n\t\tdisplay: none;\n\t}\n\t\n\t&,\n\t> tbody,\n\t> tbody > tr,\n\t> tbody > tr > th,\n\t> tbody > tr > td {\n\t\tdisplay: block;\n\t}\n\t\n\t> tbody > .acf-field {\n\t\tmargin: 15px 0;\n\t\t\n\t\t> .acf-label {\n\t\t\tmargin: 0;\n\t\t\t\n\t\t\tlabel {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\t\n\t\t\t\tp {\n\t\t\t\t\tmargin: 0 0 3px !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t> .acf-input {\n\t\t\tmargin: 0;\n\t\t}\n\t} \n}\n\n\n\n","/*---------------------------------------------------------------------------------------------\n*\n* Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n\n/* WP sets tables to act as divs. ACF uses tables, so these muct be reset */\n.media-modal .compat-attachment-fields td.acf-input {\n\t\n\ttable {\n\t\tdisplay: table;\n\t\ttable-layout: auto;\n\t\t\n\t\ttbody {\n\t\t\tdisplay: table-row-group;\n\t\t}\n\t\t\n\t\ttr {\n\t\t\tdisplay: table-row;\n\t\t}\n\t\t\n\t\ttd, th {\n\t\t\tdisplay: table-cell;\n\t\t}\n\t\t\n\t}\n\t\n}\n\n\n/* field widths floats */\n.media-modal .compat-attachment-fields > tbody > .acf-field {\n\tmargin: 5px 0;\n\t\n\t> .acf-label {\n\t\tmin-width: 30%;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tfloat: left;\n\t text-align: right;\n\t display: block;\n\t float: left;\n\t \n\t > label {\n\t\t padding-top: 6px;\n\t\t\tmargin: 0;\n\t\t\tcolor: #666666;\n\t\t font-weight: 400;\n\t\t line-height: 16px;\n\t }\n\t}\n\t\n\t> .acf-input {\n\t\twidth: 65%;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t float: right;\n\t display: block;\n\t}\n\t\n\tp.description {\n\t\tmargin: 0;\n\t}\n}\n\n\n/* restricted selection (copy of WP .upload-errors)*/\n.acf-selection-error {\n\tbackground: #ffebe8;\n border: 1px solid #c00;\n border-radius: 3px;\n padding: 8px;\n margin: 20px 0 0;\n \n .selection-error-label {\n\t\tbackground: #CC0000;\n\t border-radius: 3px;\n\t color: #fff;\n\t font-weight: bold;\n\t margin-right: 8px;\n\t padding: 2px 4px;\n\t}\n\t\n\t.selection-error-message {\n\t\tcolor: #b44;\n\t display: block;\n\t padding-top: 8px;\n\t word-wrap: break-word;\n\t white-space: pre-wrap;\n\t}\n}\n\n\n/* disabled attachment */\n.media-modal .attachment.acf-disabled {\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/* misc */\n.media-modal {\n\t\n\t/* compat-item */\n\t.compat-field-acf-form-data,\n\t.compat-field-acf-blank {\n\t\tdisplay: none !important;\n\t}\n\t\n\t\n\t/* allow line breaks in upload error */\n\t.upload-error-message {\n\t\twhite-space: pre-wrap;\n\t}\n\t\n\t\n\t/* fix required span */\n\t.acf-required {\n\t\tpadding: 0 !important;\n\t\tmargin: 0 !important;\n\t\tfloat: none !important;\n\t\tcolor: #f00 !important;\n\t}\n\t\n\t\n\t/* sidebar */\n\t.media-sidebar {\n\t\t\n\t\t.compat-item{\n\t\t\tpadding-bottom: 20px;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* mobile md */\n\t@media (max-width: 900px) {\n\t\t\n\t\t/* label */\n\t\t.setting span, \n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-label {\n\t\t\twidth: 98%;\n\t\t\tfloat: none;\n\t\t\ttext-align: left;\n\t\t\tmin-height: 0;\n\t\t\tpadding: 0;\n\t\t}\n\t\t\n\t\t\n\t\t/* field */\n\t\t.setting input, \n\t\t.setting textarea, \n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-input {\n\t\t\tfloat: none;\n\t\t height: auto;\n\t\t max-width: none;\n\t\t width: 98%;\n\t\t}\n\n\t}\n\n\t\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Media Model (expand details)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.media-modal .acf-expand-details {\n\tfloat: right;\n\tpadding: 8px 10px;\n\tmargin-right: 6px;\n\tfont-size: 13px;\n\theight: 18px;\n\tline-height: 18px;\n\tcolor: #666;\n\ttext-decoration: none;\n\n\t// States.\n\t&:focus, &:active {\n\t\toutline: 0 none;\n\t\tbox-shadow: none;\n\t\tcolor: #666;\n\t}\n\t&:hover {\n\t\tcolor: #000;\n\t}\n\t\n\t// Open & close.\n\t.is-open { display: none; }\n\t.is-closed { display: block; }\n\t\n\t// Hide on mobile.\n\t@media (max-width: $sm) {\n\t\tdisplay: none;\n\t}\n}\n\n\n/* expanded */\n.media-modal.acf-expanded {\n\t\n\t/* toggle */\n\t.acf-expand-details {\n\t\t.is-open { display: block; }\n\t\t.is-closed { display: none; }\n\t\t\n\t}\n\t\n\t// Components.\n\t.attachments-browser .media-toolbar, \n\t.attachments-browser .attachments { right: 740px; }\n\t.media-sidebar { width: 708px; }\n\t\n\t// Sidebar.\n\t.media-sidebar {\n\t\t\n\t\t// Attachment info.\n\t\t.attachment-info {\n\t\t\t.thumbnail {\n\t\t\t\tfloat: left;\n\t\t\t\tmax-height: none;\n\n\t\t\t\timg {\n\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\tmax-height: 200px;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.details {\n\t\t\t\tfloat: right;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Label\n\t\t.attachment-info .thumbnail,\n\t\t.attachment-details .setting .name, \n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-label {\n\t\t\tmin-width: 20%;\n\t\t\tmargin-right: 0;\n\t\t}\n\t\t\n\t\t// Input\n\t\t.attachment-info .details,\n\t\t.attachment-details .setting input, \n\t\t.attachment-details .setting textarea,\n\t\t.attachment-details .setting + .description,\n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-input {\n\t\t\tmin-width: 77%;\n\t\t}\n\t}\n\t\n\t// Screen: Medium.\n\t@media (max-width: 900px) {\n\t\t\n\t\t// Components.\n\t\t.attachments-browser .media-toolbar { display: none; }\n\t\t.attachments { display: none; }\n\t\t.media-sidebar { width: auto; max-width: none !important; bottom: 0 !important; }\n\t\t\n\t\t// Sidebar.\n\t\t.media-sidebar {\n\t\t\t\n\t\t\t// Attachment info.\n\t\t\t.attachment-info {\n\t\t\t\t.thumbnail {\n\t\t\t\t\tmin-width: 0;\n\t\t\t\t\tmax-width: none;\n\t\t\t\t\twidth: 30%;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.details {\n\t\t\t\t\tmin-width: 0;\n\t\t\t\t\tmax-width: none;\n\t\t\t\t\twidth: 67%;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\t\n\t\t}\n\t}\n\t\n\t// Screen: small.\n\t@media (max-width: 640px) {\n\t\t\n\t\t// Sidebar.\n\t\t.media-sidebar {\n\t\t\t\n\t\t\t// Attachment info.\n\t\t\t.attachment-info {\n\t\t\t\t.thumbnail, .details {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\n\t}\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-media-modal {\n\t\n\t/* hide embed settings */\n\t.media-embed {\n\t\t.setting.align,\n\t\t.setting.link-to {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Select Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-media-modal.-select {\n\t\n\t\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Edit Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-media-modal.-edit {\n\t\n\t/* resize modal */\n\tleft: 15%;\n\tright: 15%;\n\ttop: 100px;\n\tbottom: 100px;\n\t\n\t\n\t/* hide elements */\n\t.media-frame-menu,\n\t.media-frame-router,\n\t.media-frame-content .attachments,\n\t.media-frame-content .media-toolbar {\n\t display: none;\n\t}\n\t\n\t\n\t/* full width */\n\t.media-frame-title,\n\t.media-frame-content,\n\t.media-frame-toolbar,\n\t.media-sidebar {\n\t\twidth: auto;\n\t\tleft: 0;\n\t\tright: 0;\n\t}\n\t\n\t\n\t/* tidy up incorrect distance */\n\t.media-frame-content {\n\t top: 50px;\n\t}\n\t\n\t\n\t/* title box shadow (to match media grid) */\n\t.media-frame-title {\n\t border-bottom: 1px solid #DFDFDF;\n\t box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);\n\t}\n\t\n\t\n\t/* sidebar */\n\t.media-sidebar {\n\t\t\n\t\tpadding: 0 16px;\n\t\t\n\t\t/* WP details */\n\t\t.attachment-details {\n\t\t\t\n\t\t\toverflow: visible;\n\t\t\t\n\t\t\t/* hide 'Attachment Details' heading */\n\t\t\t> h3, > h2 {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t/* remove overflow */\n\t\t\t.attachment-info {\n\t\t\t\tbackground: #fff;\n\t\t\t\tborder-bottom: #dddddd solid 1px;\n\t\t\t\tpadding: 16px;\n\t\t\t\tmargin: 0 -16px 16px;\n\t\t\t}\n\t\t\t\n\t\t\t/* move thumbnail */\n\t\t\t.thumbnail {\n\t\t\t\tmargin: 0 16px 0 0;\n\t\t\t}\n\t\t\t\n\t\t\t.setting {\n\t\t\t\tmargin: 0 0 5px;\n\t\t\t\t\n\t\t\t\tspan {\n\t\t\t\t\tmargin: 0;\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/* ACF fields */\n\t\t.compat-attachment-fields {\n\t\t\t\n\t\t\t> tbody > .acf-field {\n\t\t\t\tmargin: 0 0 5px;\n\t\t\t\t\n\t\t\t\tp.description {\n\t\t\t\t\tmargin-top: 3px;\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/* WP required message */\n\t\t.media-types-required-info { display: none; }\n\t\t\n\t}\n\t\n\t\n\t/* mobile md */\n\t@media (max-width: 900px) {\n\t\ttop: 30px;\n\t\tright: 30px;\n\t\tbottom: 30px;\n\t\tleft: 30px;\n\t}\n\t\n\t\n\t/* mobile sm */\n\t@media (max-width: 640px) {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\t\n\t@media (max-width: 480px) {\n\t\t.media-frame-content {\n\t\t top: 40px;\n\t\t}\n\t}\n}\n","// Temp remove.\n.acf-temp-remove {\n\tposition: relative;\n\topacity: 1;\n\t-webkit-transition: all 0.25s ease;\n\t-moz-transition: all 0.25s ease;\n\t-o-transition: all 0.25s ease;\n\ttransition: all 0.25s ease;\n\toverflow: hidden;\n\t\n\t/* overlay prevents hover */\n\t&:after {\n\t\tdisplay: block;\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tz-index: 99;\n\t}\n}\n\n// Conditional Logic.\n.hidden-by-conditional-logic {\n\tdisplay: none !important;\n\t\n\t// Table cells may \"appear empty\".\n\t&.appear-empty {\n\t\tdisplay: table-cell !important;\n\t\t.acf-input {\n\t\t\tdisplay: none !important;\n\t\t}\n\t}\n}\n\n// Compat support for \"Tabify\" plugin.\n.acf-postbox.acf-hidden {\n\tdisplay: none !important;\n}\n\n// Focus Attention.\n.acf-attention {\n\ttransition: border 0.250s ease-out;\n\t&.-focused {\n\t\tborder: #23282d solid 1px !important;\n\t\ttransition: none;\n\t}\n}\ntr.acf-attention {\n\ttransition: box-shadow 0.250s ease-out;\n\tposition: relative;\n\t&.-focused {\n\t\tbox-shadow: #23282d 0 0 0px 1px !important;\n\t}\n}","// Gutenberg specific styles.\n#editor {\n\t\n\t// Postbox container.\n\t.edit-post-layout__metaboxes {\n\t\tpadding: 0;\n\t\t.edit-post-meta-boxes-area {\n\t\t\tmargin: 0;\n\t\t}\n\t}\n\n\t// Sidebar postbox container.\n\t.metabox-location-side {\n\t\t.postbox-container {\n\t\t\tfloat: none;\n\t\t}\n\t}\n\t\n\t// Alter postbox to look like panel component.\n\t.postbox {\n\t\tcolor: #444;\n\t\t\n\t\t> .postbox-header {\n\t\t\t.hndle {\n\t\t\t\tborder-bottom: none;\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: transparent;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.handle-actions {\n\t\t\t\t.handle-order-higher,\n\t\t\t\t.handle-order-lower {\n\t\t\t\t\twidth: 1.62rem;\n\t\t\t\t}\n\n\t\t\t\t// Fix \"Edit\" icon height.\n\t\t\t\t.acf-hndle-cog {\n\t\t\t\t\theight: 44px;\n\t\t\t\t\tline-height: 44px;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&:hover {\n\t\t\t\tbackground: #f0f0f0;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Hide bottom border of last postbox.\n\t\t&:last-child.closed > .postbox-header {\n\t\t\tborder-bottom: none;\n\t\t}\n\t\t&:last-child > .inside {\n\t\t\tborder-bottom: none;\n\t\t}\n\t}\n\n\t// Prevent metaboxes being forced offscreen.\n\t.block-editor-writing-flow__click-redirect {\n\t\tmin-height: 50px;\n\t}\n}\n\n// Fix to display \"High\" metabox area when dragging metaboxes.\nbody.is-dragging-metaboxes #acf_after_title-sortables{\n\toutline: 3px dashed #646970;\n\tdisplay: flow-root;\n\tmin-height: 60px;\n\tmargin-bottom: 3px !important\n}"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-input.css","mappings":"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;EACC;EACA;EACA;EACA;EACA;EACA;AJvPF;AI0PE;EACC;EACA;AJxPH;AI0PG;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AJxPJ;AI0PI;EACC;AJxPL;AI4PG;EACC;EACA;EACA;EACA;AJ1PJ;AI+PE;EACC;EACA;AJ7PH;AI+PG;EACC;EACA;AJ7PJ;AImQC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AJjQF;AIuQG;EACC;AJrQJ;;AI2QA;AACA;EACC;EACA;EAEA;EAcA;AJtRD;AIyQC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AJvQF;AI2QC;EACC;AJzQF;AI2QE;EACC;EACA;EACA;EACA;AJzQH;AI8QC;EACC;EAEA;AJ7QF;AI8QE;EACC;AJ5QH;AI+QE;EACC;EACA;EACA;AJ7QH;AIgRE;EACC;AJ9QH;AIgRG;EACC;AJ9QJ;AIiRG;EACC;AJ/QJ;AIqRC;EACC;AJnRF;;AIwRA;EACC;AJrRD;AIwRC;EACC;EACA;EACA;EACA;AJtRF;AIwRE;EACC;AJtRH;AIwRG;EACC;AJtRJ;AI0RE;EACC;AJxRH;;AI6RA;AAGC;EACC;AJ5RF;AI8RE;EACC;AJ5RH;AIiSC;EACC;EACA;EACA,kBH/iEG;EGgjEH,mBHhjEG;ADixDL;AIiSE;EACC;EACA,qBH7iEc;AD8wDjB;AIiSG;EACC;EACA,qBHjjEa;ADkxDjB;AIiSI;EACC;AJ/RL;AImSG;EACC;AJjSJ;AIwSE;EACC;EACA;AJtSH;AIySE;EACC;AJvSH;AIySG;EACC;EACA;EACA;AJvSJ;AI0SG;EACC;AJxSJ;;AIkTE;;EACC;AJ9SH;AIgTE;;;EAEC;AJ7SH;;AIkTA;EACC;AJ/SD;;AIkTA;AACA;EACC;AJ/SD;;AIkTA;EACC;EACA;AJ/SD;;AIkTA;EACC;AJ/SD;;AIkTA;AACA;EACC;AJ/SD;;AIkTA;EACC;AJ/SD;;AIkTA;EACC;AJ/SD;;AIkTA;AACA;EAKC;EACA;AJnTD;;AIsTA;AAEA;EACC;AJpTD;;AIuTA;AACA;EACC;AJpTD;;AIuTA;;;;8FAAA;AAMA;EACC;EACA;EACA;AJrTD;AIuTC;EACC;EACA;EACA;AJrTF;AIuTE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AJrTH;AIwTE;EACC;AJtTH;AI0TC;EACC;EACA;EACA;AJxTF;AI0TE;EACC;EACA;AJxTH;AI2TE;EACC;EACA;EACA;EACA;AJzTH;AI4TE;EFhtED;EACA;EACA;EACA;EE+sEE;EAEA;EACA;EACA;EACA;AJxTH;AI2TE;EACC;AJzTH;AI4TE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AJ1TH;AI4TG;EACC;EACA;EACA;AJ1TJ;AIiUE;EACC;AJ/TH;AIkUE;EACC;AJhUH;AImUE;EACC;AJjUH;;AIsUA;;;;8FAAA;AAMA;EAEC;EAMA;EA8BA;EAKA;AJ3WD;AEn9DC;EACC;EACA;EACA;AFq9DF;AI+TC;EACC;AJ7TF;AIiUC;EACC;EACA;EAqBA;AJnVF;AIgUE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;AJ/TH;AIgUG;EACC;EACA;AJ9TJ;AImUE;EACC;AJjUH;AIsUC;EACC;AJpUF;AIyUE;EACC;AJvUH;;AI4UA;;;;8FAAA;AAMA;EACC;EA8CA;EAKA;AJ3XD;AI0UC;EACC;AJxUF;AI2UC;EACC;EACA;EACA;EACA;AJzUF;AI4UC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AJ1UF;AI4UE;EACC;EACA;EACA;EACA;AJ1UH;AI8UC;EACC;EACA;AJ5UF;AI8UE;EACC;EACA;EACA;EACA;AJ5UH;AI+UE;EACC;AJ7UH;AIkVC;EACC;AJhVF;AIqVE;EACC;EACA;EACA;EACA;AJnVH;AIsVE;EACC;EACA;AJpVH;;AIyVA;;;;+EAAA;AAMA;EACC;AJvVD;AIyVC;EACC;EACA;AJvVF;;AI2VA;AACA;EACC;EACA;EACA;EACA;AJxVD;;AI2VA;EACC;EACA;EACA;EACA;AJxVD;;AI2VA;;;;+EAAA;AAMA;EAaC;AJrWD;AIyVC;EACC;AJvVF;AIyVE;EACC;AJvVH;AI2VC;EACC;AJzVF;AI6VC;EACC;EACA;EACA;EACA;EACA;AJ3VF;;AI+VA;;;;+EAAA;AAMA;EACC;EAkBA;EAOA;AJpXD;AI6VC;EACC;EACA;EACA;EACA;AJ3VF;AI8VC;EACC;EACA;AJ5VF;AI8VE;EACC;AJ5VH;AIkWE;EACC;AJhWH;AIsWE;EACC;EACA;AJpWH;;AIyWA;;;;+EAAA;AAMA;EAgCC;AJtYD;AIuWC;;EAEC;EACA;EACA;EACA;AJrWF;AIwWC;EACC;AJtWF;AIyWC;EACC;EACA;EACA;EACA;EACA;AJvWF;AIyWE;EACC;AJvWH;AI2WC;EACC;EACA;EACA;EACA;AJzWF;AI8WE;EACC;EACA;AJ5WH;AI+WE;EACC;AJ7WH;AI+WE;EACC;AJ7WH;;AIkXA;;;;+EAAA;AAMA;EACC;EACA;EACA;EACA;EACA;EACA;AJhXD;AImXC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AJjXF;AImXE;EACC;AJjXH;AIoXE;EACC;EACA;EACA;EACA;AJlXH;AIqXE;EACC;AJnXH;AIsXE;EACC;AJpXH;AIwXE;EACC;EACA;EACA;EACA;EACA;EACA;AJtXH;AI0XC;EACC;EACA;EACA;AJxXF;AI6XE;EACC;AJ3XH;;AIiYA;EACC;EACA;EACA,qBH7lFkB;AD+tEnB;AIgYC;EACC;EACA;EACA;EACA;AJ9XF;AIiYC;EACC;EACA;EACA;AJ/XF;AIiYE;EACC;AJ/XH;AIiYG;EACC;AJ/XJ;;AIqYA;AAEC;EACC;AJnYF;AIsYC;EACC;EACA;EACA;EACA;AJpYF;AIuYC;EACC;AJrYF;;AIyYA;AACA;EACC;EACA;AJtYD;AIwYC;EACC;AJtYF;;AI0YA;AACA;EACC;AJvYD;AIyYC;EACC;EACA;AJvYF;AI0YC;EACC;AJxYF;;AI4YA;AACA;EACC;EACA;AJzYD;;AI4YA;EACC;EACA;AJzYD;AI2YC;EACC;AJzYF;;AI6YA;AACA;EACC;AJ1YD;AI4YC;EACC;AJ1YF;;AI8YA;AACA;EACC,iBHrsFiB;EGssFjB,kBHtsFiB;EGusFjB;AJ3YD;;AI8YA;AAIA;AACA;;;;;;;;;CAAA;AAWA;AACA;EACC;EACA;AJ/YD;AIiZC;EACC;AJ/YF;AIkZC;EACC;AJhZF;;AIuZC;EACC;AJpZF;AIwZC;EACC;AJtZF;AI0ZC;EACC;AJxZF;;AI4ZA;;;;+EAAA;AAUG;;EAEC;AJ9ZJ;AIiaI;;EAEC;AJ/ZL;AIqaE;EACC;EACA;AJnaH;AIqaG;EACC;EACA;EACA;EACA;EAGA;EACA;EACA;AJraJ;AIwaI;EACC;AJtaL;AIuaK;EACC;AJraN;AI0aI;EACC;EACA;EACA;AJxaL;AI0aK;EACC;AJxaN;AI2aK;EACC;EACA;AJzaN;AI0aM;EACC;EACA;AJxaP;AI2aM;EACC;AJzaP;AI8aM;EACC;AJ5aP;;AIqbA;;;;+EAAA;AAOC;;EACC;EAEC;EACA;AJpbH;AIubE;;EAEE;EACA;EACA;EACA;EAED,yBHj0FQ;EGk0FR;EAEA,cHh0FQ;ADy4EX;;AI4bA;;;;+EAAA;AAMA;EACC;AJ1bD;;AI6bA;EACC;AJ1bD;;AI6bA;EACC;EACA;AJ1bD;;AI6bA;EACC;AJ1bD;;AKh9EA;;;;8FAAA;AAMA;EAEC;EAkCA;EAYA;ALq6ED;AKl9EC;EAEC;EAkBA;ALk8EF;AKn9EE;EACC;EACG;EAEA;ALo9EN;AKn9EG;EACC;ALq9EJ;AKl9EM;EACF;EACA;ALo9EJ;AK78EE;EACC;EAEA;AL88EH;AK78EG;EACC;AL+8EJ;AKv8EC;EACC;EAEA;ALw8EF;AKv8EE;EACC;ALy8EH;AKl8EC;EACC;ALo8EF;;AK/7EA;;EAGC;EAgBA;ALk7ED;AKj8EC;;;;;;;;;;;;;;EAOI;AL08EL;AKv8EC;;EACC;AL08EF;AKr8EC;;;;;;;;;;;;;;;;EAQI;AL+8EL;;AKz8EC;EACC;AL48EF;AKz8EC;EACC;EAWF;;;;;;;;GAAA;ALy8EA;AKl9EE;EACC;ALo9EH;AKl9EG;EACC;EACA;ALo9EJ;AKr8EC;EACC;ALu8EF;;AKl8EA;;;;8FAAA;AAOA;EACC;ALm8ED;AK/7EE;EACC;ALi8EH;AK/7EG;EACC;EACA;ALi8EJ;;AK17EA;;EAEC;EACA;EACA;AL67ED;;AKt7EC;EACC;ALy7EF;AKv7E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lFC;EAhHD;IAiHE;IACA;IACA;IACA;EN6lFA;AACF;AM3lFC;EACC;IACI;EN6lFJ;AACF;;AOnjGA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;APqjGD;AOpjGC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;APsjGF;;AOjjGA;EACC;APojGD;AOjjGC;EACC;APmjGF;AOljGE;EACC;APojGH;;AO9iGA;EACC;APijGD;;AO7iGA;EACC;APgjGD;AO/iGC;EACC;EACA;APijGF;;AO9iGA;EACC;EACA;APijGD;AOhjGC;EACC;APkjGF;;AQnmGC;EACC;ARsmGF;AQrmGE;EACC;ARumGH;AQjmGE;EACC;ARmmGH;AQ9lGC;EACC;ARgmGF;AQ7lGG;EACC;AR+lGJ;AQ9lGI;EACC;ARgmGL;AQ5lGI;;EAEC;AR8lGL;AQ1lGI;EACC;EACA;AR4lGL;AQzlGG;EACC;AR2lGJ;AQtlGE;EACC;ARwlGH;AQtlGE;EACC;ARwlGH;AQnlGC;EACC;ARqlGF;;AQhlGA;EACC;EACA;EACA;EACA;ARmlGD,C","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/acf-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/_typography.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_fields.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_forms.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_media.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_input.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/_postbox.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.post-type-acf-field-group #wpcontent {\n line-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group a {\n color: #0783BE;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.h1, .post-type-acf-field-group h1,\n.acf-headerbar h1 {\n font-size: 21px;\n font-weight: 400;\n}\n\n.h2, .acf-page-title, .post-type-acf-field-group h2,\n.acf-headerbar h2 {\n font-size: 18px;\n font-weight: 400;\n}\n\n.h3, .post-type-acf-field-group h3,\n.acf-headerbar h3 {\n font-size: 16px;\n font-weight: 400;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.p1 {\n font-size: 15px;\n}\n\n.p2 {\n font-size: 14px;\n}\n\n.p3 {\n font-size: 13.5px;\n}\n\n.p4 {\n font-size: 13px;\n}\n\n.p5 {\n font-size: 12.5px;\n}\n\n.p6, .acf-field p.description, .acf-small {\n font-size: 12px;\n}\n\n.p7, .acf-field-setting-prefix_label p.description code,\n.acf-field-setting-prefix_name p.description code {\n font-size: 11.5px;\n}\n\n.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.post-type-acf-field-group .acf-settings-wrap h1,\n.post-type-acf-field-group #acf-admin-tools h1 {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Small\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* Link focus style\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group a:focus {\n box-shadow: none;\n outline: none;\n}\n\n.post-type-acf-field-group 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/*--------------------------------------------------------------------------------------------\n*\n*\tacf-field\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-field,\n.acf-field .acf-label,\n.acf-field .acf-input {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n position: relative;\n}\n\n.acf-field {\n margin: 15px 0;\n clear: both;\n}\n.acf-field p.description {\n display: block;\n margin: 0;\n padding: 0;\n}\n.acf-field .acf-label {\n vertical-align: top;\n margin: 0 0 10px;\n}\n.acf-field .acf-label label {\n display: block;\n font-weight: 500;\n margin: 0 0 3px;\n padding: 0;\n}\n.acf-field .acf-label:empty {\n margin-bottom: 0;\n}\n.acf-field .acf-input {\n vertical-align: top;\n}\n.acf-field p.description {\n display: block;\n margin-top: 6px;\n color: #667085;\n}\n.acf-field .acf-notice {\n margin: 0 0 15px;\n background: #edf2ff;\n color: #0c6ca0;\n border-color: #2183b9;\n}\n.acf-field .acf-notice.-error {\n background: #ffe6e6;\n color: #cc2727;\n border-color: #d12626;\n}\n.acf-field .acf-notice.-success {\n background: #eefbe8;\n color: #0e7b17;\n border-color: #32a23b;\n}\n.acf-field .acf-notice.-warning {\n background: #fff3e6;\n color: #bd4b0e;\n border-color: #d16226;\n}\ntd.acf-field,\ntr.acf-field {\n margin: 0;\n}\n\n.acf-field[data-width] {\n float: left;\n clear: none;\n /*\n \t@media screen and (max-width: $sm) {\n \t\tfloat: none;\n \t\twidth: auto;\n \t\tborder-left-width: 0;\n \t\tborder-right-width: 0;\n \t}\n */\n}\n.acf-field[data-width] + .acf-field[data-width] {\n border-left: 1px solid #eeeeee;\n}\nhtml[dir=rtl] .acf-field[data-width] {\n float: right;\n}\nhtml[dir=rtl] .acf-field[data-width] + .acf-field[data-width] {\n border-left: none;\n border-right: 1px solid #eeeeee;\n}\ntd.acf-field[data-width],\ntr.acf-field[data-width] {\n float: none;\n}\n\n.acf-field.-c0 {\n clear: both;\n border-left-width: 0 !important;\n}\nhtml[dir=rtl] .acf-field.-c0 {\n border-left-width: 1px !important;\n border-right-width: 0 !important;\n}\n\n.acf-field.-r0 {\n border-top-width: 0 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-fields {\n position: relative;\n}\n.acf-fields:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-fields.-border {\n border: #ccd0d4 solid 1px;\n background: #fff;\n}\n.acf-fields > .acf-field {\n position: relative;\n margin: 0;\n padding: 16px;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #EAECF0;\n}\n.acf-fields > .acf-field:first-child {\n border-top: none;\n margin-top: 0;\n}\ntd.acf-fields {\n padding: 0 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (clear)\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-fields.-clear > .acf-field {\n border: none;\n padding: 0;\n margin: 15px 0;\n}\n.acf-fields.-clear > .acf-field[data-width] {\n border: none !important;\n}\n.acf-fields.-clear > .acf-field > .acf-label {\n padding: 0;\n}\n.acf-fields.-clear > .acf-field > .acf-input {\n padding: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (left)\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-fields.-left > .acf-field {\n padding: 15px 0;\n}\n.acf-fields.-left > .acf-field:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-fields.-left > .acf-field:before {\n content: \"\";\n display: block;\n position: absolute;\n z-index: 0;\n background: #f9f9f9;\n border-color: #e1e1e1;\n border-style: solid;\n border-width: 0 1px 0 0;\n top: 0;\n bottom: 0;\n left: 0;\n width: 20%;\n}\n.acf-fields.-left > .acf-field[data-width] {\n float: none;\n width: auto !important;\n border-left-width: 0 !important;\n border-right-width: 0 !important;\n}\n.acf-fields.-left > .acf-field > .acf-label {\n float: left;\n width: 20%;\n margin: 0;\n padding: 0 12px;\n}\n.acf-fields.-left > .acf-field > .acf-input {\n float: left;\n width: 80%;\n margin: 0;\n padding: 0 12px;\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-field:before {\n border-width: 0 0 0 1px;\n left: auto;\n right: 0;\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-field > .acf-label {\n float: right;\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-field > .acf-input {\n float: right;\n}\n#side-sortables .acf-fields.-left > .acf-field:before {\n display: none;\n}\n#side-sortables .acf-fields.-left > .acf-field > .acf-label {\n width: 100%;\n margin-bottom: 10px;\n}\n#side-sortables .acf-fields.-left > .acf-field > .acf-input {\n width: 100%;\n}\n@media screen and (max-width: 640px) {\n .acf-fields.-left > .acf-field:before {\n display: none;\n }\n .acf-fields.-left > .acf-field > .acf-label {\n width: 100%;\n margin-bottom: 10px;\n }\n .acf-fields.-left > .acf-field > .acf-input {\n width: 100%;\n }\n}\n\n/* clear + left */\n.acf-fields.-clear.-left > .acf-field {\n padding: 0;\n border: none;\n}\n.acf-fields.-clear.-left > .acf-field:before {\n display: none;\n}\n.acf-fields.-clear.-left > .acf-field > .acf-label {\n padding: 0;\n}\n.acf-fields.-clear.-left > .acf-field > .acf-input {\n padding: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-table tr.acf-field > td.acf-label {\n padding: 15px 12px;\n margin: 0;\n background: #f9f9f9;\n width: 20%;\n}\n.acf-table tr.acf-field > td.acf-input {\n padding: 15px 12px;\n margin: 0;\n border-left-color: #e1e1e1;\n}\n\n.acf-sortable-tr-helper {\n position: relative !important;\n display: table-row !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-postbox\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-postbox {\n position: relative;\n}\n.acf-postbox > .inside {\n margin: 0 !important; /* override WP style - do not delete - you have tried this before */\n padding: 0 !important; /* override WP style - do not delete - you have tried this before */\n}\n.acf-postbox .acf-hndle-cog {\n color: #72777c;\n font-size: 16px;\n line-height: 36px;\n height: 36px;\n width: 1.62rem;\n position: relative;\n display: none;\n}\n.acf-postbox .acf-hndle-cog:hover {\n color: #191e23;\n}\n.acf-postbox > .hndle:hover .acf-hndle-cog,\n.acf-postbox > .postbox-header:hover .acf-hndle-cog {\n display: inline-block;\n}\n.acf-postbox > .hndle .acf-hndle-cog {\n height: 20px;\n line-height: 20px;\n float: right;\n width: auto;\n}\n.acf-postbox > .hndle .acf-hndle-cog:hover {\n color: #777777;\n}\n.acf-postbox .acf-replace-with-fields {\n padding: 15px;\n text-align: center;\n}\n\n#post-body-content #acf_after_title-sortables {\n margin: 20px 0 -20px;\n}\n\n/* seamless */\n.acf-postbox.seamless {\n border: 0 none;\n background: transparent;\n box-shadow: none;\n /* hide hndle */\n /* inside */\n}\n.acf-postbox.seamless > .postbox-header,\n.acf-postbox.seamless > .hndle,\n.acf-postbox.seamless > .handlediv {\n display: none !important;\n}\n.acf-postbox.seamless > .inside {\n display: block !important; /* stop metabox from hiding when closed */\n margin-left: -12px !important;\n margin-right: -12px !important;\n}\n.acf-postbox.seamless > .inside > .acf-field {\n border-color: transparent;\n}\n\n/* seamless (left) */\n.acf-postbox.seamless > .acf-fields.-left {\n /* hide sidebar bg */\n /* mobile */\n}\n.acf-postbox.seamless > .acf-fields.-left > .acf-field:before {\n display: none;\n}\n@media screen and (max-width: 782px) {\n .acf-postbox.seamless > .acf-fields.-left {\n /* remove padding */\n }\n .acf-postbox.seamless > .acf-fields.-left > .acf-field > .acf-label, .acf-postbox.seamless > .acf-fields.-left > .acf-field > .acf-input {\n padding: 0;\n }\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Inputs\n*\n*-----------------------------------------------------------------------------*/\n.acf-field input[type=text],\n.acf-field input[type=password],\n.acf-field input[type=date],\n.acf-field input[type=datetime],\n.acf-field input[type=datetime-local],\n.acf-field input[type=email],\n.acf-field input[type=month],\n.acf-field input[type=number],\n.acf-field input[type=search],\n.acf-field input[type=tel],\n.acf-field input[type=time],\n.acf-field input[type=url],\n.acf-field input[type=week],\n.acf-field textarea,\n.acf-field select {\n width: 100%;\n padding: 4px 8px;\n margin: 0;\n box-sizing: border-box;\n font-size: 14px;\n line-height: 1.4;\n}\n.acf-admin-3-8 .acf-field input[type=text],\n.acf-admin-3-8 .acf-field input[type=password],\n.acf-admin-3-8 .acf-field input[type=date],\n.acf-admin-3-8 .acf-field input[type=datetime],\n.acf-admin-3-8 .acf-field input[type=datetime-local],\n.acf-admin-3-8 .acf-field input[type=email],\n.acf-admin-3-8 .acf-field input[type=month],\n.acf-admin-3-8 .acf-field input[type=number],\n.acf-admin-3-8 .acf-field input[type=search],\n.acf-admin-3-8 .acf-field input[type=tel],\n.acf-admin-3-8 .acf-field input[type=time],\n.acf-admin-3-8 .acf-field input[type=url],\n.acf-admin-3-8 .acf-field input[type=week],\n.acf-admin-3-8 .acf-field textarea,\n.acf-admin-3-8 .acf-field select {\n padding: 3px 5px;\n}\n.acf-field textarea {\n resize: vertical;\n}\n\nbody.acf-browser-firefox .acf-field select {\n padding: 4px 5px;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Text\n*\n*-----------------------------------------------------------------------------*/\n.acf-input-prepend,\n.acf-input-append,\n.acf-input-wrap {\n box-sizing: border-box;\n}\n\n.acf-input-prepend,\n.acf-input-append {\n font-size: 13px;\n line-height: 1.4;\n padding: 4px 8px;\n background: #f5f5f5;\n border: #7e8993 solid 1px;\n min-height: 30px;\n}\n.acf-admin-3-8 .acf-input-prepend,\n.acf-admin-3-8 .acf-input-append {\n padding: 3px 5px;\n border-color: #dddddd;\n min-height: 28px;\n}\n\n.acf-input-prepend {\n float: left;\n border-right-width: 0;\n border-radius: 3px 0 0 3px;\n}\n\n.acf-input-append {\n float: right;\n border-left-width: 0;\n border-radius: 0 3px 3px 0;\n}\n\n.acf-input-wrap {\n position: relative;\n overflow: hidden;\n}\n.acf-input-wrap .acf-is-prepended {\n border-radius: 0 6px 6px 0 !important;\n}\n.acf-input-wrap .acf-is-appended {\n border-radius: 6px 0 0 6px !important;\n}\n.acf-input-wrap .acf-is-prepended.acf-is-appended {\n border-radius: 0 !important;\n}\n\n/* rtl */\nhtml[dir=rtl] .acf-input-prepend {\n border-left-width: 0;\n border-right-width: 1px;\n border-radius: 0 3px 3px 0;\n float: right;\n}\n\nhtml[dir=rtl] .acf-input-append {\n border-left-width: 1px;\n border-right-width: 0;\n border-radius: 3px 0 0 3px;\n float: left;\n}\n\nhtml[dir=rtl] input.acf-is-prepended {\n border-radius: 3px 0 0 3px !important;\n}\n\nhtml[dir=rtl] input.acf-is-appended {\n border-radius: 0 3px 3px 0 !important;\n}\n\nhtml[dir=rtl] input.acf-is-prepended.acf-is-appended {\n border-radius: 0 !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Color Picker\n*\n*-----------------------------------------------------------------------------*/\n.acf-color-picker .wp-color-result {\n border-color: #7e8993;\n}\n.acf-admin-3-8 .acf-color-picker .wp-color-result {\n border-color: #ccd0d4;\n}\n.acf-color-picker .wp-picker-active {\n position: relative;\n z-index: 1;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Url\n*\n*-----------------------------------------------------------------------------*/\n.acf-url i {\n position: absolute;\n top: 5px;\n left: 5px;\n opacity: 0.5;\n color: #7e8993;\n}\n.acf-url input[type=url] {\n padding-left: 27px !important;\n}\n.acf-url.-valid i {\n opacity: 1;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Select2 (v3)\n*\n*-----------------------------------------------------------------------------*/\n.select2-container.-acf {\n /* open */\n /* single open */\n}\n.select2-container.-acf .select2-choices {\n background: #fff;\n border-color: #ddd;\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;\n min-height: 31px;\n}\n.select2-container.-acf .select2-choices .select2-search-choice {\n margin: 5px 0 5px 5px;\n padding: 3px 5px 3px 18px;\n border-color: #bbb;\n background: #f9f9f9;\n box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;\n /* sortable item*/\n /* sortable shadow */\n}\n.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper {\n background: #5897fb;\n border-color: #3f87fa;\n color: #fff !important;\n box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);\n}\n.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper a {\n visibility: hidden;\n}\n.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-placeholder {\n background-color: #f7f7f7;\n border-color: #f7f7f7;\n visibility: visible !important;\n}\n.select2-container.-acf .select2-choices .select2-search-choice-focus {\n border-color: #999;\n}\n.select2-container.-acf .select2-choices .select2-search-field input {\n height: 31px;\n line-height: 22px;\n margin: 0;\n padding: 5px 5px 5px 7px;\n}\n.select2-container.-acf .select2-choice {\n border-color: #bbbbbb;\n}\n.select2-container.-acf .select2-choice .select2-arrow {\n background: transparent;\n border-left-color: #dfdfdf;\n padding-left: 1px;\n}\n.select2-container.-acf .select2-choice .select2-result-description {\n display: none;\n}\n.select2-container.-acf.select2-container-active .select2-choices, .select2-container.-acf.select2-dropdown-open .select2-choices {\n border-color: #5b9dd9;\n border-radius: 3px 3px 0 0;\n}\n.select2-container.-acf.select2-dropdown-open .select2-choice {\n background: #fff;\n border-color: #5b9dd9;\n}\n\n/* rtl */\nhtml[dir=rtl] .select2-container.-acf .select2-search-choice-close {\n left: 24px;\n}\nhtml[dir=rtl] .select2-container.-acf .select2-choice > .select2-chosen {\n margin-left: 42px;\n}\nhtml[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow {\n padding-left: 0;\n padding-right: 1px;\n}\n\n/* description */\n.select2-drop {\n /* search*/\n /* result */\n}\n.select2-drop .select2-search {\n padding: 4px 4px 0;\n}\n.select2-drop .select2-result {\n /* hover*/\n}\n.select2-drop .select2-result .select2-result-description {\n color: #999;\n font-size: 12px;\n margin-left: 5px;\n}\n.select2-drop .select2-result.select2-highlighted .select2-result-description {\n color: #fff;\n opacity: 0.75;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Select2 (v4)\n*\n*-----------------------------------------------------------------------------*/\n.select2-container.-acf li {\n margin-bottom: 0;\n}\n.select2-container.-acf[data-select2-id^=select2-data] .select2-selection--multiple {\n overflow: hidden;\n}\n.select2-container.-acf .select2-selection {\n border-color: #7e8993;\n}\n.acf-admin-3-8 .select2-container.-acf .select2-selection {\n border-color: #aaa;\n}\n.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child {\n float: none;\n}\n.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child input {\n width: 100% !important;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__rendered {\n padding-right: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field] {\n display: inline;\n padding: 0;\n margin: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field] .select2-selection__choice {\n margin-right: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice {\n background-color: #f7f7f7;\n border-color: #cccccc;\n max-width: 100%;\n overflow: hidden;\n word-wrap: normal !important;\n white-space: normal;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper {\n background: #0783BE;\n border-color: #066998;\n color: #fff !important;\n box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper span {\n visibility: hidden;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {\n position: static;\n border-right: none;\n padding: 0;\n}\n.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-placeholder {\n background-color: #F2F4F7;\n border-color: #F2F4F7;\n visibility: visible !important;\n}\n.select2-container.-acf .select2-selection--multiple .select2-search__field {\n box-shadow: none !important;\n min-height: 0;\n}\n.acf-row .select2-container.-acf .select2-selection--single {\n overflow: hidden;\n}\n.acf-row .select2-container.-acf .select2-selection--single .select2-selection__rendered {\n white-space: normal;\n}\n\n.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\n.select2-dropdown.select2-dropdown--above {\n margin-top: 0;\n}\n\n.select2-container--default .select2-results__option[aria-selected=true] {\n background-color: #F9FAFB !important;\n color: #667085;\n}\n.select2-container--default .select2-results__option[aria-selected=true]:hover {\n color: #399CCB;\n}\n\n.select2-container--default .select2-results__option--highlighted[aria-selected] {\n color: #fff !important;\n background-color: #0783BE !important;\n}\n\n.select2-dropdown .select2-results__option {\n margin-bottom: 0;\n}\n\n.select2-container .select2-dropdown {\n z-index: 900000;\n}\n.select2-container .select2-dropdown .select2-search__field {\n line-height: 1.4;\n min-height: 0;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Link\n*\n*-----------------------------------------------------------------------------*/\n.acf-link .link-wrap {\n display: none;\n border: #ccd0d4 solid 1px;\n border-radius: 3px;\n padding: 5px;\n line-height: 26px;\n background: #fff;\n word-wrap: break-word;\n word-break: break-all;\n}\n.acf-link .link-wrap .link-title {\n padding: 0 5px;\n}\n.acf-link.-value .button {\n display: none;\n}\n.acf-link.-value .acf-icon.-link-ext {\n display: none;\n}\n.acf-link.-value .link-wrap {\n display: inline-block;\n}\n.acf-link.-external .acf-icon.-link-ext {\n display: inline-block;\n}\n\n#wp-link-backdrop {\n z-index: 900000 !important;\n}\n\n#wp-link-wrap {\n z-index: 900001 !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Radio\n*\n*-----------------------------------------------------------------------------*/\nul.acf-radio-list,\nul.acf-checkbox-list {\n background: transparent;\n border: 1px solid transparent;\n position: relative;\n padding: 1px;\n margin: 0;\n /* hl */\n /* rtl */\n}\nul.acf-radio-list:focus-within,\nul.acf-checkbox-list:focus-within {\n border: 1px solid #A5D2E7;\n border-radius: 6px;\n}\nul.acf-radio-list li,\nul.acf-checkbox-list li {\n font-size: 13px;\n line-height: 22px;\n margin: 0;\n position: relative;\n word-wrap: break-word;\n /* attachment sidebar fix*/\n}\nul.acf-radio-list li label,\nul.acf-checkbox-list li label {\n display: inline;\n}\nul.acf-radio-list li input[type=checkbox],\nul.acf-radio-list li input[type=radio],\nul.acf-checkbox-list li input[type=checkbox],\nul.acf-checkbox-list li input[type=radio] {\n margin: -1px 4px 0 0;\n vertical-align: middle;\n}\nul.acf-radio-list li input[type=text],\nul.acf-checkbox-list li input[type=text] {\n width: auto;\n vertical-align: middle;\n margin: 2px 0;\n}\nul.acf-radio-list li span,\nul.acf-checkbox-list li span {\n float: none;\n}\nul.acf-radio-list li i,\nul.acf-checkbox-list li i {\n vertical-align: middle;\n}\nul.acf-radio-list.acf-hl li,\nul.acf-checkbox-list.acf-hl li {\n margin-right: 20px;\n clear: none;\n}\nhtml[dir=rtl] ul.acf-radio-list input[type=checkbox],\nhtml[dir=rtl] ul.acf-radio-list input[type=radio],\nhtml[dir=rtl] ul.acf-checkbox-list input[type=checkbox],\nhtml[dir=rtl] ul.acf-checkbox-list input[type=radio] {\n margin-left: 4px;\n margin-right: 0;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Button Group\n*\n*-----------------------------------------------------------------------------*/\n.acf-button-group {\n display: inline-block;\n /* default (horizontal) */\n /* vertical */\n}\n.acf-button-group label {\n display: inline-block;\n border: #7e8993 solid 1px;\n position: relative;\n z-index: 1;\n padding: 5px 10px;\n background: #fff;\n}\n.acf-button-group label:hover {\n color: #016087;\n background: #f3f5f6;\n border-color: #0071a1;\n z-index: 2;\n}\n.acf-button-group label.selected {\n border-color: #007cba;\n background: #008dd4;\n color: #fff;\n z-index: 2;\n}\n.acf-button-group input {\n display: none !important;\n}\n.acf-button-group {\n padding-left: 1px;\n display: inline-flex;\n flex-direction: row;\n flex-wrap: nowrap;\n}\n.acf-button-group label {\n margin: 0 0 0 -1px;\n flex: 1;\n text-align: center;\n white-space: nowrap;\n}\n.acf-button-group label:first-child {\n border-radius: 3px 0 0 3px;\n}\nhtml[dir=rtl] .acf-button-group label:first-child {\n border-radius: 0 3px 3px 0;\n}\n.acf-button-group label:last-child {\n border-radius: 0 3px 3px 0;\n}\nhtml[dir=rtl] .acf-button-group label:last-child {\n border-radius: 3px 0 0 3px;\n}\n.acf-button-group label:only-child {\n border-radius: 3px;\n}\n.acf-button-group.-vertical {\n padding-left: 0;\n padding-top: 1px;\n flex-direction: column;\n}\n.acf-button-group.-vertical label {\n margin: -1px 0 0 0;\n}\n.acf-button-group.-vertical label:first-child {\n border-radius: 3px 3px 0 0;\n}\n.acf-button-group.-vertical label:last-child {\n border-radius: 0 0 3px 3px;\n}\n.acf-button-group.-vertical label:only-child {\n border-radius: 3px;\n}\n.acf-admin-3-8 .acf-button-group label {\n border-color: #ccd0d4;\n}\n.acf-admin-3-8 .acf-button-group label:hover {\n border-color: #0071a1;\n}\n.acf-admin-3-8 .acf-button-group label.selected {\n border-color: #007cba;\n}\n\n.post-type-acf-field-group .acf-button-group {\n display: flex;\n align-items: stretch;\n align-content: center;\n height: 40px;\n border-radius: 6px;\n box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.1);\n}\n.post-type-acf-field-group .acf-button-group label {\n display: inline-flex;\n align-items: center;\n align-content: center;\n border: #D0D5DD solid 1px;\n padding: 6px 16px;\n color: #475467;\n font-weight: 500;\n}\n.post-type-acf-field-group .acf-button-group label:hover {\n color: #0783BE;\n}\n.post-type-acf-field-group .acf-button-group label.selected {\n background: #F9FAFB;\n color: #0783BE;\n}\n.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice {\n display: inline-flex;\n align-items: center;\n padding-top: 4px;\n padding-right: auto;\n padding-bottom: 4px;\n padding-left: 8px;\n background-color: #EBF5FA;\n border-color: #A5D2E7;\n color: #0783BE;\n}\n.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {\n order: 2;\n width: 14px;\n height: 14px;\n margin-right: 0;\n margin-left: 4px;\n color: #6BB5D8;\n text-indent: 100%;\n white-space: nowrap;\n overflow: hidden;\n}\n.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {\n color: #0783BE;\n}\n.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:before {\n content: \"\";\n display: block;\n width: 14px;\n height: 14px;\n top: 0;\n left: 0;\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-close.svg\");\n mask-image: url(\"../../images/icons/icon-close.svg\");\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Checkbox\n*\n*-----------------------------------------------------------------------------*/\n.acf-checkbox-list .button {\n margin: 10px 0 0;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* True / False\n*\n*-----------------------------------------------------------------------------*/\n.acf-switch {\n display: inline-block;\n border-radius: 5px;\n cursor: pointer;\n position: relative;\n background: #f5f5f5;\n height: 30px;\n vertical-align: middle;\n border: #7e8993 solid 1px;\n -webkit-transition: background 0.25s ease;\n -moz-transition: background 0.25s ease;\n -o-transition: background 0.25s ease;\n transition: background 0.25s ease;\n /* hover */\n /* active */\n /* message */\n}\n.acf-switch span {\n display: inline-block;\n float: left;\n text-align: center;\n font-size: 13px;\n line-height: 22px;\n padding: 4px 10px;\n min-width: 15px;\n}\n.acf-switch span i {\n vertical-align: middle;\n}\n.acf-switch .acf-switch-on {\n color: #fff;\n text-shadow: #007cba 0 1px 0;\n}\n.acf-switch .acf-switch-slider {\n position: absolute;\n top: 2px;\n left: 2px;\n bottom: 2px;\n right: 50%;\n z-index: 1;\n background: #fff;\n border-radius: 3px;\n border: #7e8993 solid 1px;\n -webkit-transition: all 0.25s ease;\n -moz-transition: all 0.25s ease;\n -o-transition: all 0.25s ease;\n transition: all 0.25s ease;\n transition-property: left, right;\n}\n.acf-switch:hover, .acf-switch.-focus {\n border-color: #0071a1;\n background: #f3f5f6;\n color: #016087;\n}\n.acf-switch:hover .acf-switch-slider, .acf-switch.-focus .acf-switch-slider {\n border-color: #0071a1;\n}\n.acf-switch.-on {\n background: #0d99d5;\n border-color: #007cba;\n /* hover */\n}\n.acf-switch.-on .acf-switch-slider {\n left: 50%;\n right: 2px;\n border-color: #007cba;\n}\n.acf-switch.-on:hover {\n border-color: #007cba;\n}\n.acf-switch + span {\n margin-left: 6px;\n}\n.acf-admin-3-8 .acf-switch {\n border-color: #ccd0d4;\n}\n.acf-admin-3-8 .acf-switch .acf-switch-slider {\n border-color: #ccd0d4;\n}\n.acf-admin-3-8 .acf-switch:hover, .acf-admin-3-8 .acf-switch.-focus {\n border-color: #0071a1;\n}\n.acf-admin-3-8 .acf-switch:hover .acf-switch-slider, .acf-admin-3-8 .acf-switch.-focus .acf-switch-slider {\n border-color: #0071a1;\n}\n.acf-admin-3-8 .acf-switch.-on {\n border-color: #007cba;\n}\n.acf-admin-3-8 .acf-switch.-on .acf-switch-slider {\n border-color: #007cba;\n}\n.acf-admin-3-8 .acf-switch.-on:hover {\n border-color: #007cba;\n}\n\n/* checkbox */\n.acf-switch-input {\n opacity: 0;\n position: absolute;\n margin: 0;\n}\n\n.acf-admin-single-field-group .acf-true-false {\n border: 1px solid transparent;\n}\n.acf-admin-single-field-group .acf-true-false:focus-within {\n border: 1px solid #399CCB;\n border-radius: 120px;\n}\n\n/* in media modal */\n.compat-item .acf-true-false .message {\n float: none;\n padding: 0;\n vertical-align: middle;\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tGoogle Map\n*\n*-------------------------------------------------------------------------*/\n.acf-google-map {\n position: relative;\n border: #ccd0d4 solid 1px;\n background: #fff;\n}\n.acf-google-map .title {\n position: relative;\n border-bottom: #ccd0d4 solid 1px;\n}\n.acf-google-map .title .search {\n margin: 0;\n font-size: 14px;\n line-height: 30px;\n height: 40px;\n padding: 5px 10px;\n border: 0 none;\n box-shadow: none;\n border-radius: 0;\n font-family: inherit;\n cursor: text;\n}\n.acf-google-map .title .acf-loading {\n position: absolute;\n top: 10px;\n right: 11px;\n display: none;\n}\n.acf-google-map .title .acf-icon:active {\n display: inline-block !important;\n}\n.acf-google-map .canvas {\n height: 400px;\n}\n.acf-google-map:hover .title .acf-actions {\n display: block;\n}\n.acf-google-map .title .acf-icon.-location {\n display: inline-block;\n}\n.acf-google-map .title .acf-icon.-cancel,\n.acf-google-map .title .acf-icon.-search {\n display: none;\n}\n.acf-google-map.-value .title .search {\n font-weight: bold;\n}\n.acf-google-map.-value .title .acf-icon.-location {\n display: none;\n}\n.acf-google-map.-value .title .acf-icon.-cancel {\n display: inline-block;\n}\n.acf-google-map.-searching .title .acf-icon.-location {\n display: none;\n}\n.acf-google-map.-searching .title .acf-icon.-cancel,\n.acf-google-map.-searching .title .acf-icon.-search {\n display: inline-block;\n}\n.acf-google-map.-searching .title .acf-actions {\n display: block;\n}\n.acf-google-map.-searching .title .search {\n font-weight: normal !important;\n}\n.acf-google-map.-loading .title a {\n display: none !important;\n}\n.acf-google-map.-loading .title i {\n display: inline-block;\n}\n\n/* autocomplete */\n.pac-container {\n border-width: 1px 0;\n box-shadow: none;\n}\n\n.pac-container:after {\n display: none;\n}\n\n.pac-container .pac-item:first-child {\n border-top: 0 none;\n}\n\n.pac-container .pac-item {\n padding: 5px 10px;\n cursor: pointer;\n}\n\nhtml[dir=rtl] .pac-container .pac-item {\n text-align: right;\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tRelationship\n*\n*-------------------------------------------------------------------------*/\n.acf-relationship {\n background: #fff;\n border: #ccd0d4 solid 1px;\n /* list */\n /* selection (bottom) */\n}\n.acf-relationship .filters {\n border-bottom: #ccd0d4 solid 1px;\n background: #fff;\n /* widths */\n}\n.acf-relationship .filters:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-relationship .filters .filter {\n margin: 0;\n padding: 0;\n float: left;\n width: 100%;\n box-sizing: border-box;\n padding: 7px 7px 7px 0;\n}\n.acf-relationship .filters .filter:first-child {\n padding-left: 7px;\n}\n.acf-relationship .filters .filter input,\n.acf-relationship .filters .filter select {\n margin: 0;\n float: none; /* potential fix for media popup? */\n}\n.acf-relationship .filters .filter input:focus, .acf-relationship .filters .filter input:active,\n.acf-relationship .filters .filter select:focus,\n.acf-relationship .filters .filter select:active {\n outline: none;\n box-shadow: none;\n}\n.acf-relationship .filters .filter input {\n border-color: transparent;\n box-shadow: none;\n padding-left: 3px;\n padding-right: 3px;\n}\n.acf-relationship .filters.-f2 .filter {\n width: 50%;\n}\n.acf-relationship .filters.-f3 .filter {\n width: 25%;\n}\n.acf-relationship .filters.-f3 .filter.-search {\n width: 50%;\n}\n.acf-relationship .list {\n margin: 0;\n padding: 5px;\n height: 160px;\n overflow: auto;\n}\n.acf-relationship .list .acf-rel-label,\n.acf-relationship .list .acf-rel-item,\n.acf-relationship .list p {\n padding: 5px;\n margin: 0;\n display: block;\n position: relative;\n min-height: 18px;\n}\n.acf-relationship .list .acf-rel-label {\n font-weight: bold;\n}\n.acf-relationship .list .acf-rel-item {\n cursor: pointer;\n /* hover */\n /* disabled */\n}\n.acf-relationship .list .acf-rel-item b {\n text-decoration: underline;\n font-weight: normal;\n}\n.acf-relationship .list .acf-rel-item .thumbnail {\n background: #e0e0e0;\n width: 22px;\n height: 22px;\n float: left;\n margin: -2px 5px 0 0;\n}\n.acf-relationship .list .acf-rel-item .thumbnail img {\n max-width: 22px;\n max-height: 22px;\n margin: 0 auto;\n display: block;\n}\n.acf-relationship .list .acf-rel-item .thumbnail.-icon {\n background: #fff;\n}\n.acf-relationship .list .acf-rel-item .thumbnail.-icon img {\n max-height: 20px;\n margin-top: 1px;\n}\n.acf-relationship .list .acf-rel-item:hover {\n background: #3875d7;\n color: #fff;\n}\n.acf-relationship .list .acf-rel-item:hover .thumbnail {\n background: #a2bfec;\n}\n.acf-relationship .list .acf-rel-item:hover .thumbnail.-icon {\n background: #fff;\n}\n.acf-relationship .list .acf-rel-item.disabled {\n opacity: 0.5;\n}\n.acf-relationship .list .acf-rel-item.disabled:hover {\n background: transparent;\n color: #333;\n cursor: default;\n}\n.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail {\n background: #e0e0e0;\n}\n.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail.-icon {\n background: #fff;\n}\n.acf-relationship .list ul {\n padding-bottom: 5px;\n}\n.acf-relationship .list ul .acf-rel-label,\n.acf-relationship .list ul .acf-rel-item,\n.acf-relationship .list ul p {\n padding-left: 20px;\n}\n.acf-relationship .selection {\n position: relative;\n /* choices */\n /* values */\n}\n.acf-relationship .selection:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-relationship .selection .values,\n.acf-relationship .selection .choices {\n width: 50%;\n background: #fff;\n float: left;\n}\n.acf-relationship .selection .choices {\n background: #f9f9f9;\n}\n.acf-relationship .selection .choices .list {\n border-right: #dfdfdf solid 1px;\n}\n.acf-relationship .selection .values .acf-icon {\n position: absolute;\n top: 4px;\n right: 7px;\n display: none;\n /* rtl */\n}\nhtml[dir=rtl] .acf-relationship .selection .values .acf-icon {\n right: auto;\n left: 7px;\n}\n.acf-relationship .selection .values .acf-rel-item:hover .acf-icon {\n display: block;\n}\n.acf-relationship .selection .values .acf-rel-item {\n cursor: move;\n}\n.acf-relationship .selection .values .acf-rel-item b {\n text-decoration: none;\n}\n\n/* menu item fix */\n.menu-item .acf-relationship ul {\n width: auto;\n}\n.menu-item .acf-relationship li {\n display: block;\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tWYSIWYG\n*\n*-------------------------------------------------------------------------*/\n.acf-editor-wrap.delay .acf-editor-toolbar {\n content: \"\";\n display: block;\n background: #f5f5f5;\n border-bottom: #dddddd solid 1px;\n color: #555d66;\n padding: 10px;\n}\n.acf-editor-wrap.delay .wp-editor-area {\n padding: 10px;\n border: none;\n color: inherit !important;\n}\n.acf-editor-wrap iframe {\n min-height: 200px;\n}\n.acf-editor-wrap .wp-editor-container {\n border: 1px solid #ccd0d4;\n box-shadow: none !important;\n}\n.acf-editor-wrap .wp-editor-tabs {\n box-sizing: content-box;\n}\n.acf-editor-wrap .wp-switch-editor {\n border-color: #ccd0d4;\n border-bottom-color: transparent;\n}\n\n#mce_fullscreen_container {\n z-index: 900000 !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tTab\n*\n*-----------------------------------------------------------------------------*/\n.acf-field-tab {\n display: none !important;\n}\n\n.hidden-by-tab {\n display: none !important;\n}\n\n.acf-tab-wrap {\n clear: both;\n z-index: 1;\n}\n\n.acf-tab-group {\n border-bottom: #ccc solid 1px;\n padding: 10px 10px 0;\n}\n.acf-tab-group li {\n margin: 0 0.5em 0 0;\n}\n.acf-tab-group li a {\n padding: 5px 10px;\n display: block;\n color: #555;\n font-size: 14px;\n font-weight: 600;\n line-height: 24px;\n border: #ccc solid 1px;\n border-bottom: 0 none;\n text-decoration: none;\n background: #e5e5e5;\n transition: none;\n}\n.acf-tab-group li a:hover {\n background: #fff;\n}\n.acf-tab-group li a:focus {\n outline: none;\n box-shadow: none;\n}\n.acf-tab-group li a:empty {\n display: none;\n}\nhtml[dir=rtl] .acf-tab-group li {\n margin: 0 0 0 0.5em;\n}\n.acf-tab-group li.active a {\n background: #f1f1f1;\n color: #000;\n padding-bottom: 6px;\n margin-bottom: -1px;\n position: relative;\n z-index: 1;\n}\n\n.acf-fields > .acf-tab-wrap {\n background: #f9f9f9;\n}\n.acf-fields > .acf-tab-wrap .acf-tab-group {\n position: relative;\n border-top: #ccd0d4 solid 1px;\n border-bottom: #ccd0d4 solid 1px;\n z-index: 2;\n margin-bottom: -1px;\n}\n.acf-admin-3-8 .acf-fields > .acf-tab-wrap .acf-tab-group {\n border-color: #dfdfdf;\n}\n\n.acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-left: 20%;\n /* mobile */\n /* rtl */\n}\n@media screen and (max-width: 640px) {\n .acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-left: 10px;\n }\n}\nhtml[dir=rtl] .acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-left: 0;\n padding-right: 20%;\n /* mobile */\n}\n@media screen and (max-width: 850px) {\n html[dir=rtl] .acf-fields.-left > .acf-tab-wrap .acf-tab-group {\n padding-right: 10px;\n }\n}\n\n.acf-tab-wrap.-left .acf-tab-group {\n position: absolute;\n left: 0;\n width: 20%;\n border: 0 none;\n padding: 0 !important; /* important overrides 'left aligned labels' */\n margin: 1px 0 0;\n}\n.acf-tab-wrap.-left .acf-tab-group li {\n float: none;\n margin: -1px 0 0;\n}\n.acf-tab-wrap.-left .acf-tab-group li a {\n border: 1px solid #ededed;\n font-size: 13px;\n line-height: 18px;\n color: #0073aa;\n padding: 10px;\n margin: 0;\n font-weight: normal;\n border-width: 1px 0;\n border-radius: 0;\n background: transparent;\n}\n.acf-tab-wrap.-left .acf-tab-group li a:hover {\n color: #00a0d2;\n}\n.acf-tab-wrap.-left .acf-tab-group li.active a {\n border-color: #dfdfdf;\n color: #000;\n margin-right: -1px;\n background: #fff;\n}\nhtml[dir=rtl] .acf-tab-wrap.-left .acf-tab-group {\n left: auto;\n right: 0;\n}\nhtml[dir=rtl] .acf-tab-wrap.-left .acf-tab-group li.active a {\n margin-right: 0;\n margin-left: -1px;\n}\n.acf-field + .acf-tab-wrap.-left:before {\n content: \"\";\n display: block;\n position: relative;\n z-index: 1;\n height: 10px;\n border-top: #dfdfdf solid 1px;\n border-bottom: #dfdfdf solid 1px;\n margin-bottom: -1px;\n}\n.acf-tab-wrap.-left:first-child .acf-tab-group li:first-child a {\n border-top: none;\n}\n\n/* sidebar */\n.acf-fields.-sidebar {\n padding: 0 0 0 20% !important;\n position: relative;\n /* before */\n /* rtl */\n}\n.acf-fields.-sidebar:before {\n content: \"\";\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n width: 20%;\n bottom: 0;\n border-right: #dfdfdf solid 1px;\n background: #f9f9f9;\n z-index: 1;\n}\nhtml[dir=rtl] .acf-fields.-sidebar {\n padding: 0 20% 0 0 !important;\n}\nhtml[dir=rtl] .acf-fields.-sidebar:before {\n border-left: #dfdfdf solid 1px;\n border-right-width: 0;\n left: auto;\n right: 0;\n}\n.acf-fields.-sidebar.-left {\n padding: 0 0 0 180px !important;\n /* rtl */\n}\nhtml[dir=rtl] .acf-fields.-sidebar.-left {\n padding: 0 180px 0 0 !important;\n}\n.acf-fields.-sidebar.-left:before {\n background: #f1f1f1;\n border-color: #dfdfdf;\n width: 180px;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group {\n width: 180px;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li a {\n border-color: #e4e4e4;\n}\n.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a {\n background: #f9f9f9;\n}\n.acf-fields.-sidebar > .acf-field-tab + .acf-field {\n border-top: none;\n}\n\n.acf-fields.-clear > .acf-tab-wrap {\n background: transparent;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group {\n margin-top: 0;\n border-top: none;\n padding-left: 0;\n padding-right: 0;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {\n background: #e5e5e5;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover {\n background: #fff;\n}\n.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a {\n background: #f1f1f1;\n}\n\n/* seamless */\n.acf-postbox.seamless > .acf-fields.-sidebar {\n margin-left: 0 !important;\n}\n.acf-postbox.seamless > .acf-fields.-sidebar:before {\n background: transparent;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap {\n background: transparent;\n margin-bottom: 10px;\n padding-left: 12px;\n padding-right: 12px;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group {\n border-top: 0 none;\n border-color: #ccd0d4;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li a {\n background: #e5e5e5;\n border-color: #ccd0d4;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {\n background: #fff;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li.active a {\n background: #f1f1f1;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left:before {\n border-top: none;\n height: auto;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group {\n margin-bottom: 0;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group li a {\n border-width: 1px 0 1px 1px !important;\n border-color: #cccccc;\n background: #e5e5e5;\n}\n.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group li.active a {\n background: #f1f1f1;\n}\n\n.menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a,\n.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {\n background: #f1f1f1;\n}\n.menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover, .menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a,\n.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover,\n.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a {\n background: #fff;\n}\n\n.compat-item .acf-tab-wrap td {\n display: block;\n}\n\n/* within gallery sidebar */\n.acf-gallery-side .acf-tab-wrap {\n border-top: 0 none !important;\n}\n\n.acf-gallery-side .acf-tab-wrap .acf-tab-group {\n margin: 10px 0 !important;\n padding: 0 !important;\n}\n\n.acf-gallery-side .acf-tab-group li.active a {\n background: #f9f9f9 !important;\n}\n\n/* withing widget */\n.widget .acf-tab-group {\n border-bottom-color: #e8e8e8;\n}\n\n.widget .acf-tab-group li a {\n background: #f1f1f1;\n}\n\n.widget .acf-tab-group li.active a {\n background: #fff;\n}\n\n/* media popup (edit image) */\n.media-modal.acf-expanded .compat-attachment-fields > tbody > tr.acf-tab-wrap .acf-tab-group {\n padding-left: 23%;\n border-bottom-color: #dddddd;\n}\n\n/* table */\n.form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n padding: 0 5px 0 210px;\n}\n\n/* rtl */\nhtml[dir=rtl] .form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n padding: 0 210px 0 5px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\toembed\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-oembed {\n position: relative;\n border: #ccd0d4 solid 1px;\n background: #fff;\n}\n.acf-oembed .title {\n position: relative;\n border-bottom: #ccd0d4 solid 1px;\n padding: 5px 10px;\n}\n.acf-oembed .title .input-search {\n margin: 0;\n font-size: 14px;\n line-height: 30px;\n height: 30px;\n padding: 0;\n border: 0 none;\n box-shadow: none;\n border-radius: 0;\n font-family: inherit;\n cursor: text;\n}\n.acf-oembed .title .acf-actions {\n padding: 6px;\n}\n.acf-oembed .canvas {\n position: relative;\n min-height: 250px;\n background: #f9f9f9;\n}\n.acf-oembed .canvas .canvas-media {\n position: relative;\n z-index: 1;\n}\n.acf-oembed .canvas iframe {\n display: block;\n margin: 0;\n padding: 0;\n width: 100%;\n}\n.acf-oembed .canvas .acf-icon.-picture {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 0;\n height: 42px;\n width: 42px;\n font-size: 42px;\n color: #999;\n}\n.acf-oembed .canvas .acf-loading-overlay {\n background: rgba(255, 255, 255, 0.9);\n}\n.acf-oembed .canvas .canvas-error {\n position: absolute;\n top: 50%;\n left: 0%;\n right: 0%;\n margin: -9px 0 0 0;\n text-align: center;\n display: none;\n}\n.acf-oembed .canvas .canvas-error p {\n padding: 8px;\n margin: 0;\n display: inline;\n}\n.acf-oembed.has-value .canvas {\n min-height: 50px;\n}\n.acf-oembed.has-value .input-search {\n font-weight: bold;\n}\n.acf-oembed.has-value .title:hover .acf-actions {\n display: block;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tImage\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-image-uploader {\n position: relative;\n /* image wrap*/\n /* input */\n /* rtl */\n}\n.acf-image-uploader:after {\n display: block;\n clear: both;\n content: \"\";\n}\n.acf-image-uploader p {\n margin: 0;\n}\n.acf-image-uploader .image-wrap {\n position: relative;\n float: left;\n /* hover */\n}\n.acf-image-uploader .image-wrap img {\n max-width: 100%;\n max-height: 100%;\n width: auto;\n height: auto;\n display: block;\n min-width: 30px;\n min-height: 30px;\n background: #f1f1f1;\n margin: 0;\n padding: 0;\n /* svg */\n}\n.acf-image-uploader .image-wrap img[src$=\".svg\"] {\n min-height: 100px;\n min-width: 100px;\n}\n.acf-image-uploader .image-wrap:hover .acf-actions {\n display: block;\n}\n.acf-image-uploader input.button {\n width: auto;\n}\nhtml[dir=rtl] .acf-image-uploader .image-wrap {\n float: right;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tFile\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-file-uploader {\n position: relative;\n /* hover */\n /* rtl */\n}\n.acf-file-uploader p {\n margin: 0;\n}\n.acf-file-uploader .file-wrap {\n border: #ccd0d4 solid 1px;\n min-height: 84px;\n position: relative;\n background: #fff;\n}\n.acf-file-uploader .file-icon {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n padding: 10px;\n background: #f1f1f1;\n border-right: #d5d9dd solid 1px;\n}\n.acf-file-uploader .file-icon img {\n display: block;\n padding: 0;\n margin: 0;\n max-width: 48px;\n}\n.acf-file-uploader .file-info {\n padding: 10px;\n margin-left: 69px;\n}\n.acf-file-uploader .file-info p {\n margin: 0 0 2px;\n font-size: 13px;\n line-height: 1.4em;\n word-break: break-all;\n}\n.acf-file-uploader .file-info a {\n text-decoration: none;\n}\n.acf-file-uploader:hover .acf-actions {\n display: block;\n}\nhtml[dir=rtl] .acf-file-uploader .file-icon {\n left: auto;\n right: 0;\n border-left: #e5e5e5 solid 1px;\n border-right: none;\n}\nhtml[dir=rtl] .acf-file-uploader .file-info {\n margin-right: 69px;\n margin-left: 0;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tDate Picker\n*\n*-----------------------------------------------------------------------------*/\n.acf-ui-datepicker .ui-datepicker {\n z-index: 900000 !important;\n}\n.acf-ui-datepicker .ui-datepicker .ui-widget-header a {\n cursor: pointer;\n transition: none;\n}\n\n/* fix highlight state overriding hover / active */\n.acf-ui-datepicker .ui-state-highlight.ui-state-hover {\n border: 1px solid #98b7e8 !important;\n background: #98b7e8 !important;\n font-weight: normal !important;\n color: #ffffff !important;\n}\n\n.acf-ui-datepicker .ui-state-highlight.ui-state-active {\n border: 1px solid #3875d7 !important;\n background: #3875d7 !important;\n font-weight: normal !important;\n color: #ffffff !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tSeparator field\n*\n*-----------------------------------------------------------------------------*/\n.acf-field-separator {\n /* fields */\n}\n.acf-field-separator .acf-label {\n margin-bottom: 0;\n}\n.acf-field-separator .acf-label label {\n font-weight: normal;\n}\n.acf-field-separator .acf-input {\n display: none;\n}\n.acf-fields > .acf-field-separator {\n background: #f9f9f9;\n border-bottom: 1px solid #dfdfdf;\n border-top: 1px solid #dfdfdf;\n margin-bottom: -1px;\n z-index: 2;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tTaxonomy\n*\n*-----------------------------------------------------------------------------*/\n.acf-taxonomy-field {\n position: relative;\n /* hover */\n /* select */\n}\n.acf-taxonomy-field .categorychecklist-holder {\n border: #ccd0d4 solid 1px;\n border-radius: 3px;\n max-height: 200px;\n overflow: auto;\n}\n.acf-taxonomy-field .acf-checkbox-list {\n margin: 0;\n padding: 10px;\n}\n.acf-taxonomy-field .acf-checkbox-list ul.children {\n padding-left: 18px;\n}\n.acf-taxonomy-field:hover .acf-actions {\n display: block;\n}\n.acf-taxonomy-field[data-ftype=select] .acf-actions {\n padding: 0;\n margin: -9px;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tRange\n*\n*-----------------------------------------------------------------------------*/\n.acf-range-wrap {\n /* rtl */\n}\n.acf-range-wrap .acf-append,\n.acf-range-wrap .acf-prepend {\n display: inline-block;\n vertical-align: middle;\n line-height: 28px;\n margin: 0 7px 0 0;\n}\n.acf-range-wrap .acf-append {\n margin: 0 0 0 7px;\n}\n.acf-range-wrap input[type=range] {\n display: inline-block;\n padding: 0;\n margin: 0;\n vertical-align: middle;\n height: 28px;\n}\n.acf-range-wrap input[type=range]:focus {\n outline: none;\n}\n.acf-range-wrap input[type=number] {\n display: inline-block;\n min-width: 3em;\n margin-left: 10px;\n vertical-align: middle;\n}\nhtml[dir=rtl] .acf-range-wrap input[type=number] {\n margin-right: 10px;\n margin-left: 0;\n}\nhtml[dir=rtl] .acf-range-wrap .acf-append {\n margin: 0 7px 0 0;\n}\nhtml[dir=rtl] .acf-range-wrap .acf-prepend {\n margin: 0 0 0 7px;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* acf-accordion\n*\n*-----------------------------------------------------------------------------*/\n.acf-accordion {\n margin: -1px 0;\n padding: 0;\n background: #fff;\n border-top: 1px solid #d5d9dd;\n border-bottom: 1px solid #d5d9dd;\n z-index: 1;\n}\n.acf-accordion .acf-accordion-title {\n margin: 0;\n padding: 12px;\n font-weight: bold;\n cursor: pointer;\n font-size: inherit;\n font-size: 13px;\n line-height: 1.4em;\n}\n.acf-accordion .acf-accordion-title:hover {\n background: #f3f4f5;\n}\n.acf-accordion .acf-accordion-title label {\n margin: 0;\n padding: 0;\n font-size: 13px;\n line-height: 1.4em;\n}\n.acf-accordion .acf-accordion-title p {\n font-weight: normal;\n}\n.acf-accordion .acf-accordion-title .acf-accordion-icon {\n float: right;\n}\n.acf-accordion .acf-accordion-title svg.acf-accordion-icon {\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n color: #191e23;\n fill: currentColor;\n}\n.acf-accordion .acf-accordion-content {\n margin: 0;\n padding: 0 12px 12px;\n display: none;\n}\n.acf-accordion.-open > .acf-accordion-content {\n display: block;\n}\n\n.acf-field.acf-accordion {\n margin: -1px 0;\n padding: 0 !important;\n border-color: #d5d9dd;\n}\n.acf-field.acf-accordion .acf-label.acf-accordion-title {\n padding: 12px;\n width: auto;\n float: none;\n width: auto;\n}\n.acf-field.acf-accordion .acf-input.acf-accordion-content {\n padding: 0;\n float: none;\n width: auto;\n}\n.acf-field.acf-accordion .acf-input.acf-accordion-content > .acf-fields {\n border-top: #eeeeee solid 1px;\n}\n.acf-field.acf-accordion .acf-input.acf-accordion-content > .acf-fields.-clear {\n padding: 0 12px 15px;\n}\n\n/* field specific (left) */\n.acf-fields.-left > .acf-field.acf-accordion:before {\n display: none;\n}\n.acf-fields.-left > .acf-field.acf-accordion .acf-accordion-title {\n width: auto;\n margin: 0 !important;\n padding: 12px;\n float: none !important;\n}\n.acf-fields.-left > .acf-field.acf-accordion .acf-accordion-content {\n padding: 0 !important;\n}\n\n/* field specific (clear) */\n.acf-fields.-clear > .acf-field.acf-accordion {\n border: #cccccc solid 1px;\n background: transparent;\n}\n.acf-fields.-clear > .acf-field.acf-accordion + .acf-field.acf-accordion {\n margin-top: -16px;\n}\n\n/* table */\ntr.acf-field.acf-accordion {\n background: transparent;\n}\ntr.acf-field.acf-accordion > .acf-input {\n padding: 0 !important;\n border: #cccccc solid 1px;\n}\ntr.acf-field.acf-accordion .acf-accordion-content {\n padding: 0 12px 12px;\n}\n\n/* #addtag */\n#addtag div.acf-field.error {\n border: 0 none;\n padding: 8px 0;\n}\n\n#addtag > .acf-field.acf-accordion {\n padding-right: 0;\n margin-right: 5%;\n}\n#addtag > .acf-field.acf-accordion + p.submit {\n margin-top: 0;\n}\n\n/* border */\ntr.acf-accordion {\n margin: 15px 0 !important;\n}\ntr.acf-accordion + tr.acf-accordion {\n margin-top: -16px !important;\n}\n\n/* seamless */\n.acf-postbox.seamless > .acf-fields > .acf-accordion {\n margin-left: 12px;\n margin-right: 12px;\n border: #ccd0d4 solid 1px;\n}\n\n/* rtl */\n/* menu item */\n/*\n.menu-item-settings > .field-acf > .acf-field.acf-accordion {\n\tborder: #dfdfdf solid 1px;\n\tmargin: 10px -13px 10px -11px;\n\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -11px;\n\t}\n}\n*/\n/* widget */\n.widget .widget-content > .acf-field.acf-accordion {\n border: #dfdfdf solid 1px;\n margin-bottom: 10px;\n}\n.widget .widget-content > .acf-field.acf-accordion .acf-accordion-title {\n margin-bottom: 0;\n}\n.widget .widget-content > .acf-field.acf-accordion + .acf-field.acf-accordion {\n margin-top: -11px;\n}\n\n.media-modal .compat-attachment-fields .acf-field.acf-accordion + .acf-field.acf-accordion {\n margin-top: -1px;\n}\n.media-modal .compat-attachment-fields .acf-field.acf-accordion > .acf-input {\n width: 100%;\n}\n.media-modal .compat-attachment-fields .acf-field.acf-accordion .compat-attachment-fields > tbody > tr > td {\n padding-bottom: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tBlock Editor\n*\n*-----------------------------------------------------------------------------*/\n.block-editor .edit-post-sidebar .acf-postbox > .postbox-header,\n.block-editor .edit-post-sidebar .acf-postbox > .hndle {\n border-bottom-width: 0 !important;\n}\n.block-editor .edit-post-sidebar .acf-postbox.closed > .postbox-header,\n.block-editor .edit-post-sidebar .acf-postbox.closed > .hndle {\n border-bottom-width: 1px !important;\n}\n.block-editor .edit-post-sidebar .acf-fields {\n min-height: 1px;\n overflow: auto;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field {\n border-width: 0;\n border-color: #e2e4e7;\n margin: 16px;\n padding: 0;\n width: auto !important;\n min-height: 0 !important;\n float: none !important;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field > .acf-label {\n margin-bottom: 5px;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field > .acf-label label {\n font-weight: normal;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion {\n padding: 0;\n margin: 0;\n border-top-width: 1px;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion:first-child {\n border-top-width: 0;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-title {\n margin: 0;\n padding: 15px;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-title label {\n font-weight: 500;\n color: rgb(30, 30, 30);\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-title svg.acf-accordion-icon {\n right: 16px;\n}\n.block-editor .edit-post-sidebar .acf-fields > .acf-field.acf-accordion .acf-accordion-content > .acf-fields {\n border-top-width: 0;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Prefix field label & prefix field names\n*\n*-----------------------------------------------------------------------------*/\n.acf-field-setting-prefix_label p.description,\n.acf-field-setting-prefix_name p.description {\n order: 3;\n margin-top: 0;\n margin-left: 16px;\n}\n.acf-field-setting-prefix_label p.description code,\n.acf-field-setting-prefix_name p.description code {\n padding-top: 4px;\n padding-right: 6px;\n padding-bottom: 4px;\n padding-left: 6px;\n background-color: #F2F4F7;\n border-radius: 4px;\n color: #667085;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Editor tab styles\n*\n*-----------------------------------------------------------------------------*/\n.acf-fields > .acf-tab-wrap:first-child .acf-tab-group {\n border-top: none;\n}\n\n.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {\n background: #ffffff;\n}\n\n.acf-fields > .acf-tab-wrap .acf-tab-group li a {\n background: #f1f1f1;\n border-color: #ccd0d4;\n}\n\n.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {\n background: #fff;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tUser\n*\n*--------------------------------------------------------------------------------------------*/\n.form-table > tbody {\n /* field */\n /* tab wrap */\n /* misc */\n}\n.form-table > tbody > .acf-field {\n /* label */\n /* input */\n}\n.form-table > tbody > .acf-field > .acf-label {\n padding: 20px 10px 20px 0;\n width: 210px;\n /* rtl */\n}\nhtml[dir=rtl] .form-table > tbody > .acf-field > .acf-label {\n padding: 20px 0 20px 10px;\n}\n.form-table > tbody > .acf-field > .acf-label label {\n font-size: 14px;\n color: #23282d;\n}\n.form-table > tbody > .acf-field > .acf-input {\n padding: 15px 10px;\n /* rtl */\n}\nhtml[dir=rtl] .form-table > tbody > .acf-field > .acf-input {\n padding: 15px 10px 15px 5%;\n}\n.form-table > tbody > .acf-tab-wrap td {\n padding: 15px 5% 15px 0;\n /* rtl */\n}\nhtml[dir=rtl] .form-table > tbody > .acf-tab-wrap td {\n padding: 15px 0 15px 5%;\n}\n.form-table > tbody .form-table th.acf-th {\n width: auto;\n}\n\n#your-profile,\n#createuser {\n /* override for user css */\n /* allow sub fields to display correctly */\n}\n#your-profile .acf-field input[type=text],\n#your-profile .acf-field input[type=password],\n#your-profile .acf-field input[type=number],\n#your-profile .acf-field input[type=search],\n#your-profile .acf-field input[type=email],\n#your-profile .acf-field input[type=url],\n#your-profile .acf-field select,\n#createuser .acf-field input[type=text],\n#createuser .acf-field input[type=password],\n#createuser .acf-field input[type=number],\n#createuser .acf-field input[type=search],\n#createuser .acf-field input[type=email],\n#createuser .acf-field input[type=url],\n#createuser .acf-field select {\n max-width: 25em;\n}\n#your-profile .acf-field textarea,\n#createuser .acf-field textarea {\n max-width: 500px;\n}\n#your-profile .acf-field .acf-field input[type=text],\n#your-profile .acf-field .acf-field input[type=password],\n#your-profile .acf-field .acf-field input[type=number],\n#your-profile .acf-field .acf-field input[type=search],\n#your-profile .acf-field .acf-field input[type=email],\n#your-profile .acf-field .acf-field input[type=url],\n#your-profile .acf-field .acf-field textarea,\n#your-profile .acf-field .acf-field select,\n#createuser .acf-field .acf-field input[type=text],\n#createuser .acf-field .acf-field input[type=password],\n#createuser .acf-field .acf-field input[type=number],\n#createuser .acf-field .acf-field input[type=search],\n#createuser .acf-field .acf-field input[type=email],\n#createuser .acf-field .acf-field input[type=url],\n#createuser .acf-field .acf-field textarea,\n#createuser .acf-field .acf-field select {\n max-width: none;\n}\n\n#registerform h2 {\n margin: 1em 0;\n}\n#registerform .acf-field {\n margin-top: 0;\n /*\n \t\t.acf-input {\n \t\t\tinput {\n \t\t\t\tfont-size: 24px;\n \t\t\t\tpadding: 5px;\n \t\t\t\theight: auto;\n \t\t\t}\n \t\t}\n */\n}\n#registerform .acf-field .acf-label {\n margin-bottom: 0;\n}\n#registerform .acf-field .acf-label label {\n font-weight: normal;\n line-height: 1.5;\n}\n#registerform p.submit {\n text-align: right;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tTerm\n*\n*--------------------------------------------------------------------------------------------*/\n#acf-term-fields {\n padding-right: 5%;\n}\n#acf-term-fields > .acf-field > .acf-label {\n margin: 0;\n}\n#acf-term-fields > .acf-field > .acf-label label {\n font-size: 12px;\n font-weight: normal;\n}\n\np.submit .spinner,\np.submit .acf-spinner {\n vertical-align: top;\n float: none;\n margin: 4px 4px 0;\n}\n\n#edittag .acf-fields.-left > .acf-field {\n padding-left: 220px;\n}\n#edittag .acf-fields.-left > .acf-field:before {\n width: 209px;\n}\n#edittag .acf-fields.-left > .acf-field > .acf-label {\n width: 220px;\n margin-left: -220px;\n padding: 0 10px;\n}\n#edittag .acf-fields.-left > .acf-field > .acf-input {\n padding: 0;\n}\n\n#edittag > .acf-fields.-left {\n width: 96%;\n}\n#edittag > .acf-fields.-left > .acf-field > .acf-label {\n padding-left: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tComment\n*\n*--------------------------------------------------------------------------------------------*/\n.editcomment td:first-child {\n white-space: nowrap;\n width: 131px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWidget\n*\n*--------------------------------------------------------------------------------------------*/\n#widgets-right .widget .acf-field .description {\n padding-left: 0;\n padding-right: 0;\n}\n\n.acf-widget-fields > .acf-field .acf-label {\n margin-bottom: 5px;\n}\n.acf-widget-fields > .acf-field .acf-label label {\n font-weight: normal;\n margin: 0;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tNav Menu\n*\n*--------------------------------------------------------------------------------------------*/\n.acf-menu-settings {\n border-top: 1px solid #eee;\n margin-top: 2em;\n}\n.acf-menu-settings.-seamless {\n border-top: none;\n margin-top: 15px;\n}\n.acf-menu-settings.-seamless > h2 {\n display: none;\n}\n.acf-menu-settings .list li {\n display: block;\n margin-bottom: 0;\n}\n\n.acf-fields.acf-menu-item-fields {\n clear: both;\n padding-top: 1px;\n}\n.acf-fields.acf-menu-item-fields > .acf-field {\n margin: 5px 0;\n padding-right: 10px;\n}\n.acf-fields.acf-menu-item-fields > .acf-field .acf-label {\n margin-bottom: 0;\n}\n.acf-fields.acf-menu-item-fields > .acf-field .acf-label label {\n font-style: italic;\n font-weight: normal;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Attachment Form (single)\n*\n*---------------------------------------------------------------------------------------------*/\n#post .compat-attachment-fields .compat-field-acf-form-data {\n display: none;\n}\n#post .compat-attachment-fields,\n#post .compat-attachment-fields > tbody,\n#post .compat-attachment-fields > tbody > tr,\n#post .compat-attachment-fields > tbody > tr > th,\n#post .compat-attachment-fields > tbody > tr > td {\n display: block;\n}\n#post .compat-attachment-fields > tbody > .acf-field {\n margin: 15px 0;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-label {\n margin: 0;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-label label {\n margin: 0;\n padding: 0;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-label label p {\n margin: 0 0 3px !important;\n}\n#post .compat-attachment-fields > tbody > .acf-field > .acf-input {\n margin: 0;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n/* WP sets tables to act as divs. ACF uses tables, so these muct be reset */\n.media-modal .compat-attachment-fields td.acf-input table {\n display: table;\n table-layout: auto;\n}\n.media-modal .compat-attachment-fields td.acf-input table tbody {\n display: table-row-group;\n}\n.media-modal .compat-attachment-fields td.acf-input table tr {\n display: table-row;\n}\n.media-modal .compat-attachment-fields td.acf-input table td, .media-modal .compat-attachment-fields td.acf-input table th {\n display: table-cell;\n}\n\n/* field widths floats */\n.media-modal .compat-attachment-fields > tbody > .acf-field {\n margin: 5px 0;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-label {\n min-width: 30%;\n margin: 0;\n padding: 0;\n float: left;\n text-align: right;\n display: block;\n float: left;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-label > label {\n padding-top: 6px;\n margin: 0;\n color: #666666;\n font-weight: 400;\n line-height: 16px;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-input {\n width: 65%;\n margin: 0;\n padding: 0;\n float: right;\n display: block;\n}\n.media-modal .compat-attachment-fields > tbody > .acf-field p.description {\n margin: 0;\n}\n\n/* restricted selection (copy of WP .upload-errors)*/\n.acf-selection-error {\n background: #ffebe8;\n border: 1px solid #c00;\n border-radius: 3px;\n padding: 8px;\n margin: 20px 0 0;\n}\n.acf-selection-error .selection-error-label {\n background: #CC0000;\n border-radius: 3px;\n color: #fff;\n font-weight: bold;\n margin-right: 8px;\n padding: 2px 4px;\n}\n.acf-selection-error .selection-error-message {\n color: #b44;\n display: block;\n padding-top: 8px;\n word-wrap: break-word;\n white-space: pre-wrap;\n}\n\n/* disabled attachment */\n.media-modal .attachment.acf-disabled .thumbnail {\n opacity: 0.25 !important;\n}\n.media-modal .attachment.acf-disabled .attachment-preview:before {\n background: rgba(0, 0, 0, 0.15);\n z-index: 1;\n position: relative;\n}\n\n/* misc */\n.media-modal {\n /* compat-item */\n /* allow line breaks in upload error */\n /* fix required span */\n /* sidebar */\n /* mobile md */\n}\n.media-modal .compat-field-acf-form-data,\n.media-modal .compat-field-acf-blank {\n display: none !important;\n}\n.media-modal .upload-error-message {\n white-space: pre-wrap;\n}\n.media-modal .acf-required {\n padding: 0 !important;\n margin: 0 !important;\n float: none !important;\n color: #f00 !important;\n}\n.media-modal .media-sidebar .compat-item {\n padding-bottom: 20px;\n}\n@media (max-width: 900px) {\n .media-modal {\n /* label */\n /* field */\n }\n .media-modal .setting span,\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-label {\n width: 98%;\n float: none;\n text-align: left;\n min-height: 0;\n padding: 0;\n }\n .media-modal .setting input,\n.media-modal .setting textarea,\n.media-modal .compat-attachment-fields > tbody > .acf-field > .acf-input {\n float: none;\n height: auto;\n max-width: none;\n width: 98%;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Media Model (expand details)\n*\n*---------------------------------------------------------------------------------------------*/\n.media-modal .acf-expand-details {\n float: right;\n padding: 8px 10px;\n margin-right: 6px;\n font-size: 13px;\n height: 18px;\n line-height: 18px;\n color: #666;\n text-decoration: none;\n}\n.media-modal .acf-expand-details:focus, .media-modal .acf-expand-details:active {\n outline: 0 none;\n box-shadow: none;\n color: #666;\n}\n.media-modal .acf-expand-details:hover {\n color: #000;\n}\n.media-modal .acf-expand-details .is-open {\n display: none;\n}\n.media-modal .acf-expand-details .is-closed {\n display: block;\n}\n@media (max-width: 640px) {\n .media-modal .acf-expand-details {\n display: none;\n }\n}\n\n/* expanded */\n.media-modal.acf-expanded {\n /* toggle */\n}\n.media-modal.acf-expanded .acf-expand-details .is-open {\n display: block;\n}\n.media-modal.acf-expanded .acf-expand-details .is-closed {\n display: none;\n}\n.media-modal.acf-expanded .attachments-browser .media-toolbar,\n.media-modal.acf-expanded .attachments-browser .attachments {\n right: 740px;\n}\n.media-modal.acf-expanded .media-sidebar {\n width: 708px;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail {\n float: left;\n max-height: none;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail img {\n max-width: 100%;\n max-height: 200px;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .details {\n float: right;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting .name,\n.media-modal.acf-expanded .media-sidebar .compat-attachment-fields > tbody > .acf-field > .acf-label {\n min-width: 20%;\n margin-right: 0;\n}\n.media-modal.acf-expanded .media-sidebar .attachment-info .details,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting input,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting textarea,\n.media-modal.acf-expanded .media-sidebar .attachment-details .setting + .description,\n.media-modal.acf-expanded .media-sidebar .compat-attachment-fields > tbody > .acf-field > .acf-input {\n min-width: 77%;\n}\n@media (max-width: 900px) {\n .media-modal.acf-expanded .attachments-browser .media-toolbar {\n display: none;\n }\n .media-modal.acf-expanded .attachments {\n display: none;\n }\n .media-modal.acf-expanded .media-sidebar {\n width: auto;\n max-width: none !important;\n bottom: 0 !important;\n }\n .media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail {\n min-width: 0;\n max-width: none;\n width: 30%;\n }\n .media-modal.acf-expanded .media-sidebar .attachment-info .details {\n min-width: 0;\n max-width: none;\n width: 67%;\n }\n}\n@media (max-width: 640px) {\n .media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail, .media-modal.acf-expanded .media-sidebar .attachment-info .details {\n width: 100%;\n }\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-media-modal {\n /* hide embed settings */\n}\n.acf-media-modal .media-embed .setting.align,\n.acf-media-modal .media-embed .setting.link-to {\n display: none;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Select Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Edit Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-media-modal.-edit {\n /* resize modal */\n left: 15%;\n right: 15%;\n top: 100px;\n bottom: 100px;\n /* hide elements */\n /* full width */\n /* tidy up incorrect distance */\n /* title box shadow (to match media grid) */\n /* sidebar */\n /* mobile md */\n /* mobile sm */\n}\n.acf-media-modal.-edit .media-frame-menu,\n.acf-media-modal.-edit .media-frame-router,\n.acf-media-modal.-edit .media-frame-content .attachments,\n.acf-media-modal.-edit .media-frame-content .media-toolbar {\n display: none;\n}\n.acf-media-modal.-edit .media-frame-title,\n.acf-media-modal.-edit .media-frame-content,\n.acf-media-modal.-edit .media-frame-toolbar,\n.acf-media-modal.-edit .media-sidebar {\n width: auto;\n left: 0;\n right: 0;\n}\n.acf-media-modal.-edit .media-frame-content {\n top: 50px;\n}\n.acf-media-modal.-edit .media-frame-title {\n border-bottom: 1px solid #DFDFDF;\n box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);\n}\n.acf-media-modal.-edit .media-sidebar {\n padding: 0 16px;\n /* WP details */\n /* ACF fields */\n /* WP required message */\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details {\n overflow: visible;\n /* hide 'Attachment Details' heading */\n /* remove overflow */\n /* move thumbnail */\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details > h3, .acf-media-modal.-edit .media-sidebar .attachment-details > h2 {\n display: none;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .attachment-info {\n background: #fff;\n border-bottom: #dddddd solid 1px;\n padding: 16px;\n margin: 0 -16px 16px;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .thumbnail {\n margin: 0 16px 0 0;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .setting {\n margin: 0 0 5px;\n}\n.acf-media-modal.-edit .media-sidebar .attachment-details .setting span {\n margin: 0;\n}\n.acf-media-modal.-edit .media-sidebar .compat-attachment-fields > tbody > .acf-field {\n margin: 0 0 5px;\n}\n.acf-media-modal.-edit .media-sidebar .compat-attachment-fields > tbody > .acf-field p.description {\n margin-top: 3px;\n}\n.acf-media-modal.-edit .media-sidebar .media-types-required-info {\n display: none;\n}\n@media (max-width: 900px) {\n .acf-media-modal.-edit {\n top: 30px;\n right: 30px;\n bottom: 30px;\n left: 30px;\n }\n}\n@media (max-width: 640px) {\n .acf-media-modal.-edit {\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n}\n@media (max-width: 480px) {\n .acf-media-modal.-edit .media-frame-content {\n top: 40px;\n }\n}\n\n.acf-temp-remove {\n position: relative;\n opacity: 1;\n -webkit-transition: all 0.25s ease;\n -moz-transition: all 0.25s ease;\n -o-transition: all 0.25s ease;\n transition: all 0.25s ease;\n overflow: hidden;\n /* overlay prevents hover */\n}\n.acf-temp-remove:after {\n display: block;\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 99;\n}\n\n.hidden-by-conditional-logic {\n display: none !important;\n}\n.hidden-by-conditional-logic.appear-empty {\n display: table-cell !important;\n}\n.hidden-by-conditional-logic.appear-empty .acf-input {\n display: none !important;\n}\n\n.acf-postbox.acf-hidden {\n display: none !important;\n}\n\n.acf-attention {\n transition: border 0.25s ease-out;\n}\n.acf-attention.-focused {\n border: #23282d solid 1px !important;\n transition: none;\n}\n\ntr.acf-attention {\n transition: box-shadow 0.25s ease-out;\n position: relative;\n}\ntr.acf-attention.-focused {\n box-shadow: #23282d 0 0 0px 1px !important;\n}\n\n#editor .edit-post-layout__metaboxes {\n padding: 0;\n}\n#editor .edit-post-layout__metaboxes .edit-post-meta-boxes-area {\n margin: 0;\n}\n#editor .metabox-location-side .postbox-container {\n float: none;\n}\n#editor .postbox {\n color: #444;\n}\n#editor .postbox > .postbox-header .hndle {\n border-bottom: none;\n}\n#editor .postbox > .postbox-header .hndle:hover {\n background: transparent;\n}\n#editor .postbox > .postbox-header .handle-actions .handle-order-higher,\n#editor .postbox > .postbox-header .handle-actions .handle-order-lower {\n width: 1.62rem;\n}\n#editor .postbox > .postbox-header .handle-actions .acf-hndle-cog {\n height: 44px;\n line-height: 44px;\n}\n#editor .postbox > .postbox-header:hover {\n background: #f0f0f0;\n}\n#editor .postbox:last-child.closed > .postbox-header {\n border-bottom: none;\n}\n#editor .postbox:last-child > .inside {\n border-bottom: none;\n}\n#editor .block-editor-writing-flow__click-redirect {\n min-height: 50px;\n}\n\nbody.is-dragging-metaboxes #acf_after_title-sortables {\n outline: 3px dashed #646970;\n display: flow-root;\n min-height: 60px;\n margin-bottom: 3px !important;\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#DA5A39;\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, #2C9FB8 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\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* Global\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group #wpcontent {\n\tline-height: 140%;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Links\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\ta {\n\t\tcolor: $blue-500;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Headings\n*\n*---------------------------------------------------------------------------------------------*/\n.h1 {\n\tfont-size: 21px;\n\tfont-weight: 400;\n}\n\n.h2 {\n\tfont-size: 18px;\n\tfont-weight: 400;\n}\n\n.h3 {\n\tfont-size: 16px;\n\tfont-weight: 400;\n}\n\n.post-type-acf-field-group,\n.acf-headerbar {\n\n\th1 {\n\t\t@extend .h1;\n\t}\n\n\th2 {\n\t\t@extend .h2;\n\t}\n\n\th3 {\n\t\t@extend .h3;\n\t}\n\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Paragraphs\n*\n*---------------------------------------------------------------------------------------------*/\n.p1 {\n\tfont-size: 15px;\n}\n\n.p2 {\n\tfont-size: 14px;\n}\n\n.p3 {\n\tfont-size: 13.5px;\n}\n\n.p4 {\n\tfont-size: 13px;\n}\n\n.p5 {\n\tfont-size: 12.5px;\n}\n\n.p6 {\n\tfont-size: 12px;\n}\n\n.p7 {\n\tfont-size: 11.5px;\n}\n\n.p8 {\n\tfont-size: 11px;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Page titles\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-page-title {\n\t@extend .h2;\n\tcolor: $gray-700;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Hide old / native WP titles from pages\n*\n*---------------------------------------------------------------------------------------------*/\n.post-type-acf-field-group {\n\n\t.acf-settings-wrap h1,\n\t#acf-admin-tools h1 {\n\t\tdisplay: none;\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.post-type-acf-field-group a:focus {\n\tbox-shadow: none;\n\toutline: none;\n}\n.post-type-acf-field-group a:focus-visible {\n\tbox-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgb(79 148 212 / 80%);\n\toutline: 1px solid transparent;\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tacf-field\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-field,\n.acf-field .acf-label,\n.acf-field .acf-input {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tposition: relative;\n}\n\n.acf-field {\n\tmargin: 15px 0;\n\n\t// clear is important as it will avoid any layout issues with floating fields\n\t// do not delete (you have tried this)\n\tclear: both;\n\n\t// description\n\tp.description {\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\t// label\n\t.acf-label {\n\t\tvertical-align: top;\n\t\tmargin: 0 0 10px;\n\n\t\tlabel {\n\t\t\tdisplay: block;\n\t\t\tfont-weight: 500;\n\t\t\tmargin: 0 0 3px;\n\t\t\tpadding: 0;\n\t\t}\n\n\t\t&:empty {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t}\n\n\t// input\n\t.acf-input {\n\t\tvertical-align: top;\n\t}\n\n\t// description\n\tp.description {\n\t\tdisplay: block;\n\t\tmargin: {\n\t\t\ttop: 6px;\n\t\t}\n\t\t@extend .p6;\n\t\tcolor: $gray-500;\n\t}\n\n\t// notice\n\t.acf-notice {\n\t\tmargin: 0 0 15px;\n\t\tbackground: #edf2ff;\n\t\tcolor: #0c6ca0;\n\t\tborder-color: #2183b9;\n\n\t\t// error\n\t\t&.-error {\n\t\t\tbackground: #ffe6e6;\n\t\t\tcolor: #cc2727;\n\t\t\tborder-color: #d12626;\n\t\t}\n\n\t\t// success\n\t\t&.-success {\n\t\t\tbackground: #eefbe8;\n\t\t\tcolor: #0e7b17;\n\t\t\tborder-color: #32a23b;\n\t\t}\n\n\t\t// warning\n\t\t&.-warning {\n\t\t\tbackground: #fff3e6;\n\t\t\tcolor: #bd4b0e;\n\t\t\tborder-color: #d16226;\n\t\t}\n\t}\n\n\t// table\n\t@at-root td#{&},\n\t\ttr#{&} {\n\t\tmargin: 0;\n\t}\n}\n\n// width\n.acf-field[data-width] {\n\tfloat: left;\n\tclear: none;\n\n\t// next\n\t+ .acf-field[data-width] {\n\t\tborder-left: 1px solid #eeeeee;\n\t}\n\n\t// rtl\n\thtml[dir=\"rtl\"] & {\n\t\tfloat: right;\n\n\t\t+ .acf-field[data-width] {\n\t\t\tborder-left: none;\n\t\t\tborder-right: 1px solid #eeeeee;\n\t\t}\n\t}\n\n\t// table\n\t@at-root td#{&},\n\t\ttr#{&} {\n\t\tfloat: none;\n\t}\n\n\t// mobile\n\t/*\n\t@media screen and (max-width: $sm) {\n\t\tfloat: none;\n\t\twidth: auto;\n\t\tborder-left-width: 0;\n\t\tborder-right-width: 0;\n\t}\n*/\n}\n\n// float helpers\n.acf-field.-c0 {\n\tclear: both;\n\tborder-left-width: 0 !important;\n\n\t// rtl\n\thtml[dir=\"rtl\"] & {\n\t\tborder-left-width: 1px !important;\n\t\tborder-right-width: 0 !important;\n\t}\n}\n\n.acf-field.-r0 {\n\tborder-top-width: 0 !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-fields {\n\tposition: relative;\n\n\t// clearifx\n\t@include clearfix();\n\n\t// border\n\t&.-border {\n\t\tborder: $wp-card-border solid 1px;\n\t\tbackground: #fff;\n\t}\n\n\t// field\n\t> .acf-field {\n\t\tposition: relative;\n\t\tmargin: 0;\n\t\tpadding: 16px;\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// first\n\t\t&:first-child {\n\t\t\tborder-top: none;\n\t\t\tmargin-top: 0;\n\t\t}\n\t}\n\n\t// table\n\t@at-root td#{&} {\n\t\tpadding: 0 !important;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (clear)\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-fields.-clear > .acf-field {\n\tborder: none;\n\tpadding: 0;\n\tmargin: 15px 0;\n\n\t// width\n\t&[data-width] {\n\t\tborder: none !important;\n\t}\n\n\t// label\n\t> .acf-label {\n\t\tpadding: 0;\n\t}\n\n\t// input\n\t> .acf-input {\n\t\tpadding: 0;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-fields (left)\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-fields.-left > .acf-field {\n\tpadding: $fy 0;\n\n\t// clearifx\n\t@include clearfix();\n\n\t// sidebar\n\t&:before {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\tz-index: 0;\n\t\tbackground: #f9f9f9;\n\t\tborder-color: #e1e1e1;\n\t\tborder-style: solid;\n\t\tborder-width: 0 1px 0 0;\n\t\ttop: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t\twidth: 20%;\n\t}\n\n\t// width\n\t&[data-width] {\n\t\tfloat: none;\n\t\twidth: auto !important;\n\t\tborder-left-width: 0 !important;\n\t\tborder-right-width: 0 !important;\n\t}\n\n\t// label\n\t> .acf-label {\n\t\tfloat: left;\n\t\twidth: 20%;\n\t\tmargin: 0;\n\t\tpadding: 0 $fx;\n\t}\n\n\t// input\n\t> .acf-input {\n\t\tfloat: left;\n\t\twidth: 80%;\n\t\tmargin: 0;\n\t\tpadding: 0 $fx;\n\t}\n\n\t// rtl\n\thtml[dir=\"rtl\"] & {\n\t\t// sidebar\n\t\t&:before {\n\t\t\tborder-width: 0 0 0 1px;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\n\n\t\t// label\n\t\t> .acf-label {\n\t\t\tfloat: right;\n\t\t}\n\n\t\t// input\n\t\t> .acf-input {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\n\t// In sidebar.\n\t#side-sortables & {\n\t\t&:before {\n\t\t\tdisplay: none;\n\t\t}\n\t\t> .acf-label {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 10px;\n\t\t}\n\t\t> .acf-input {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t// mobile\n\t@media screen and (max-width: $sm) {\n\t\t// sidebar\n\t\t&:before {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t// label\n\t\t> .acf-label {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 10px;\n\t\t}\n\n\t\t// input\n\t\t> .acf-input {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n}\n\n/* clear + left */\n.acf-fields.-clear.-left > .acf-field {\n\tpadding: 0;\n\tborder: none;\n\n\t// sidebar\n\t&:before {\n\t\tdisplay: none;\n\t}\n\n\t// label\n\t> .acf-label {\n\t\tpadding: 0;\n\t}\n\n\t// input\n\t> .acf-input {\n\t\tpadding: 0;\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-table\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-table tr.acf-field {\n\t// label\n\t> td.acf-label {\n\t\tpadding: $fp;\n\t\tmargin: 0;\n\t\tbackground: #f9f9f9;\n\t\twidth: 20%;\n\t}\n\n\t// input\n\t> td.acf-input {\n\t\tpadding: $fp;\n\t\tmargin: 0;\n\t\tborder-left-color: #e1e1e1;\n\t}\n}\n\n.acf-sortable-tr-helper {\n\tposition: relative !important;\n\tdisplay: table-row !important;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tacf-postbox\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-postbox {\n\tposition: relative;\n\n\t// inside\n\t> .inside {\n\t\tmargin: 0 !important; /* override WP style - do not delete - you have tried this before */\n\t\tpadding: 0 !important; /* override WP style - do not delete - you have tried this before */\n\t}\n\n\t// Edit cog.\n\t.acf-hndle-cog {\n\t\tcolor: #72777c;\n\t\tfont-size: 16px;\n\t\tline-height: 36px;\n\t\theight: 36px; // Mimic WP 5.5\n\t\twidth: 1.62rem; // Mimic WP 5.5\n\t\tposition: relative;\n\t\tdisplay: none;\n\t\t&:hover {\n\t\t\tcolor: #191e23;\n\t\t}\n\t}\n\n\t// Show on hover.\n\t> .hndle:hover,\n\t> .postbox-header:hover {\n\t\t.acf-hndle-cog {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n\n\t// WP < 5.5 styling\n\t> .hndle {\n\t\t.acf-hndle-cog {\n\t\t\theight: 20px;\n\t\t\tline-height: 20px;\n\t\t\tfloat: right;\n\t\t\twidth: auto;\n\t\t\t&:hover {\n\t\t\t\tcolor: #777777;\n\t\t\t}\n\t\t}\n\t}\n\n\t// replace\n\t.acf-replace-with-fields {\n\t\tpadding: 15px;\n\t\ttext-align: center;\n\t}\n}\n\n// Correct margin around #acf_after_title\n#post-body-content #acf_after_title-sortables {\n\tmargin: 20px 0 -20px;\n}\n\n/* seamless */\n.acf-postbox.seamless {\n\tborder: 0 none;\n\tbackground: transparent;\n\tbox-shadow: none;\n\n\t/* hide hndle */\n\t> .postbox-header,\n\t> .hndle,\n\t> .handlediv {\n\t\tdisplay: none !important;\n\t}\n\n\t/* inside */\n\t> .inside {\n\t\tdisplay: block !important; /* stop metabox from hiding when closed */\n\t\tmargin-left: -$field_padding_x !important;\n\t\tmargin-right: -$field_padding_x !important;\n\n\t\t> .acf-field {\n\t\t\tborder-color: transparent;\n\t\t}\n\t}\n}\n\n/* seamless (left) */\n.acf-postbox.seamless > .acf-fields.-left {\n\t/* hide sidebar bg */\n\t> .acf-field:before {\n\t\tdisplay: none;\n\t}\n\n\t/* mobile */\n\t@media screen and (max-width: 782px) {\n\t\t/* remove padding */\n\t\t& > .acf-field > .acf-label,\n\t\t& > .acf-field > .acf-input {\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Inputs\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-field {\n\tinput[type=\"text\"],\n\tinput[type=\"password\"],\n\tinput[type=\"date\"],\n\tinput[type=\"datetime\"],\n\tinput[type=\"datetime-local\"],\n\tinput[type=\"email\"],\n\tinput[type=\"month\"],\n\tinput[type=\"number\"],\n\tinput[type=\"search\"],\n\tinput[type=\"tel\"],\n\tinput[type=\"time\"],\n\tinput[type=\"url\"],\n\tinput[type=\"week\"],\n\ttextarea,\n\tselect {\n\t\twidth: 100%;\n\t\tpadding: 4px 8px;\n\t\tmargin: 0;\n\t\tbox-sizing: border-box;\n\t\tfont-size: 14px;\n\t\tline-height: 1.4;\n\n\t\t// WP Admin 3.8\n\t\t@include wp-admin(\"3-8\") {\n\t\t\tpadding: 3px 5px;\n\t\t}\n\t}\n\ttextarea {\n\t\tresize: vertical;\n\t}\n}\n\n// Fix extra padding in Firefox.\nbody.acf-browser-firefox .acf-field select {\n\tpadding: 4px 5px;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Text\n*\n*-----------------------------------------------------------------------------*/\n.acf-input-prepend,\n.acf-input-append,\n.acf-input-wrap {\n\tbox-sizing: border-box;\n}\n\n.acf-input-prepend,\n.acf-input-append {\n\tfont-size: 13px;\n\tline-height: 1.4;\n\tpadding: 4px 8px;\n\tbackground: #f5f5f5;\n\tborder: $wp-input-border solid 1px;\n\tmin-height: 30px;\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tpadding: 3px 5px;\n\t\tborder-color: $wp38-input-border;\n\t\tmin-height: 28px;\n\t}\n}\n\n.acf-input-prepend {\n\tfloat: left;\n\tborder-right-width: 0;\n\tborder-radius: 3px 0 0 3px;\n}\n\n.acf-input-append {\n\tfloat: right;\n\tborder-left-width: 0;\n\tborder-radius: 0 3px 3px 0;\n}\n\n.acf-input-wrap {\n\tposition: relative;\n\toverflow: hidden;\n\t.acf-is-prepended {\n\t\tborder-radius: 0 $radius-md $radius-md 0 !important;\n\t}\n\t.acf-is-appended {\n\t\tborder-radius: $radius-md 0 0 $radius-md !important;\n\t}\n\t.acf-is-prepended.acf-is-appended {\n\t\tborder-radius: 0 !important;\n\t}\n}\n\n/* rtl */\nhtml[dir=\"rtl\"] .acf-input-prepend {\n\tborder-left-width: 0;\n\tborder-right-width: 1px;\n\tborder-radius: 0 3px 3px 0;\n\n\tfloat: right;\n}\n\nhtml[dir=\"rtl\"] .acf-input-append {\n\tborder-left-width: 1px;\n\tborder-right-width: 0;\n\tborder-radius: 3px 0 0 3px;\n\tfloat: left;\n}\n\nhtml[dir=\"rtl\"] input.acf-is-prepended {\n\tborder-radius: 3px 0 0 3px !important;\n}\n\nhtml[dir=\"rtl\"] input.acf-is-appended {\n\tborder-radius: 0 3px 3px 0 !important;\n}\n\nhtml[dir=\"rtl\"] input.acf-is-prepended.acf-is-appended {\n\tborder-radius: 0 !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Color Picker\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-color-picker {\n\t.wp-color-result {\n\t\tborder-color: $wp-input-border;\n\t\t@include wp-admin(\"3-8\") {\n\t\t\tborder-color: $wp-card-border;\n\t\t}\n\t}\n\t.wp-picker-active {\n\t\tposition: relative;\n\t\tz-index: 1;\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Url\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-url {\n\ti {\n\t\tposition: absolute;\n\t\ttop: 5px;\n\t\tleft: 5px;\n\t\topacity: 0.5;\n\t\tcolor: #7e8993;\n\t}\n\n\tinput[type=\"url\"] {\n\t\tpadding-left: 27px !important;\n\t}\n\n\t&.-valid i {\n\t\topacity: 1;\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Select2 (v3)\n*\n*-----------------------------------------------------------------------------*/\n\n.select2-container.-acf {\n\t.select2-choices {\n\t\tbackground: #fff;\n\t\tborder-color: #ddd;\n\t\tbox-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;\n\t\tmin-height: 31px;\n\n\t\t.select2-search-choice {\n\t\t\tmargin: 5px 0 5px 5px;\n\t\t\tpadding: 3px 5px 3px 18px;\n\t\t\tborder-color: #bbb;\n\t\t\tbackground: #f9f9f9;\n\t\t\tbox-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;\n\n\t\t\t/* sortable item*/\n\t\t\t&.ui-sortable-helper {\n\t\t\t\tbackground: #5897fb;\n\t\t\t\tborder-color: darken(#5897fb, 5%);\n\t\t\t\tcolor: #fff !important;\n\t\t\t\tbox-shadow: 0 0 3px rgba(0, 0, 0, 0.1);\n\n\t\t\t\ta {\n\t\t\t\t\tvisibility: hidden;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* sortable shadow */\n\t\t\t&.ui-sortable-placeholder {\n\t\t\t\tbackground-color: #f7f7f7;\n\t\t\t\tborder-color: #f7f7f7;\n\t\t\t\tvisibility: visible !important;\n\t\t\t}\n\t\t}\n\n\t\t.select2-search-choice-focus {\n\t\t\tborder-color: #999;\n\t\t}\n\n\t\t.select2-search-field input {\n\t\t\theight: 31px;\n\t\t\tline-height: 22px;\n\t\t\tmargin: 0;\n\t\t\tpadding: 5px 5px 5px 7px;\n\t\t}\n\t}\n\n\t.select2-choice {\n\t\tborder-color: #bbbbbb;\n\n\t\t.select2-arrow {\n\t\t\tbackground: transparent;\n\t\t\tborder-left-color: #dfdfdf;\n\t\t\tpadding-left: 1px;\n\t\t}\n\n\t\t.select2-result-description {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t/* open */\n\t&.select2-container-active .select2-choices,\n\t&.select2-dropdown-open .select2-choices {\n\t\tborder-color: #5b9dd9;\n\t\tborder-radius: 3px 3px 0 0;\n\t}\n\n\t/* single open */\n\t&.select2-dropdown-open .select2-choice {\n\t\tbackground: #fff;\n\t\tborder-color: #5b9dd9;\n\t}\n}\n\n/* rtl */\nhtml[dir=\"rtl\"] .select2-container.-acf {\n\t.select2-search-choice-close {\n\t\tleft: 24px;\n\t}\n\n\t.select2-choice > .select2-chosen {\n\t\tmargin-left: 42px;\n\t}\n\n\t.select2-choice .select2-arrow {\n\t\tpadding-left: 0;\n\t\tpadding-right: 1px;\n\t}\n}\n\n/* description */\n.select2-drop {\n\t/* search*/\n\t.select2-search {\n\t\tpadding: 4px 4px 0;\n\t}\n\n\t/* result */\n\t.select2-result {\n\t\t.select2-result-description {\n\t\t\tcolor: #999;\n\t\t\tfont-size: 12px;\n\t\t\tmargin-left: 5px;\n\t\t}\n\n\t\t/* hover*/\n\t\t&.select2-highlighted {\n\t\t\t.select2-result-description {\n\t\t\t\tcolor: #fff;\n\t\t\t\topacity: 0.75;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Select2 (v4)\n*\n*-----------------------------------------------------------------------------*/\n.select2-container.-acf {\n\t// Reset WP default style.\n\tli {\n\t\tmargin-bottom: 0;\n\t}\n\n\t// select2 4.1 specific targeting for plugin conflict resolution.\n\t&[data-select2-id^=\"select2-data\"] {\n\t\t.select2-selection--multiple {\n\t\t\toverflow: hidden;\n\t\t}\n\t}\n\n\t// Customize border color to match WP admin.\n\t.select2-selection {\n\t\tborder-color: $wp-input-border;\n\n\t\t// WP Admin 3.8\n\t\t@include wp-admin(\"3-8\") {\n\t\t\tborder-color: #aaa;\n\t\t}\n\t}\n\n\t// Multiple wrap.\n\t.select2-selection--multiple {\n\t\t// If no value, increase hidden search input full width.\n\t\t// Overrides calculated px width issues.\n\t\t.select2-search--inline:first-child {\n\t\t\tfloat: none;\n\t\t\tinput {\n\t\t\t\twidth: 100% !important;\n\t\t\t}\n\t\t}\n\n\t\t// ul: Remove padding because li already has margin-right.\n\t\t.select2-selection__rendered {\n\t\t\tpadding-right: 0;\n\t\t}\n\n\t\t// incredibly specific targeting of an ID that only gets applied in select2 4.1 to solve plugin conflicts\n\t\t.select2-selection__rendered[id^=\"select2-acf-field\"] {\n\t\t\tdisplay: inline;\n\t\t\tpadding: 0;\n\t\t\tmargin: 0;\n\n\t\t\t.select2-selection__choice {\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\n\t\t// li\n\t\t.select2-selection__choice {\n\t\t\tbackground-color: #f7f7f7;\n\t\t\tborder-color: #cccccc;\n\n\t\t\t// Allow choice to wrap multiple lines.\n\t\t\tmax-width: 100%;\n\t\t\toverflow: hidden;\n\t\t\tword-wrap: normal !important;\n\t\t\twhite-space: normal;\n\n\t\t\t// Sortable.\n\t\t\t&.ui-sortable-helper {\n\t\t\t\tbackground: $blue-500;\n\t\t\t\tborder-color: $blue-600;\n\t\t\t\tcolor: #fff !important;\n\t\t\t\tbox-shadow: 0 0 3px rgba(0, 0, 0, 0.1);\n\n\t\t\t\tspan {\n\t\t\t\t\tvisibility: hidden;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Fixed for select2's 4.1 css changes when loaded by another plugin.\n\t\t\t.select2-selection__choice__remove {\n\t\t\t\tposition: static;\n\t\t\t\tborder-right: none;\n\t\t\t\tpadding: 0;\n\t\t\t}\n\n\t\t\t// Sortable shadow\n\t\t\t&.ui-sortable-placeholder {\n\t\t\t\tbackground-color: $gray-100;\n\t\t\t\tborder-color: $gray-100;\n\t\t\t\tvisibility: visible !important;\n\t\t\t}\n\t\t}\n\n\t\t// search\n\t\t.select2-search__field {\n\t\t\tbox-shadow: none !important;\n\t\t\tmin-height: 0;\n\t\t}\n\t}\n\n\t// Fix single select pushing out repeater field table width.\n\t.acf-row & .select2-selection--single {\n\t\toverflow: hidden;\n\t\t.select2-selection__rendered {\n\t\t\twhite-space: normal;\n\t\t}\n\t}\n}\n\n.select2-dropdown {\n\tborder-color: $blue-300 !important;\n\tmargin-top: -5px;\n\toverflow: hidden;\n\tbox-shadow: $elevation-01;\n}\n\n.select2-dropdown.select2-dropdown--above {\n\tmargin-top: 0;\n}\n\n.select2-container--default .select2-results__option[aria-selected=\"true\"] {\n\tbackground-color: $gray-50 !important;\n\tcolor: $gray-500;\n\n\t&:hover {\n\t\tcolor: $blue-400;\n\t}\n}\n\n.select2-container--default\n\t.select2-results__option--highlighted[aria-selected] {\n\tcolor: #fff !important;\n\tbackground-color: $blue-500 !important;\n}\n\n// remove bottom margin on options\n.select2-dropdown .select2-results__option {\n\tmargin-bottom: 0;\n}\n\n// z-index helper.\n.select2-container {\n\t.select2-dropdown {\n\t\tz-index: 900000;\n\n\t\t// Reset input height.\n\t\t.select2-search__field {\n\t\t\tline-height: 1.4;\n\t\t\tmin-height: 0;\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Link\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-link {\n\t.link-wrap {\n\t\tdisplay: none;\n\t\tborder: $wp-card-border solid 1px;\n\t\tborder-radius: 3px;\n\t\tpadding: 5px;\n\t\tline-height: 26px;\n\t\tbackground: #fff;\n\n\t\tword-wrap: break-word;\n\t\tword-break: break-all;\n\n\t\t.link-title {\n\t\t\tpadding: 0 5px;\n\t\t}\n\t}\n\n\t// Has value.\n\t&.-value {\n\t\t.button {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.acf-icon.-link-ext {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.link-wrap {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n\n\t// Is external.\n\t&.-external {\n\t\t.acf-icon.-link-ext {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n\n#wp-link-backdrop {\n\tz-index: 900000 !important;\n}\n#wp-link-wrap {\n\tz-index: 900001 !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Radio\n*\n*-----------------------------------------------------------------------------*/\n\nul.acf-radio-list,\nul.acf-checkbox-list {\n\tbackground: transparent;\n\tborder: 1px solid transparent;\n\tposition: relative;\n\tpadding: 1px;\n\tmargin: 0;\n\n\t&:focus-within {\n\t\tborder: 1px solid $blue-200;\n\t\tborder-radius: $radius-md;\n\t}\n\n\tli {\n\t\tfont-size: 13px;\n\t\tline-height: 22px;\n\t\tmargin: 0;\n\t\tposition: relative;\n\t\tword-wrap: break-word;\n\n\t\tlabel {\n\t\t\tdisplay: inline;\n\t\t}\n\n\t\tinput[type=\"checkbox\"],\n\t\tinput[type=\"radio\"] {\n\t\t\tmargin: -1px 4px 0 0;\n\t\t\tvertical-align: middle;\n\t\t}\n\n\t\tinput[type=\"text\"] {\n\t\t\twidth: auto;\n\t\t\tvertical-align: middle;\n\t\t\tmargin: 2px 0;\n\t\t}\n\n\t\t/* attachment sidebar fix*/\n\t\tspan {\n\t\t\tfloat: none;\n\t\t}\n\n\t\ti {\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\n\t/* hl */\n\t&.acf-hl {\n\t\tli {\n\t\t\tmargin-right: 20px;\n\t\t\tclear: none;\n\t\t}\n\t}\n\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\tinput[type=\"checkbox\"],\n\t\tinput[type=\"radio\"] {\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 0;\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Button Group\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-button-group {\n\tdisplay: inline-block;\n\n\tlabel {\n\t\tdisplay: inline-block;\n\t\tborder: $wp-input-border solid 1px;\n\t\tposition: relative;\n\t\tz-index: 1;\n\t\tpadding: 5px 10px;\n\t\tbackground: #fff;\n\n\t\t&:hover {\n\t\t\tcolor: #016087;\n\t\t\tbackground: #f3f5f6;\n\t\t\tborder-color: #0071a1;\n\t\t\tz-index: 2;\n\t\t}\n\n\t\t&.selected {\n\t\t\tborder-color: #007cba;\n\t\t\tbackground: lighten(#007cba, 5%);\n\t\t\tcolor: #fff;\n\t\t\tz-index: 2;\n\t\t}\n\t}\n\n\tinput {\n\t\tdisplay: none !important;\n\t}\n\n\t/* default (horizontal) */\n\t& {\n\t\tpadding-left: 1px;\n\t\tdisplay: inline-flex;\n\t\tflex-direction: row;\n\t\tflex-wrap: nowrap;\n\n\t\tlabel {\n\t\t\tmargin: 0 0 0 -1px;\n\t\t\tflex: 1;\n\t\t\ttext-align: center;\n\t\t\twhite-space: nowrap;\n\n\t\t\t// corners\n\t\t\t&:first-child {\n\t\t\t\tborder-radius: 3px 0 0 3px;\n\t\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\t\tborder-radius: 0 3px 3px 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&:last-child {\n\t\t\t\tborder-radius: 0 3px 3px 0;\n\t\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\t\tborder-radius: 3px 0 0 3px;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&:only-child {\n\t\t\t\tborder-radius: 3px;\n\t\t\t}\n\t\t}\n\t}\n\n\t/* vertical */\n\t&.-vertical {\n\t\tpadding-left: 0;\n\t\tpadding-top: 1px;\n\t\tflex-direction: column;\n\n\t\tlabel {\n\t\t\tmargin: -1px 0 0 0;\n\n\t\t\t// corners\n\t\t\t&:first-child {\n\t\t\t\tborder-radius: 3px 3px 0 0;\n\t\t\t}\n\t\t\t&:last-child {\n\t\t\t\tborder-radius: 0 0 3px 3px;\n\t\t\t}\n\t\t\t&:only-child {\n\t\t\t\tborder-radius: 3px;\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\tlabel {\n\t\t\tborder-color: $wp-card-border;\n\t\t\t&:hover {\n\t\t\t\tborder-color: #0071a1;\n\t\t\t}\n\t\t\t&.selected {\n\t\t\t\tborder-color: #007cba;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.post-type-acf-field-group {\n\t.acf-button-group {\n\t\tdisplay: flex;\n\t\talign-items: stretch;\n\t\talign-content: center;\n\t\theight: 40px;\n\t\tborder-radius: $radius-md;\n\t\tbox-shadow: $elevation-01;\n\n\t\tlabel {\n\t\t\tdisplay: inline-flex;\n\t\t\talign-items: center;\n\t\t\talign-content: center;\n\t\t\tborder: $gray-300 solid 1px;\n\t\t\tpadding: 6px 16px;\n\t\t\tcolor: $gray-600;\n\t\t\tfont-weight: 500;\n\n\t\t\t&:hover {\n\t\t\t\tcolor: $color-primary;\n\t\t\t}\n\n\t\t\t&.selected {\n\t\t\t\tbackground: $gray-50;\n\t\t\t\tcolor: $color-primary;\n\t\t\t}\n\t\t}\n\t}\n\n\t.select2-container.-acf {\n\t\t.select2-selection--multiple {\n\t\t\t.select2-selection__choice {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\talign-items: center;\n\t\t\t\tpadding: {\n\t\t\t\t\ttop: 4px;\n\t\t\t\t\tright: auto;\n\t\t\t\t\tbottom: 4px;\n\t\t\t\t\tleft: 8px;\n\t\t\t\t}\n\t\t\t\tbackground-color: $blue-50;\n\t\t\t\tborder-color: $blue-200;\n\t\t\t\tcolor: $blue-500;\n\n\t\t\t\t.select2-selection__choice__remove {\n\t\t\t\t\torder: 2;\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: 0;\n\t\t\t\t\t\tleft: 4px;\n\t\t\t\t\t}\n\t\t\t\t\tcolor: $blue-300;\n\t\t\t\t\ttext-indent: 100%;\n\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\toverflow: hidden;\n\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tcolor: $blue-500;\n\t\t\t\t\t}\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\t$icon-size: 14px;\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\twidth: $icon-size;\n\t\t\t\t\t\theight: $icon-size;\n\t\t\t\t\t\ttop: 0;\n\t\t\t\t\t\tleft: 0;\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\t-webkit-mask-image: url(\"../../images/icons/icon-close.svg\");\n\t\t\t\t\t\tmask-image: url(\"../../images/icons/icon-close.svg\");\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* Checkbox\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-checkbox-list {\n\t.button {\n\t\tmargin: 10px 0 0;\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* True / False\n*\n*-----------------------------------------------------------------------------*/\n.acf-switch {\n\tdisplay: inline-block;\n\tborder-radius: 5px;\n\tcursor: pointer;\n\tposition: relative;\n\tbackground: #f5f5f5;\n\theight: 30px;\n\tvertical-align: middle;\n\tborder: $wp-input-border solid 1px;\n\n\t-webkit-transition: background 0.25s ease;\n\t-moz-transition: background 0.25s ease;\n\t-o-transition: background 0.25s ease;\n\ttransition: background 0.25s ease;\n\n\tspan {\n\t\tdisplay: inline-block;\n\t\tfloat: left;\n\t\ttext-align: center;\n\n\t\tfont-size: 13px;\n\t\tline-height: 22px;\n\n\t\tpadding: 4px 10px;\n\t\tmin-width: 15px;\n\n\t\ti {\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\n\t.acf-switch-on {\n\t\tcolor: #fff;\n\t\ttext-shadow: #007cba 0 1px 0;\n\t}\n\n\t.acf-switch-off {\n\t}\n\n\t.acf-switch-slider {\n\t\tposition: absolute;\n\t\ttop: 2px;\n\t\tleft: 2px;\n\t\tbottom: 2px;\n\t\tright: 50%;\n\t\tz-index: 1;\n\t\tbackground: #fff;\n\t\tborder-radius: 3px;\n\t\tborder: $wp-input-border solid 1px;\n\n\t\t-webkit-transition: all 0.25s ease;\n\t\t-moz-transition: all 0.25s ease;\n\t\t-o-transition: all 0.25s ease;\n\t\ttransition: all 0.25s ease;\n\n\t\ttransition-property: left, right;\n\t}\n\n\t/* hover */\n\t&:hover,\n\t&.-focus {\n\t\tborder-color: #0071a1;\n\t\tbackground: #f3f5f6;\n\t\tcolor: #016087;\n\t\t.acf-switch-slider {\n\t\t\tborder-color: #0071a1;\n\t\t}\n\t}\n\n\t/* active */\n\t&.-on {\n\t\tbackground: #0d99d5;\n\t\tborder-color: #007cba;\n\n\t\t.acf-switch-slider {\n\t\t\tleft: 50%;\n\t\t\tright: 2px;\n\t\t\tborder-color: #007cba;\n\t\t}\n\n\t\t/* hover */\n\t\t&:hover {\n\t\t\tborder-color: #007cba;\n\t\t}\n\t}\n\n\t/* message */\n\t+ span {\n\t\tmargin-left: 6px;\n\t}\n\n\t// WP Admin 3.8\n\t@include wp-admin(\"3-8\") {\n\t\tborder-color: $wp-card-border;\n\t\t.acf-switch-slider {\n\t\t\tborder-color: $wp-card-border;\n\t\t}\n\n\t\t&:hover,\n\t\t&.-focus {\n\t\t\tborder-color: #0071a1;\n\t\t\t.acf-switch-slider {\n\t\t\t\tborder-color: #0071a1;\n\t\t\t}\n\t\t}\n\n\t\t&.-on {\n\t\t\tborder-color: #007cba;\n\t\t\t.acf-switch-slider {\n\t\t\t\tborder-color: #007cba;\n\t\t\t}\n\t\t\t&:hover {\n\t\t\t\tborder-color: #007cba;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* checkbox */\n.acf-switch-input {\n\topacity: 0;\n\tposition: absolute;\n\tmargin: 0;\n}\n\n.acf-admin-single-field-group .acf-true-false {\n\tborder: 1px solid transparent;\n\n\t&:focus-within {\n\t\tborder: 1px solid $blue-400;\n\t\tborder-radius: 120px;\n\t}\n}\n\n/* in media modal */\n.compat-item .acf-true-false {\n\t.message {\n\t\tfloat: none;\n\t\tpadding: 0;\n\t\tvertical-align: middle;\n\t}\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tGoogle Map\n*\n*-------------------------------------------------------------------------*/\n\n.acf-google-map {\n\tposition: relative;\n\tborder: $wp-card-border solid 1px;\n\tbackground: #fff;\n\n\t.title {\n\t\tposition: relative;\n\t\tborder-bottom: $wp-card-border solid 1px;\n\n\t\t.search {\n\t\t\tmargin: 0;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 30px;\n\t\t\theight: 40px;\n\t\t\tpadding: 5px 10px;\n\t\t\tborder: 0 none;\n\t\t\tbox-shadow: none;\n\t\t\tborder-radius: 0;\n\t\t\tfont-family: inherit;\n\t\t\tcursor: text;\n\t\t}\n\n\t\t.acf-loading {\n\t\t\tposition: absolute;\n\t\t\ttop: 10px;\n\t\t\tright: 11px;\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t// Avoid icons disapearing when click/blur events conflict.\n\t\t.acf-icon:active {\n\t\t\tdisplay: inline-block !important;\n\t\t}\n\t}\n\n\t.canvas {\n\t\theight: 400px;\n\t}\n\n\t// Show actions on hover.\n\t&:hover .title .acf-actions {\n\t\tdisplay: block;\n\t}\n\n\t// Default state (show locate, hide search and cancel).\n\t.title {\n\t\t.acf-icon.-location {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t\t.acf-icon.-cancel,\n\t\t.acf-icon.-search {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t// Has value (hide locate, show cancel).\n\t&.-value .title {\n\t\t.search {\n\t\t\tfont-weight: bold;\n\t\t}\n\t\t.acf-icon.-location {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.acf-icon.-cancel {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n\n\t// Is searching (hide locate, show search and cancel).\n\t&.-searching .title {\n\t\t.acf-icon.-location {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.acf-icon.-cancel,\n\t\t.acf-icon.-search {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t\t// Show actions.\n\t\t.acf-actions {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t// Change search font-weght.\n\t\t.search {\n\t\t\tfont-weight: normal !important;\n\t\t}\n\t}\n\n\t// Loading.\n\t&.-loading .title {\n\t\ta {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\ti {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n\n/* autocomplete */\n.pac-container {\n\tborder-width: 1px 0;\n\tbox-shadow: none;\n}\n\n.pac-container:after {\n\tdisplay: none;\n}\n\n.pac-container .pac-item:first-child {\n\tborder-top: 0 none;\n}\n.pac-container .pac-item {\n\tpadding: 5px 10px;\n\tcursor: pointer;\n}\n\nhtml[dir=\"rtl\"] .pac-container .pac-item {\n\ttext-align: right;\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tRelationship\n*\n*-------------------------------------------------------------------------*/\n\n.acf-relationship {\n\tbackground: #fff;\n\tborder: $wp-card-border solid 1px;\n\n\t// Filters.\n\t.filters {\n\t\t@include clearfix();\n\t\tborder-bottom: $wp-card-border solid 1px;\n\t\tbackground: #fff;\n\n\t\t.filter {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tfloat: left;\n\t\t\twidth: 100%;\n\t\t\tbox-sizing: border-box;\n\t\t\tpadding: 7px 7px 7px 0;\n\t\t\t&:first-child {\n\t\t\t\tpadding-left: 7px;\n\t\t\t}\n\n\t\t\t// inputs\n\t\t\tinput,\n\t\t\tselect {\n\t\t\t\tmargin: 0;\n\t\t\t\tfloat: none; /* potential fix for media popup? */\n\n\t\t\t\t&:focus,\n\t\t\t\t&:active {\n\t\t\t\t\toutline: none;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t}\n\t\t\t}\n\t\t\tinput {\n\t\t\t\tborder-color: transparent;\n\t\t\t\tbox-shadow: none;\n\t\t\t\tpadding-left: 3px;\n\t\t\t\tpadding-right: 3px;\n\t\t\t}\n\t\t}\n\n\t\t/* widths */\n\t\t&.-f2 {\n\t\t\t.filter {\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t}\n\t\t&.-f3 {\n\t\t\t.filter {\n\t\t\t\twidth: 25%;\n\t\t\t}\n\t\t\t.filter.-search {\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t}\n\t}\n\n\t/* list */\n\t.list {\n\t\tmargin: 0;\n\t\tpadding: 5px;\n\t\theight: 160px;\n\t\toverflow: auto;\n\n\t\t.acf-rel-label,\n\t\t.acf-rel-item,\n\t\tp {\n\t\t\tpadding: 5px;\n\t\t\tmargin: 0;\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\tmin-height: 18px;\n\t\t}\n\n\t\t.acf-rel-label {\n\t\t\tfont-weight: bold;\n\t\t}\n\n\t\t.acf-rel-item {\n\t\t\tcursor: pointer;\n\n\t\t\tb {\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\n\t\t\t.thumbnail {\n\t\t\t\tbackground: darken(#f9f9f9, 10%);\n\t\t\t\twidth: 22px;\n\t\t\t\theight: 22px;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: -2px 5px 0 0;\n\n\t\t\t\timg {\n\t\t\t\t\tmax-width: 22px;\n\t\t\t\t\tmax-height: 22px;\n\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\n\t\t\t\t&.-icon {\n\t\t\t\t\tbackground: #fff;\n\n\t\t\t\t\timg {\n\t\t\t\t\t\tmax-height: 20px;\n\t\t\t\t\t\tmargin-top: 1px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* hover */\n\t\t\t&:hover {\n\t\t\t\tbackground: #3875d7;\n\t\t\t\tcolor: #fff;\n\n\t\t\t\t.thumbnail {\n\t\t\t\t\tbackground: lighten(#3875d7, 25%);\n\n\t\t\t\t\t&.-icon {\n\t\t\t\t\t\tbackground: #fff;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* disabled */\n\t\t\t&.disabled {\n\t\t\t\topacity: 0.5;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: transparent;\n\t\t\t\t\tcolor: #333;\n\t\t\t\t\tcursor: default;\n\n\t\t\t\t\t.thumbnail {\n\t\t\t\t\t\tbackground: darken(#f9f9f9, 10%);\n\n\t\t\t\t\t\t&.-icon {\n\t\t\t\t\t\t\tbackground: #fff;\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\tul {\n\t\t\tpadding-bottom: 5px;\n\n\t\t\t.acf-rel-label,\n\t\t\t.acf-rel-item,\n\t\t\tp {\n\t\t\t\tpadding-left: 20px;\n\t\t\t}\n\t\t}\n\t}\n\n\t/* selection (bottom) */\n\t.selection {\n\t\t@include clearfix();\n\t\tposition: relative;\n\n\t\t.values,\n\t\t.choices {\n\t\t\twidth: 50%;\n\t\t\tbackground: #fff;\n\t\t\tfloat: left;\n\t\t}\n\n\t\t/* choices */\n\t\t.choices {\n\t\t\tbackground: #f9f9f9;\n\n\t\t\t.list {\n\t\t\t\tborder-right: #dfdfdf solid 1px;\n\t\t\t}\n\t\t}\n\n\t\t/* values */\n\t\t.values {\n\t\t\t.acf-icon {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 4px;\n\t\t\t\tright: 7px;\n\t\t\t\tdisplay: none;\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: 7px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.acf-rel-item:hover .acf-icon {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\t.acf-rel-item {\n\t\t\t\tcursor: move;\n\n\t\t\t\tb {\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* menu item fix */\n.menu-item {\n\t.acf-relationship {\n\t\tul {\n\t\t\twidth: auto;\n\t\t}\n\n\t\tli {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------\n*\n*\tWYSIWYG\n*\n*-------------------------------------------------------------------------*/\n\n.acf-editor-wrap {\n\t// Delay.\n\t&.delay {\n\t\t.acf-editor-toolbar {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tbackground: #f5f5f5;\n\t\t\tborder-bottom: #dddddd solid 1px;\n\t\t\tcolor: #555d66;\n\t\t\tpadding: 10px;\n\t\t}\n\n\t\t.wp-editor-area {\n\t\t\tpadding: 10px;\n\t\t\tborder: none;\n\t\t\tcolor: inherit !important; // Fixes white text bug.\n\t\t}\n\t}\n\n\tiframe {\n\t\tmin-height: 200px;\n\t}\n\n\t.wp-editor-container {\n\t\tborder: 1px solid $wp-card-border;\n\t\tbox-shadow: none !important;\n\t}\n\n\t.wp-editor-tabs {\n\t\tbox-sizing: content-box;\n\t}\n\n\t.wp-switch-editor {\n\t\tborder-color: $wp-card-border;\n\t\tborder-bottom-color: transparent;\n\t}\n}\n\n// Full Screen Mode.\n#mce_fullscreen_container {\n\tz-index: 900000 !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tTab\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-field-tab {\n\tdisplay: none !important;\n}\n\n// class to hide fields\n.hidden-by-tab {\n\tdisplay: none !important;\n}\n\n// ensure floating fields do not disturb tab wrap\n.acf-tab-wrap {\n\tclear: both;\n\tz-index: 1;\n}\n\n// tab group\n.acf-tab-group {\n\tborder-bottom: #ccc solid 1px;\n\tpadding: 10px 10px 0;\n\n\tli {\n\t\tmargin: 0 0.5em 0 0;\n\n\t\ta {\n\t\t\tpadding: 5px 10px;\n\t\t\tdisplay: block;\n\n\t\t\tcolor: #555;\n\t\t\tfont-size: 14px;\n\t\t\tfont-weight: 600;\n\t\t\tline-height: 24px;\n\n\t\t\tborder: #ccc solid 1px;\n\t\t\tborder-bottom: 0 none;\n\t\t\ttext-decoration: none;\n\t\t\tbackground: #e5e5e5;\n\t\t\ttransition: none;\n\n\t\t\t&:hover {\n\t\t\t\tbackground: #fff;\n\t\t\t}\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\n\t\t\t&:empty {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t// rtl\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tmargin: 0 0 0 0.5em;\n\t\t}\n\n\t\t// active\n\t\t&.active a {\n\t\t\tbackground: #f1f1f1;\n\t\t\tcolor: #000;\n\t\t\tpadding-bottom: 6px;\n\t\t\tmargin-bottom: -1px;\n\t\t\tposition: relative;\n\t\t\tz-index: 1;\n\t\t}\n\t}\n}\n\n// inside acf-fields\n.acf-fields > .acf-tab-wrap {\n\tbackground: #f9f9f9;\n\n\t// group\n\t.acf-tab-group {\n\t\tposition: relative;\n\t\tborder-top: $wp-card-border solid 1px;\n\t\tborder-bottom: $wp-card-border solid 1px;\n\n\t\t// Pull next element (field) up and underneith.\n\t\tz-index: 2;\n\t\tmargin-bottom: -1px;\n\n\t\t// \t\tli a {\n\t\t// \t\t\tbackground: #f1f1f1;\n\t\t// \t\t\tborder-color: $wp-card-border;\n\t\t//\n\t\t// \t\t\t&:hover {\n\t\t// \t\t\t\tbackground: #FFF;\n\t\t// \t\t\t}\n\t\t// \t\t}\n\t\t//\n\t\t// \t\tli.active a {\n\t\t// \t\t\tbackground: #FFFFFF;\n\t\t// \t\t}\n\n\t\t// WP Admin 3.8\n\t\t@include wp-admin(\"3-8\") {\n\t\t\tborder-color: $wp38-card-border-1;\n\t\t}\n\t}\n\n\t// first child\n\t// fixes issue causing double border-top due to WP postbox .handlediv\n\t// &:first-child .acf-tab-group {\n\t// \tborder-top: none;\n\t// }\n}\n\n// inside acf-fields.-left\n.acf-fields.-left > .acf-tab-wrap {\n\t// group\n\t.acf-tab-group {\n\t\tpadding-left: 20%;\n\n\t\t/* mobile */\n\t\t@media screen and (max-width: $sm) {\n\t\t\tpadding-left: 10px;\n\t\t}\n\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tpadding-left: 0;\n\t\t\tpadding-right: 20%;\n\n\t\t\t/* mobile */\n\t\t\t@media screen and (max-width: 850px) {\n\t\t\t\tpadding-right: 10px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n// left\n.acf-tab-wrap.-left {\n\t// group\n\t.acf-tab-group {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\twidth: 20%;\n\t\tborder: 0 none;\n\t\tpadding: 0 !important; /* important overrides 'left aligned labels' */\n\t\tmargin: 1px 0 0;\n\n\t\t// li\n\t\tli {\n\t\t\tfloat: none;\n\t\t\tmargin: -1px 0 0;\n\n\t\t\ta {\n\t\t\t\tborder: 1px solid #ededed;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tline-height: 18px;\n\t\t\t\tcolor: #0073aa;\n\t\t\t\tpadding: 10px;\n\t\t\t\tmargin: 0;\n\t\t\t\tfont-weight: normal;\n\t\t\t\tborder-width: 1px 0;\n\t\t\t\tborder-radius: 0;\n\t\t\t\tbackground: transparent;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: #00a0d2;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.active a {\n\t\t\t\tborder-color: #dfdfdf;\n\t\t\t\tcolor: #000;\n\t\t\t\tmargin-right: -1px;\n\t\t\t\tbackground: #fff;\n\t\t\t}\n\t\t}\n\n\t\t// rtl\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\n\t\t\tli.active a {\n\t\t\t\tmargin-right: 0;\n\t\t\t\tmargin-left: -1px;\n\t\t\t}\n\t\t}\n\t}\n\n\t// space before field\n\t.acf-field + &:before {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tz-index: 1;\n\t\theight: 10px;\n\t\tborder-top: #dfdfdf solid 1px;\n\t\tborder-bottom: #dfdfdf solid 1px;\n\t\tmargin-bottom: -1px;\n\t}\n\n\t// first child has negative margin issues\n\t&:first-child {\n\t\t.acf-tab-group {\n\t\t\tli:first-child a {\n\t\t\t\tborder-top: none;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* sidebar */\n.acf-fields.-sidebar {\n\tpadding: 0 0 0 20% !important;\n\tposition: relative;\n\n\t/* before */\n\t&:before {\n\t\tcontent: \"\";\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\twidth: 20%;\n\t\tbottom: 0;\n\t\tborder-right: #dfdfdf solid 1px;\n\t\tbackground: #f9f9f9;\n\t\tz-index: 1;\n\t}\n\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\tpadding: 0 20% 0 0 !important;\n\n\t\t&:before {\n\t\t\tborder-left: #dfdfdf solid 1px;\n\t\t\tborder-right-width: 0;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\n\t}\n\n\t// left\n\t&.-left {\n\t\tpadding: 0 0 0 180px !important;\n\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tpadding: 0 180px 0 0 !important;\n\t\t}\n\n\t\t&:before {\n\t\t\tbackground: #f1f1f1;\n\t\t\tborder-color: #dfdfdf;\n\t\t\twidth: 180px;\n\t\t}\n\n\t\t> .acf-tab-wrap.-left .acf-tab-group {\n\t\t\twidth: 180px;\n\n\t\t\tli a {\n\t\t\t\tborder-color: #e4e4e4;\n\t\t\t}\n\n\t\t\tli.active a {\n\t\t\t\tbackground: #f9f9f9;\n\t\t\t}\n\t\t}\n\t}\n\n\t// fix double border\n\t> .acf-field-tab + .acf-field {\n\t\tborder-top: none;\n\t}\n}\n\n// clear\n.acf-fields.-clear > .acf-tab-wrap {\n\tbackground: transparent;\n\n\t// group\n\t.acf-tab-group {\n\t\tmargin-top: 0;\n\t\tborder-top: none;\n\t\tpadding-left: 0;\n\t\tpadding-right: 0;\n\n\t\tli a {\n\t\t\tbackground: #e5e5e5;\n\n\t\t\t&:hover {\n\t\t\t\tbackground: #fff;\n\t\t\t}\n\t\t}\n\n\t\tli.active a {\n\t\t\tbackground: #f1f1f1;\n\t\t}\n\t}\n}\n\n/* seamless */\n.acf-postbox.seamless {\n\t// sidebar\n\t> .acf-fields.-sidebar {\n\t\tmargin-left: 0 !important;\n\n\t\t&:before {\n\t\t\tbackground: transparent;\n\t\t}\n\t}\n\n\t// default\n\t> .acf-fields > .acf-tab-wrap {\n\t\tbackground: transparent;\n\t\tmargin-bottom: 10px;\n\t\tpadding-left: $fx;\n\t\tpadding-right: $fx;\n\n\t\t.acf-tab-group {\n\t\t\tborder-top: 0 none;\n\t\t\tborder-color: $wp-card-border;\n\n\t\t\tli a {\n\t\t\t\tbackground: #e5e5e5;\n\t\t\t\tborder-color: $wp-card-border;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: #fff;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tli.active a {\n\t\t\t\tbackground: #f1f1f1;\n\t\t\t}\n\t\t}\n\t}\n\n\t// left tabs\n\t> .acf-fields > .acf-tab-wrap.-left {\n\t\t&:before {\n\t\t\tborder-top: none;\n\t\t\theight: auto;\n\t\t}\n\n\t\t.acf-tab-group {\n\t\t\tmargin-bottom: 0;\n\n\t\t\tli a {\n\t\t\t\tborder-width: 1px 0 1px 1px !important;\n\t\t\t\tborder-color: #cccccc;\n\t\t\t\tbackground: #e5e5e5;\n\t\t\t}\n\n\t\t\tli.active a {\n\t\t\t\tbackground: #f1f1f1;\n\t\t\t}\n\t\t}\n\t}\n}\n\n// menu\n.menu-edit,\n.widget {\n\t.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li {\n\t\ta {\n\t\t\tbackground: #f1f1f1;\n\t\t}\n\t\ta:hover,\n\t\t&.active a {\n\t\t\tbackground: #fff;\n\t\t}\n\t}\n}\n\n.compat-item .acf-tab-wrap td {\n\tdisplay: block;\n}\n\n/* within gallery sidebar */\n.acf-gallery-side .acf-tab-wrap {\n\tborder-top: 0 none !important;\n}\n\n.acf-gallery-side .acf-tab-wrap .acf-tab-group {\n\tmargin: 10px 0 !important;\n\tpadding: 0 !important;\n}\n\n.acf-gallery-side .acf-tab-group li.active a {\n\tbackground: #f9f9f9 !important;\n}\n\n/* withing widget */\n.widget .acf-tab-group {\n\tborder-bottom-color: #e8e8e8;\n}\n\n.widget .acf-tab-group li a {\n\tbackground: #f1f1f1;\n}\n\n.widget .acf-tab-group li.active a {\n\tbackground: #fff;\n}\n\n/* media popup (edit image) */\n.media-modal.acf-expanded\n\t.compat-attachment-fields\n\t> tbody\n\t> tr.acf-tab-wrap\n\t.acf-tab-group {\n\tpadding-left: 23%;\n\tborder-bottom-color: #dddddd;\n}\n\n/* table */\n\n.form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n\tpadding: 0 5px 0 210px;\n}\n\n/* rtl */\nhtml[dir=\"rtl\"] .form-table > tbody > tr.acf-tab-wrap .acf-tab-group {\n\tpadding: 0 210px 0 5px;\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\toembed\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-oembed {\n\tposition: relative;\n\tborder: $wp-card-border solid 1px;\n\tbackground: #fff;\n\n\t.title {\n\t\tposition: relative;\n\t\tborder-bottom: $wp-card-border solid 1px;\n\t\tpadding: 5px 10px;\n\n\t\t.input-search {\n\t\t\tmargin: 0;\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 30px;\n\t\t\theight: 30px;\n\t\t\tpadding: 0;\n\t\t\tborder: 0 none;\n\t\t\tbox-shadow: none;\n\t\t\tborder-radius: 0;\n\t\t\tfont-family: inherit;\n\t\t\tcursor: text;\n\t\t}\n\n\t\t.acf-actions {\n\t\t\tpadding: 6px;\n\t\t}\n\t}\n\n\t.canvas {\n\t\tposition: relative;\n\t\tmin-height: 250px;\n\t\tbackground: #f9f9f9;\n\n\t\t.canvas-media {\n\t\t\tposition: relative;\n\t\t\tz-index: 1;\n\t\t}\n\n\t\tiframe {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t.acf-icon.-picture {\n\t\t\t@include centered();\n\t\t\tz-index: 0;\n\n\t\t\theight: 42px;\n\t\t\twidth: 42px;\n\t\t\tfont-size: 42px;\n\t\t\tcolor: #999;\n\t\t}\n\n\t\t.acf-loading-overlay {\n\t\t\tbackground: rgba(255, 255, 255, 0.9);\n\t\t}\n\n\t\t.canvas-error {\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 0%;\n\t\t\tright: 0%;\n\t\t\tmargin: -9px 0 0 0;\n\t\t\ttext-align: center;\n\t\t\tdisplay: none;\n\n\t\t\tp {\n\t\t\t\tpadding: 8px;\n\t\t\t\tmargin: 0;\n\t\t\t\tdisplay: inline;\n\t\t\t}\n\t\t}\n\t}\n\n\t// has value\n\t&.has-value {\n\t\t.canvas {\n\t\t\tmin-height: 50px;\n\t\t}\n\n\t\t.input-search {\n\t\t\tfont-weight: bold;\n\t\t}\n\n\t\t.title:hover .acf-actions {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tImage\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-image-uploader {\n\t@include clearfix();\n\tposition: relative;\n\n\tp {\n\t\tmargin: 0;\n\t}\n\n\t/* image wrap*/\n\t.image-wrap {\n\t\tposition: relative;\n\t\tfloat: left;\n\n\t\timg {\n\t\t\tmax-width: 100%;\n\t\t\tmax-height: 100%;\n\t\t\twidth: auto;\n\t\t\theight: auto;\n\t\t\tdisplay: block;\n\t\t\tmin-width: 30px;\n\t\t\tmin-height: 30px;\n\t\t\tbackground: #f1f1f1;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t/* svg */\n\t\t\t&[src$=\".svg\"] {\n\t\t\t\tmin-height: 100px;\n\t\t\t\tmin-width: 100px;\n\t\t\t}\n\t\t}\n\n\t\t/* hover */\n\t\t&:hover .acf-actions {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n\n\t/* input */\n\tinput.button {\n\t\twidth: auto;\n\t}\n\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\t.image-wrap {\n\t\t\tfloat: right;\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tFile\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-file-uploader {\n\tposition: relative;\n\n\tp {\n\t\tmargin: 0;\n\t}\n\n\t.file-wrap {\n\t\tborder: $wp-card-border solid 1px;\n\t\tmin-height: 84px;\n\t\tposition: relative;\n\t\tbackground: #fff;\n\t}\n\n\t.file-icon {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tbottom: 0;\n\t\tpadding: 10px;\n\t\tbackground: #f1f1f1;\n\t\tborder-right: $wp-card-border-1 solid 1px;\n\n\t\timg {\n\t\t\tdisplay: block;\n\t\t\tpadding: 0;\n\t\t\tmargin: 0;\n\t\t\tmax-width: 48px;\n\t\t}\n\t}\n\n\t.file-info {\n\t\tpadding: 10px;\n\t\tmargin-left: 69px;\n\n\t\tp {\n\t\t\tmargin: 0 0 2px;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.4em;\n\t\t\tword-break: break-all;\n\t\t}\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\t}\n\n\t/* hover */\n\t&:hover .acf-actions {\n\t\tdisplay: block;\n\t}\n\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\t.file-icon {\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t\tborder-left: #e5e5e5 solid 1px;\n\t\t\tborder-right: none;\n\t\t}\n\n\t\t.file-info {\n\t\t\tmargin-right: 69px;\n\t\t\tmargin-left: 0;\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tDate Picker\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-ui-datepicker .ui-datepicker {\n\tz-index: 900000 !important;\n\n\t.ui-widget-header a {\n\t\tcursor: pointer;\n\t\ttransition: none;\n\t}\n}\n\n/* fix highlight state overriding hover / active */\n.acf-ui-datepicker .ui-state-highlight.ui-state-hover {\n\tborder: 1px solid #98b7e8 !important;\n\tbackground: #98b7e8 !important;\n\tfont-weight: normal !important;\n\tcolor: #ffffff !important;\n}\n\n.acf-ui-datepicker .ui-state-highlight.ui-state-active {\n\tborder: 1px solid #3875d7 !important;\n\tbackground: #3875d7 !important;\n\tfont-weight: normal !important;\n\tcolor: #ffffff !important;\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tSeparator field\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-field-separator {\n\t.acf-label {\n\t\tmargin-bottom: 0;\n\n\t\tlabel {\n\t\t\tfont-weight: normal;\n\t\t}\n\t}\n\n\t.acf-input {\n\t\tdisplay: none;\n\t}\n\n\t/* fields */\n\t.acf-fields > & {\n\t\tbackground: #f9f9f9;\n\t\tborder-bottom: 1px solid #dfdfdf;\n\t\tborder-top: 1px solid #dfdfdf;\n\t\tmargin-bottom: -1px;\n\t\tz-index: 2;\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tTaxonomy\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-taxonomy-field {\n\tposition: relative;\n\n\t.categorychecklist-holder {\n\t\tborder: $wp-card-border solid 1px;\n\t\tborder-radius: 3px;\n\t\tmax-height: 200px;\n\t\toverflow: auto;\n\t}\n\n\t.acf-checkbox-list {\n\t\tmargin: 0;\n\t\tpadding: 10px;\n\n\t\tul.children {\n\t\t\tpadding-left: 18px;\n\t\t}\n\t}\n\n\t/* hover */\n\t&:hover {\n\t\t.acf-actions {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n\n\t/* select */\n\t&[data-ftype=\"select\"] {\n\t\t.acf-actions {\n\t\t\tpadding: 0;\n\t\t\tmargin: -9px;\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tRange\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-range-wrap {\n\t.acf-append,\n\t.acf-prepend {\n\t\tdisplay: inline-block;\n\t\tvertical-align: middle;\n\t\tline-height: 28px;\n\t\tmargin: 0 7px 0 0;\n\t}\n\n\t.acf-append {\n\t\tmargin: 0 0 0 7px;\n\t}\n\n\tinput[type=\"range\"] {\n\t\tdisplay: inline-block;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tvertical-align: middle;\n\t\theight: 28px;\n\n\t\t&:focus {\n\t\t\toutline: none;\n\t\t}\n\t}\n\n\tinput[type=\"number\"] {\n\t\tdisplay: inline-block;\n\t\tmin-width: 3em;\n\t\tmargin-left: 10px;\n\t\tvertical-align: middle;\n\t}\n\n\t/* rtl */\n\thtml[dir=\"rtl\"] & {\n\t\tinput[type=\"number\"] {\n\t\t\tmargin-right: 10px;\n\t\t\tmargin-left: 0;\n\t\t}\n\n\t\t.acf-append {\n\t\t\tmargin: 0 7px 0 0;\n\t\t}\n\t\t.acf-prepend {\n\t\t\tmargin: 0 0 0 7px;\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* acf-accordion\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-accordion {\n\tmargin: -1px 0;\n\tpadding: 0;\n\tbackground: #fff;\n\tborder-top: 1px solid $wp-card-border-1;\n\tborder-bottom: 1px solid $wp-card-border-1;\n\tz-index: 1; // Display above following field.\n\n\t// Title.\n\t.acf-accordion-title {\n\t\tmargin: 0;\n\t\tpadding: 12px;\n\t\tfont-weight: bold;\n\t\tcursor: pointer;\n\t\tfont-size: inherit;\n\t\tfont-size: 13px;\n\t\tline-height: 1.4em;\n\n\t\t&:hover {\n\t\t\tbackground: #f3f4f5;\n\t\t}\n\n\t\tlabel {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.4em;\n\t\t}\n\n\t\tp {\n\t\t\tfont-weight: normal;\n\t\t}\n\n\t\t.acf-accordion-icon {\n\t\t\tfloat: right;\n\t\t}\n\n\t\t// Gutenberg uses SVG.\n\t\tsvg.acf-accordion-icon {\n\t\t\tposition: absolute;\n\t\t\tright: 10px;\n\t\t\ttop: 50%;\n\t\t\ttransform: translateY(-50%);\n\t\t\tcolor: #191e23;\n\t\t\tfill: currentColor;\n\t\t}\n\t}\n\n\t.acf-accordion-content {\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-accordion-content {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n// Field specific overrides\n.acf-field.acf-accordion {\n\tmargin: -1px 0;\n\tpadding: 0 !important; // !important needed to avoid Gutenberg sidebar issues.\n\tborder-color: $wp-card-border-1;\n\n\t.acf-label.acf-accordion-title {\n\t\tpadding: 12px;\n\t\twidth: auto;\n\t\tfloat: none;\n\t\twidth: auto;\n\t}\n\n\t.acf-input.acf-accordion-content {\n\t\tpadding: 0;\n\t\tfloat: none;\n\t\twidth: auto;\n\n\t\t> .acf-fields {\n\t\t\tborder-top: $wp-card-border-2 solid 1px;\n\n\t\t\t&.-clear {\n\t\t\t\tpadding: 0 $fx $fy;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* field specific (left) */\n.acf-fields.-left > .acf-field.acf-accordion {\n\t&:before {\n\t\tdisplay: none;\n\t}\n\n\t.acf-accordion-title {\n\t\twidth: auto;\n\t\tmargin: 0 !important;\n\t\tpadding: 12px;\n\t\tfloat: none !important;\n\t}\n\n\t.acf-accordion-content {\n\t\tpadding: 0 !important;\n\t}\n}\n\n/* field specific (clear) */\n.acf-fields.-clear > .acf-field.acf-accordion {\n\tborder: #cccccc solid 1px;\n\tbackground: transparent;\n\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -16px;\n\t}\n}\n\n/* table */\ntr.acf-field.acf-accordion {\n\tbackground: transparent;\n\n\t> .acf-input {\n\t\tpadding: 0 !important;\n\t\tborder: #cccccc solid 1px;\n\t}\n\n\t.acf-accordion-content {\n\t\tpadding: 0 12px 12px;\n\t}\n}\n\n/* #addtag */\n#addtag div.acf-field.error {\n\tborder: 0 none;\n\tpadding: 8px 0;\n}\n\n#addtag > .acf-field.acf-accordion {\n\tpadding-right: 0;\n\tmargin-right: 5%;\n\n\t+ p.submit {\n\t\tmargin-top: 0;\n\t}\n}\n\n/* border */\ntr.acf-accordion {\n\tmargin: 15px 0 !important;\n\n\t+ tr.acf-accordion {\n\t\tmargin-top: -16px !important;\n\t}\n}\n\n/* seamless */\n.acf-postbox.seamless > .acf-fields > .acf-accordion {\n\tmargin-left: $field_padding_x;\n\tmargin-right: $field_padding_x;\n\tborder: $wp-card-border solid 1px;\n}\n\n/* rtl */\nhtml[dir=\"rtl\"] .acf-accordion {\n}\n\n/* menu item */\n/*\n.menu-item-settings > .field-acf > .acf-field.acf-accordion {\n\tborder: #dfdfdf solid 1px;\n\tmargin: 10px -13px 10px -11px;\n\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -11px;\n\t}\n}\n*/\n\n/* widget */\n.widget .widget-content > .acf-field.acf-accordion {\n\tborder: #dfdfdf solid 1px;\n\tmargin-bottom: 10px;\n\n\t.acf-accordion-title {\n\t\tmargin-bottom: 0;\n\t}\n\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -11px;\n\t}\n}\n\n// media modal\n.media-modal .compat-attachment-fields .acf-field.acf-accordion {\n\t// siblings\n\t+ .acf-field.acf-accordion {\n\t\tmargin-top: -1px;\n\t}\n\n\t// input\n\t> .acf-input {\n\t\twidth: 100%;\n\t}\n\n\t// table\n\t.compat-attachment-fields > tbody > tr > td {\n\t\tpadding-bottom: 5px;\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n*\tBlock Editor\n*\n*-----------------------------------------------------------------------------*/\n.block-editor {\n\t// Sidebar\n\t.edit-post-sidebar {\n\t\t// Remove metabox hndle border to simulate component panel.\n\t\t.acf-postbox {\n\t\t\t> .postbox-header,\n\t\t\t> .hndle {\n\t\t\t\tborder-bottom-width: 0 !important;\n\t\t\t}\n\t\t\t&.closed {\n\t\t\t\t> .postbox-header,\n\t\t\t\t> .hndle {\n\t\t\t\t\tborder-bottom-width: 1px !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Field wrap.\n\t\t.acf-fields {\n\t\t\tmin-height: 1px;\n\t\t\toverflow: auto; // Fixes margin-collapse issue in WP 5.3.\n\n\t\t\t> .acf-field {\n\t\t\t\tborder-width: 0;\n\t\t\t\tborder-color: #e2e4e7;\n\t\t\t\tmargin: 16px;\n\t\t\t\tpadding: 0;\n\n\t\t\t\t// Force full width.\n\t\t\t\twidth: auto !important;\n\t\t\t\tmin-height: 0 !important;\n\t\t\t\tfloat: none !important;\n\n\t\t\t\t// Field labels.\n\t\t\t\t> .acf-label {\n\t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\tlabel {\n\t\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Accordions.\n\t\t\t\t&.acf-accordion {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tborder-top-width: 1px;\n\n\t\t\t\t\t&:first-child {\n\t\t\t\t\t\tborder-top-width: 0;\n\t\t\t\t\t}\n\n\t\t\t\t\t.acf-accordion-title {\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 15px;\n\t\t\t\t\t\tlabel {\n\t\t\t\t\t\t\tfont-weight: 500;\n\t\t\t\t\t\t\tcolor: rgb(30, 30, 30);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tsvg.acf-accordion-icon {\n\t\t\t\t\t\t\tright: 16px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.acf-accordion-content {\n\t\t\t\t\t\t> .acf-fields {\n\t\t\t\t\t\t\tborder-top-width: 0;\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\n/*-----------------------------------------------------------------------------\n*\n* Prefix field label & prefix field names\n*\n*-----------------------------------------------------------------------------*/\n.acf-field-setting-prefix_label,\n.acf-field-setting-prefix_name {\n\tp.description {\n\t\torder: 3;\n\t\tmargin: {\n\t\t\ttop: 0;\n\t\t\tleft: 16px;\n\t\t}\n\n\t\tcode {\n\t\t\tpadding: {\n\t\t\t\ttop: 4px;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 4px;\n\t\t\t\tleft: 6px;\n\t\t\t}\n\t\t\tbackground-color: $gray-100;\n\t\t\tborder-radius: 4px;\n\t\t\t@extend .p7;\n\t\t\tcolor: $gray-500;\n\t\t}\n\t}\n}\n\n/*-----------------------------------------------------------------------------\n*\n* Editor tab styles\n*\n*-----------------------------------------------------------------------------*/\n\n.acf-fields > .acf-tab-wrap:first-child .acf-tab-group {\n\tborder-top: none;\n}\n\n.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {\n\tbackground: #ffffff;\n}\n\n.acf-fields > .acf-tab-wrap .acf-tab-group li a {\n\tbackground: #f1f1f1;\n\tborder-color: #ccd0d4;\n}\n\n.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {\n\tbackground: #fff;\n}\n","/*--------------------------------------------------------------------------------------------\n*\n*\tUser\n*\n*--------------------------------------------------------------------------------------------*/\n\n.form-table > tbody {\n\n\t/* field */\n\t> .acf-field {\n\n\t\t/* label */\n\t\t> .acf-label {\n\t\t\tpadding: 20px 10px 20px 0;\n\t\t width: 210px;\n\n\t\t /* rtl */\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tpadding: 20px 0 20px 10px;\n\t\t\t}\n\n\t\t label {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tcolor: #23282d;\n\t\t\t}\n\n\t\t}\n\n\n\t\t/* input */\n\t\t> .acf-input {\n\t\t\tpadding: 15px 10px;\n\n\t\t\t/* rtl */\n\t\t\thtml[dir=\"rtl\"] & {\n\t\t\t\tpadding: 15px 10px 15px 5%;\n\t\t\t}\n\t\t}\n\n\t}\n\n\n\t/* tab wrap */\n\t> .acf-tab-wrap td {\n\t\tpadding: 15px 5% 15px 0;\n\n\t\t/* rtl */\n\t\thtml[dir=\"rtl\"] & {\n\t\t\tpadding: 15px 0 15px 5%;\n\t\t}\n\n\t}\n\n\n\t/* misc */\n\t.form-table th.acf-th {\n\t\twidth: auto;\n\t}\n\n}\n\n#your-profile,\n#createuser {\n\n\t/* override for user css */\n\t.acf-field input[type=\"text\"],\n\t.acf-field input[type=\"password\"],\n\t.acf-field input[type=\"number\"],\n\t.acf-field input[type=\"search\"],\n\t.acf-field input[type=\"email\"],\n\t.acf-field input[type=\"url\"],\n\t.acf-field select {\n\t max-width: 25em;\n\t}\n\n\t.acf-field textarea {\n\t\tmax-width: 500px;\n\t}\n\n\n\t/* allow sub fields to display correctly */\n\t.acf-field .acf-field input[type=\"text\"],\n\t.acf-field .acf-field input[type=\"password\"],\n\t.acf-field .acf-field input[type=\"number\"],\n\t.acf-field .acf-field input[type=\"search\"],\n\t.acf-field .acf-field input[type=\"email\"],\n\t.acf-field .acf-field input[type=\"url\"],\n\t.acf-field .acf-field textarea,\n\t.acf-field .acf-field select {\n\t max-width: none;\n\t}\n}\n\n#registerform {\n\n\th2 {\n\t\tmargin: 1em 0;\n\t}\n\n\t.acf-field {\n\t\tmargin-top: 0;\n\n\t\t.acf-label {\n\t\t\tmargin-bottom: 0;\n\n\t\t\tlabel {\n\t\t\t\tfont-weight: normal;\n\t\t\t\tline-height: 1.5;\n\t\t\t}\n\t\t}\n\n/*\n\t\t.acf-input {\n\t\t\tinput {\n\t\t\t\tfont-size: 24px;\n\t\t\t\tpadding: 5px;\n\t\t\t\theight: auto;\n\t\t\t}\n\t\t}\n*/\n\t}\n\n\tp.submit {\n\t\ttext-align: right;\n\t}\n\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tTerm\n*\n*--------------------------------------------------------------------------------------------*/\n\n// add term\n#acf-term-fields {\n\tpadding-right: 5%;\n\n\t> .acf-field {\n\n\t\t> .acf-label {\n\t\t\tmargin: 0;\n\n\t\t\tlabel {\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t}\n\n}\n\np.submit .spinner,\np.submit .acf-spinner {\n\tvertical-align: top;\n\tfloat: none;\n\tmargin: 4px 4px 0;\n}\n\n\n// edit term\n#edittag .acf-fields.-left {\n\n\t> .acf-field {\n\t\tpadding-left: 220px;\n\n\t\t&:before {\n\t\t\twidth: 209px;\n\t\t}\n\n\t\t> .acf-label {\n\t\t\twidth: 220px;\n\t\t\tmargin-left: -220px;\n\t\t\tpadding: 0 10px;\n\t\t}\n\n\t\t> .acf-input {\n\t\t\tpadding: 0;\n\t\t}\n\t}\n}\n\n#edittag > .acf-fields.-left {\n\twidth: 96%;\n\n\t> .acf-field {\n\n\t\t> .acf-label {\n\t\t\tpadding-left: 0;\n\t\t}\n\t}\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tComment\n*\n*--------------------------------------------------------------------------------------------*/\n\n.editcomment td:first-child {\n white-space: nowrap;\n width: 131px;\n}\n\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tWidget\n*\n*--------------------------------------------------------------------------------------------*/\n\n#widgets-right .widget .acf-field .description {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\n.acf-widget-fields {\n\n\t> .acf-field {\n\n\t\t.acf-label {\n\t\t\tmargin-bottom: 5px;\n\n\t\t\tlabel {\n\t\t\t\tfont-weight: normal;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*--------------------------------------------------------------------------------------------\n*\n*\tNav Menu\n*\n*--------------------------------------------------------------------------------------------*/\n\n.acf-menu-settings {\n\tborder-top: 1px solid #eee;\n margin-top: 2em;\n\n\t// seamless\n\t&.-seamless {\n\t\tborder-top: none;\n\t\tmargin-top: 15px;\n\n\t\t> h2 { display: none; }\n\t}\n\n\t// Fix relationship conflict.\n\t.list li {\n\t\tdisplay: block;\n\t\tmargin-bottom: 0;\n\t}\n}\n\n.acf-fields.acf-menu-item-fields {\n\tclear: both;\n\tpadding-top: 1px; // Fixes margin overlap.\n\n\t> .acf-field {\n\t\tmargin: 5px 0;\n\t\tpadding-right: 10px;\n\n\t\t.acf-label {\n\t\t\tmargin-bottom: 0;\n\t\t\tlabel {\n\t\t\t\tfont-style: italic;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n* Attachment Form (single)\n*\n*---------------------------------------------------------------------------------------------*/\n\n#post .compat-attachment-fields {\n\n\t.compat-field-acf-form-data {\n\t\tdisplay: none;\n\t}\n\n\t&,\n\t> tbody,\n\t> tbody > tr,\n\t> tbody > tr > th,\n\t> tbody > tr > td {\n\t\tdisplay: block;\n\t}\n\n\t> tbody > .acf-field {\n\t\tmargin: 15px 0;\n\n\t\t> .acf-label {\n\t\t\tmargin: 0;\n\n\t\t\tlabel {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tp {\n\t\t\t\t\tmargin: 0 0 3px !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t> .acf-input {\n\t\t\tmargin: 0;\n\t\t}\n\t}\n}\n\n","/*---------------------------------------------------------------------------------------------\n*\n* Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n\n/* WP sets tables to act as divs. ACF uses tables, so these muct be reset */\n.media-modal .compat-attachment-fields td.acf-input {\n\t\n\ttable {\n\t\tdisplay: table;\n\t\ttable-layout: auto;\n\t\t\n\t\ttbody {\n\t\t\tdisplay: table-row-group;\n\t\t}\n\t\t\n\t\ttr {\n\t\t\tdisplay: table-row;\n\t\t}\n\t\t\n\t\ttd, th {\n\t\t\tdisplay: table-cell;\n\t\t}\n\t\t\n\t}\n\t\n}\n\n\n/* field widths floats */\n.media-modal .compat-attachment-fields > tbody > .acf-field {\n\tmargin: 5px 0;\n\t\n\t> .acf-label {\n\t\tmin-width: 30%;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tfloat: left;\n\t text-align: right;\n\t display: block;\n\t float: left;\n\t \n\t > label {\n\t\t padding-top: 6px;\n\t\t\tmargin: 0;\n\t\t\tcolor: #666666;\n\t\t font-weight: 400;\n\t\t line-height: 16px;\n\t }\n\t}\n\t\n\t> .acf-input {\n\t\twidth: 65%;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t float: right;\n\t display: block;\n\t}\n\t\n\tp.description {\n\t\tmargin: 0;\n\t}\n}\n\n\n/* restricted selection (copy of WP .upload-errors)*/\n.acf-selection-error {\n\tbackground: #ffebe8;\n border: 1px solid #c00;\n border-radius: 3px;\n padding: 8px;\n margin: 20px 0 0;\n \n .selection-error-label {\n\t\tbackground: #CC0000;\n\t border-radius: 3px;\n\t color: #fff;\n\t font-weight: bold;\n\t margin-right: 8px;\n\t padding: 2px 4px;\n\t}\n\t\n\t.selection-error-message {\n\t\tcolor: #b44;\n\t display: block;\n\t padding-top: 8px;\n\t word-wrap: break-word;\n\t white-space: pre-wrap;\n\t}\n}\n\n\n/* disabled attachment */\n.media-modal .attachment.acf-disabled {\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/* misc */\n.media-modal {\n\t\n\t/* compat-item */\n\t.compat-field-acf-form-data,\n\t.compat-field-acf-blank {\n\t\tdisplay: none !important;\n\t}\n\t\n\t\n\t/* allow line breaks in upload error */\n\t.upload-error-message {\n\t\twhite-space: pre-wrap;\n\t}\n\t\n\t\n\t/* fix required span */\n\t.acf-required {\n\t\tpadding: 0 !important;\n\t\tmargin: 0 !important;\n\t\tfloat: none !important;\n\t\tcolor: #f00 !important;\n\t}\n\t\n\t\n\t/* sidebar */\n\t.media-sidebar {\n\t\t\n\t\t.compat-item{\n\t\t\tpadding-bottom: 20px;\n\t\t}\n\t\t\n\t}\n\t\n\t\n\t/* mobile md */\n\t@media (max-width: 900px) {\n\t\t\n\t\t/* label */\n\t\t.setting span, \n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-label {\n\t\t\twidth: 98%;\n\t\t\tfloat: none;\n\t\t\ttext-align: left;\n\t\t\tmin-height: 0;\n\t\t\tpadding: 0;\n\t\t}\n\t\t\n\t\t\n\t\t/* field */\n\t\t.setting input, \n\t\t.setting textarea, \n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-input {\n\t\t\tfloat: none;\n\t\t height: auto;\n\t\t max-width: none;\n\t\t width: 98%;\n\t\t}\n\n\t}\n\n\t\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* Media Model (expand details)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.media-modal .acf-expand-details {\n\tfloat: right;\n\tpadding: 8px 10px;\n\tmargin-right: 6px;\n\tfont-size: 13px;\n\theight: 18px;\n\tline-height: 18px;\n\tcolor: #666;\n\ttext-decoration: none;\n\n\t// States.\n\t&:focus, &:active {\n\t\toutline: 0 none;\n\t\tbox-shadow: none;\n\t\tcolor: #666;\n\t}\n\t&:hover {\n\t\tcolor: #000;\n\t}\n\t\n\t// Open & close.\n\t.is-open { display: none; }\n\t.is-closed { display: block; }\n\t\n\t// Hide on mobile.\n\t@media (max-width: $sm) {\n\t\tdisplay: none;\n\t}\n}\n\n\n/* expanded */\n.media-modal.acf-expanded {\n\t\n\t/* toggle */\n\t.acf-expand-details {\n\t\t.is-open { display: block; }\n\t\t.is-closed { display: none; }\n\t\t\n\t}\n\t\n\t// Components.\n\t.attachments-browser .media-toolbar, \n\t.attachments-browser .attachments { right: 740px; }\n\t.media-sidebar { width: 708px; }\n\t\n\t// Sidebar.\n\t.media-sidebar {\n\t\t\n\t\t// Attachment info.\n\t\t.attachment-info {\n\t\t\t.thumbnail {\n\t\t\t\tfloat: left;\n\t\t\t\tmax-height: none;\n\n\t\t\t\timg {\n\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\tmax-height: 200px;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.details {\n\t\t\t\tfloat: right;\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Label\n\t\t.attachment-info .thumbnail,\n\t\t.attachment-details .setting .name, \n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-label {\n\t\t\tmin-width: 20%;\n\t\t\tmargin-right: 0;\n\t\t}\n\t\t\n\t\t// Input\n\t\t.attachment-info .details,\n\t\t.attachment-details .setting input, \n\t\t.attachment-details .setting textarea,\n\t\t.attachment-details .setting + .description,\n\t\t.compat-attachment-fields > tbody > .acf-field > .acf-input {\n\t\t\tmin-width: 77%;\n\t\t}\n\t}\n\t\n\t// Screen: Medium.\n\t@media (max-width: 900px) {\n\t\t\n\t\t// Components.\n\t\t.attachments-browser .media-toolbar { display: none; }\n\t\t.attachments { display: none; }\n\t\t.media-sidebar { width: auto; max-width: none !important; bottom: 0 !important; }\n\t\t\n\t\t// Sidebar.\n\t\t.media-sidebar {\n\t\t\t\n\t\t\t// Attachment info.\n\t\t\t.attachment-info {\n\t\t\t\t.thumbnail {\n\t\t\t\t\tmin-width: 0;\n\t\t\t\t\tmax-width: none;\n\t\t\t\t\twidth: 30%;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.details {\n\t\t\t\t\tmin-width: 0;\n\t\t\t\t\tmax-width: none;\n\t\t\t\t\twidth: 67%;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\t\n\t\t}\n\t}\n\t\n\t// Screen: small.\n\t@media (max-width: 640px) {\n\t\t\n\t\t// Sidebar.\n\t\t.media-sidebar {\n\t\t\t\n\t\t\t// Attachment info.\n\t\t\t.attachment-info {\n\t\t\t\t.thumbnail, .details {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\n\t}\n}\n\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-media-modal {\n\t\n\t/* hide embed settings */\n\t.media-embed {\n\t\t.setting.align,\n\t\t.setting.link-to {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Select Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-media-modal.-select {\n\t\n\t\n\t\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n* ACF Media Model (Edit Mode)\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-media-modal.-edit {\n\t\n\t/* resize modal */\n\tleft: 15%;\n\tright: 15%;\n\ttop: 100px;\n\tbottom: 100px;\n\t\n\t\n\t/* hide elements */\n\t.media-frame-menu,\n\t.media-frame-router,\n\t.media-frame-content .attachments,\n\t.media-frame-content .media-toolbar {\n\t display: none;\n\t}\n\t\n\t\n\t/* full width */\n\t.media-frame-title,\n\t.media-frame-content,\n\t.media-frame-toolbar,\n\t.media-sidebar {\n\t\twidth: auto;\n\t\tleft: 0;\n\t\tright: 0;\n\t}\n\t\n\t\n\t/* tidy up incorrect distance */\n\t.media-frame-content {\n\t top: 50px;\n\t}\n\t\n\t\n\t/* title box shadow (to match media grid) */\n\t.media-frame-title {\n\t border-bottom: 1px solid #DFDFDF;\n\t box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);\n\t}\n\t\n\t\n\t/* sidebar */\n\t.media-sidebar {\n\t\t\n\t\tpadding: 0 16px;\n\t\t\n\t\t/* WP details */\n\t\t.attachment-details {\n\t\t\t\n\t\t\toverflow: visible;\n\t\t\t\n\t\t\t/* hide 'Attachment Details' heading */\n\t\t\t> h3, > h2 {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t/* remove overflow */\n\t\t\t.attachment-info {\n\t\t\t\tbackground: #fff;\n\t\t\t\tborder-bottom: #dddddd solid 1px;\n\t\t\t\tpadding: 16px;\n\t\t\t\tmargin: 0 -16px 16px;\n\t\t\t}\n\t\t\t\n\t\t\t/* move thumbnail */\n\t\t\t.thumbnail {\n\t\t\t\tmargin: 0 16px 0 0;\n\t\t\t}\n\t\t\t\n\t\t\t.setting {\n\t\t\t\tmargin: 0 0 5px;\n\t\t\t\t\n\t\t\t\tspan {\n\t\t\t\t\tmargin: 0;\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/* ACF fields */\n\t\t.compat-attachment-fields {\n\t\t\t\n\t\t\t> tbody > .acf-field {\n\t\t\t\tmargin: 0 0 5px;\n\t\t\t\t\n\t\t\t\tp.description {\n\t\t\t\t\tmargin-top: 3px;\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/* WP required message */\n\t\t.media-types-required-info { display: none; }\n\t\t\n\t}\n\t\n\t\n\t/* mobile md */\n\t@media (max-width: 900px) {\n\t\ttop: 30px;\n\t\tright: 30px;\n\t\tbottom: 30px;\n\t\tleft: 30px;\n\t}\n\t\n\t\n\t/* mobile sm */\n\t@media (max-width: 640px) {\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\t\n\t@media (max-width: 480px) {\n\t\t.media-frame-content {\n\t\t top: 40px;\n\t\t}\n\t}\n}\n","// Temp remove.\n.acf-temp-remove {\n\tposition: relative;\n\topacity: 1;\n\t-webkit-transition: all 0.25s ease;\n\t-moz-transition: all 0.25s ease;\n\t-o-transition: all 0.25s ease;\n\ttransition: all 0.25s ease;\n\toverflow: hidden;\n\t\n\t/* overlay prevents hover */\n\t&:after {\n\t\tdisplay: block;\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tz-index: 99;\n\t}\n}\n\n// Conditional Logic.\n.hidden-by-conditional-logic {\n\tdisplay: none !important;\n\t\n\t// Table cells may \"appear empty\".\n\t&.appear-empty {\n\t\tdisplay: table-cell !important;\n\t\t.acf-input {\n\t\t\tdisplay: none !important;\n\t\t}\n\t}\n}\n\n// Compat support for \"Tabify\" plugin.\n.acf-postbox.acf-hidden {\n\tdisplay: none !important;\n}\n\n// Focus Attention.\n.acf-attention {\n\ttransition: border 0.250s ease-out;\n\t&.-focused {\n\t\tborder: #23282d solid 1px !important;\n\t\ttransition: none;\n\t}\n}\ntr.acf-attention {\n\ttransition: box-shadow 0.250s ease-out;\n\tposition: relative;\n\t&.-focused {\n\t\tbox-shadow: #23282d 0 0 0px 1px !important;\n\t}\n}","// Gutenberg specific styles.\n#editor {\n\n\t// Postbox container.\n\t.edit-post-layout__metaboxes {\n\t\tpadding: 0;\n\t\t.edit-post-meta-boxes-area {\n\t\t\tmargin: 0;\n\t\t}\n\t}\n\n\t// Sidebar postbox container.\n\t.metabox-location-side {\n\t\t.postbox-container {\n\t\t\tfloat: none;\n\t\t}\n\t}\n\n\t// Alter postbox to look like panel component.\n\t.postbox {\n\t\tcolor: #444;\n\n\t\t> .postbox-header {\n\t\t\t.hndle {\n\t\t\t\tborder-bottom: none;\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: transparent;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.handle-actions {\n\t\t\t\t.handle-order-higher,\n\t\t\t\t.handle-order-lower {\n\t\t\t\t\twidth: 1.62rem;\n\t\t\t\t}\n\n\t\t\t\t// Fix \"Edit\" icon height.\n\t\t\t\t.acf-hndle-cog {\n\t\t\t\t\theight: 44px;\n\t\t\t\t\tline-height: 44px;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&:hover {\n\t\t\t\tbackground: #f0f0f0;\n\t\t\t}\n\t\t}\n\n\t\t// Hide bottom border of last postbox.\n\t\t&:last-child.closed > .postbox-header {\n\t\t\tborder-bottom: none;\n\t\t}\n\t\t&:last-child > .inside {\n\t\t\tborder-bottom: none;\n\t\t}\n\t}\n\n\t// Prevent metaboxes being forced offscreen.\n\t.block-editor-writing-flow__click-redirect {\n\t\tmin-height: 50px;\n\t}\n}\n\n// Fix to display \"High\" metabox area when dragging metaboxes.\nbody.is-dragging-metaboxes #acf_after_title-sortables{\n\toutline: 3px dashed #646970;\n\tdisplay: flow-root;\n\tmin-height: 60px;\n\tmargin-bottom: 3px !important\n}\n\n\n\n"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/css/acf-input.min.css b/assets/build/css/acf-input.min.css index 6697be7..ebe08cd 100644 --- a/assets/build/css/acf-input.min.css +++ b/assets/build/css/acf-input.min.css @@ -1 +1 @@ -.acf-field,.acf-field .acf-label,.acf-field .acf-input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative}.acf-field{margin:15px 0;clear:both}.acf-field p.description{display:block;margin:0;padding:0}.acf-field .acf-label{vertical-align:top;margin:0 0 10px}.acf-field .acf-label label{display:block;font-weight:bold;margin:0 0 3px;padding:0}.acf-field .acf-label:empty{margin-bottom:0}.acf-field .acf-input{vertical-align:top}.acf-field .acf-input>p.description{margin-top:5px}.acf-field .acf-notice{margin:0 0 15px;background:#edf2ff;color:#0c6ca0;border-color:#2183b9}.acf-field .acf-notice.-error{background:#ffe6e6;color:#cc2727;border-color:#d12626}.acf-field .acf-notice.-success{background:#eefbe8;color:#0e7b17;border-color:#32a23b}.acf-field .acf-notice.-warning{background:#fff3e6;color:#bd4b0e;border-color:#d16226}td.acf-field,tr.acf-field{margin:0}.acf-field[data-width]{float:left;clear:none}.acf-field[data-width]+.acf-field[data-width]{border-left:1px solid #eee}html[dir=rtl] .acf-field[data-width]{float:right}html[dir=rtl] .acf-field[data-width]+.acf-field[data-width]{border-left:none;border-right:1px solid #eee}td.acf-field[data-width],tr.acf-field[data-width]{float:none}.acf-field.-c0{clear:both;border-left-width:0 !important}html[dir=rtl] .acf-field.-c0{border-left-width:1px !important;border-right-width:0 !important}.acf-field.-r0{border-top-width:0 !important}.acf-fields{position:relative}.acf-fields:after{display:block;clear:both;content:""}.acf-fields.-border{border:#ccd0d4 solid 1px;background:#fff}.acf-fields>.acf-field{position:relative;margin:0;padding:15px 12px;border-top:#eee solid 1px}.acf-fields>.acf-field:first-child{border-top:none;margin-top:0}td.acf-fields{padding:0 !important}.acf-fields.-clear>.acf-field{border:none;padding:0;margin:15px 0}.acf-fields.-clear>.acf-field[data-width]{border:none !important}.acf-fields.-clear>.acf-field>.acf-label{padding:0}.acf-fields.-clear>.acf-field>.acf-input{padding:0}.acf-fields.-left>.acf-field{padding:15px 0}.acf-fields.-left>.acf-field:after{display:block;clear:both;content:""}.acf-fields.-left>.acf-field:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acf-fields.-left>.acf-field[data-width]{float:none;width:auto !important;border-left-width:0 !important;border-right-width:0 !important}.acf-fields.-left>.acf-field>.acf-label{float:left;width:20%;margin:0;padding:0 12px}.acf-fields.-left>.acf-field>.acf-input{float:left;width:80%;margin:0;padding:0 12px}html[dir=rtl] .acf-fields.-left>.acf-field:before{border-width:0 0 0 1px;left:auto;right:0}html[dir=rtl] .acf-fields.-left>.acf-field>.acf-label{float:right}html[dir=rtl] .acf-fields.-left>.acf-field>.acf-input{float:right}#side-sortables .acf-fields.-left>.acf-field:before{display:none}#side-sortables .acf-fields.-left>.acf-field>.acf-label{width:100%;margin-bottom:10px}#side-sortables .acf-fields.-left>.acf-field>.acf-input{width:100%}@media screen and (max-width: 640px){.acf-fields.-left>.acf-field:before{display:none}.acf-fields.-left>.acf-field>.acf-label{width:100%;margin-bottom:10px}.acf-fields.-left>.acf-field>.acf-input{width:100%}}.acf-fields.-clear.-left>.acf-field{padding:0;border:none}.acf-fields.-clear.-left>.acf-field:before{display:none}.acf-fields.-clear.-left>.acf-field>.acf-label{padding:0}.acf-fields.-clear.-left>.acf-field>.acf-input{padding:0}.acf-table tr.acf-field>td.acf-label{padding:15px 12px;margin:0;background:#f9f9f9;width:20%}.acf-table tr.acf-field>td.acf-input{padding:15px 12px;margin:0;border-left-color:#e1e1e1}.acf-sortable-tr-helper{position:relative !important;display:table-row !important}.acf-postbox{position:relative}.acf-postbox>.inside{margin:0 !important;padding:0 !important}.acf-postbox .acf-hndle-cog{color:#72777c;font-size:16px;line-height:36px;height:36px;width:1.62rem;position:relative;display:none}.acf-postbox .acf-hndle-cog:hover{color:#191e23}.acf-postbox>.hndle:hover .acf-hndle-cog,.acf-postbox>.postbox-header:hover .acf-hndle-cog{display:inline-block}.acf-postbox>.hndle .acf-hndle-cog{height:20px;line-height:20px;float:right;width:auto}.acf-postbox>.hndle .acf-hndle-cog:hover{color:#777}.acf-postbox .acf-replace-with-fields{padding:15px;text-align:center}#post-body-content #acf_after_title-sortables{margin:20px 0 -20px}.acf-postbox.seamless{border:0 none;background:transparent;box-shadow:none}.acf-postbox.seamless>.postbox-header,.acf-postbox.seamless>.hndle,.acf-postbox.seamless>.handlediv{display:none !important}.acf-postbox.seamless>.inside{display:block !important;margin-left:-12px !important;margin-right:-12px !important}.acf-postbox.seamless>.inside>.acf-field{border-color:transparent}.acf-postbox.seamless>.acf-fields.-left>.acf-field:before{display:none}@media screen and (max-width: 782px){.acf-postbox.seamless>.acf-fields.-left>.acf-field>.acf-label,.acf-postbox.seamless>.acf-fields.-left>.acf-field>.acf-input{padding:0}}.acf-field input[type=text],.acf-field input[type=password],.acf-field input[type=date],.acf-field input[type=datetime],.acf-field input[type=datetime-local],.acf-field input[type=email],.acf-field input[type=month],.acf-field input[type=number],.acf-field input[type=search],.acf-field input[type=tel],.acf-field input[type=time],.acf-field input[type=url],.acf-field input[type=week],.acf-field textarea,.acf-field select{width:100%;padding:4px 8px;margin:0;box-sizing:border-box;font-size:14px;line-height:1.4}.acf-admin-3-8 .acf-field input[type=text],.acf-admin-3-8 .acf-field input[type=password],.acf-admin-3-8 .acf-field input[type=date],.acf-admin-3-8 .acf-field input[type=datetime],.acf-admin-3-8 .acf-field input[type=datetime-local],.acf-admin-3-8 .acf-field input[type=email],.acf-admin-3-8 .acf-field input[type=month],.acf-admin-3-8 .acf-field input[type=number],.acf-admin-3-8 .acf-field input[type=search],.acf-admin-3-8 .acf-field input[type=tel],.acf-admin-3-8 .acf-field input[type=time],.acf-admin-3-8 .acf-field input[type=url],.acf-admin-3-8 .acf-field input[type=week],.acf-admin-3-8 .acf-field textarea,.acf-admin-3-8 .acf-field select{padding:3px 5px}.acf-field textarea{resize:vertical}body.acf-browser-firefox .acf-field select{padding:4px 5px}.acf-input-prepend,.acf-input-append,.acf-input-wrap{box-sizing:border-box}.acf-input-prepend,.acf-input-append{font-size:14px;line-height:1.4;padding:4px 8px;background:#f5f5f5;border:#7e8993 solid 1px;min-height:30px}.acf-admin-3-8 .acf-input-prepend,.acf-admin-3-8 .acf-input-append{padding:3px 5px;border-color:#ddd;min-height:28px}.acf-input-prepend{float:left;border-right-width:0;border-radius:3px 0 0 3px}.acf-input-append{float:right;border-left-width:0;border-radius:0 3px 3px 0}.acf-input-wrap{position:relative;overflow:hidden}.acf-input-wrap .acf-is-prepended{border-radius:0 3px 3px 0 !important}.acf-input-wrap .acf-is-appended{border-radius:3px 0 0 3px !important}.acf-input-wrap .acf-is-prepended.acf-is-appended{border-radius:0 !important}html[dir=rtl] .acf-input-prepend{border-left-width:0;border-right-width:1px;border-radius:0 3px 3px 0;float:right}html[dir=rtl] .acf-input-append{border-left-width:1px;border-right-width:0;border-radius:3px 0 0 3px;float:left}html[dir=rtl] input.acf-is-prepended{border-radius:3px 0 0 3px !important}html[dir=rtl] input.acf-is-appended{border-radius:0 3px 3px 0 !important}html[dir=rtl] input.acf-is-prepended.acf-is-appended{border-radius:0 !important}.acf-color-picker .wp-color-result{border-color:#7e8993}.acf-admin-3-8 .acf-color-picker .wp-color-result{border-color:#ccd0d4}.acf-color-picker .wp-picker-active{position:relative;z-index:1}.acf-url i{position:absolute;top:5px;left:5px;opacity:.5;color:#7e8993}.acf-url input[type=url]{padding-left:27px !important}.acf-url.-valid i{opacity:1}.select2-container.-acf .select2-choices{background:#fff;border-color:#ddd;box-shadow:0 1px 2px rgba(0,0,0,.07) inset;min-height:31px}.select2-container.-acf .select2-choices .select2-search-choice{margin:5px 0 5px 5px;padding:3px 5px 3px 18px;border-color:#bbb;background:#f9f9f9;box-shadow:0 1px 0 rgba(255,255,255,.25) inset}.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper{background:#5897fb;border-color:#3f87fa;color:#fff;box-shadow:0 0 3px rgba(0,0,0,.1)}.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper a{visibility:hidden}.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-placeholder{background-color:#f7f7f7;border-color:#f7f7f7;visibility:visible !important}.select2-container.-acf .select2-choices .select2-search-choice-focus{border-color:#999}.select2-container.-acf .select2-choices .select2-search-field input{height:31px;line-height:22px;margin:0;padding:5px 5px 5px 7px}.select2-container.-acf .select2-choice{border-color:#bbb}.select2-container.-acf .select2-choice .select2-arrow{background:transparent;border-left-color:#dfdfdf;padding-left:1px}.select2-container.-acf .select2-choice .select2-result-description{display:none}.select2-container.-acf.select2-container-active .select2-choices,.select2-container.-acf.select2-dropdown-open .select2-choices{border-color:#5b9dd9;border-radius:3px 3px 0 0}.select2-container.-acf.select2-dropdown-open .select2-choice{background:#fff;border-color:#5b9dd9}html[dir=rtl] .select2-container.-acf .select2-search-choice-close{left:24px}html[dir=rtl] .select2-container.-acf .select2-choice>.select2-chosen{margin-left:42px}html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow{padding-left:0;padding-right:1px}.select2-drop .select2-search{padding:4px 4px 0}.select2-drop .select2-result .select2-result-description{color:#999;font-size:12px;margin-left:5px}.select2-drop .select2-result.select2-highlighted .select2-result-description{color:#fff;opacity:.75}.select2-container.-acf li{margin-bottom:0}.select2-container.-acf[data-select2-id^=select2-data] .select2-selection--multiple{overflow:hidden}.select2-container.-acf .select2-selection{border-color:#7e8993}.acf-admin-3-8 .select2-container.-acf .select2-selection{border-color:#aaa}.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child{float:none}.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child input{width:100% !important}.select2-container.-acf .select2-selection--multiple .select2-selection__rendered{padding-right:0}.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field]{display:inline;padding:0;margin:0}.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field] .select2-selection__choice{margin-right:0}.select2-container.-acf .select2-selection--multiple .select2-selection__choice{background-color:#f7f7f7;border-color:#ccc;max-width:100%;overflow:hidden;word-wrap:normal !important;white-space:normal}.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper{background:#5897fb;border-color:#3f87fa;color:#fff;box-shadow:0 0 3px rgba(0,0,0,.1)}.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper span{visibility:hidden}.select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{position:static;border-right:none;padding:0}.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-placeholder{background-color:#f7f7f7;border-color:#f7f7f7;visibility:visible !important}.select2-container.-acf .select2-selection--multiple .select2-search__field{box-shadow:none !important;min-height:0}.acf-row .select2-container.-acf .select2-selection--single{overflow:hidden}.acf-row .select2-container.-acf .select2-selection--single .select2-selection__rendered{white-space:normal}.select2-dropdown .select2-results__option{margin-bottom:0}.select2-container .select2-dropdown{z-index:900000}.select2-container .select2-dropdown .select2-search__field{line-height:1.4;min-height:0}.acf-link .link-wrap{display:none;border:#ccd0d4 solid 1px;border-radius:3px;padding:5px;line-height:26px;background:#fff;word-wrap:break-word;word-break:break-all}.acf-link .link-wrap .link-title{padding:0 5px}.acf-link.-value .button{display:none}.acf-link.-value .acf-icon.-link-ext{display:none}.acf-link.-value .link-wrap{display:inline-block}.acf-link.-external .acf-icon.-link-ext{display:inline-block}#wp-link-backdrop{z-index:900000 !important}#wp-link-wrap{z-index:900001 !important}ul.acf-radio-list,ul.acf-checkbox-list{background:transparent;position:relative;padding:1px;margin:0}ul.acf-radio-list li,ul.acf-checkbox-list li{font-size:13px;line-height:22px;margin:0;position:relative;word-wrap:break-word}ul.acf-radio-list li label,ul.acf-checkbox-list li label{display:inline}ul.acf-radio-list li input[type=checkbox],ul.acf-radio-list li input[type=radio],ul.acf-checkbox-list li input[type=checkbox],ul.acf-checkbox-list li input[type=radio]{margin:-1px 4px 0 0;vertical-align:middle}ul.acf-radio-list li input[type=text],ul.acf-checkbox-list li input[type=text]{width:auto;vertical-align:middle;margin:2px 0}ul.acf-radio-list li span,ul.acf-checkbox-list li span{float:none}ul.acf-radio-list li i,ul.acf-checkbox-list li i{vertical-align:middle}ul.acf-radio-list.acf-hl li,ul.acf-checkbox-list.acf-hl li{margin-right:20px;clear:none}html[dir=rtl] ul.acf-radio-list input[type=checkbox],html[dir=rtl] ul.acf-radio-list input[type=radio],html[dir=rtl] ul.acf-checkbox-list input[type=checkbox],html[dir=rtl] ul.acf-checkbox-list input[type=radio]{margin-left:4px;margin-right:0}.acf-button-group{display:inline-block}.acf-button-group label{display:inline-block;border:#7e8993 solid 1px;position:relative;z-index:1;padding:5px 10px;background:#fff}.acf-button-group label:hover{color:#016087;background:#f3f5f6;border-color:#0071a1;z-index:2}.acf-button-group label.selected{border-color:#007cba;background:#008dd4;color:#fff;z-index:2}.acf-button-group input{display:none !important}.acf-button-group{padding-left:1px;display:inline-flex;flex-direction:row;flex-wrap:nowrap}.acf-button-group label{margin:0 0 0 -1px;flex:1;text-align:center;white-space:nowrap}.acf-button-group label:first-child{border-radius:3px 0 0 3px}html[dir=rtl] .acf-button-group label:first-child{border-radius:0 3px 3px 0}.acf-button-group label:last-child{border-radius:0 3px 3px 0}html[dir=rtl] .acf-button-group label:last-child{border-radius:3px 0 0 3px}.acf-button-group label:only-child{border-radius:3px}.acf-button-group.-vertical{padding-left:0;padding-top:1px;flex-direction:column}.acf-button-group.-vertical label{margin:-1px 0 0 0}.acf-button-group.-vertical label:first-child{border-radius:3px 3px 0 0}.acf-button-group.-vertical label:last-child{border-radius:0 0 3px 3px}.acf-button-group.-vertical label:only-child{border-radius:3px}.acf-admin-3-8 .acf-button-group label{border-color:#ccd0d4}.acf-admin-3-8 .acf-button-group label:hover{border-color:#0071a1}.acf-admin-3-8 .acf-button-group label.selected{border-color:#007cba}.acf-checkbox-list .button{margin:10px 0 0}.acf-switch{display:inline-block;border-radius:5px;cursor:pointer;position:relative;background:#f5f5f5;height:30px;vertical-align:middle;border:#7e8993 solid 1px;-webkit-transition:background .25s ease;-moz-transition:background .25s ease;-o-transition:background .25s ease;transition:background .25s ease}.acf-switch span{display:inline-block;float:left;text-align:center;font-size:13px;line-height:22px;padding:4px 10px;min-width:15px}.acf-switch span i{vertical-align:middle}.acf-switch .acf-switch-on{color:#fff;text-shadow:#007cba 0 1px 0}.acf-switch .acf-switch-slider{position:absolute;top:2px;left:2px;bottom:2px;right:50%;z-index:1;background:#fff;border-radius:3px;border:#7e8993 solid 1px;-webkit-transition:all .25s ease;-moz-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;transition-property:left,right}.acf-switch:hover,.acf-switch.-focus{border-color:#0071a1;background:#f3f5f6;color:#016087}.acf-switch:hover .acf-switch-slider,.acf-switch.-focus .acf-switch-slider{border-color:#0071a1}.acf-switch.-on{background:#0d99d5;border-color:#007cba}.acf-switch.-on .acf-switch-slider{left:50%;right:2px;border-color:#007cba}.acf-switch.-on:hover{border-color:#007cba}.acf-switch+span{margin-left:6px}.acf-admin-3-8 .acf-switch{border-color:#ccd0d4}.acf-admin-3-8 .acf-switch .acf-switch-slider{border-color:#ccd0d4}.acf-admin-3-8 .acf-switch:hover,.acf-admin-3-8 .acf-switch.-focus{border-color:#0071a1}.acf-admin-3-8 .acf-switch:hover .acf-switch-slider,.acf-admin-3-8 .acf-switch.-focus .acf-switch-slider{border-color:#0071a1}.acf-admin-3-8 .acf-switch.-on{border-color:#007cba}.acf-admin-3-8 .acf-switch.-on .acf-switch-slider{border-color:#007cba}.acf-admin-3-8 .acf-switch.-on:hover{border-color:#007cba}.acf-switch-input{opacity:0;position:absolute;margin:0}.compat-item .acf-true-false .message{float:none;padding:0;vertical-align:middle}.acf-google-map{position:relative;border:#ccd0d4 solid 1px;background:#fff}.acf-google-map .title{position:relative;border-bottom:#ccd0d4 solid 1px}.acf-google-map .title .search{margin:0;font-size:14px;line-height:30px;height:40px;padding:5px 10px;border:0 none;box-shadow:none;border-radius:0;font-family:inherit;cursor:text}.acf-google-map .title .acf-loading{position:absolute;top:10px;right:11px;display:none}.acf-google-map .title .acf-icon:active{display:inline-block !important}.acf-google-map .canvas{height:400px}.acf-google-map:hover .title .acf-actions{display:block}.acf-google-map .title .acf-icon.-location{display:inline-block}.acf-google-map .title .acf-icon.-cancel,.acf-google-map .title .acf-icon.-search{display:none}.acf-google-map.-value .title .search{font-weight:bold}.acf-google-map.-value .title .acf-icon.-location{display:none}.acf-google-map.-value .title .acf-icon.-cancel{display:inline-block}.acf-google-map.-searching .title .acf-icon.-location{display:none}.acf-google-map.-searching .title .acf-icon.-cancel,.acf-google-map.-searching .title .acf-icon.-search{display:inline-block}.acf-google-map.-searching .title .acf-actions{display:block}.acf-google-map.-searching .title .search{font-weight:normal !important}.acf-google-map.-loading .title a{display:none !important}.acf-google-map.-loading .title i{display:inline-block}.pac-container{border-width:1px 0;box-shadow:none}.pac-container:after{display:none}.pac-container .pac-item:first-child{border-top:0 none}.pac-container .pac-item{padding:5px 10px;cursor:pointer}html[dir=rtl] .pac-container .pac-item{text-align:right}.acf-relationship{background:#fff;border:#ccd0d4 solid 1px}.acf-relationship .filters{border-bottom:#ccd0d4 solid 1px;background:#fff}.acf-relationship .filters:after{display:block;clear:both;content:""}.acf-relationship .filters .filter{margin:0;padding:0;float:left;width:100%;box-sizing:border-box;padding:7px 7px 7px 0}.acf-relationship .filters .filter:first-child{padding-left:7px}.acf-relationship .filters .filter input,.acf-relationship .filters .filter select{margin:0;float:none}.acf-relationship .filters .filter input:focus,.acf-relationship .filters .filter input:active,.acf-relationship .filters .filter select:focus,.acf-relationship .filters .filter select:active{outline:none;box-shadow:none}.acf-relationship .filters .filter input{border-color:transparent;box-shadow:none;padding-left:3px;padding-right:3px}.acf-relationship .filters.-f2 .filter{width:50%}.acf-relationship .filters.-f3 .filter{width:25%}.acf-relationship .filters.-f3 .filter.-search{width:50%}.acf-relationship .list{margin:0;padding:5px;height:160px;overflow:auto}.acf-relationship .list .acf-rel-label,.acf-relationship .list .acf-rel-item,.acf-relationship .list p{padding:5px;margin:0;display:block;position:relative;min-height:18px}.acf-relationship .list .acf-rel-label{font-weight:bold}.acf-relationship .list .acf-rel-item{cursor:pointer}.acf-relationship .list .acf-rel-item b{text-decoration:underline;font-weight:normal}.acf-relationship .list .acf-rel-item .thumbnail{background:#e0e0e0;width:22px;height:22px;float:left;margin:-2px 5px 0 0}.acf-relationship .list .acf-rel-item .thumbnail img{max-width:22px;max-height:22px;margin:0 auto;display:block}.acf-relationship .list .acf-rel-item .thumbnail.-icon{background:#fff}.acf-relationship .list .acf-rel-item .thumbnail.-icon img{max-height:20px;margin-top:1px}.acf-relationship .list .acf-rel-item:hover{background:#3875d7;color:#fff}.acf-relationship .list .acf-rel-item:hover .thumbnail{background:#a2bfec}.acf-relationship .list .acf-rel-item:hover .thumbnail.-icon{background:#fff}.acf-relationship .list .acf-rel-item.disabled{opacity:.5}.acf-relationship .list .acf-rel-item.disabled:hover{background:transparent;color:#333;cursor:default}.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail{background:#e0e0e0}.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail.-icon{background:#fff}.acf-relationship .list ul{padding-bottom:5px}.acf-relationship .list ul .acf-rel-label,.acf-relationship .list ul .acf-rel-item,.acf-relationship .list ul p{padding-left:20px}.acf-relationship .selection{position:relative}.acf-relationship .selection:after{display:block;clear:both;content:""}.acf-relationship .selection .values,.acf-relationship .selection .choices{width:50%;background:#fff;float:left}.acf-relationship .selection .choices{background:#f9f9f9}.acf-relationship .selection .choices .list{border-right:#dfdfdf solid 1px}.acf-relationship .selection .values .acf-icon{position:absolute;top:4px;right:7px;display:none}html[dir=rtl] .acf-relationship .selection .values .acf-icon{right:auto;left:7px}.acf-relationship .selection .values .acf-rel-item:hover .acf-icon{display:block}.acf-relationship .selection .values .acf-rel-item{cursor:move}.acf-relationship .selection .values .acf-rel-item b{text-decoration:none}.menu-item .acf-relationship ul{width:auto}.menu-item .acf-relationship li{display:block}.acf-editor-wrap.delay .acf-editor-toolbar{content:"";display:block;background:#f5f5f5;border-bottom:#ddd solid 1px;color:#555d66;padding:10px}.acf-editor-wrap.delay .wp-editor-area{padding:10px;border:none;color:inherit !important}.acf-editor-wrap iframe{min-height:200px}.acf-editor-wrap .wp-editor-container{border:1px solid #ccd0d4;box-shadow:none !important}.acf-editor-wrap .wp-editor-tabs{box-sizing:content-box}.acf-editor-wrap .wp-switch-editor{border-color:#ccd0d4;border-bottom-color:transparent}#mce_fullscreen_container{z-index:900000 !important}.acf-field-tab{display:none !important}.hidden-by-tab{display:none !important}.acf-tab-wrap{clear:both;z-index:1}.acf-tab-group{border-bottom:#ccc solid 1px;padding:10px 10px 0}.acf-tab-group li{margin:0 .5em 0 0}.acf-tab-group li a{padding:5px 10px;display:block;color:#555;font-size:14px;font-weight:600;line-height:24px;border:#ccc solid 1px;border-bottom:0 none;text-decoration:none;background:#e5e5e5;transition:none}.acf-tab-group li a:hover{background:#fff}.acf-tab-group li a:focus{outline:none;box-shadow:none}.acf-tab-group li a:empty{display:none}html[dir=rtl] .acf-tab-group li{margin:0 0 0 .5em}.acf-tab-group li.active a{background:#f1f1f1;color:#000;padding-bottom:6px;margin-bottom:-1px;position:relative;z-index:1}.acf-fields>.acf-tab-wrap{background:#f9f9f9}.acf-fields>.acf-tab-wrap .acf-tab-group{position:relative;border-top:#ccd0d4 solid 1px;border-bottom:#ccd0d4 solid 1px;z-index:2;margin-bottom:-1px}.acf-fields>.acf-tab-wrap .acf-tab-group li a{background:#f1f1f1;border-color:#ccd0d4}.acf-fields>.acf-tab-wrap .acf-tab-group li a:hover{background:#fff}.acf-fields>.acf-tab-wrap .acf-tab-group li.active a{background:#fff}.acf-admin-3-8 .acf-fields>.acf-tab-wrap .acf-tab-group{border-color:#dfdfdf}.acf-fields>.acf-tab-wrap:first-child .acf-tab-group{border-top:none}.acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-left:20%}@media screen and (max-width: 640px){.acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-left:10px}}html[dir=rtl] .acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-left:0;padding-right:20%}@media screen and (max-width: 850px){html[dir=rtl] .acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-right:10px}}.acf-tab-wrap.-left .acf-tab-group{position:absolute;left:0;width:20%;border:0 none;padding:0 !important;margin:1px 0 0}.acf-tab-wrap.-left .acf-tab-group li{float:none;margin:-1px 0 0}.acf-tab-wrap.-left .acf-tab-group li a{border:1px solid #ededed;font-size:13px;line-height:18px;color:#0073aa;padding:10px;margin:0;font-weight:normal;border-width:1px 0;border-radius:0;background:transparent}.acf-tab-wrap.-left .acf-tab-group li a:hover{color:#00a0d2}.acf-tab-wrap.-left .acf-tab-group li.active a{border-color:#dfdfdf;color:#000;margin-right:-1px;background:#fff}html[dir=rtl] .acf-tab-wrap.-left .acf-tab-group{left:auto;right:0}html[dir=rtl] .acf-tab-wrap.-left .acf-tab-group li.active a{margin-right:0;margin-left:-1px}.acf-field+.acf-tab-wrap.-left:before{content:"";display:block;position:relative;z-index:1;height:10px;border-top:#dfdfdf solid 1px;border-bottom:#dfdfdf solid 1px;margin-bottom:-1px}.acf-tab-wrap.-left:first-child .acf-tab-group li:first-child a{border-top:none}.acf-fields.-sidebar{padding:0 0 0 20% !important;position:relative}.acf-fields.-sidebar:before{content:"";display:block;position:absolute;top:0;left:0;width:20%;bottom:0;border-right:#dfdfdf solid 1px;background:#f9f9f9;z-index:1}html[dir=rtl] .acf-fields.-sidebar{padding:0 20% 0 0 !important}html[dir=rtl] .acf-fields.-sidebar:before{border-left:#dfdfdf solid 1px;border-right-width:0;left:auto;right:0}.acf-fields.-sidebar.-left{padding:0 0 0 180px !important}html[dir=rtl] .acf-fields.-sidebar.-left{padding:0 180px 0 0 !important}.acf-fields.-sidebar.-left:before{background:#f1f1f1;border-color:#dfdfdf;width:180px}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group{width:180px}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li a{border-color:#e4e4e4}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li.active a{background:#f9f9f9}.acf-fields.-sidebar>.acf-field-tab+.acf-field{border-top:none}.acf-fields.-clear>.acf-tab-wrap{background:transparent}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group{margin-top:0;border-top:none;padding-left:0;padding-right:0}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a{background:#e5e5e5}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a:hover{background:#fff}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group li.active a{background:#f1f1f1}.acf-postbox.seamless>.acf-fields.-sidebar{margin-left:0 !important}.acf-postbox.seamless>.acf-fields.-sidebar:before{background:transparent}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap{background:transparent;margin-bottom:10px;padding-left:12px;padding-right:12px}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group{border-top:0 none;border-color:#ccd0d4}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group li a{background:#e5e5e5;border-color:#ccd0d4}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group li a:hover{background:#fff}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group li.active a{background:#f1f1f1}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left:before{border-top:none;height:auto}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left .acf-tab-group{margin-bottom:0}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left .acf-tab-group li a{border-width:1px 0 1px 1px !important;border-color:#ccc;background:#e5e5e5}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left .acf-tab-group li.active a{background:#f1f1f1}.menu-edit .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a,.widget .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a{background:#f1f1f1}.menu-edit .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a:hover,.menu-edit .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li.active a,.widget .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a:hover,.widget .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li.active a{background:#fff}.compat-item .acf-tab-wrap td{display:block}.acf-gallery-side .acf-tab-wrap{border-top:0 none !important}.acf-gallery-side .acf-tab-wrap .acf-tab-group{margin:10px 0 !important;padding:0 !important}.acf-gallery-side .acf-tab-group li.active a{background:#f9f9f9 !important}.widget .acf-tab-group{border-bottom-color:#e8e8e8}.widget .acf-tab-group li a{background:#f1f1f1}.widget .acf-tab-group li.active a{background:#fff}.media-modal.acf-expanded .compat-attachment-fields>tbody>tr.acf-tab-wrap .acf-tab-group{padding-left:23%;border-bottom-color:#ddd}.form-table>tbody>tr.acf-tab-wrap .acf-tab-group{padding:0 5px 0 210px}html[dir=rtl] .form-table>tbody>tr.acf-tab-wrap .acf-tab-group{padding:0 210px 0 5px}.acf-oembed{position:relative;border:#ccd0d4 solid 1px;background:#fff}.acf-oembed .title{position:relative;border-bottom:#ccd0d4 solid 1px;padding:5px 10px}.acf-oembed .title .input-search{margin:0;font-size:14px;line-height:30px;height:30px;padding:0;border:0 none;box-shadow:none;border-radius:0;font-family:inherit;cursor:text}.acf-oembed .title .acf-actions{padding:6px}.acf-oembed .canvas{position:relative;min-height:250px;background:#f9f9f9}.acf-oembed .canvas .canvas-media{position:relative;z-index:1}.acf-oembed .canvas iframe{display:block;margin:0;padding:0;width:100%}.acf-oembed .canvas .acf-icon.-picture{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:0;height:42px;width:42px;font-size:42px;color:#999}.acf-oembed .canvas .acf-loading-overlay{background:rgba(255,255,255,.9)}.acf-oembed .canvas .canvas-error{position:absolute;top:50%;left:0%;right:0%;margin:-9px 0 0 0;text-align:center;display:none}.acf-oembed .canvas .canvas-error p{padding:8px;margin:0;display:inline}.acf-oembed.has-value .canvas{min-height:50px}.acf-oembed.has-value .input-search{font-weight:bold}.acf-oembed.has-value .title:hover .acf-actions{display:block}.acf-image-uploader{position:relative}.acf-image-uploader:after{display:block;clear:both;content:""}.acf-image-uploader p{margin:0}.acf-image-uploader .image-wrap{position:relative;float:left}.acf-image-uploader .image-wrap img{max-width:100%;max-height:100%;width:auto;height:auto;display:block;min-width:30px;min-height:30px;background:#f1f1f1;margin:0;padding:0}.acf-image-uploader .image-wrap img[src$=".svg"]{min-height:100px;min-width:100px}.acf-image-uploader .image-wrap:hover .acf-actions{display:block}.acf-image-uploader input.button{width:auto}html[dir=rtl] .acf-image-uploader .image-wrap{float:right}.acf-file-uploader{position:relative}.acf-file-uploader p{margin:0}.acf-file-uploader .file-wrap{border:#ccd0d4 solid 1px;min-height:84px;position:relative;background:#fff}.acf-file-uploader .file-icon{position:absolute;top:0;left:0;bottom:0;padding:10px;background:#f1f1f1;border-right:#d5d9dd solid 1px}.acf-file-uploader .file-icon img{display:block;padding:0;margin:0;max-width:48px}.acf-file-uploader .file-info{padding:10px;margin-left:69px}.acf-file-uploader .file-info p{margin:0 0 2px;font-size:13px;line-height:1.4em;word-break:break-all}.acf-file-uploader .file-info a{text-decoration:none}.acf-file-uploader:hover .acf-actions{display:block}html[dir=rtl] .acf-file-uploader .file-icon{left:auto;right:0;border-left:#e5e5e5 solid 1px;border-right:none}html[dir=rtl] .acf-file-uploader .file-info{margin-right:69px;margin-left:0}.acf-ui-datepicker .ui-datepicker{z-index:900000 !important}.acf-ui-datepicker .ui-datepicker .ui-widget-header a{cursor:pointer;transition:none}.acf-ui-datepicker .ui-state-highlight.ui-state-hover{border:1px solid #98b7e8 !important;background:#98b7e8 !important;font-weight:normal !important;color:#fff !important}.acf-ui-datepicker .ui-state-highlight.ui-state-active{border:1px solid #3875d7 !important;background:#3875d7 !important;font-weight:normal !important;color:#fff !important}.acf-field-separator .acf-label{margin-bottom:0}.acf-field-separator .acf-label label{font-weight:normal}.acf-field-separator .acf-input{display:none}.acf-fields>.acf-field-separator{background:#f9f9f9;border-bottom:1px solid #dfdfdf;border-top:1px solid #dfdfdf;margin-bottom:-1px;z-index:2}.acf-taxonomy-field{position:relative}.acf-taxonomy-field .categorychecklist-holder{border:#ccd0d4 solid 1px;border-radius:3px;max-height:200px;overflow:auto}.acf-taxonomy-field .acf-checkbox-list{margin:0;padding:10px}.acf-taxonomy-field .acf-checkbox-list ul.children{padding-left:18px}.acf-taxonomy-field:hover .acf-actions{display:block}.acf-taxonomy-field[data-ftype=select] .acf-actions{padding:0;margin:-9px}.acf-range-wrap .acf-append,.acf-range-wrap .acf-prepend{display:inline-block;vertical-align:middle;line-height:28px;margin:0 7px 0 0}.acf-range-wrap .acf-append{margin:0 0 0 7px}.acf-range-wrap input[type=range]{display:inline-block;padding:0;margin:0;vertical-align:middle;height:28px}.acf-range-wrap input[type=range]:focus{outline:none}.acf-range-wrap input[type=number]{display:inline-block;min-width:3em;margin-left:10px;vertical-align:middle}html[dir=rtl] .acf-range-wrap input[type=number]{margin-right:10px;margin-left:0}html[dir=rtl] .acf-range-wrap .acf-append{margin:0 7px 0 0}html[dir=rtl] .acf-range-wrap .acf-prepend{margin:0 0 0 7px}.acf-accordion{margin:-1px 0;padding:0;background:#fff;border-top:1px solid #d5d9dd;border-bottom:1px solid #d5d9dd;z-index:1}.acf-accordion .acf-accordion-title{margin:0;padding:12px;font-weight:bold;cursor:pointer;font-size:inherit;font-size:13px;line-height:1.4em}.acf-accordion .acf-accordion-title:hover{background:#f3f4f5}.acf-accordion .acf-accordion-title label{margin:0;padding:0;font-size:13px;line-height:1.4em}.acf-accordion .acf-accordion-title p{font-weight:normal}.acf-accordion .acf-accordion-title .acf-accordion-icon{float:right}.acf-accordion .acf-accordion-title svg.acf-accordion-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);color:#191e23;fill:currentColor}.acf-accordion .acf-accordion-content{margin:0;padding:0 12px 12px;display:none}.acf-accordion.-open>.acf-accordion-content{display:block}.acf-field.acf-accordion{margin:-1px 0;padding:0 !important;border-color:#d5d9dd}.acf-field.acf-accordion .acf-label.acf-accordion-title{padding:12px;width:auto;float:none;width:auto}.acf-field.acf-accordion .acf-input.acf-accordion-content{padding:0;float:none;width:auto}.acf-field.acf-accordion .acf-input.acf-accordion-content>.acf-fields{border-top:#eee solid 1px}.acf-field.acf-accordion .acf-input.acf-accordion-content>.acf-fields.-clear{padding:0 12px 15px}.acf-fields.-left>.acf-field.acf-accordion:before{display:none}.acf-fields.-left>.acf-field.acf-accordion .acf-accordion-title{width:auto;margin:0 !important;padding:12px;float:none !important}.acf-fields.-left>.acf-field.acf-accordion .acf-accordion-content{padding:0 !important}.acf-fields.-clear>.acf-field.acf-accordion{border:#ccc solid 1px;background:transparent}.acf-fields.-clear>.acf-field.acf-accordion+.acf-field.acf-accordion{margin-top:-16px}tr.acf-field.acf-accordion{background:transparent}tr.acf-field.acf-accordion>.acf-input{padding:0 !important;border:#ccc solid 1px}tr.acf-field.acf-accordion .acf-accordion-content{padding:0 12px 12px}#addtag div.acf-field.error{border:0 none;padding:8px 0}#addtag>.acf-field.acf-accordion{padding-right:0;margin-right:5%}#addtag>.acf-field.acf-accordion+p.submit{margin-top:0}tr.acf-accordion{margin:15px 0 !important}tr.acf-accordion+tr.acf-accordion{margin-top:-16px !important}.acf-postbox.seamless>.acf-fields>.acf-accordion{margin-left:12px;margin-right:12px;border:#ccd0d4 solid 1px}.widget .widget-content>.acf-field.acf-accordion{border:#dfdfdf solid 1px;margin-bottom:10px}.widget .widget-content>.acf-field.acf-accordion .acf-accordion-title{margin-bottom:0}.widget .widget-content>.acf-field.acf-accordion+.acf-field.acf-accordion{margin-top:-11px}.media-modal .compat-attachment-fields .acf-field.acf-accordion+.acf-field.acf-accordion{margin-top:-1px}.media-modal .compat-attachment-fields .acf-field.acf-accordion>.acf-input{width:100%}.media-modal .compat-attachment-fields .acf-field.acf-accordion .compat-attachment-fields>tbody>tr>td{padding-bottom:5px}.block-editor .edit-post-sidebar .acf-postbox>.postbox-header,.block-editor .edit-post-sidebar .acf-postbox>.hndle{border-bottom-width:0 !important}.block-editor .edit-post-sidebar .acf-postbox.closed>.postbox-header,.block-editor .edit-post-sidebar .acf-postbox.closed>.hndle{border-bottom-width:1px !important}.block-editor .edit-post-sidebar .acf-fields{min-height:1px;overflow:auto}.block-editor .edit-post-sidebar .acf-fields>.acf-field{border-width:0;border-color:#e2e4e7;margin:16px;padding:0;width:auto !important;min-height:0 !important;float:none !important}.block-editor .edit-post-sidebar .acf-fields>.acf-field>.acf-label{margin-bottom:5px}.block-editor .edit-post-sidebar .acf-fields>.acf-field>.acf-label label{font-weight:normal}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion{padding:0;margin:0;border-top-width:1px}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion:first-child{border-top-width:0}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion .acf-accordion-title{margin:0;padding:15px}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion .acf-accordion-title label{font-weight:bold}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion .acf-accordion-content>.acf-fields{border-top-width:0}.form-table>tbody>.acf-field>.acf-label{padding:20px 10px 20px 0;width:210px}html[dir=rtl] .form-table>tbody>.acf-field>.acf-label{padding:20px 0 20px 10px}.form-table>tbody>.acf-field>.acf-label label{font-size:14px;color:#23282d}.form-table>tbody>.acf-field>.acf-input{padding:15px 10px}html[dir=rtl] .form-table>tbody>.acf-field>.acf-input{padding:15px 10px 15px 5%}.form-table>tbody>.acf-tab-wrap td{padding:15px 5% 15px 0}html[dir=rtl] .form-table>tbody>.acf-tab-wrap td{padding:15px 0 15px 5%}.form-table>tbody .form-table th.acf-th{width:auto}#your-profile .acf-field input[type=text],#your-profile .acf-field input[type=password],#your-profile .acf-field input[type=number],#your-profile .acf-field input[type=search],#your-profile .acf-field input[type=email],#your-profile .acf-field input[type=url],#your-profile .acf-field select,#createuser .acf-field input[type=text],#createuser .acf-field input[type=password],#createuser .acf-field input[type=number],#createuser .acf-field input[type=search],#createuser .acf-field input[type=email],#createuser .acf-field input[type=url],#createuser .acf-field select{max-width:25em}#your-profile .acf-field textarea,#createuser .acf-field textarea{max-width:500px}#your-profile .acf-field .acf-field input[type=text],#your-profile .acf-field .acf-field input[type=password],#your-profile .acf-field .acf-field input[type=number],#your-profile .acf-field .acf-field input[type=search],#your-profile .acf-field .acf-field input[type=email],#your-profile .acf-field .acf-field input[type=url],#your-profile .acf-field .acf-field textarea,#your-profile .acf-field .acf-field select,#createuser .acf-field .acf-field input[type=text],#createuser .acf-field .acf-field input[type=password],#createuser .acf-field .acf-field input[type=number],#createuser .acf-field .acf-field input[type=search],#createuser .acf-field .acf-field input[type=email],#createuser .acf-field .acf-field input[type=url],#createuser .acf-field .acf-field textarea,#createuser .acf-field .acf-field select{max-width:none}#registerform h2{margin:1em 0}#registerform .acf-field{margin-top:0}#registerform .acf-field .acf-label{margin-bottom:0}#registerform .acf-field .acf-label label{font-weight:normal;line-height:1.5}#registerform p.submit{text-align:right}#acf-term-fields{padding-right:5%}#acf-term-fields>.acf-field>.acf-label{margin:0}#acf-term-fields>.acf-field>.acf-label label{font-size:12px;font-weight:normal}p.submit .spinner,p.submit .acf-spinner{vertical-align:top;float:none;margin:4px 4px 0}#edittag .acf-fields.-left>.acf-field{padding-left:220px}#edittag .acf-fields.-left>.acf-field:before{width:209px}#edittag .acf-fields.-left>.acf-field>.acf-label{width:220px;margin-left:-220px;padding:0 10px}#edittag .acf-fields.-left>.acf-field>.acf-input{padding:0}#edittag>.acf-fields.-left{width:96%}#edittag>.acf-fields.-left>.acf-field>.acf-label{padding-left:0}.editcomment td:first-child{white-space:nowrap;width:131px}#widgets-right .widget .acf-field .description{padding-left:0;padding-right:0}.acf-widget-fields>.acf-field .acf-label{margin-bottom:5px}.acf-widget-fields>.acf-field .acf-label label{font-weight:normal;margin:0}.acf-menu-settings{border-top:1px solid #eee;margin-top:2em}.acf-menu-settings.-seamless{border-top:none;margin-top:15px}.acf-menu-settings.-seamless>h2{display:none}.acf-menu-settings .list li{display:block;margin-bottom:0}.acf-fields.acf-menu-item-fields{clear:both;padding-top:1px}.acf-fields.acf-menu-item-fields>.acf-field{margin:5px 0;padding-right:10px}.acf-fields.acf-menu-item-fields>.acf-field .acf-label{margin-bottom:0}.acf-fields.acf-menu-item-fields>.acf-field .acf-label label{font-style:italic;font-weight:normal}#post .compat-attachment-fields .compat-field-acf-form-data{display:none}#post .compat-attachment-fields,#post .compat-attachment-fields>tbody,#post .compat-attachment-fields>tbody>tr,#post .compat-attachment-fields>tbody>tr>th,#post .compat-attachment-fields>tbody>tr>td{display:block}#post .compat-attachment-fields>tbody>.acf-field{margin:15px 0}#post .compat-attachment-fields>tbody>.acf-field>.acf-label{margin:0}#post .compat-attachment-fields>tbody>.acf-field>.acf-label label{margin:0;padding:0}#post .compat-attachment-fields>tbody>.acf-field>.acf-label label p{margin:0 0 3px !important}#post .compat-attachment-fields>tbody>.acf-field>.acf-input{margin:0}.media-modal .compat-attachment-fields td.acf-input table{display:table;table-layout:auto}.media-modal .compat-attachment-fields td.acf-input table tbody{display:table-row-group}.media-modal .compat-attachment-fields td.acf-input table tr{display:table-row}.media-modal .compat-attachment-fields td.acf-input table td,.media-modal .compat-attachment-fields td.acf-input table th{display:table-cell}.media-modal .compat-attachment-fields>tbody>.acf-field{margin:5px 0}.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-label{min-width:30%;margin:0;padding:0;float:left;text-align:right;display:block;float:left}.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-label>label{padding-top:6px;margin:0;color:#666;font-weight:400;line-height:16px}.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-input{width:65%;margin:0;padding:0;float:right;display:block}.media-modal .compat-attachment-fields>tbody>.acf-field p.description{margin:0}.acf-selection-error{background:#ffebe8;border:1px solid #c00;border-radius:3px;padding:8px;margin:20px 0 0}.acf-selection-error .selection-error-label{background:#c00;border-radius:3px;color:#fff;font-weight:bold;margin-right:8px;padding:2px 4px}.acf-selection-error .selection-error-message{color:#b44;display:block;padding-top:8px;word-wrap:break-word;white-space:pre-wrap}.media-modal .attachment.acf-disabled .thumbnail{opacity:.25 !important}.media-modal .attachment.acf-disabled .attachment-preview:before{background:rgba(0,0,0,.15);z-index:1;position:relative}.media-modal .compat-field-acf-form-data,.media-modal .compat-field-acf-blank{display:none !important}.media-modal .upload-error-message{white-space:pre-wrap}.media-modal .acf-required{padding:0 !important;margin:0 !important;float:none !important;color:red !important}.media-modal .media-sidebar .compat-item{padding-bottom:20px}@media(max-width: 900px){.media-modal .setting span,.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-label{width:98%;float:none;text-align:left;min-height:0;padding:0}.media-modal .setting input,.media-modal .setting textarea,.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-input{float:none;height:auto;max-width:none;width:98%}}.media-modal .acf-expand-details{float:right;padding:8px 10px;margin-right:6px;font-size:13px;height:18px;line-height:18px;color:#666;text-decoration:none}.media-modal .acf-expand-details:focus,.media-modal .acf-expand-details:active{outline:0 none;box-shadow:none;color:#666}.media-modal .acf-expand-details:hover{color:#000}.media-modal .acf-expand-details .is-open{display:none}.media-modal .acf-expand-details .is-closed{display:block}@media(max-width: 640px){.media-modal .acf-expand-details{display:none}}.media-modal.acf-expanded .acf-expand-details .is-open{display:block}.media-modal.acf-expanded .acf-expand-details .is-closed{display:none}.media-modal.acf-expanded .attachments-browser .media-toolbar,.media-modal.acf-expanded .attachments-browser .attachments{right:740px}.media-modal.acf-expanded .media-sidebar{width:708px}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail{float:left;max-height:none}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail img{max-width:100%;max-height:200px}.media-modal.acf-expanded .media-sidebar .attachment-info .details{float:right}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail,.media-modal.acf-expanded .media-sidebar .attachment-details .setting .name,.media-modal.acf-expanded .media-sidebar .compat-attachment-fields>tbody>.acf-field>.acf-label{min-width:20%;margin-right:0}.media-modal.acf-expanded .media-sidebar .attachment-info .details,.media-modal.acf-expanded .media-sidebar .attachment-details .setting input,.media-modal.acf-expanded .media-sidebar .attachment-details .setting textarea,.media-modal.acf-expanded .media-sidebar .attachment-details .setting+.description,.media-modal.acf-expanded .media-sidebar .compat-attachment-fields>tbody>.acf-field>.acf-input{min-width:77%}@media(max-width: 900px){.media-modal.acf-expanded .attachments-browser .media-toolbar{display:none}.media-modal.acf-expanded .attachments{display:none}.media-modal.acf-expanded .media-sidebar{width:auto;max-width:none !important;bottom:0 !important}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail{min-width:0;max-width:none;width:30%}.media-modal.acf-expanded .media-sidebar .attachment-info .details{min-width:0;max-width:none;width:67%}}@media(max-width: 640px){.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail,.media-modal.acf-expanded .media-sidebar .attachment-info .details{width:100%}}.acf-media-modal .media-embed .setting.align,.acf-media-modal .media-embed .setting.link-to{display:none}.acf-media-modal.-edit{left:15%;right:15%;top:100px;bottom:100px}.acf-media-modal.-edit .media-frame-menu,.acf-media-modal.-edit .media-frame-router,.acf-media-modal.-edit .media-frame-content .attachments,.acf-media-modal.-edit .media-frame-content .media-toolbar{display:none}.acf-media-modal.-edit .media-frame-title,.acf-media-modal.-edit .media-frame-content,.acf-media-modal.-edit .media-frame-toolbar,.acf-media-modal.-edit .media-sidebar{width:auto;left:0;right:0}.acf-media-modal.-edit .media-frame-content{top:50px}.acf-media-modal.-edit .media-frame-title{border-bottom:1px solid #dfdfdf;box-shadow:0 4px 4px -4px rgba(0,0,0,.1)}.acf-media-modal.-edit .media-sidebar{padding:0 16px}.acf-media-modal.-edit .media-sidebar .attachment-details{overflow:visible}.acf-media-modal.-edit .media-sidebar .attachment-details>h3,.acf-media-modal.-edit .media-sidebar .attachment-details>h2{display:none}.acf-media-modal.-edit .media-sidebar .attachment-details .attachment-info{background:#fff;border-bottom:#ddd solid 1px;padding:16px;margin:0 -16px 16px}.acf-media-modal.-edit .media-sidebar .attachment-details .thumbnail{margin:0 16px 0 0}.acf-media-modal.-edit .media-sidebar .attachment-details .setting{margin:0 0 5px}.acf-media-modal.-edit .media-sidebar .attachment-details .setting span{margin:0}.acf-media-modal.-edit .media-sidebar .compat-attachment-fields>tbody>.acf-field{margin:0 0 5px}.acf-media-modal.-edit .media-sidebar .compat-attachment-fields>tbody>.acf-field p.description{margin-top:3px}.acf-media-modal.-edit .media-sidebar .media-types-required-info{display:none}@media(max-width: 900px){.acf-media-modal.-edit{top:30px;right:30px;bottom:30px;left:30px}}@media(max-width: 640px){.acf-media-modal.-edit{top:0;right:0;bottom:0;left:0}}@media(max-width: 480px){.acf-media-modal.-edit .media-frame-content{top:40px}}.acf-temp-remove{position:relative;opacity:1;-webkit-transition:all .25s ease;-moz-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;overflow:hidden}.acf-temp-remove:after{display:block;content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:99}.hidden-by-conditional-logic{display:none !important}.hidden-by-conditional-logic.appear-empty{display:table-cell !important}.hidden-by-conditional-logic.appear-empty .acf-input{display:none !important}.acf-postbox.acf-hidden{display:none !important}.acf-attention{transition:border .25s ease-out}.acf-attention.-focused{border:#23282d solid 1px !important;transition:none}tr.acf-attention{transition:box-shadow .25s ease-out;position:relative}tr.acf-attention.-focused{box-shadow:#23282d 0 0 0px 1px !important}#editor .edit-post-layout__metaboxes{padding:0}#editor .edit-post-layout__metaboxes .edit-post-meta-boxes-area{margin:0}#editor .metabox-location-side .postbox-container{float:none}#editor .postbox{color:#444}#editor .postbox>.postbox-header .hndle{border-bottom:none}#editor .postbox>.postbox-header .hndle:hover{background:transparent}#editor .postbox>.postbox-header .handle-actions .handle-order-higher,#editor .postbox>.postbox-header .handle-actions .handle-order-lower{width:1.62rem}#editor .postbox>.postbox-header .handle-actions .acf-hndle-cog{height:44px;line-height:44px}#editor .postbox>.postbox-header:hover{background:#f0f0f0}#editor .postbox:last-child.closed>.postbox-header{border-bottom:none}#editor .postbox:last-child>.inside{border-bottom:none}#editor .block-editor-writing-flow__click-redirect{min-height:50px}body.is-dragging-metaboxes #acf_after_title-sortables{outline:3px dashed #646970;display:flow-root;min-height:60px;margin-bottom:3px !important} +.post-type-acf-field-group #wpcontent{line-height:140%}.post-type-acf-field-group a{color:#0783be}.h1,.post-type-acf-field-group h1,.acf-headerbar h1{font-size:21px;font-weight:400}.h2,.acf-page-title,.post-type-acf-field-group h2,.acf-headerbar h2{font-size:18px;font-weight:400}.h3,.post-type-acf-field-group h3,.acf-headerbar h3{font-size:16px;font-weight:400}.p1{font-size:15px}.p2{font-size:14px}.p3{font-size:13.5px}.p4{font-size:13px}.p5{font-size:12.5px}.p6,.acf-field p.description,.acf-small{font-size:12px}.p7,.acf-field-setting-prefix_label p.description code,.acf-field-setting-prefix_name p.description code{font-size:11.5px}.p8{font-size:11px}.acf-page-title{color:#344054}.post-type-acf-field-group .acf-settings-wrap h1,.post-type-acf-field-group #acf-admin-tools h1{display:none}.post-type-acf-field-group a:focus{box-shadow:none;outline:none}.post-type-acf-field-group 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-field,.acf-field .acf-label,.acf-field .acf-input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative}.acf-field{margin:15px 0;clear:both}.acf-field p.description{display:block;margin:0;padding:0}.acf-field .acf-label{vertical-align:top;margin:0 0 10px}.acf-field .acf-label label{display:block;font-weight:500;margin:0 0 3px;padding:0}.acf-field .acf-label:empty{margin-bottom:0}.acf-field .acf-input{vertical-align:top}.acf-field p.description{display:block;margin-top:6px;color:#667085}.acf-field .acf-notice{margin:0 0 15px;background:#edf2ff;color:#0c6ca0;border-color:#2183b9}.acf-field .acf-notice.-error{background:#ffe6e6;color:#cc2727;border-color:#d12626}.acf-field .acf-notice.-success{background:#eefbe8;color:#0e7b17;border-color:#32a23b}.acf-field .acf-notice.-warning{background:#fff3e6;color:#bd4b0e;border-color:#d16226}td.acf-field,tr.acf-field{margin:0}.acf-field[data-width]{float:left;clear:none}.acf-field[data-width]+.acf-field[data-width]{border-left:1px solid #eee}html[dir=rtl] .acf-field[data-width]{float:right}html[dir=rtl] .acf-field[data-width]+.acf-field[data-width]{border-left:none;border-right:1px solid #eee}td.acf-field[data-width],tr.acf-field[data-width]{float:none}.acf-field.-c0{clear:both;border-left-width:0 !important}html[dir=rtl] .acf-field.-c0{border-left-width:1px !important;border-right-width:0 !important}.acf-field.-r0{border-top-width:0 !important}.acf-fields{position:relative}.acf-fields:after{display:block;clear:both;content:""}.acf-fields.-border{border:#ccd0d4 solid 1px;background:#fff}.acf-fields>.acf-field{position:relative;margin:0;padding:16px;border-top-width:1px;border-top-style:solid;border-top-color:#eaecf0}.acf-fields>.acf-field:first-child{border-top:none;margin-top:0}td.acf-fields{padding:0 !important}.acf-fields.-clear>.acf-field{border:none;padding:0;margin:15px 0}.acf-fields.-clear>.acf-field[data-width]{border:none !important}.acf-fields.-clear>.acf-field>.acf-label{padding:0}.acf-fields.-clear>.acf-field>.acf-input{padding:0}.acf-fields.-left>.acf-field{padding:15px 0}.acf-fields.-left>.acf-field:after{display:block;clear:both;content:""}.acf-fields.-left>.acf-field:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acf-fields.-left>.acf-field[data-width]{float:none;width:auto !important;border-left-width:0 !important;border-right-width:0 !important}.acf-fields.-left>.acf-field>.acf-label{float:left;width:20%;margin:0;padding:0 12px}.acf-fields.-left>.acf-field>.acf-input{float:left;width:80%;margin:0;padding:0 12px}html[dir=rtl] .acf-fields.-left>.acf-field:before{border-width:0 0 0 1px;left:auto;right:0}html[dir=rtl] .acf-fields.-left>.acf-field>.acf-label{float:right}html[dir=rtl] .acf-fields.-left>.acf-field>.acf-input{float:right}#side-sortables .acf-fields.-left>.acf-field:before{display:none}#side-sortables .acf-fields.-left>.acf-field>.acf-label{width:100%;margin-bottom:10px}#side-sortables .acf-fields.-left>.acf-field>.acf-input{width:100%}@media screen and (max-width: 640px){.acf-fields.-left>.acf-field:before{display:none}.acf-fields.-left>.acf-field>.acf-label{width:100%;margin-bottom:10px}.acf-fields.-left>.acf-field>.acf-input{width:100%}}.acf-fields.-clear.-left>.acf-field{padding:0;border:none}.acf-fields.-clear.-left>.acf-field:before{display:none}.acf-fields.-clear.-left>.acf-field>.acf-label{padding:0}.acf-fields.-clear.-left>.acf-field>.acf-input{padding:0}.acf-table tr.acf-field>td.acf-label{padding:15px 12px;margin:0;background:#f9f9f9;width:20%}.acf-table tr.acf-field>td.acf-input{padding:15px 12px;margin:0;border-left-color:#e1e1e1}.acf-sortable-tr-helper{position:relative !important;display:table-row !important}.acf-postbox{position:relative}.acf-postbox>.inside{margin:0 !important;padding:0 !important}.acf-postbox .acf-hndle-cog{color:#72777c;font-size:16px;line-height:36px;height:36px;width:1.62rem;position:relative;display:none}.acf-postbox .acf-hndle-cog:hover{color:#191e23}.acf-postbox>.hndle:hover .acf-hndle-cog,.acf-postbox>.postbox-header:hover .acf-hndle-cog{display:inline-block}.acf-postbox>.hndle .acf-hndle-cog{height:20px;line-height:20px;float:right;width:auto}.acf-postbox>.hndle .acf-hndle-cog:hover{color:#777}.acf-postbox .acf-replace-with-fields{padding:15px;text-align:center}#post-body-content #acf_after_title-sortables{margin:20px 0 -20px}.acf-postbox.seamless{border:0 none;background:rgba(0,0,0,0);box-shadow:none}.acf-postbox.seamless>.postbox-header,.acf-postbox.seamless>.hndle,.acf-postbox.seamless>.handlediv{display:none !important}.acf-postbox.seamless>.inside{display:block !important;margin-left:-12px !important;margin-right:-12px !important}.acf-postbox.seamless>.inside>.acf-field{border-color:rgba(0,0,0,0)}.acf-postbox.seamless>.acf-fields.-left>.acf-field:before{display:none}@media screen and (max-width: 782px){.acf-postbox.seamless>.acf-fields.-left>.acf-field>.acf-label,.acf-postbox.seamless>.acf-fields.-left>.acf-field>.acf-input{padding:0}}.acf-field input[type=text],.acf-field input[type=password],.acf-field input[type=date],.acf-field input[type=datetime],.acf-field input[type=datetime-local],.acf-field input[type=email],.acf-field input[type=month],.acf-field input[type=number],.acf-field input[type=search],.acf-field input[type=tel],.acf-field input[type=time],.acf-field input[type=url],.acf-field input[type=week],.acf-field textarea,.acf-field select{width:100%;padding:4px 8px;margin:0;box-sizing:border-box;font-size:14px;line-height:1.4}.acf-admin-3-8 .acf-field input[type=text],.acf-admin-3-8 .acf-field input[type=password],.acf-admin-3-8 .acf-field input[type=date],.acf-admin-3-8 .acf-field input[type=datetime],.acf-admin-3-8 .acf-field input[type=datetime-local],.acf-admin-3-8 .acf-field input[type=email],.acf-admin-3-8 .acf-field input[type=month],.acf-admin-3-8 .acf-field input[type=number],.acf-admin-3-8 .acf-field input[type=search],.acf-admin-3-8 .acf-field input[type=tel],.acf-admin-3-8 .acf-field input[type=time],.acf-admin-3-8 .acf-field input[type=url],.acf-admin-3-8 .acf-field input[type=week],.acf-admin-3-8 .acf-field textarea,.acf-admin-3-8 .acf-field select{padding:3px 5px}.acf-field textarea{resize:vertical}body.acf-browser-firefox .acf-field select{padding:4px 5px}.acf-input-prepend,.acf-input-append,.acf-input-wrap{box-sizing:border-box}.acf-input-prepend,.acf-input-append{font-size:13px;line-height:1.4;padding:4px 8px;background:#f5f5f5;border:#7e8993 solid 1px;min-height:30px}.acf-admin-3-8 .acf-input-prepend,.acf-admin-3-8 .acf-input-append{padding:3px 5px;border-color:#ddd;min-height:28px}.acf-input-prepend{float:left;border-right-width:0;border-radius:3px 0 0 3px}.acf-input-append{float:right;border-left-width:0;border-radius:0 3px 3px 0}.acf-input-wrap{position:relative;overflow:hidden}.acf-input-wrap .acf-is-prepended{border-radius:0 6px 6px 0 !important}.acf-input-wrap .acf-is-appended{border-radius:6px 0 0 6px !important}.acf-input-wrap .acf-is-prepended.acf-is-appended{border-radius:0 !important}html[dir=rtl] .acf-input-prepend{border-left-width:0;border-right-width:1px;border-radius:0 3px 3px 0;float:right}html[dir=rtl] .acf-input-append{border-left-width:1px;border-right-width:0;border-radius:3px 0 0 3px;float:left}html[dir=rtl] input.acf-is-prepended{border-radius:3px 0 0 3px !important}html[dir=rtl] input.acf-is-appended{border-radius:0 3px 3px 0 !important}html[dir=rtl] input.acf-is-prepended.acf-is-appended{border-radius:0 !important}.acf-color-picker .wp-color-result{border-color:#7e8993}.acf-admin-3-8 .acf-color-picker .wp-color-result{border-color:#ccd0d4}.acf-color-picker .wp-picker-active{position:relative;z-index:1}.acf-url i{position:absolute;top:5px;left:5px;opacity:.5;color:#7e8993}.acf-url input[type=url]{padding-left:27px !important}.acf-url.-valid i{opacity:1}.select2-container.-acf .select2-choices{background:#fff;border-color:#ddd;box-shadow:0 1px 2px rgba(0,0,0,.07) inset;min-height:31px}.select2-container.-acf .select2-choices .select2-search-choice{margin:5px 0 5px 5px;padding:3px 5px 3px 18px;border-color:#bbb;background:#f9f9f9;box-shadow:0 1px 0 rgba(255,255,255,.25) inset}.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper{background:#5897fb;border-color:#3f87fa;color:#fff !important;box-shadow:0 0 3px rgba(0,0,0,.1)}.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-helper a{visibility:hidden}.select2-container.-acf .select2-choices .select2-search-choice.ui-sortable-placeholder{background-color:#f7f7f7;border-color:#f7f7f7;visibility:visible !important}.select2-container.-acf .select2-choices .select2-search-choice-focus{border-color:#999}.select2-container.-acf .select2-choices .select2-search-field input{height:31px;line-height:22px;margin:0;padding:5px 5px 5px 7px}.select2-container.-acf .select2-choice{border-color:#bbb}.select2-container.-acf .select2-choice .select2-arrow{background:rgba(0,0,0,0);border-left-color:#dfdfdf;padding-left:1px}.select2-container.-acf .select2-choice .select2-result-description{display:none}.select2-container.-acf.select2-container-active .select2-choices,.select2-container.-acf.select2-dropdown-open .select2-choices{border-color:#5b9dd9;border-radius:3px 3px 0 0}.select2-container.-acf.select2-dropdown-open .select2-choice{background:#fff;border-color:#5b9dd9}html[dir=rtl] .select2-container.-acf .select2-search-choice-close{left:24px}html[dir=rtl] .select2-container.-acf .select2-choice>.select2-chosen{margin-left:42px}html[dir=rtl] .select2-container.-acf .select2-choice .select2-arrow{padding-left:0;padding-right:1px}.select2-drop .select2-search{padding:4px 4px 0}.select2-drop .select2-result .select2-result-description{color:#999;font-size:12px;margin-left:5px}.select2-drop .select2-result.select2-highlighted .select2-result-description{color:#fff;opacity:.75}.select2-container.-acf li{margin-bottom:0}.select2-container.-acf[data-select2-id^=select2-data] .select2-selection--multiple{overflow:hidden}.select2-container.-acf .select2-selection{border-color:#7e8993}.acf-admin-3-8 .select2-container.-acf .select2-selection{border-color:#aaa}.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child{float:none}.select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child input{width:100% !important}.select2-container.-acf .select2-selection--multiple .select2-selection__rendered{padding-right:0}.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field]{display:inline;padding:0;margin:0}.select2-container.-acf .select2-selection--multiple .select2-selection__rendered[id^=select2-acf-field] .select2-selection__choice{margin-right:0}.select2-container.-acf .select2-selection--multiple .select2-selection__choice{background-color:#f7f7f7;border-color:#ccc;max-width:100%;overflow:hidden;word-wrap:normal !important;white-space:normal}.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper{background:#0783be;border-color:#066998;color:#fff !important;box-shadow:0 0 3px rgba(0,0,0,.1)}.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-helper span{visibility:hidden}.select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{position:static;border-right:none;padding:0}.select2-container.-acf .select2-selection--multiple .select2-selection__choice.ui-sortable-placeholder{background-color:#f2f4f7;border-color:#f2f4f7;visibility:visible !important}.select2-container.-acf .select2-selection--multiple .select2-search__field{box-shadow:none !important;min-height:0}.acf-row .select2-container.-acf .select2-selection--single{overflow:hidden}.acf-row .select2-container.-acf .select2-selection--single .select2-selection__rendered{white-space:normal}.select2-dropdown{border-color:#6bb5d8 !important;margin-top:-5px;overflow:hidden;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.select2-dropdown.select2-dropdown--above{margin-top:0}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#f9fafb !important;color:#667085}.select2-container--default .select2-results__option[aria-selected=true]:hover{color:#399ccb}.select2-container--default .select2-results__option--highlighted[aria-selected]{color:#fff !important;background-color:#0783be !important}.select2-dropdown .select2-results__option{margin-bottom:0}.select2-container .select2-dropdown{z-index:900000}.select2-container .select2-dropdown .select2-search__field{line-height:1.4;min-height:0}.acf-link .link-wrap{display:none;border:#ccd0d4 solid 1px;border-radius:3px;padding:5px;line-height:26px;background:#fff;word-wrap:break-word;word-break:break-all}.acf-link .link-wrap .link-title{padding:0 5px}.acf-link.-value .button{display:none}.acf-link.-value .acf-icon.-link-ext{display:none}.acf-link.-value .link-wrap{display:inline-block}.acf-link.-external .acf-icon.-link-ext{display:inline-block}#wp-link-backdrop{z-index:900000 !important}#wp-link-wrap{z-index:900001 !important}ul.acf-radio-list,ul.acf-checkbox-list{background:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);position:relative;padding:1px;margin:0}ul.acf-radio-list:focus-within,ul.acf-checkbox-list:focus-within{border:1px solid #a5d2e7;border-radius:6px}ul.acf-radio-list li,ul.acf-checkbox-list li{font-size:13px;line-height:22px;margin:0;position:relative;word-wrap:break-word}ul.acf-radio-list li label,ul.acf-checkbox-list li label{display:inline}ul.acf-radio-list li input[type=checkbox],ul.acf-radio-list li input[type=radio],ul.acf-checkbox-list li input[type=checkbox],ul.acf-checkbox-list li input[type=radio]{margin:-1px 4px 0 0;vertical-align:middle}ul.acf-radio-list li input[type=text],ul.acf-checkbox-list li input[type=text]{width:auto;vertical-align:middle;margin:2px 0}ul.acf-radio-list li span,ul.acf-checkbox-list li span{float:none}ul.acf-radio-list li i,ul.acf-checkbox-list li i{vertical-align:middle}ul.acf-radio-list.acf-hl li,ul.acf-checkbox-list.acf-hl li{margin-right:20px;clear:none}html[dir=rtl] ul.acf-radio-list input[type=checkbox],html[dir=rtl] ul.acf-radio-list input[type=radio],html[dir=rtl] ul.acf-checkbox-list input[type=checkbox],html[dir=rtl] ul.acf-checkbox-list input[type=radio]{margin-left:4px;margin-right:0}.acf-button-group{display:inline-block}.acf-button-group label{display:inline-block;border:#7e8993 solid 1px;position:relative;z-index:1;padding:5px 10px;background:#fff}.acf-button-group label:hover{color:#016087;background:#f3f5f6;border-color:#0071a1;z-index:2}.acf-button-group label.selected{border-color:#007cba;background:#008dd4;color:#fff;z-index:2}.acf-button-group input{display:none !important}.acf-button-group{padding-left:1px;display:inline-flex;flex-direction:row;flex-wrap:nowrap}.acf-button-group label{margin:0 0 0 -1px;flex:1;text-align:center;white-space:nowrap}.acf-button-group label:first-child{border-radius:3px 0 0 3px}html[dir=rtl] .acf-button-group label:first-child{border-radius:0 3px 3px 0}.acf-button-group label:last-child{border-radius:0 3px 3px 0}html[dir=rtl] .acf-button-group label:last-child{border-radius:3px 0 0 3px}.acf-button-group label:only-child{border-radius:3px}.acf-button-group.-vertical{padding-left:0;padding-top:1px;flex-direction:column}.acf-button-group.-vertical label{margin:-1px 0 0 0}.acf-button-group.-vertical label:first-child{border-radius:3px 3px 0 0}.acf-button-group.-vertical label:last-child{border-radius:0 0 3px 3px}.acf-button-group.-vertical label:only-child{border-radius:3px}.acf-admin-3-8 .acf-button-group label{border-color:#ccd0d4}.acf-admin-3-8 .acf-button-group label:hover{border-color:#0071a1}.acf-admin-3-8 .acf-button-group label.selected{border-color:#007cba}.post-type-acf-field-group .acf-button-group{display:flex;align-items:stretch;align-content:center;height:40px;border-radius:6px;box-shadow:0px 1px 2px rgba(16,24,40,.1)}.post-type-acf-field-group .acf-button-group label{display:inline-flex;align-items:center;align-content:center;border:#d0d5dd solid 1px;padding:6px 16px;color:#475467;font-weight:500}.post-type-acf-field-group .acf-button-group label:hover{color:#0783be}.post-type-acf-field-group .acf-button-group label.selected{background:#f9fafb;color:#0783be}.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice{display:inline-flex;align-items:center;padding-top:4px;padding-right:auto;padding-bottom:4px;padding-left:8px;background-color:#ebf5fa;border-color:#a5d2e7;color:#0783be}.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{order:2;width:14px;height:14px;margin-right:0;margin-left:4px;color:#6bb5d8;text-indent:100%;white-space:nowrap;overflow:hidden}.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover{color:#0783be}.post-type-acf-field-group .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:before{content:"";display:block;width:14px;height:14px;top:0;left:0;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-close.svg");mask-image:url("../../images/icons/icon-close.svg")}.acf-checkbox-list .button{margin:10px 0 0}.acf-switch{display:inline-block;border-radius:5px;cursor:pointer;position:relative;background:#f5f5f5;height:30px;vertical-align:middle;border:#7e8993 solid 1px;-webkit-transition:background .25s ease;-moz-transition:background .25s ease;-o-transition:background .25s ease;transition:background .25s ease}.acf-switch span{display:inline-block;float:left;text-align:center;font-size:13px;line-height:22px;padding:4px 10px;min-width:15px}.acf-switch span i{vertical-align:middle}.acf-switch .acf-switch-on{color:#fff;text-shadow:#007cba 0 1px 0}.acf-switch .acf-switch-slider{position:absolute;top:2px;left:2px;bottom:2px;right:50%;z-index:1;background:#fff;border-radius:3px;border:#7e8993 solid 1px;-webkit-transition:all .25s ease;-moz-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;transition-property:left,right}.acf-switch:hover,.acf-switch.-focus{border-color:#0071a1;background:#f3f5f6;color:#016087}.acf-switch:hover .acf-switch-slider,.acf-switch.-focus .acf-switch-slider{border-color:#0071a1}.acf-switch.-on{background:#0d99d5;border-color:#007cba}.acf-switch.-on .acf-switch-slider{left:50%;right:2px;border-color:#007cba}.acf-switch.-on:hover{border-color:#007cba}.acf-switch+span{margin-left:6px}.acf-admin-3-8 .acf-switch{border-color:#ccd0d4}.acf-admin-3-8 .acf-switch .acf-switch-slider{border-color:#ccd0d4}.acf-admin-3-8 .acf-switch:hover,.acf-admin-3-8 .acf-switch.-focus{border-color:#0071a1}.acf-admin-3-8 .acf-switch:hover .acf-switch-slider,.acf-admin-3-8 .acf-switch.-focus .acf-switch-slider{border-color:#0071a1}.acf-admin-3-8 .acf-switch.-on{border-color:#007cba}.acf-admin-3-8 .acf-switch.-on .acf-switch-slider{border-color:#007cba}.acf-admin-3-8 .acf-switch.-on:hover{border-color:#007cba}.acf-switch-input{opacity:0;position:absolute;margin:0}.acf-admin-single-field-group .acf-true-false{border:1px solid rgba(0,0,0,0)}.acf-admin-single-field-group .acf-true-false:focus-within{border:1px solid #399ccb;border-radius:120px}.compat-item .acf-true-false .message{float:none;padding:0;vertical-align:middle}.acf-google-map{position:relative;border:#ccd0d4 solid 1px;background:#fff}.acf-google-map .title{position:relative;border-bottom:#ccd0d4 solid 1px}.acf-google-map .title .search{margin:0;font-size:14px;line-height:30px;height:40px;padding:5px 10px;border:0 none;box-shadow:none;border-radius:0;font-family:inherit;cursor:text}.acf-google-map .title .acf-loading{position:absolute;top:10px;right:11px;display:none}.acf-google-map .title .acf-icon:active{display:inline-block !important}.acf-google-map .canvas{height:400px}.acf-google-map:hover .title .acf-actions{display:block}.acf-google-map .title .acf-icon.-location{display:inline-block}.acf-google-map .title .acf-icon.-cancel,.acf-google-map .title .acf-icon.-search{display:none}.acf-google-map.-value .title .search{font-weight:bold}.acf-google-map.-value .title .acf-icon.-location{display:none}.acf-google-map.-value .title .acf-icon.-cancel{display:inline-block}.acf-google-map.-searching .title .acf-icon.-location{display:none}.acf-google-map.-searching .title .acf-icon.-cancel,.acf-google-map.-searching .title .acf-icon.-search{display:inline-block}.acf-google-map.-searching .title .acf-actions{display:block}.acf-google-map.-searching .title .search{font-weight:normal !important}.acf-google-map.-loading .title a{display:none !important}.acf-google-map.-loading .title i{display:inline-block}.pac-container{border-width:1px 0;box-shadow:none}.pac-container:after{display:none}.pac-container .pac-item:first-child{border-top:0 none}.pac-container .pac-item{padding:5px 10px;cursor:pointer}html[dir=rtl] .pac-container .pac-item{text-align:right}.acf-relationship{background:#fff;border:#ccd0d4 solid 1px}.acf-relationship .filters{border-bottom:#ccd0d4 solid 1px;background:#fff}.acf-relationship .filters:after{display:block;clear:both;content:""}.acf-relationship .filters .filter{margin:0;padding:0;float:left;width:100%;box-sizing:border-box;padding:7px 7px 7px 0}.acf-relationship .filters .filter:first-child{padding-left:7px}.acf-relationship .filters .filter input,.acf-relationship .filters .filter select{margin:0;float:none}.acf-relationship .filters .filter input:focus,.acf-relationship .filters .filter input:active,.acf-relationship .filters .filter select:focus,.acf-relationship .filters .filter select:active{outline:none;box-shadow:none}.acf-relationship .filters .filter input{border-color:rgba(0,0,0,0);box-shadow:none;padding-left:3px;padding-right:3px}.acf-relationship .filters.-f2 .filter{width:50%}.acf-relationship .filters.-f3 .filter{width:25%}.acf-relationship .filters.-f3 .filter.-search{width:50%}.acf-relationship .list{margin:0;padding:5px;height:160px;overflow:auto}.acf-relationship .list .acf-rel-label,.acf-relationship .list .acf-rel-item,.acf-relationship .list p{padding:5px;margin:0;display:block;position:relative;min-height:18px}.acf-relationship .list .acf-rel-label{font-weight:bold}.acf-relationship .list .acf-rel-item{cursor:pointer}.acf-relationship .list .acf-rel-item b{text-decoration:underline;font-weight:normal}.acf-relationship .list .acf-rel-item .thumbnail{background:#e0e0e0;width:22px;height:22px;float:left;margin:-2px 5px 0 0}.acf-relationship .list .acf-rel-item .thumbnail img{max-width:22px;max-height:22px;margin:0 auto;display:block}.acf-relationship .list .acf-rel-item .thumbnail.-icon{background:#fff}.acf-relationship .list .acf-rel-item .thumbnail.-icon img{max-height:20px;margin-top:1px}.acf-relationship .list .acf-rel-item:hover{background:#3875d7;color:#fff}.acf-relationship .list .acf-rel-item:hover .thumbnail{background:#a2bfec}.acf-relationship .list .acf-rel-item:hover .thumbnail.-icon{background:#fff}.acf-relationship .list .acf-rel-item.disabled{opacity:.5}.acf-relationship .list .acf-rel-item.disabled:hover{background:rgba(0,0,0,0);color:#333;cursor:default}.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail{background:#e0e0e0}.acf-relationship .list .acf-rel-item.disabled:hover .thumbnail.-icon{background:#fff}.acf-relationship .list ul{padding-bottom:5px}.acf-relationship .list ul .acf-rel-label,.acf-relationship .list ul .acf-rel-item,.acf-relationship .list ul p{padding-left:20px}.acf-relationship .selection{position:relative}.acf-relationship .selection:after{display:block;clear:both;content:""}.acf-relationship .selection .values,.acf-relationship .selection .choices{width:50%;background:#fff;float:left}.acf-relationship .selection .choices{background:#f9f9f9}.acf-relationship .selection .choices .list{border-right:#dfdfdf solid 1px}.acf-relationship .selection .values .acf-icon{position:absolute;top:4px;right:7px;display:none}html[dir=rtl] .acf-relationship .selection .values .acf-icon{right:auto;left:7px}.acf-relationship .selection .values .acf-rel-item:hover .acf-icon{display:block}.acf-relationship .selection .values .acf-rel-item{cursor:move}.acf-relationship .selection .values .acf-rel-item b{text-decoration:none}.menu-item .acf-relationship ul{width:auto}.menu-item .acf-relationship li{display:block}.acf-editor-wrap.delay .acf-editor-toolbar{content:"";display:block;background:#f5f5f5;border-bottom:#ddd solid 1px;color:#555d66;padding:10px}.acf-editor-wrap.delay .wp-editor-area{padding:10px;border:none;color:inherit !important}.acf-editor-wrap iframe{min-height:200px}.acf-editor-wrap .wp-editor-container{border:1px solid #ccd0d4;box-shadow:none !important}.acf-editor-wrap .wp-editor-tabs{box-sizing:content-box}.acf-editor-wrap .wp-switch-editor{border-color:#ccd0d4;border-bottom-color:rgba(0,0,0,0)}#mce_fullscreen_container{z-index:900000 !important}.acf-field-tab{display:none !important}.hidden-by-tab{display:none !important}.acf-tab-wrap{clear:both;z-index:1}.acf-tab-group{border-bottom:#ccc solid 1px;padding:10px 10px 0}.acf-tab-group li{margin:0 .5em 0 0}.acf-tab-group li a{padding:5px 10px;display:block;color:#555;font-size:14px;font-weight:600;line-height:24px;border:#ccc solid 1px;border-bottom:0 none;text-decoration:none;background:#e5e5e5;transition:none}.acf-tab-group li a:hover{background:#fff}.acf-tab-group li a:focus{outline:none;box-shadow:none}.acf-tab-group li a:empty{display:none}html[dir=rtl] .acf-tab-group li{margin:0 0 0 .5em}.acf-tab-group li.active a{background:#f1f1f1;color:#000;padding-bottom:6px;margin-bottom:-1px;position:relative;z-index:1}.acf-fields>.acf-tab-wrap{background:#f9f9f9}.acf-fields>.acf-tab-wrap .acf-tab-group{position:relative;border-top:#ccd0d4 solid 1px;border-bottom:#ccd0d4 solid 1px;z-index:2;margin-bottom:-1px}.acf-admin-3-8 .acf-fields>.acf-tab-wrap .acf-tab-group{border-color:#dfdfdf}.acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-left:20%}@media screen and (max-width: 640px){.acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-left:10px}}html[dir=rtl] .acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-left:0;padding-right:20%}@media screen and (max-width: 850px){html[dir=rtl] .acf-fields.-left>.acf-tab-wrap .acf-tab-group{padding-right:10px}}.acf-tab-wrap.-left .acf-tab-group{position:absolute;left:0;width:20%;border:0 none;padding:0 !important;margin:1px 0 0}.acf-tab-wrap.-left .acf-tab-group li{float:none;margin:-1px 0 0}.acf-tab-wrap.-left .acf-tab-group li a{border:1px solid #ededed;font-size:13px;line-height:18px;color:#0073aa;padding:10px;margin:0;font-weight:normal;border-width:1px 0;border-radius:0;background:rgba(0,0,0,0)}.acf-tab-wrap.-left .acf-tab-group li a:hover{color:#00a0d2}.acf-tab-wrap.-left .acf-tab-group li.active a{border-color:#dfdfdf;color:#000;margin-right:-1px;background:#fff}html[dir=rtl] .acf-tab-wrap.-left .acf-tab-group{left:auto;right:0}html[dir=rtl] .acf-tab-wrap.-left .acf-tab-group li.active a{margin-right:0;margin-left:-1px}.acf-field+.acf-tab-wrap.-left:before{content:"";display:block;position:relative;z-index:1;height:10px;border-top:#dfdfdf solid 1px;border-bottom:#dfdfdf solid 1px;margin-bottom:-1px}.acf-tab-wrap.-left:first-child .acf-tab-group li:first-child a{border-top:none}.acf-fields.-sidebar{padding:0 0 0 20% !important;position:relative}.acf-fields.-sidebar:before{content:"";display:block;position:absolute;top:0;left:0;width:20%;bottom:0;border-right:#dfdfdf solid 1px;background:#f9f9f9;z-index:1}html[dir=rtl] .acf-fields.-sidebar{padding:0 20% 0 0 !important}html[dir=rtl] .acf-fields.-sidebar:before{border-left:#dfdfdf solid 1px;border-right-width:0;left:auto;right:0}.acf-fields.-sidebar.-left{padding:0 0 0 180px !important}html[dir=rtl] .acf-fields.-sidebar.-left{padding:0 180px 0 0 !important}.acf-fields.-sidebar.-left:before{background:#f1f1f1;border-color:#dfdfdf;width:180px}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group{width:180px}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li a{border-color:#e4e4e4}.acf-fields.-sidebar.-left>.acf-tab-wrap.-left .acf-tab-group li.active a{background:#f9f9f9}.acf-fields.-sidebar>.acf-field-tab+.acf-field{border-top:none}.acf-fields.-clear>.acf-tab-wrap{background:rgba(0,0,0,0)}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group{margin-top:0;border-top:none;padding-left:0;padding-right:0}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a{background:#e5e5e5}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a:hover{background:#fff}.acf-fields.-clear>.acf-tab-wrap .acf-tab-group li.active a{background:#f1f1f1}.acf-postbox.seamless>.acf-fields.-sidebar{margin-left:0 !important}.acf-postbox.seamless>.acf-fields.-sidebar:before{background:rgba(0,0,0,0)}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap{background:rgba(0,0,0,0);margin-bottom:10px;padding-left:12px;padding-right:12px}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group{border-top:0 none;border-color:#ccd0d4}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group li a{background:#e5e5e5;border-color:#ccd0d4}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group li a:hover{background:#fff}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap .acf-tab-group li.active a{background:#f1f1f1}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left:before{border-top:none;height:auto}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left .acf-tab-group{margin-bottom:0}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left .acf-tab-group li a{border-width:1px 0 1px 1px !important;border-color:#ccc;background:#e5e5e5}.acf-postbox.seamless>.acf-fields>.acf-tab-wrap.-left .acf-tab-group li.active a{background:#f1f1f1}.menu-edit .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a,.widget .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a{background:#f1f1f1}.menu-edit .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a:hover,.menu-edit .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li.active a,.widget .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li a:hover,.widget .acf-fields.-clear>.acf-tab-wrap .acf-tab-group li.active a{background:#fff}.compat-item .acf-tab-wrap td{display:block}.acf-gallery-side .acf-tab-wrap{border-top:0 none !important}.acf-gallery-side .acf-tab-wrap .acf-tab-group{margin:10px 0 !important;padding:0 !important}.acf-gallery-side .acf-tab-group li.active a{background:#f9f9f9 !important}.widget .acf-tab-group{border-bottom-color:#e8e8e8}.widget .acf-tab-group li a{background:#f1f1f1}.widget .acf-tab-group li.active a{background:#fff}.media-modal.acf-expanded .compat-attachment-fields>tbody>tr.acf-tab-wrap .acf-tab-group{padding-left:23%;border-bottom-color:#ddd}.form-table>tbody>tr.acf-tab-wrap .acf-tab-group{padding:0 5px 0 210px}html[dir=rtl] .form-table>tbody>tr.acf-tab-wrap .acf-tab-group{padding:0 210px 0 5px}.acf-oembed{position:relative;border:#ccd0d4 solid 1px;background:#fff}.acf-oembed .title{position:relative;border-bottom:#ccd0d4 solid 1px;padding:5px 10px}.acf-oembed .title .input-search{margin:0;font-size:14px;line-height:30px;height:30px;padding:0;border:0 none;box-shadow:none;border-radius:0;font-family:inherit;cursor:text}.acf-oembed .title .acf-actions{padding:6px}.acf-oembed .canvas{position:relative;min-height:250px;background:#f9f9f9}.acf-oembed .canvas .canvas-media{position:relative;z-index:1}.acf-oembed .canvas iframe{display:block;margin:0;padding:0;width:100%}.acf-oembed .canvas .acf-icon.-picture{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:0;height:42px;width:42px;font-size:42px;color:#999}.acf-oembed .canvas .acf-loading-overlay{background:rgba(255,255,255,.9)}.acf-oembed .canvas .canvas-error{position:absolute;top:50%;left:0%;right:0%;margin:-9px 0 0 0;text-align:center;display:none}.acf-oembed .canvas .canvas-error p{padding:8px;margin:0;display:inline}.acf-oembed.has-value .canvas{min-height:50px}.acf-oembed.has-value .input-search{font-weight:bold}.acf-oembed.has-value .title:hover .acf-actions{display:block}.acf-image-uploader{position:relative}.acf-image-uploader:after{display:block;clear:both;content:""}.acf-image-uploader p{margin:0}.acf-image-uploader .image-wrap{position:relative;float:left}.acf-image-uploader .image-wrap img{max-width:100%;max-height:100%;width:auto;height:auto;display:block;min-width:30px;min-height:30px;background:#f1f1f1;margin:0;padding:0}.acf-image-uploader .image-wrap img[src$=".svg"]{min-height:100px;min-width:100px}.acf-image-uploader .image-wrap:hover .acf-actions{display:block}.acf-image-uploader input.button{width:auto}html[dir=rtl] .acf-image-uploader .image-wrap{float:right}.acf-file-uploader{position:relative}.acf-file-uploader p{margin:0}.acf-file-uploader .file-wrap{border:#ccd0d4 solid 1px;min-height:84px;position:relative;background:#fff}.acf-file-uploader .file-icon{position:absolute;top:0;left:0;bottom:0;padding:10px;background:#f1f1f1;border-right:#d5d9dd solid 1px}.acf-file-uploader .file-icon img{display:block;padding:0;margin:0;max-width:48px}.acf-file-uploader .file-info{padding:10px;margin-left:69px}.acf-file-uploader .file-info p{margin:0 0 2px;font-size:13px;line-height:1.4em;word-break:break-all}.acf-file-uploader .file-info a{text-decoration:none}.acf-file-uploader:hover .acf-actions{display:block}html[dir=rtl] .acf-file-uploader .file-icon{left:auto;right:0;border-left:#e5e5e5 solid 1px;border-right:none}html[dir=rtl] .acf-file-uploader .file-info{margin-right:69px;margin-left:0}.acf-ui-datepicker .ui-datepicker{z-index:900000 !important}.acf-ui-datepicker .ui-datepicker .ui-widget-header a{cursor:pointer;transition:none}.acf-ui-datepicker .ui-state-highlight.ui-state-hover{border:1px solid #98b7e8 !important;background:#98b7e8 !important;font-weight:normal !important;color:#fff !important}.acf-ui-datepicker .ui-state-highlight.ui-state-active{border:1px solid #3875d7 !important;background:#3875d7 !important;font-weight:normal !important;color:#fff !important}.acf-field-separator .acf-label{margin-bottom:0}.acf-field-separator .acf-label label{font-weight:normal}.acf-field-separator .acf-input{display:none}.acf-fields>.acf-field-separator{background:#f9f9f9;border-bottom:1px solid #dfdfdf;border-top:1px solid #dfdfdf;margin-bottom:-1px;z-index:2}.acf-taxonomy-field{position:relative}.acf-taxonomy-field .categorychecklist-holder{border:#ccd0d4 solid 1px;border-radius:3px;max-height:200px;overflow:auto}.acf-taxonomy-field .acf-checkbox-list{margin:0;padding:10px}.acf-taxonomy-field .acf-checkbox-list ul.children{padding-left:18px}.acf-taxonomy-field:hover .acf-actions{display:block}.acf-taxonomy-field[data-ftype=select] .acf-actions{padding:0;margin:-9px}.acf-range-wrap .acf-append,.acf-range-wrap .acf-prepend{display:inline-block;vertical-align:middle;line-height:28px;margin:0 7px 0 0}.acf-range-wrap .acf-append{margin:0 0 0 7px}.acf-range-wrap input[type=range]{display:inline-block;padding:0;margin:0;vertical-align:middle;height:28px}.acf-range-wrap input[type=range]:focus{outline:none}.acf-range-wrap input[type=number]{display:inline-block;min-width:3em;margin-left:10px;vertical-align:middle}html[dir=rtl] .acf-range-wrap input[type=number]{margin-right:10px;margin-left:0}html[dir=rtl] .acf-range-wrap .acf-append{margin:0 7px 0 0}html[dir=rtl] .acf-range-wrap .acf-prepend{margin:0 0 0 7px}.acf-accordion{margin:-1px 0;padding:0;background:#fff;border-top:1px solid #d5d9dd;border-bottom:1px solid #d5d9dd;z-index:1}.acf-accordion .acf-accordion-title{margin:0;padding:12px;font-weight:bold;cursor:pointer;font-size:inherit;font-size:13px;line-height:1.4em}.acf-accordion .acf-accordion-title:hover{background:#f3f4f5}.acf-accordion .acf-accordion-title label{margin:0;padding:0;font-size:13px;line-height:1.4em}.acf-accordion .acf-accordion-title p{font-weight:normal}.acf-accordion .acf-accordion-title .acf-accordion-icon{float:right}.acf-accordion .acf-accordion-title svg.acf-accordion-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);color:#191e23;fill:currentColor}.acf-accordion .acf-accordion-content{margin:0;padding:0 12px 12px;display:none}.acf-accordion.-open>.acf-accordion-content{display:block}.acf-field.acf-accordion{margin:-1px 0;padding:0 !important;border-color:#d5d9dd}.acf-field.acf-accordion .acf-label.acf-accordion-title{padding:12px;width:auto;float:none;width:auto}.acf-field.acf-accordion .acf-input.acf-accordion-content{padding:0;float:none;width:auto}.acf-field.acf-accordion .acf-input.acf-accordion-content>.acf-fields{border-top:#eee solid 1px}.acf-field.acf-accordion .acf-input.acf-accordion-content>.acf-fields.-clear{padding:0 12px 15px}.acf-fields.-left>.acf-field.acf-accordion:before{display:none}.acf-fields.-left>.acf-field.acf-accordion .acf-accordion-title{width:auto;margin:0 !important;padding:12px;float:none !important}.acf-fields.-left>.acf-field.acf-accordion .acf-accordion-content{padding:0 !important}.acf-fields.-clear>.acf-field.acf-accordion{border:#ccc solid 1px;background:rgba(0,0,0,0)}.acf-fields.-clear>.acf-field.acf-accordion+.acf-field.acf-accordion{margin-top:-16px}tr.acf-field.acf-accordion{background:rgba(0,0,0,0)}tr.acf-field.acf-accordion>.acf-input{padding:0 !important;border:#ccc solid 1px}tr.acf-field.acf-accordion .acf-accordion-content{padding:0 12px 12px}#addtag div.acf-field.error{border:0 none;padding:8px 0}#addtag>.acf-field.acf-accordion{padding-right:0;margin-right:5%}#addtag>.acf-field.acf-accordion+p.submit{margin-top:0}tr.acf-accordion{margin:15px 0 !important}tr.acf-accordion+tr.acf-accordion{margin-top:-16px !important}.acf-postbox.seamless>.acf-fields>.acf-accordion{margin-left:12px;margin-right:12px;border:#ccd0d4 solid 1px}.widget .widget-content>.acf-field.acf-accordion{border:#dfdfdf solid 1px;margin-bottom:10px}.widget .widget-content>.acf-field.acf-accordion .acf-accordion-title{margin-bottom:0}.widget .widget-content>.acf-field.acf-accordion+.acf-field.acf-accordion{margin-top:-11px}.media-modal .compat-attachment-fields .acf-field.acf-accordion+.acf-field.acf-accordion{margin-top:-1px}.media-modal .compat-attachment-fields .acf-field.acf-accordion>.acf-input{width:100%}.media-modal .compat-attachment-fields .acf-field.acf-accordion .compat-attachment-fields>tbody>tr>td{padding-bottom:5px}.block-editor .edit-post-sidebar .acf-postbox>.postbox-header,.block-editor .edit-post-sidebar .acf-postbox>.hndle{border-bottom-width:0 !important}.block-editor .edit-post-sidebar .acf-postbox.closed>.postbox-header,.block-editor .edit-post-sidebar .acf-postbox.closed>.hndle{border-bottom-width:1px !important}.block-editor .edit-post-sidebar .acf-fields{min-height:1px;overflow:auto}.block-editor .edit-post-sidebar .acf-fields>.acf-field{border-width:0;border-color:#e2e4e7;margin:16px;padding:0;width:auto !important;min-height:0 !important;float:none !important}.block-editor .edit-post-sidebar .acf-fields>.acf-field>.acf-label{margin-bottom:5px}.block-editor .edit-post-sidebar .acf-fields>.acf-field>.acf-label label{font-weight:normal}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion{padding:0;margin:0;border-top-width:1px}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion:first-child{border-top-width:0}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion .acf-accordion-title{margin:0;padding:15px}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion .acf-accordion-title label{font-weight:500;color:#1e1e1e}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion .acf-accordion-title svg.acf-accordion-icon{right:16px}.block-editor .edit-post-sidebar .acf-fields>.acf-field.acf-accordion .acf-accordion-content>.acf-fields{border-top-width:0}.acf-field-setting-prefix_label p.description,.acf-field-setting-prefix_name p.description{order:3;margin-top:0;margin-left:16px}.acf-field-setting-prefix_label p.description code,.acf-field-setting-prefix_name p.description code{padding-top:4px;padding-right:6px;padding-bottom:4px;padding-left:6px;background-color:#f2f4f7;border-radius:4px;color:#667085}.acf-fields>.acf-tab-wrap:first-child .acf-tab-group{border-top:none}.acf-fields>.acf-tab-wrap .acf-tab-group li.active a{background:#fff}.acf-fields>.acf-tab-wrap .acf-tab-group li a{background:#f1f1f1;border-color:#ccd0d4}.acf-fields>.acf-tab-wrap .acf-tab-group li a:hover{background:#fff}.form-table>tbody>.acf-field>.acf-label{padding:20px 10px 20px 0;width:210px}html[dir=rtl] .form-table>tbody>.acf-field>.acf-label{padding:20px 0 20px 10px}.form-table>tbody>.acf-field>.acf-label label{font-size:14px;color:#23282d}.form-table>tbody>.acf-field>.acf-input{padding:15px 10px}html[dir=rtl] .form-table>tbody>.acf-field>.acf-input{padding:15px 10px 15px 5%}.form-table>tbody>.acf-tab-wrap td{padding:15px 5% 15px 0}html[dir=rtl] .form-table>tbody>.acf-tab-wrap td{padding:15px 0 15px 5%}.form-table>tbody .form-table th.acf-th{width:auto}#your-profile .acf-field input[type=text],#your-profile .acf-field input[type=password],#your-profile .acf-field input[type=number],#your-profile .acf-field input[type=search],#your-profile .acf-field input[type=email],#your-profile .acf-field input[type=url],#your-profile .acf-field select,#createuser .acf-field input[type=text],#createuser .acf-field input[type=password],#createuser .acf-field input[type=number],#createuser .acf-field input[type=search],#createuser .acf-field input[type=email],#createuser .acf-field input[type=url],#createuser .acf-field select{max-width:25em}#your-profile .acf-field textarea,#createuser .acf-field textarea{max-width:500px}#your-profile .acf-field .acf-field input[type=text],#your-profile .acf-field .acf-field input[type=password],#your-profile .acf-field .acf-field input[type=number],#your-profile .acf-field .acf-field input[type=search],#your-profile .acf-field .acf-field input[type=email],#your-profile .acf-field .acf-field input[type=url],#your-profile .acf-field .acf-field textarea,#your-profile .acf-field .acf-field select,#createuser .acf-field .acf-field input[type=text],#createuser .acf-field .acf-field input[type=password],#createuser .acf-field .acf-field input[type=number],#createuser .acf-field .acf-field input[type=search],#createuser .acf-field .acf-field input[type=email],#createuser .acf-field .acf-field input[type=url],#createuser .acf-field .acf-field textarea,#createuser .acf-field .acf-field select{max-width:none}#registerform h2{margin:1em 0}#registerform .acf-field{margin-top:0}#registerform .acf-field .acf-label{margin-bottom:0}#registerform .acf-field .acf-label label{font-weight:normal;line-height:1.5}#registerform p.submit{text-align:right}#acf-term-fields{padding-right:5%}#acf-term-fields>.acf-field>.acf-label{margin:0}#acf-term-fields>.acf-field>.acf-label label{font-size:12px;font-weight:normal}p.submit .spinner,p.submit .acf-spinner{vertical-align:top;float:none;margin:4px 4px 0}#edittag .acf-fields.-left>.acf-field{padding-left:220px}#edittag .acf-fields.-left>.acf-field:before{width:209px}#edittag .acf-fields.-left>.acf-field>.acf-label{width:220px;margin-left:-220px;padding:0 10px}#edittag .acf-fields.-left>.acf-field>.acf-input{padding:0}#edittag>.acf-fields.-left{width:96%}#edittag>.acf-fields.-left>.acf-field>.acf-label{padding-left:0}.editcomment td:first-child{white-space:nowrap;width:131px}#widgets-right .widget .acf-field .description{padding-left:0;padding-right:0}.acf-widget-fields>.acf-field .acf-label{margin-bottom:5px}.acf-widget-fields>.acf-field .acf-label label{font-weight:normal;margin:0}.acf-menu-settings{border-top:1px solid #eee;margin-top:2em}.acf-menu-settings.-seamless{border-top:none;margin-top:15px}.acf-menu-settings.-seamless>h2{display:none}.acf-menu-settings .list li{display:block;margin-bottom:0}.acf-fields.acf-menu-item-fields{clear:both;padding-top:1px}.acf-fields.acf-menu-item-fields>.acf-field{margin:5px 0;padding-right:10px}.acf-fields.acf-menu-item-fields>.acf-field .acf-label{margin-bottom:0}.acf-fields.acf-menu-item-fields>.acf-field .acf-label label{font-style:italic;font-weight:normal}#post .compat-attachment-fields .compat-field-acf-form-data{display:none}#post .compat-attachment-fields,#post .compat-attachment-fields>tbody,#post .compat-attachment-fields>tbody>tr,#post .compat-attachment-fields>tbody>tr>th,#post .compat-attachment-fields>tbody>tr>td{display:block}#post .compat-attachment-fields>tbody>.acf-field{margin:15px 0}#post .compat-attachment-fields>tbody>.acf-field>.acf-label{margin:0}#post .compat-attachment-fields>tbody>.acf-field>.acf-label label{margin:0;padding:0}#post .compat-attachment-fields>tbody>.acf-field>.acf-label label p{margin:0 0 3px !important}#post .compat-attachment-fields>tbody>.acf-field>.acf-input{margin:0}.media-modal .compat-attachment-fields td.acf-input table{display:table;table-layout:auto}.media-modal .compat-attachment-fields td.acf-input table tbody{display:table-row-group}.media-modal .compat-attachment-fields td.acf-input table tr{display:table-row}.media-modal .compat-attachment-fields td.acf-input table td,.media-modal .compat-attachment-fields td.acf-input table th{display:table-cell}.media-modal .compat-attachment-fields>tbody>.acf-field{margin:5px 0}.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-label{min-width:30%;margin:0;padding:0;float:left;text-align:right;display:block;float:left}.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-label>label{padding-top:6px;margin:0;color:#666;font-weight:400;line-height:16px}.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-input{width:65%;margin:0;padding:0;float:right;display:block}.media-modal .compat-attachment-fields>tbody>.acf-field p.description{margin:0}.acf-selection-error{background:#ffebe8;border:1px solid #c00;border-radius:3px;padding:8px;margin:20px 0 0}.acf-selection-error .selection-error-label{background:#c00;border-radius:3px;color:#fff;font-weight:bold;margin-right:8px;padding:2px 4px}.acf-selection-error .selection-error-message{color:#b44;display:block;padding-top:8px;word-wrap:break-word;white-space:pre-wrap}.media-modal .attachment.acf-disabled .thumbnail{opacity:.25 !important}.media-modal .attachment.acf-disabled .attachment-preview:before{background:rgba(0,0,0,.15);z-index:1;position:relative}.media-modal .compat-field-acf-form-data,.media-modal .compat-field-acf-blank{display:none !important}.media-modal .upload-error-message{white-space:pre-wrap}.media-modal .acf-required{padding:0 !important;margin:0 !important;float:none !important;color:red !important}.media-modal .media-sidebar .compat-item{padding-bottom:20px}@media(max-width: 900px){.media-modal .setting span,.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-label{width:98%;float:none;text-align:left;min-height:0;padding:0}.media-modal .setting input,.media-modal .setting textarea,.media-modal .compat-attachment-fields>tbody>.acf-field>.acf-input{float:none;height:auto;max-width:none;width:98%}}.media-modal .acf-expand-details{float:right;padding:8px 10px;margin-right:6px;font-size:13px;height:18px;line-height:18px;color:#666;text-decoration:none}.media-modal .acf-expand-details:focus,.media-modal .acf-expand-details:active{outline:0 none;box-shadow:none;color:#666}.media-modal .acf-expand-details:hover{color:#000}.media-modal .acf-expand-details .is-open{display:none}.media-modal .acf-expand-details .is-closed{display:block}@media(max-width: 640px){.media-modal .acf-expand-details{display:none}}.media-modal.acf-expanded .acf-expand-details .is-open{display:block}.media-modal.acf-expanded .acf-expand-details .is-closed{display:none}.media-modal.acf-expanded .attachments-browser .media-toolbar,.media-modal.acf-expanded .attachments-browser .attachments{right:740px}.media-modal.acf-expanded .media-sidebar{width:708px}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail{float:left;max-height:none}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail img{max-width:100%;max-height:200px}.media-modal.acf-expanded .media-sidebar .attachment-info .details{float:right}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail,.media-modal.acf-expanded .media-sidebar .attachment-details .setting .name,.media-modal.acf-expanded .media-sidebar .compat-attachment-fields>tbody>.acf-field>.acf-label{min-width:20%;margin-right:0}.media-modal.acf-expanded .media-sidebar .attachment-info .details,.media-modal.acf-expanded .media-sidebar .attachment-details .setting input,.media-modal.acf-expanded .media-sidebar .attachment-details .setting textarea,.media-modal.acf-expanded .media-sidebar .attachment-details .setting+.description,.media-modal.acf-expanded .media-sidebar .compat-attachment-fields>tbody>.acf-field>.acf-input{min-width:77%}@media(max-width: 900px){.media-modal.acf-expanded .attachments-browser .media-toolbar{display:none}.media-modal.acf-expanded .attachments{display:none}.media-modal.acf-expanded .media-sidebar{width:auto;max-width:none !important;bottom:0 !important}.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail{min-width:0;max-width:none;width:30%}.media-modal.acf-expanded .media-sidebar .attachment-info .details{min-width:0;max-width:none;width:67%}}@media(max-width: 640px){.media-modal.acf-expanded .media-sidebar .attachment-info .thumbnail,.media-modal.acf-expanded .media-sidebar .attachment-info .details{width:100%}}.acf-media-modal .media-embed .setting.align,.acf-media-modal .media-embed .setting.link-to{display:none}.acf-media-modal.-edit{left:15%;right:15%;top:100px;bottom:100px}.acf-media-modal.-edit .media-frame-menu,.acf-media-modal.-edit .media-frame-router,.acf-media-modal.-edit .media-frame-content .attachments,.acf-media-modal.-edit .media-frame-content .media-toolbar{display:none}.acf-media-modal.-edit .media-frame-title,.acf-media-modal.-edit .media-frame-content,.acf-media-modal.-edit .media-frame-toolbar,.acf-media-modal.-edit .media-sidebar{width:auto;left:0;right:0}.acf-media-modal.-edit .media-frame-content{top:50px}.acf-media-modal.-edit .media-frame-title{border-bottom:1px solid #dfdfdf;box-shadow:0 4px 4px -4px rgba(0,0,0,.1)}.acf-media-modal.-edit .media-sidebar{padding:0 16px}.acf-media-modal.-edit .media-sidebar .attachment-details{overflow:visible}.acf-media-modal.-edit .media-sidebar .attachment-details>h3,.acf-media-modal.-edit .media-sidebar .attachment-details>h2{display:none}.acf-media-modal.-edit .media-sidebar .attachment-details .attachment-info{background:#fff;border-bottom:#ddd solid 1px;padding:16px;margin:0 -16px 16px}.acf-media-modal.-edit .media-sidebar .attachment-details .thumbnail{margin:0 16px 0 0}.acf-media-modal.-edit .media-sidebar .attachment-details .setting{margin:0 0 5px}.acf-media-modal.-edit .media-sidebar .attachment-details .setting span{margin:0}.acf-media-modal.-edit .media-sidebar .compat-attachment-fields>tbody>.acf-field{margin:0 0 5px}.acf-media-modal.-edit .media-sidebar .compat-attachment-fields>tbody>.acf-field p.description{margin-top:3px}.acf-media-modal.-edit .media-sidebar .media-types-required-info{display:none}@media(max-width: 900px){.acf-media-modal.-edit{top:30px;right:30px;bottom:30px;left:30px}}@media(max-width: 640px){.acf-media-modal.-edit{top:0;right:0;bottom:0;left:0}}@media(max-width: 480px){.acf-media-modal.-edit .media-frame-content{top:40px}}.acf-temp-remove{position:relative;opacity:1;-webkit-transition:all .25s ease;-moz-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;overflow:hidden}.acf-temp-remove:after{display:block;content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:99}.hidden-by-conditional-logic{display:none !important}.hidden-by-conditional-logic.appear-empty{display:table-cell !important}.hidden-by-conditional-logic.appear-empty .acf-input{display:none !important}.acf-postbox.acf-hidden{display:none !important}.acf-attention{transition:border .25s ease-out}.acf-attention.-focused{border:#23282d solid 1px !important;transition:none}tr.acf-attention{transition:box-shadow .25s ease-out;position:relative}tr.acf-attention.-focused{box-shadow:#23282d 0 0 0px 1px !important}#editor .edit-post-layout__metaboxes{padding:0}#editor .edit-post-layout__metaboxes .edit-post-meta-boxes-area{margin:0}#editor .metabox-location-side .postbox-container{float:none}#editor .postbox{color:#444}#editor .postbox>.postbox-header .hndle{border-bottom:none}#editor .postbox>.postbox-header .hndle:hover{background:rgba(0,0,0,0)}#editor .postbox>.postbox-header .handle-actions .handle-order-higher,#editor .postbox>.postbox-header .handle-actions .handle-order-lower{width:1.62rem}#editor .postbox>.postbox-header .handle-actions .acf-hndle-cog{height:44px;line-height:44px}#editor .postbox>.postbox-header:hover{background:#f0f0f0}#editor .postbox:last-child.closed>.postbox-header{border-bottom:none}#editor .postbox:last-child>.inside{border-bottom:none}#editor .block-editor-writing-flow__click-redirect{min-height:50px}body.is-dragging-metaboxes #acf_after_title-sortables{outline:3px dashed #646970;display:flow-root;min-height:60px;margin-bottom:3px !important} diff --git a/assets/build/css/pro/acf-pro-field-group.css b/assets/build/css/pro/acf-pro-field-group.css index f8f15e3..19efb0f 100644 --- a/assets/build/css/pro/acf-pro-field-group.css +++ b/assets/build/css/pro/acf-pro-field-group.css @@ -1,6 +1,7 @@ /*!******************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/advanced-custom-fields-pro/assets/src/sass/pro/acf-pro-field-group.scss ***! \******************************************************************************************************************************************************************************************************************************/ +@charset "UTF-8"; /*-------------------------------------------------------------------------------------------- * * Vars @@ -11,13 +12,18 @@ /* responsive */ /*-------------------------------------------------------------------------------------------- * +* ACF 6 ↓ +* +*--------------------------------------------------------------------------------------------*/ +/*-------------------------------------------------------------------------------------------- +* * Mixins * *--------------------------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------------------------- * * Flexible Content -* +* *---------------------------------------------------------------------------------------------*/ .acf-field-setting-fc_layout .acf-fc-meta { margin: 0 0 10px; @@ -27,12 +33,22 @@ margin: 0 0 10px; padding: 0; } -.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display, -.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min { +.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display { float: left; - width: 33%; + width: 100%; padding-right: 10px; } +.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min { + width: calc(50% - 4px); + float: left; + clear: left; + margin-right: 4px; +} +.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-max { + width: calc(50% - 4px); + float: left; + margin-left: 4px; +} .acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-label .acf-input-prepend, .acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-name .acf-input-prepend, .acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display .acf-input-prepend { @@ -56,7 +72,7 @@ /*--------------------------------------------------------------------------------------------- * * Clone -* +* *---------------------------------------------------------------------------------------------*/ .acf-field-object-clone { /* group */ diff --git a/assets/build/css/pro/acf-pro-field-group.css.map b/assets/build/css/pro/acf-pro-field-group.css.map index a25d92b..23590f1 100644 --- a/assets/build/css/pro/acf-pro-field-group.css.map +++ b/assets/build/css/pro/acf-pro-field-group.css.map @@ -1 +1 @@ -{"version":3,"file":"acf-pro-field-group.css","mappings":";;;AAAA;;;;8FAAA;AAMA;AAOA;AAQA;ACrBA;;;;8FAAA;ACAA;;;;+FAAA;AASC;EACC;EACA;ACUF;ADRE;EACC;EACA;ACUH;ADPE;;EAEC;EACA;EACA;ACSH;ADNE;;;EAGC;ACQH;ADHC;EACC;ACKF;ADHE;EACC;ACKH;ADFE;EACC;EACA;EACA;ACIH;ADEG;EACC;ACAJ;;ADMA;;;;+FAAA;AAMA;EAEC;EAOA;ACXD;ADcE;;;;EAIC;ACZH,C","sources":["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/_field-group.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/acf-pro-field-group.scss"],"sourcesContent":["/*--------------------------------------------------------------------------------------------\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\t// Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t\t// Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t\t// Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\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* 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*\tFlexible Content\n*\t\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-setting-fc_layout {\n\t\n\t// meta\n\t.acf-fc-meta {\n\t\tmargin: 0 0 10px;\n\t\tpadding: 0;\n\t\t\n\t\tli {\n\t\t\tmargin: 0 0 10px;\n\t\t\tpadding: 0;\n\t\t}\n\t\t\n\t\t.acf-fc-meta-display,\n\t\t.acf-fc-meta-min {\n\t\t\tfloat: left;\n\t\t\twidth: 33%;\n\t\t\tpadding-right: 10px;\n\t\t}\n\t\t\n\t\t.acf-fc-meta-label .acf-input-prepend,\n\t\t.acf-fc-meta-name .acf-input-prepend,\n\t\t.acf-fc-meta-display .acf-input-prepend {\n\t\t\tmin-width: 60px;\n\t\t}\n\t}\n\t\n\t// actions\n\t.acf-fl-actions {\n\t\tvisibility: hidden;\n\t\t\n\t\t.reorder-layout {\n\t\t\tcursor: move;\n\t\t}\n\t\t\n\t\ta {\n\t\t\tpadding: 1px 0;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 20px;\n\t\t}\n\t}\n\t\n\t// hover\n\t&:hover, &.-hover {\n\t\t .acf-fl-actions {\n\t\t \tvisibility: visible;\n\t\t }\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tClone\n*\t\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-object-clone {\n\t\n\t/* group */\n\t&[data-display=\"group\"] {\n\t\t\n\t\t\n\t}\n\t\n\t\n\t/* seamless */\n\t&[data-display=\"seamless\"] {\n\t\t\n\t\t.acf-field-setting-instructions,\n\t\t.acf-field-setting-layout,\n\t\t.acf-field-setting-wrapper,\n\t\t.acf-field-setting-conditional_logic {\n\t\t\tdisplay: none;\n\t\t}\n\t\t\n\t}\n\t\n}","/*--------------------------------------------------------------------------------------------\n*\n*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\n/*--------------------------------------------------------------------------------------------\n*\n* Mixins\n*\n*--------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n*\n*\tFlexible Content\n*\t\n*---------------------------------------------------------------------------------------------*/\n.acf-field-setting-fc_layout .acf-fc-meta {\n margin: 0 0 10px;\n padding: 0;\n}\n.acf-field-setting-fc_layout .acf-fc-meta li {\n margin: 0 0 10px;\n padding: 0;\n}\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display,\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min {\n float: left;\n width: 33%;\n padding-right: 10px;\n}\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-label .acf-input-prepend,\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-name .acf-input-prepend,\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display .acf-input-prepend {\n min-width: 60px;\n}\n.acf-field-setting-fc_layout .acf-fl-actions {\n visibility: hidden;\n}\n.acf-field-setting-fc_layout .acf-fl-actions .reorder-layout {\n cursor: move;\n}\n.acf-field-setting-fc_layout .acf-fl-actions a {\n padding: 1px 0;\n font-size: 13px;\n line-height: 20px;\n}\n.acf-field-setting-fc_layout:hover .acf-fl-actions, .acf-field-setting-fc_layout.-hover .acf-fl-actions {\n visibility: visible;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tClone\n*\t\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object-clone {\n /* group */\n /* seamless */\n}\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-instructions,\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-layout,\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-wrapper,\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-conditional_logic {\n display: none;\n}"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"acf-pro-field-group.css","mappings":";;;AAAA,gBAAgB;ACAhB;;;;8FAAA;AAMA;AAOA;AAQA;AAgBA;;;;8FAAA;ACrCA;;;;8FAAA;ACAA;;;;+FAAA;AASC;EACC;EACA;AHgBF;AGdE;EACC;EACA;AHgBH;AGbE;EACC;EACA;EACA;AHeH;AGZE;EACC;EACA;EACA;EAEC;AHaJ;AGTE;EACC;EACA;EAEC;AHUJ;AGNE;;;EAGC;AHQH;AGHC;EACC;AHKF;AGHE;EACC;AHKH;AGFE;EACC;EACA;EACA;AHIH;AGEG;EACC;AHAJ;;AGMA;;;;+FAAA;AAMA;EAEC;EAOA;AHXD;AGcE;;;;EAIC;AHZH,C","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/acf-pro-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/pro/_field-group.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*\tFlexible Content\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-setting-fc_layout .acf-fc-meta {\n margin: 0 0 10px;\n padding: 0;\n}\n.acf-field-setting-fc_layout .acf-fc-meta li {\n margin: 0 0 10px;\n padding: 0;\n}\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display {\n float: left;\n width: 100%;\n padding-right: 10px;\n}\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min {\n width: calc(50% - 4px);\n float: left;\n clear: left;\n margin-right: 4px;\n}\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-max {\n width: calc(50% - 4px);\n float: left;\n margin-left: 4px;\n}\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-label .acf-input-prepend,\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-name .acf-input-prepend,\n.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display .acf-input-prepend {\n min-width: 60px;\n}\n.acf-field-setting-fc_layout .acf-fl-actions {\n visibility: hidden;\n}\n.acf-field-setting-fc_layout .acf-fl-actions .reorder-layout {\n cursor: move;\n}\n.acf-field-setting-fc_layout .acf-fl-actions a {\n padding: 1px 0;\n font-size: 13px;\n line-height: 20px;\n}\n.acf-field-setting-fc_layout:hover .acf-fl-actions, .acf-field-setting-fc_layout.-hover .acf-fl-actions {\n visibility: visible;\n}\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tClone\n*\n*---------------------------------------------------------------------------------------------*/\n.acf-field-object-clone {\n /* group */\n /* seamless */\n}\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-instructions,\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-layout,\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-wrapper,\n.acf-field-object-clone[data-display=seamless] .acf-field-setting-conditional_logic {\n display: none;\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#DA5A39;\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, #2C9FB8 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\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*\tFlexible Content\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-setting-fc_layout {\n\n\t// meta\n\t.acf-fc-meta {\n\t\tmargin: 0 0 10px;\n\t\tpadding: 0;\n\n\t\tli {\n\t\t\tmargin: 0 0 10px;\n\t\t\tpadding: 0;\n\t\t}\n\n\t\t.acf-fc-meta-display {\n\t\t\tfloat: left;\n\t\t\twidth: 100%;\n\t\t\tpadding-right: 10px;\n\t\t}\n\n\t\t.acf-fc-meta-min {\n\t\t\twidth: calc(50% - 4px);\n\t\t\tfloat: left;\n\t\t\tclear: left;\n\t\t\tmargin: {\n\t\t\t\tright: 4px;\n\t\t\t};\n\t\t}\n\n\t\t.acf-fc-meta-max {\n\t\t\twidth: calc(50% - 4px);\n\t\t\tfloat: left;\n\t\t\tmargin: {\n\t\t\t\tleft: 4px;\n\t\t\t};\n\t\t}\n\n\t\t.acf-fc-meta-label .acf-input-prepend,\n\t\t.acf-fc-meta-name .acf-input-prepend,\n\t\t.acf-fc-meta-display .acf-input-prepend {\n\t\t\tmin-width: 60px;\n\t\t}\n\t}\n\n\t// actions\n\t.acf-fl-actions {\n\t\tvisibility: hidden;\n\n\t\t.reorder-layout {\n\t\t\tcursor: move;\n\t\t}\n\n\t\ta {\n\t\t\tpadding: 1px 0;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 20px;\n\t\t}\n\t}\n\n\t// hover\n\t&:hover, &.-hover {\n\t\t .acf-fl-actions {\n\t\t \tvisibility: visible;\n\t\t }\n\t}\n}\n\n\n/*---------------------------------------------------------------------------------------------\n*\n*\tClone\n*\n*---------------------------------------------------------------------------------------------*/\n\n.acf-field-object-clone {\n\n\t/* group */\n\t&[data-display=\"group\"] {\n\n\n\t}\n\n\n\t/* seamless */\n\t&[data-display=\"seamless\"] {\n\n\t\t.acf-field-setting-instructions,\n\t\t.acf-field-setting-layout,\n\t\t.acf-field-setting-wrapper,\n\t\t.acf-field-setting-conditional_logic {\n\t\t\tdisplay: none;\n\t\t}\n\n\t}\n\n}"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/css/pro/acf-pro-field-group.min.css b/assets/build/css/pro/acf-pro-field-group.min.css index 2241631..3d69f2b 100644 --- a/assets/build/css/pro/acf-pro-field-group.min.css +++ b/assets/build/css/pro/acf-pro-field-group.min.css @@ -1 +1 @@ -.acf-field-setting-fc_layout .acf-fc-meta{margin:0 0 10px;padding:0}.acf-field-setting-fc_layout .acf-fc-meta li{margin:0 0 10px;padding:0}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min{float:left;width:33%;padding-right:10px}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-label .acf-input-prepend,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-name .acf-input-prepend,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display .acf-input-prepend{min-width:60px}.acf-field-setting-fc_layout .acf-fl-actions{visibility:hidden}.acf-field-setting-fc_layout .acf-fl-actions .reorder-layout{cursor:move}.acf-field-setting-fc_layout .acf-fl-actions a{padding:1px 0;font-size:13px;line-height:20px}.acf-field-setting-fc_layout:hover .acf-fl-actions,.acf-field-setting-fc_layout.-hover .acf-fl-actions{visibility:visible}.acf-field-object-clone[data-display=seamless] .acf-field-setting-instructions,.acf-field-object-clone[data-display=seamless] .acf-field-setting-layout,.acf-field-object-clone[data-display=seamless] .acf-field-setting-wrapper,.acf-field-object-clone[data-display=seamless] .acf-field-setting-conditional_logic{display:none} +.acf-field-setting-fc_layout .acf-fc-meta{margin:0 0 10px;padding:0}.acf-field-setting-fc_layout .acf-fc-meta li{margin:0 0 10px;padding:0}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display{float:left;width:100%;padding-right:10px}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min{width:calc(50% - 4px);float:left;clear:left;margin-right:4px}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-max{width:calc(50% - 4px);float:left;margin-left:4px}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-label .acf-input-prepend,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-name .acf-input-prepend,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display .acf-input-prepend{min-width:60px}.acf-field-setting-fc_layout .acf-fl-actions{visibility:hidden}.acf-field-setting-fc_layout .acf-fl-actions .reorder-layout{cursor:move}.acf-field-setting-fc_layout .acf-fl-actions a{padding:1px 0;font-size:13px;line-height:20px}.acf-field-setting-fc_layout:hover .acf-fl-actions,.acf-field-setting-fc_layout.-hover .acf-fl-actions{visibility:visible}.acf-field-object-clone[data-display=seamless] .acf-field-setting-instructions,.acf-field-object-clone[data-display=seamless] .acf-field-setting-layout,.acf-field-object-clone[data-display=seamless] .acf-field-setting-wrapper,.acf-field-object-clone[data-display=seamless] .acf-field-setting-conditional_logic{display:none} diff --git a/assets/build/css/pro/acf-pro-input.css b/assets/build/css/pro/acf-pro-input.css index 92358b3..229d511 100644 --- a/assets/build/css/pro/acf-pro-input.css +++ b/assets/build/css/pro/acf-pro-input.css @@ -1,6 +1,7 @@ /*!************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/advanced-custom-fields-pro/assets/src/sass/pro/acf-pro-input.scss ***! \************************************************************************************************************************************************************************************************************************/ +@charset "UTF-8"; /*-------------------------------------------------------------------------------------------- * * Vars @@ -11,6 +12,11 @@ /* responsive */ /*-------------------------------------------------------------------------------------------- * +* ACF 6 ↓ +* +*--------------------------------------------------------------------------------------------*/ +/*-------------------------------------------------------------------------------------------- +* * Mixins * *--------------------------------------------------------------------------------------------*/ @@ -44,6 +50,9 @@ margin: 0 0 8px; background: #F9F9F9; } +.acf-repeater .acf-divider td { + border-top: 10px solid #e4e4e4; +} .acf-repeater .acf-row-handle { width: 16px; text-align: center !important; @@ -53,6 +62,18 @@ /* .order */ /* remove */ } +.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; @@ -79,6 +100,9 @@ body.browser-msie .acf-repeater .acf-row-handle .acf-icon.-minus { .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; @@ -151,6 +175,16 @@ body.acf-keydown-shift .acf-repeater .acf-row:hover > .acf-row-handle .acf-icon. .acf-repeater.-max .acf-icon[data-event=add-row] { display: none !important; } +.acf-repeater .acf-actions .acf-button { + float: right; +} +.acf-repeater .acf-actions .acf-tablenav { + float: right; + margin-right: 20px; +} +.acf-repeater .acf-actions .acf-tablenav .current-page { + width: auto !important; +} /*--------------------------------------------------------------------------------------------- * @@ -625,11 +659,11 @@ html[dir=rtl] .acf-gallery .acf-gallery-side-data th.label { position: relative; } -/*-------------------------------------------------------------------------------------------- +/*----------------------------------------------------------------------------- * * ACF Blocks * -*--------------------------------------------------------------------------------------------*/ +*----------------------------------------------------------------------------*/ .acf-block-component .components-placeholder { margin: 0; } @@ -642,6 +676,15 @@ html[dir=rtl] .acf-gallery .acf-gallery-side-data th.label { 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; } @@ -671,7 +714,8 @@ html[dir=rtl] .acf-block-component .acf-block-fields { } .acf-block-panel .acf-block-fields { - border-top: #e2e4e7 solid 1px; + border-top: #ddd solid 1px; + border-bottom: #ddd solid 1px; min-height: 1px; } .acf-block-panel .acf-block-fields:empty { diff --git a/assets/build/css/pro/acf-pro-input.css.map b/assets/build/css/pro/acf-pro-input.css.map index 0d660f2..56420ae 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":";;;AAAA;;;;8FAAA;AAMA;AAOA;AAQA;ACrBA;;;;8FAAA;ACAA;;;;+FAAA;AAMA;EAEC;EAOA;EAoDA;EASA;EAiCA;EAcA;EACD;;;;;;;;GAAA;EAgBC;EAWA;EAYA;EAkBA;AC/ID;AD7BC;EACC;EACA;AC+BF;AD1BC;EACC;EACA;EACA;EACA;EAGA;EAmBA;EAiBA;ACRF;AD3BE;EACC;EACA;EACA;EACA;EAGA;AC2BH;AD1BG;EACC;EAEA;AC2BJ;AD1BI;EAAsB;AC6B1B;ADtBE;EACC;EACA;EACA;EACA;ACwBH;ADtBG;EACC;ACwBJ;ADrBG;EACC;ACuBJ;ADjBE;EACC;EACA;ACmBH;ADbC;EACC;EACA;EACA;EACA;ACeF;ADVC;EAEC;EAMA;ACMF;ADXE;EACC;ACaH;ADRE;EAGC;ACQH;ADPG;EACC;ACSJ;ADNI;EACC;ACQL;ADPK;EACC;ACSN;ADLK;EACC;ACON;ADCC;EACC;ACCF;ADEC;EACC;ACAF;ADEE;EACC;ACAH;ADgBC;EAEC;ACfF;ADoBC;EACC;AClBF;ADqBC;EAEC;ACpBF;AD2BE;EACC;ACzBH;AD4BE;EACC;AC1BH;ADiCE;EACC;AC/BH;ADkCE;EACC;AChCH;ADkCG;EACC;EACA;AChCJ;ADuCC;EACC;ACrCF;AD4CE;EACC;AC1CH;;AD+CA;;;;+FAAA;AAMA;EACC;AC7CD;ADgDC;EACC;AC9CF;ADkDC;EACC;AChDF;ADmDE;EACC;EACA;EAEA;EACA;AClDH;ADuDC;EACC;EACA;EACG;EACA;ACrDL;ADuDK;EACF;ACrDH;ADyDE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACvDH;AD2DE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACzDH;AD2DG;EACC;EACA;EACA;ACzDJ;AD8DE;EACC;EACA;EACA;AC5DH;AD8DG;EACC;EACA;EACA;AC5DJ;AD8DI;EAAkC;AC3DtC;AD8DG;EACC;EACA;AC5DJ;ADiEE;EACC,qBFrQe;AGsMlB;ADgEG;EACC,qBFvQc;AGyMlB;AD0EK;EAAkC;ACvEvC;AD8EG;EACC;AC5EJ;AD+EG;;EAEC;AC7EJ;ADkFE;EACC;EACA;AChFH;ADkFG;EACC;AChFJ;ADmFG;EACC;ACjFJ;ADuFC;EACC;EACA;EACA;EACA;ACrFF;ADyFC;EACC;ACvFF;;AD4FA;EACC;EACA;EACA;ACzFD;AD2FC;EACC;EACA;EACA;EACA;ACzFF;AD4FC;EACC;EACA;EACA;AC1FF;AD6FC;EACC;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;AC5FF;AD+FC;EACC;EACA;EACA;EACA;EACA;AC7FF;AD+FE;EACC;EACA;AC7FH;ADgGE;EACC;EACA;AC9FH;;ADqGA;;;;+FAAA;AAMA;EACC;EACA;EACA;EAEA;EAWA;EAaA;EAoJA;EAuBA;EAyBA;EAiEA;EAmDA;EAWA;ACvbD;AD6FC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AC3FF;AD+FC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AC7FF;ADkGC;EACC;EACA;EACA;EACA;EAiEA;EAUA;EAuBA;EAUA;EAUA;ACjNF;AD6FE;EACC;EACA;EACA;EACA;EACA;AC3FH;AD6FG;EACC;EACG;EACA;AC3FP;AD+FE;EACC;EACA;EACA;EACA;EACA;EACA;AC7FH;AD+FG;EACC;AC7FJ;ADgGG;EACC;EACA;EACA;EACA;EACA;AC9FJ;ADgGI;EACC;AC9FL;ADmGE;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACjGN;ADoGE;EACC;EACA;EACA;EACA;AClGH;ADyGG;EACC;ACvGJ;ADgHG;EACC;EACA;AC9GJ;ADoHG;EACC;EACA;AClHJ;ADoHI;EACC;AClHL;AD4HG;EACC;AC1HJ;ADmIG;EACC;ACjIJ;ADwIE;EACC;ACtIH;AD6IC;EAEC;EAMA;ACjJF;AD4IE;EACC;AC1IH;AD+IE;EACC;AC7IH;ADoJC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AClJF;ADoJE;EACC;AClJH;ADqJE;EACC;EACA;ACnJH;AD0JC;EACC;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;AC1JF;AD4JE;EACC;EACA;EACA;EACA;EACA;AC1JH;ADiKC;EAEC;EACA;EACA;EACA;EACA;EACA;AChKF;AF7dC;EACC;EACA;EACA;AE+dF;AD6JE;EACC;EACA;AC3JH;AD8JE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;AC7JH;AD8JG;EACC;EACA;AC5JJ;ADgKE;EACC;EACA;EACA;EACA;EACA;AC9JH;ADgKG;EACC;AC9JJ;ADkKE;EACC;AChKH;ADkKG;EACC;AChKJ;ADmKG;EACC;ACjKJ;ADoKG;EACC;AClKJ;AD2KC;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ACzKF;AD4KE;;EAEC;EACA;EACA;EACA;EACA;EACA;AC1KH;AD4KG;;EACC;ACzKJ;AD4KG;;EACC;ACzKJ;AD6KE;;EAEC;AC3KH;AD8KE;EACC;EACA;AC5KH;AD+KE;EACC;AC7KH;AD+KG;EACC;AC7KJ;ADqLC;EAA8C;AClL/C;ADmLC;EAA8C;AChL/C;ADiLC;EAA8C;AC9K/C;AD+KC;EAA8C;AC5K/C;AD6KC;EAA8C;AC1K/C;AD2KC;EAA8C;ACxK/C;ADyKC;EAA8C;ACtK/C;ADuKC;EAA8C;ACpK/C;ADwKC;EACC;EACA;ACtKF;ADyKC;EACC;EACA;EACA;EACA;EACA;ACvKF;;AD8KA;AACA;EACC;AC3KD;AD6KC;EACC;AC3KF;AD8KC;EACC;AC5KF;AD+KC;EACC;EACA;EACA;AC7KF;;AC9mBA;;;;8FAAA;AAQC;EACC;AD8mBF;;ACzmBA;EAGC;EAGA;EACA;EACA;EACA;EACA;ADwmBD;ACtmBC;EACC;ADwmBF;ACrmBC;EACC;EACA;ADumBF;;AC/lBC;EACC;ADkmBF;AC9lBG;EACC;EACA;ADgmBJ;AC1lBC;EACC;AD4lBF;ACzlBE;EACC;AD2lBH;ACzlBG;EACC;AD2lBJ;ACrlBC;EACC;ADulBF;;AC/kBC;EACC;EACA;ADklBF;ACjlBE;EACC;ADmlBH;AC/kBE;EACC;ADilBH;;AC1kBA;EACC;AD6kBD,C","sources":["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/acf-pro-input.scss","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/sass/pro/_blocks.scss"],"sourcesContent":["/*--------------------------------------------------------------------------------------------\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\t// Card inner border 1: Structural (darker).\n$wp-card-border-2: #eeeeee;\t\t\t// Card inner border 2: Fields (lighter).\n$wp-input-border: #7e8993;\t\t\t// Input border.\n\n// Admin 3.8\n$wp38-card-border: #E5E5E5;\t\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* 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\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\t\t\n\t\t\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\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\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*\tVars\n*\n*--------------------------------------------------------------------------------------------*/\n/* colors */\n/* acf-field */\n/* responsive */\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 .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-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.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\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/*--------------------------------------------------------------------------------------------\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}\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-block-preview {\n min-height: 10px;\n}\n\n.acf-block-panel .acf-block-fields {\n border-top: #e2e4e7 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*\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\n\t// Ensure white background behind fields.\n\tbackground: #fff;\n\t\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, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n\t\n\thtml[dir=\"rtl\"] & {\n\t\ttext-align: right;\n\t}\n\t\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\n\t// Fields wrapper.\n\t.acf-block-fields {\n\t\tborder: #adb2ad solid 1px;\n\t\t\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\t\n\t// Block fields (div). \n\t.acf-fields > .acf-field {\n\t\tpadding: 16px 20px;\n\t\t\n\t\t// Accordions.\n\t\t&.acf-accordion {\n\t\t\tborder-color: #adb2ad;\n\t\t\t\n\t\t\t.acf-accordion-title {\n\t\t\t\tpadding: 16px 20px;\n\t\t\t}\n\t\t}\n\t}\n\t\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\n\t// Fields wrapper.\n\t.acf-block-fields {\n\t\tborder-top: #e2e4e7 solid 1px;\n\t\tmin-height: 1px;\n\t\t&:empty {\n\t\t\tborder-top: none;\n\t\t}\n\t\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}"],"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;AGlCC;EACC;AHoCF;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;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,qBFxSe;ADwOlB;AGiEG;EACC,qBF1Sc;AD2OlB;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;AE/fC;EACC;EACA;EACA;AFigBF;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;;AIhpBA;;;;8EAAA;AASC;EACC;AJ+oBF;;AI1oBA;EAEC;EAGA;EACA;EACA;EACA;EACA,gIACC;AJyoBF;AI/nBC;EACC;EACA;AJioBF;AI/nBE;EACC;EACA;EACA;AJioBH;AI7nBC;EACC;AJ+nBF;AI5nBC;EACC;EACA;AJ8nBF;;AIvnBC;EACC;AJ0nBF;AIrnBG;EACC;EACA;AJunBJ;AIjnBC;EACC;AJmnBF;AIhnBE;EACC;AJknBH;AIhnBG;EACC;AJknBJ;AI5mBC;EACC;AJ8mBF;;AIvmBC;EACC;EACA;EACA;AJ0mBF;AIxmBE;EACC;AJ0mBH;AItmBE;EACC;AJwmBH;;AIjmBA;EACC;AJomBD,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 .acf-divider td {\n border-top: 10px solid #e4e4e4;\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}\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/*-----------------------------------------------------------------------------\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-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#DA5A39;\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, #2C9FB8 0.44%, #A45CFF 113.3%);\n\n// Border radius\n$radius-sm:\t4px;\n$radius-md: 6px;\n$radius-lg: 8px;\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\t}\n\n\t.acf-divider td {\n\t\tborder-top: 10px solid #e4e4e4;\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}\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*\tACF Blocks\n*\n*----------------------------------------------------------------------------*/\n\n// All block components.\n.acf-block-component {\n\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:\n\t\t-apple-system,\n\t\tBlinkMacSystemFont,\n\t\t\"Segoe UI\",\n\t\tRoboto,\n\t\tOxygen-Sans,\n\t\tUbuntu,\n\t\tCantarell,\n\t\t\"Helvetica Neue\",\n\t\tsans-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\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// 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 8931a44..e8428b0 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 .acf-row-handle{width:16px;text-align:center !important;vertical-align:middle !important;position:relative}.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.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-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:transparent}.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:transparent}.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-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}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-block-preview{min-height:10px}.acf-block-panel .acf-block-fields{border-top:#e2e4e7 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:transparent}.components-panel__body .acf-block-panel{margin:16px -16px -16px} +.acf-repeater>table{margin:0 0 8px;background:#f9f9f9}.acf-repeater .acf-divider td{border-top:10px solid #e4e4e4}.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}.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-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-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-field-group.js b/assets/build/js/acf-field-group.js index ff7922f..6372e84 100644 --- a/assets/build/js/acf-field-group.js +++ b/assets/build/js/acf-field-group.js @@ -267,6 +267,9 @@ $rules: function () { return this.$('.rule'); }, + $tabLabel: function () { + return this.fieldObject.$el.find('.conditional-logic-badge'); + }, open: function () { var $div = this.$control(); $div.show(); @@ -280,9 +283,11 @@ render: function () { // show if (this.$toggle().prop('checked')) { + this.$tabLabel().addClass('is-enabled'); this.renderRules(); this.open(); // hide } else { + this.$tabLabel().removeClass('is-enabled'); this.close(); } }, @@ -551,10 +556,14 @@ eventScope: '.acf-field-object', // events events: { - 'click .edit-field': 'onClickEdit', + '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', + 'focus .edit-field': 'onFocusEdit', + 'blur .edit-field, .row-options a': 'onBlurEdit', 'change .field-type': 'onChangeType', 'change .field-required': 'onChangeRequired', 'blur .field-label': 'onChangeLabel', @@ -602,7 +611,7 @@ return this.$('.settings:first'); }, $setting: function (name) { - return this.$('.acf-field-settings:first > .acf-field-setting-' + name); + return this.$('.acf-field-settings:first .acf-field-setting-' + name); }, getParent: function () { return acf.getFieldObjects({ @@ -766,7 +775,9 @@ $handle.find('.li-field-name').text(name); // update type - $handle.find('.li-field-type').text(type); // update key + const iconName = acf.strSlugify(this.getType()); + $handle.find('.field-type-label').text(' ' + type); + $handle.find('.field-type-icon').removeClass().addClass('field-type-icon field-type-icon-' + iconName); // update key $handle.find('.li-field-key').text(key); // action for 3rd party customization @@ -779,8 +790,38 @@ return this.$el.hasClass('open'); }, onClickEdit: function (e) { + $target = $(e.target); + if ($target.parent().hasClass('row-options') && !$target.hasClass('edit-field')) return; this.isOpen() ? this.close() : this.open(); }, + onChangeSettingsTab: function () { + const $settings = this.$el.children('.settings'); + acf.doAction('show', $settings); + }, + + /** + * Adds 'active' class to row options nearest to the target. + */ + onFocusEdit: function (e) { + var $rowOptions = $(e.target).closest('li').find('.row-options'); + $rowOptions.addClass('active'); + }, + + /** + * Removes 'active' class from row options if links in same row options area are no longer in focus. + */ + onBlurEdit: function (e) { + var focusDelayMilliseconds = 50; + var $rowOptionsBlurElement = $(e.target).closest('li').find('.row-options'); // Timeout so that `activeElement` gives the new element in focus instead of the body. + + setTimeout(function () { + var $rowOptionsFocusElement = $(document.activeElement).closest('li').find('.row-options'); + + if (!$rowOptionsBlurElement.is($rowOptionsFocusElement)) { + $rowOptionsBlurElement.removeClass('active'); + } + }, focusDelayMilliseconds); + }, open: function () { // vars var $settings = this.$el.children('.settings'); // open @@ -1143,56 +1184,56 @@ }, 300); }, changeType: function (newType) { - // vars var prevType = this.prop('type'); var prevClass = acf.strSlugify('acf-field-object-' + prevType); - var newClass = acf.strSlugify('acf-field-object-' + newType); // update props + var newClass = acf.strSlugify('acf-field-object-' + newType); // Update props. this.$el.removeClass(prevClass).addClass(newClass); this.$el.attr('data-type', newType); - this.$el.data('type', newType); // abort XHR if this field is already loading AJAX data + this.$el.data('type', newType); // Abort XHR if this field is already loading AJAX data. if (this.has('xhr')) { this.get('xhr').abort(); - } // store settings + } // Store old settings so they can be reused later. - var $tbody = this.$('> .settings > table > tbody'); - var $settings = $tbody.children('[data-setting="' + prevType + '"]'); - this.set('settings-' + prevType, $settings); - $settings.detach(); // show settings + const $oldSettings = []; + this.$el.find('.acf-field-settings:first > .acf-field-settings-main > .acf-field-type-settings').each(function () { + let tab = $(this).data('parent-tab'); + let $tabSettings = $(this).children(); + $oldSettings[tab] = $tabSettings; + $tabSettings.detach(); + }); + this.set('settings-' + prevType, $oldSettings); // Show the settings if we already have them cached. if (this.has('settings-' + newType)) { - var $newSettings = this.get('settings-' + newType); - this.$setting('conditional_logic').before($newSettings); - this.set('type', newType); //this.refresh(); - + let $newSettings = this.get('settings-' + newType); + this.showFieldTypeSettings($newSettings); + this.set('type', newType); return; - } // load settings + } // Add loading spinner. - var $loading = $('
'); - this.$setting('conditional_logic').before($loading); // ajax - - var ajaxData = { + const $loading = $('
'); + this.$el.find('.acf-field-settings-main-general .acf-field-type-settings').before($loading); + const ajaxData = { action: 'acf/field_group/render_field_settings', field: this.serialize(), prefix: this.getInputName() - }; // ajax + }; // Get the settings for this field type over AJAX. var xhr = $.ajax({ url: acf.get('ajaxurl'), data: acf.prepareForAjax(ajaxData), type: 'post', - dataType: 'html', + dataType: 'json', context: this, - success: function (html) { - // bail early if no settings - if (!html) return; // append settings + success: function (response) { + if (!acf.isAjaxSuccess(response)) { + return; + } - $loading.after(html); // events - - acf.doAction('append', $tbody); + this.showFieldTypeSettings(response.data); }, complete: function () { // also triggered by xhr.abort(); @@ -1203,6 +1244,25 @@ this.set('xhr', xhr); }, + showFieldTypeSettings: function (settings) { + if ('object' !== typeof settings) { + return; + } + + const self = this; + const tabs = Object.keys(settings); + tabs.forEach(tab => { + const $tab = self.$el.find('.acf-field-settings-main-' + tab + ' .acf-field-type-settings'); + let tabContent = ''; + + if (['object', 'string'].includes(typeof settings[tab])) { + tabContent = settings[tab]; + } + + $tab.prepend(tabContent); + acf.doAction('append', $tab); + }); + }, updateParent: function () { // vars var ID = acf.get('post_id'); // check parent @@ -1576,18 +1636,31 @@ if (!fields.length) { $list.addClass('-empty'); + $list.parents('.acf-field-list-wrap').first().addClass('-empty'); return; } // has fields - $list.removeClass('-empty'); // prop + $list.removeClass('-empty'); + $list.parents('.acf-field-list-wrap').first().removeClass('-empty'); // prop fields.map(function (field, i) { field.prop('menu_order', i); }); }, onClickAdd: function (e, $el) { - var $list = $el.closest('.acf-tfoot').siblings('.acf-field-list'); + let $list; + + if ($el.hasClass('add-first-field')) { + $list = $el.parents('.acf-field-list').eq(0); + } else if ($el.parent().hasClass('acf-headerbar-actions') || $el.parent().hasClass('no-fields-message-inner')) { + $list = $('.acf-field-list:first'); + } else if ($el.parent().hasClass('acf-sub-field-list-header')) { + $list = $el.parents('.acf-input:first').find('.acf-field-list'); + } else { + $list = $el.closest('.acf-tfoot').siblings('.acf-field-list'); + } + this.addField($list); }, addField: function ($list) { @@ -1620,7 +1693,11 @@ var $label = newField.$input('label'); setTimeout(function () { - $label.trigger('focus'); + if ($list.hasClass('acf-auto-add-field')) { + $list.removeClass('acf-auto-add-field'); + } else { + $label.trigger('focus'); + } }, 251); // open newField.open(); // set menu order @@ -1663,7 +1740,7 @@ 'change .refresh-location-rule': 'onChangeRemoveRule' }, initialize: function () { - this.$el = $('#acf-field-group-locations'); + this.$el = $('#acf-field-group-options'); this.updateGroupsClass(); }, onClickAddRule: function (e, $el) { @@ -1803,7 +1880,7 @@ var type = field.get('setting') || ''; var name = field.get('name') || ''; var mid = modelId(type + ' ' + name); - var model = acf.models[mid] || null; // bail ealry if no setting + var model = acf.models[mid] || null; // bail early if no setting if (model === null) return false; // instantiate @@ -1834,15 +1911,12 @@ return field.setting; }; /** - * settingsManager + * settingsManager * - * description + * @since 5.6.5 * - * @date 6/1/18 - * @since 5.6.5 - * - * @param type $var Description. Default. - * @return type Description. + * @param object The object containing the extended variables and methods. + * @return void */ @@ -1855,15 +1929,12 @@ } }); /** - * acf.FieldSetting + * acf.FieldSetting * - * description + * @since 5.6.5 * - * @date 6/1/18 - * @since 5.6.5 - * - * @param type $var Description. Default. - * @return type Description. + * @param object The object containing the extended variables and methods. + * @return void */ acf.FieldSetting = acf.Model.extend({ @@ -1892,17 +1963,51 @@ render: function () {// do nothing } }); - /* - * Date Picker + /** + * Accordion and Tab Endpoint Settings * - * This field type requires some extra logic for its settings + * The 'endpoint' setting on accordions and tabs requires an additional class on the + * field object row when enabled. * - * @type function - * @date 24/10/13 - * @since 5.0.0 + * @since 6.0.0 * - * @param n/a - * @return n/a + * @param object The object containing the extended variables and methods. + * @return void + */ + + var EndpointFieldSetting = acf.FieldSetting.extend({ + type: '', + name: '', + render: function () { + var $endpoint_setting = this.fieldObject.$setting('endpoint'); + var $endpoint_field = $endpoint_setting.find('input[type="checkbox"]:first'); + + if ($endpoint_field.is(':checked')) { + this.fieldObject.$el.addClass('acf-field-is-endpoint'); + } else { + this.fieldObject.$el.removeClass('acf-field-is-endpoint'); + } + } + }); + var AccordionEndpointFieldSetting = EndpointFieldSetting.extend({ + type: 'accordion', + name: 'endpoint' + }); + var TabEndpointFieldSetting = EndpointFieldSetting.extend({ + type: 'tab', + name: 'endpoint' + }); + acf.registerFieldSetting(AccordionEndpointFieldSetting); + acf.registerFieldSetting(TabEndpointFieldSetting); + /** + * Date Picker + * + * This field type requires some extra logic for its settings + * + * @since 5.0.0 + * + * @param object The object containing the extended variables and methods. + * @return void */ var DisplayFormatFieldSetting = acf.FieldSetting.extend({ @@ -1926,17 +2031,15 @@ }); acf.registerFieldSetting(DatePickerDisplayFormatFieldSetting); acf.registerFieldSetting(DatePickerReturnFormatFieldSetting); - /* - * Date Time Picker + /** + * Date Time Picker * - * This field type requires some extra logic for its settings + * This field type requires some extra logic for its settings * - * @type function - * @date 24/10/13 - * @since 5.0.0 + * @since 5.0.0 * - * @param n/a - * @return n/a + * @param object The object containing the extended variables and methods. + * @return void */ var DateTimePickerDisplayFormatFieldSetting = DisplayFormatFieldSetting.extend({ @@ -1949,17 +2052,15 @@ }); acf.registerFieldSetting(DateTimePickerDisplayFormatFieldSetting); acf.registerFieldSetting(DateTimePickerReturnFormatFieldSetting); - /* - * Time Picker + /** + * Time Picker * - * This field type requires some extra logic for its settings + * This field type requires some extra logic for its settings * - * @type function - * @date 24/10/13 - * @since 5.0.0 + * @since 5.0.0 * - * @param n/a - * @return n/a + * @param object The object containing the extended variables and methods. + * @return void */ var TimePickerDisplayFormatFieldSetting = DisplayFormatFieldSetting.extend({ @@ -1978,8 +2079,8 @@ * @date 16/12/20 * @since 5.9.4 * - * @param type $var Description. Default. - * @return type Description. + * @param object The object containing the extended variables and methods. + * @return void */ var ColorPickerReturnFormat = acf.FieldSetting.extend({ @@ -2026,17 +2127,27 @@ */ var fieldGroupManager = new acf.Model({ id: 'fieldGroupManager', + wait: 'prepare', events: { 'submit #post': 'onSubmit', 'click a[href="#"]': 'onClick', - 'click .submitdelete': 'onClickTrash' + 'click .acf-delete-field-group': 'onClickDeleteFieldGroup' }, filters: { - find_fields_args: 'filterFindFieldArgs' + find_fields_args: 'filterFindFieldArgs', + find_fields_selector: 'filterFindFieldsSelector' + }, + initialize: function () { + let $field_list_wrapper = $('#acf-field-group-fields > .inside > .acf-field-list-wrap.acf-auto-add-field'); + + if ($field_list_wrapper.length) { + $('.acf-headerbar-actions .add-field').trigger('click'); + $('.acf-title-wrap #title').trigger('focus'); + } }, onSubmit: function (e, $el) { // vars - var $title = $('#titlewrap #title'); // empty + var $title = $('.acf-title-wrap #title'); // empty if (!$title.val()) { // prevent default @@ -2052,16 +2163,30 @@ onClick: function (e) { e.preventDefault(); }, - onClickTrash: function (e) { - var result = confirm(acf.__('Move to trash. Are you sure?')); + onClickDeleteFieldGroup: function (e, $el) { + e.preventDefault(); + $el.addClass('-hover'); // Add confirmation tooltip. - if (!result) { - e.preventDefault(); - } + acf.newTooltip({ + confirm: true, + target: $el, + context: this, + text: acf.__('Move field group to trash?'), + confirm: function () { + window.location.href = $el.attr('href'); + }, + cancel: function () { + $el.removeClass('-hover'); + } + }); }, filterFindFieldArgs: function (args) { + // Don't change this! args.visible = true; return args; + }, + filterFindFieldsSelector: function (selector) { + return selector + ', .acf-field-acf-field-group-settings-tabs'; } }); /** @@ -2080,7 +2205,8 @@ id: 'screenOptionsManager', wait: 'prepare', events: { - change: 'onChange' + 'change #acf-field-key-hide': 'onFieldKeysChange', + 'change [name="screen_columns"]': 'render' }, initialize: function () { // vars @@ -2092,24 +2218,35 @@ $append.remove(); // initialize - this.$el = $('#acf-field-key-hide'); // render + this.$el = $('#screen-options-wrap'); // render this.render(); }, - isChecked: function () { - return this.$el.prop('checked'); + isFieldKeysChecked: function () { + return this.$el.find('#acf-field-key-hide').prop('checked'); }, - onChange: function (e, $el) { - var val = this.isChecked() ? 1 : 0; + getSelectedColumnCount: function () { + return this.$el.find('input[name="screen_columns"]:checked').val(); + }, + onFieldKeysChange: function (e, $el) { + var val = this.isFieldKeysChecked() ? 1 : 0; acf.updateUserSetting('show_field_keys', val); this.render(); }, render: function () { - if (this.isChecked()) { + if (this.isFieldKeysChecked()) { $('#acf-field-group-fields').addClass('show-field-keys'); } else { $('#acf-field-group-fields').removeClass('show-field-keys'); } + + if (this.getSelectedColumnCount() == 1) { + $('body').removeClass('columns-2'); + $('body').addClass('columns-1'); + } else { + $('body').removeClass('columns-1'); + $('body').addClass('columns-2'); + } } }); /** @@ -2129,7 +2266,7 @@ new_field: 'onNewField' }, onNewField: function (field) { - // bail ealry if not append + // bail early if not append if (!field.has('append')) return; // vars var append = field.get('append'); diff --git a/assets/build/js/acf-field-group.js.map b/assets/build/js/acf-field-group.js.map index bea09e5..eb0809d 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":";;;;;;;;;AAAA,CAAE,UAAWA,CAAX,EAAcC,SAAd,EAA0B;AAC3B,MAAIC,IAAI,GAAGC,GAAG,CAACC,gBAAJ,CAAsBD,GAAtB,CAAX;AAEA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAECD,EAAAA,IAAI,CAACG,WAAL,GAAmB;AAClBC,IAAAA,UAAU,EAAE,UAAWC,MAAX,EAAmBC,IAAnB,EAA0B;AACrCA,MAAAA,IAAI,GAAGA,IAAI,KAAKP,SAAT,GAAqBO,IAArB,GAA4B,UAAnC;AACAL,MAAAA,GAAG,CAACM,cAAJ,CAAoBF,MAApB,EAA6BG,IAA7B,CAAmCF,IAAnC;AACA,KAJiB;AAMlBG,IAAAA,YAAY,EAAE,UAAWJ,MAAX,EAAmBK,OAAnB,EAA6B;AAC1CA,MAAAA,OAAO,GAAGA,OAAO,KAAKX,SAAZ,GAAwBW,OAAxB,GAAkC,IAA5C;AACAT,MAAAA,GAAG,CAACM,cAAJ,CAAoBF,MAApB,EAA6BM,MAA7B,CAAqC;AACpCD,QAAAA,OAAO,EAAEA;AAD2B,OAArC;AAGA,KAXiB;AAalBE,IAAAA,iBAAiB,EAAE,UAAWP,MAAX,EAAmBQ,IAAnB,EAAyBC,KAAzB,EAAiC;AACnDb,MAAAA,GAAG,CAACM,cAAJ,CAAoBF,MAApB,EAA6BU,IAA7B,CAAmCF,IAAnC,EAAyCC,KAAzC;AACA,KAfiB;AAiBlBE,IAAAA,iBAAiB,EAAE,UAAWX,MAAX,EAAmBQ,IAAnB,EAA0B;AAC5CZ,MAAAA,GAAG,CAACM,cAAJ,CAAoBF,MAApB,EAA6BU,IAA7B,CAAmCF,IAAnC,EAAyC,IAAzC;AACA;AAnBiB,GAAnB;AAsBA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAECb,EAAAA,IAAI,CAACG,WAAL,CAAiBc,YAAjB,GAAgChB,GAAG,CAACiB,KAAJ,CAAUC,MAAV,CAAkB;AACjD;AACAb,IAAAA,IAAI,EAAE,EAF2C;AAGjDc,IAAAA,CAAC,EAAE,EAH8C;AAIjDf,IAAAA,MAAM,EAAE,IAJyC;AAKjDgB,IAAAA,SAAS,EAAE,IALsC;AAOjDC,IAAAA,GAAG,EAAE,UAAWA,GAAX,EAAiB;AACrB;AACA,UAAIhB,IAAI,GAAG,KAAKA,IAAhB,CAFqB,CAIrB;AACA;AACA;;AACA,UAAIiB,IAAI,GAAGD,GAAG,CAACE,KAAJ,CAAW,GAAX,CAAX;AACAD,MAAAA,IAAI,CAACE,MAAL,CAAa,CAAb,EAAgB,CAAhB,EAAmB,OAAnB;AACAH,MAAAA,GAAG,GAAGC,IAAI,CAACG,IAAL,CAAW,GAAX,CAAN,CATqB,CAWrB;;AACA,UAAKpB,IAAL,EAAY;AACXgB,QAAAA,GAAG,IAAI,WAAWhB,IAAlB;AACA,OAdoB,CAgBrB;;;AACA,aAAOgB,GAAP;AACA,KAzBgD;AA2BjDK,IAAAA,QAAQ,EAAE,YAAY;AACrB;AACA,UAAIA,QAAQ,GAAG,mBAAf;AACA,UAAIrB,IAAI,GAAG,KAAKA,IAAhB,CAHqB,CAKrB;;AACA,UAAKA,IAAL,EAAY;AACXqB,QAAAA,QAAQ,IAAI,MAAMrB,IAAlB;AACAqB,QAAAA,QAAQ,GAAG1B,GAAG,CAAC2B,WAAJ,CAAiB,GAAjB,EAAsB,GAAtB,EAA2BD,QAA3B,CAAX;AACA,OAToB,CAWrB;;;AACA,aAAOA,QAAP;AACA,KAxCgD;AA0CjDE,IAAAA,WAAW,EAAE,UAAWhB,IAAX,EAAiBiB,QAAjB,EAA4B;AACxC;AACA,UAAIZ,KAAK,GAAG,IAAZ,CAFwC,CAIxC;;AACAjB,MAAAA,GAAG,CAAC8B,UAAJ,CAAgB,KAAKT,GAAL,CAAUT,IAAV,CAAhB,EAAkC,UAAWR,MAAX,EAAoB;AACrD;AACAa,QAAAA,KAAK,CAACc,GAAN,CAAW,QAAX,EAAqB3B,MAArB,EAFqD,CAIrD;;AACAa,QAAAA,KAAK,CAAEY,QAAF,CAAL,CAAkBG,KAAlB,CAAyBf,KAAzB,EAAgCgB,SAAhC;AACA,OAND;AAOA,KAtDgD;AAwDjDC,IAAAA,WAAW,EAAE,UAAWtB,IAAX,EAAiBiB,QAAjB,EAA4B;AACxC;AACA,UAAIZ,KAAK,GAAG,IAAZ,CAFwC,CAIxC;;AACAjB,MAAAA,GAAG,CAACmC,UAAJ,CAAgB,KAAKd,GAAL,CAAUT,IAAV,CAAhB,EAAkC,UAAWR,MAAX,EAAoB;AACrD;AACAa,QAAAA,KAAK,CAACc,GAAN,CAAW,QAAX,EAAqB3B,MAArB,EAFqD,CAIrD;;AACAa,QAAAA,KAAK,CAAEY,QAAF,CAAL,CAAkBG,KAAlB,CAAyBf,KAAzB,EAAgCgB,SAAhC;AACA,OAND;AAOA,KApEgD;AAsEjDG,IAAAA,UAAU,EAAE,UAAWxB,IAAX,EAAiBiB,QAAjB,EAA4B;AACvC;AACA,UAAIZ,KAAK,GAAG,IAAZ;AACA,UAAIoB,KAAK,GAAGzB,IAAI,CAAC0B,MAAL,CAAa,CAAb,EAAgB1B,IAAI,CAAC2B,OAAL,CAAc,GAAd,CAAhB,CAAZ;AACA,UAAIb,QAAQ,GAAGd,IAAI,CAAC0B,MAAL,CAAa1B,IAAI,CAAC2B,OAAL,CAAc,GAAd,IAAsB,CAAnC,CAAf;AACA,UAAIC,OAAO,GAAG,KAAKd,QAAL,EAAd,CALuC,CAOvC;;AACA7B,MAAAA,CAAC,CAAE4C,QAAF,CAAD,CAAcC,EAAd,CAAkBL,KAAlB,EAAyBG,OAAO,GAAG,GAAV,GAAgBd,QAAzC,EAAmD,UAAWiB,CAAX,EAAe;AACjE;AACAA,QAAAA,CAAC,CAACC,GAAF,GAAQ/C,CAAC,CAAE,IAAF,CAAT;AACA8C,QAAAA,CAAC,CAACvC,MAAF,GAAWuC,CAAC,CAACC,GAAF,CAAMC,OAAN,CAAe,mBAAf,CAAX,CAHiE,CAKjE;;AACA5B,QAAAA,KAAK,CAACc,GAAN,CAAW,QAAX,EAAqBY,CAAC,CAACvC,MAAvB,EANiE,CAQjE;;AACAa,QAAAA,KAAK,CAAEY,QAAF,CAAL,CAAkBG,KAAlB,CAAyBf,KAAzB,EAAgC,CAAE0B,CAAF,CAAhC;AACA,OAVD;AAWA,KAzFgD;AA2FjDG,IAAAA,WAAW,EAAE,YAAY;AACxB;AACA,WAAK3B,CAAL,GAAS,KAAKf,MAAL,CAAY2C,IAAZ,EAAT,CAFwB,CAIxB;;AACA,WAAK3B,SAAL,GAAiB,KAAKhB,MAAL,CAAY4C,IAAZ,CAAkB,6BAAlB,CAAjB,CALwB,CAOxB;;AACA,WAAKC,KAAL;AACA,KApGgD;AAsGjDA,IAAAA,KAAK,EAAE,YAAY,CAClB;AACA,KAxGgD;AA0GjDC,IAAAA,OAAO,EAAE,UAAWtC,IAAX,EAAkB;AAC1B,aAAO,KAAKQ,SAAL,CAAe4B,IAAf,CAAqB,0BAA0BpC,IAA/C,CAAP;AACA;AA5GgD,GAAlB,CAAhC;AA+GA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAIuC,aAAa,GAAG,IAAInD,GAAG,CAACoD,KAAR,CAAe;AAClCC,IAAAA,OAAO,EAAE;AACRC,MAAAA,iBAAiB,EAAE,mBADX;AAERC,MAAAA,kBAAkB,EAAE,oBAFZ;AAGRC,MAAAA,gBAAgB,EAAE,kBAHV;AAIRC,MAAAA,sBAAsB,EAAE,wBAJhB;AAKRC,MAAAA,mBAAmB,EAAE,qBALb;AAMRC,MAAAA,wBAAwB,EAAE,yBANlB;AAORC,MAAAA,yBAAyB,EAAE,0BAPnB;AAQRC,MAAAA,wBAAwB,EAAE,yBARlB;AASRC,MAAAA,0BAA0B,EAAE,2BATpB;AAURC,MAAAA,qBAAqB,EAAE;AAVf,KADyB;AAclCC,IAAAA,iBAAiB,EAAE,UAAWC,KAAX,EAAmB;AACrCjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,YAAd,EAA4BD,KAAK,CAACrB,GAAlC;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAqBD,KAAK,CAACE,GAAN,CAAW,MAAX,CAAnC,EAAwDF,KAAK,CAACrB,GAA9D;AAEA5C,MAAAA,GAAG,CAACkE,QAAJ,CAAc,uBAAd,EAAuCD,KAAK,CAACrB,GAA7C;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,gCAAgCD,KAAK,CAACE,GAAN,CAAW,MAAX,CADjC,EAECF,KAAK,CAACrB,GAFP;AAIA,KAvBiC;AAyBlCwB,IAAAA,kBAAkB,EAAE,UAAWH,KAAX,EAAmB;AACtCjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,aAAd,EAA6BD,KAAK,CAACrB,GAAnC;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,sBAAsBD,KAAK,CAACE,GAAN,CAAW,MAAX,CADvB,EAECF,KAAK,CAACrB,GAFP;AAIA,KA/BiC;AAiClCyB,IAAAA,gBAAgB,EAAE,UAAWJ,KAAX,EAAmB;AACpCjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,WAAd,EAA2BD,KAAK,CAACrB,GAAjC;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CAAc,oBAAoBD,KAAK,CAACE,GAAN,CAAW,MAAX,CAAlC,EAAuDF,KAAK,CAACrB,GAA7D;AACA,KApCiC;AAsClC0B,IAAAA,sBAAsB,EAAE,UAAWL,KAAX,EAAmB;AAC1CjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,iBAAd,EAAiCD,KAAK,CAACrB,GAAvC;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,0BAA0BD,KAAK,CAACE,GAAN,CAAW,MAAX,CAD3B,EAECF,KAAK,CAACrB,GAFP;AAIA,KA5CiC;AA8ClC2B,IAAAA,mBAAmB,EAAE,UAAWN,KAAX,EAAmB;AACvCjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,cAAd,EAA8BD,KAAK,CAACrB,GAApC;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,uBAAuBD,KAAK,CAACE,GAAN,CAAW,MAAX,CADxB,EAECF,KAAK,CAACrB,GAFP;AAIA,KApDiC;AAsDlC4B,IAAAA,uBAAuB,EAAE,UAAWP,KAAX,EAAmB;AAC3CjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,mBAAd,EAAmCD,KAAK,CAACrB,GAAzC;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,4BAA4BD,KAAK,CAACE,GAAN,CAAW,MAAX,CAD7B,EAECF,KAAK,CAACrB,GAFP;AAKA5C,MAAAA,GAAG,CAACkE,QAAJ,CAAc,uBAAd,EAAuCD,KAAK,CAACrB,GAA7C;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,gCAAgCD,KAAK,CAACE,GAAN,CAAW,MAAX,CADjC,EAECF,KAAK,CAACrB,GAFP;AAIA,KAlEiC;AAoElC6B,IAAAA,wBAAwB,EAAE,UAAWR,KAAX,EAAmB;AAC5CjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,oBAAd,EAAoCD,KAAK,CAACrB,GAA1C;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,6BAA6BD,KAAK,CAACE,GAAN,CAAW,MAAX,CAD9B,EAECF,KAAK,CAACrB,GAFP;AAIA,KA1EiC;AA4ElC8B,IAAAA,uBAAuB,EAAE,UAAWT,KAAX,EAAmB;AAC3CjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,mBAAd,EAAmCD,KAAK,CAACrB,GAAzC;AACA5C,MAAAA,GAAG,CAACkE,QAAJ,CACC,4BAA4BD,KAAK,CAACE,GAAN,CAAW,MAAX,CAD7B,EAECF,KAAK,CAACrB,GAFP;AAIA,KAlFiC;AAoFlC+B,IAAAA,yBAAyB,EAAE,UAAWV,KAAX,EAAmB;AAC7CjE,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqCD,KAAK,CAACrB,GAA3C;AACA;AAtFiC,GAAf,CAApB;AAwFA,CArQD,EAqQKgC,MArQL;;;;;;;;;;ACAA,CAAE,UAAW/E,CAAX,EAAcC,SAAd,EAA0B;AAC3B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEC,MAAI+E,4BAA4B,GAAG7E,GAAG,CAAC8E,YAAJ,CAAiB5D,MAAjB,CAAyB;AAC3Db,IAAAA,IAAI,EAAE,EADqD;AAE3DO,IAAAA,IAAI,EAAE,mBAFqD;AAG3DmE,IAAAA,MAAM,EAAE;AACP,mCAA6B,gBADtB;AAEP,sCAAgC,iBAFzB;AAGP,qCAA+B,cAHxB;AAIP,sCAAgC,eAJzB;AAKP,yCAAmC,kBAL5B;AAMP,qCAA+B,YANxB;AAOP,wCAAkC;AAP3B,KAHmD;AAa3DC,IAAAA,KAAK,EAAE,KAboD;AAe3DC,IAAAA,KAAK,EAAE,UAAWD,KAAX,EAAmB;AACzB,WAAKA,KAAL,GAAaA,KAAb;AACA,aAAO,IAAP;AACA,KAlB0D;AAoB3DE,IAAAA,QAAQ,EAAE,UAAWtE,IAAX,EAAiBC,KAAjB,EAAyB;AAClC,aAAO,KAAKmE,KAAL,CAAWjC,IAAX,CAAgBf,KAAhB,CAAuB,KAAKgD,KAA5B,EAAmC/C,SAAnC,CAAP;AACA,KAtB0D;AAwB3DkD,IAAAA,MAAM,EAAE,UAAWvE,IAAX,EAAkB;AACzB,aAAO,KAAKoE,KAAL,CAAWhC,IAAX,CAAiB,qBAAqBpC,IAAtC,CAAP;AACA,KA1B0D;AA4B3DwE,IAAAA,GAAG,EAAE,UAAWxE,IAAX,EAAkB;AACtB,aAAO,KAAKoE,KAAL,CAAWhC,IAAX,CAAiB,QAAQpC,IAAzB,CAAP;AACA,KA9B0D;AAgC3DyE,IAAAA,OAAO,EAAE,YAAY;AACpB,aAAO,KAAKxF,CAAL,CAAQ,oBAAR,CAAP;AACA,KAlC0D;AAoC3DyF,IAAAA,QAAQ,EAAE,YAAY;AACrB,aAAO,KAAKzF,CAAL,CAAQ,cAAR,CAAP;AACA,KAtC0D;AAwC3D0F,IAAAA,OAAO,EAAE,YAAY;AACpB,aAAO,KAAK1F,CAAL,CAAQ,aAAR,CAAP;AACA,KA1C0D;AA4C3D2F,IAAAA,MAAM,EAAE,YAAY;AACnB,aAAO,KAAK3F,CAAL,CAAQ,OAAR,CAAP;AACA,KA9C0D;AAgD3D4F,IAAAA,IAAI,EAAE,YAAY;AACjB,UAAIC,IAAI,GAAG,KAAKJ,QAAL,EAAX;AACAI,MAAAA,IAAI,CAACC,IAAL;AACA3F,MAAAA,GAAG,CAAC4F,MAAJ,CAAYF,IAAZ;AACA,KApD0D;AAsD3DG,IAAAA,KAAK,EAAE,YAAY;AAClB,UAAIH,IAAI,GAAG,KAAKJ,QAAL,EAAX;AACAI,MAAAA,IAAI,CAACI,IAAL;AACA9F,MAAAA,GAAG,CAAC+F,OAAJ,CAAaL,IAAb;AACA,KA1D0D;AA4D3DM,IAAAA,MAAM,EAAE,YAAY;AACnB;AACA,UAAK,KAAKX,OAAL,GAAevE,IAAf,CAAqB,SAArB,CAAL,EAAwC;AACvC,aAAKmF,WAAL;AACA,aAAKR,IAAL,GAFuC,CAIvC;AACA,OALD,MAKO;AACN,aAAKI,KAAL;AACA;AACD,KAtE0D;AAwE3DI,IAAAA,WAAW,EAAE,YAAY;AACxB;AACA,UAAIC,IAAI,GAAG,IAAX,CAFwB,CAIxB;;AACA,WAAKV,MAAL,GAAcW,IAAd,CAAoB,YAAY;AAC/BD,QAAAA,IAAI,CAACE,UAAL,CAAiBvG,CAAC,CAAE,IAAF,CAAlB;AACA,OAFD;AAGA,KAhF0D;AAkF3DuG,IAAAA,UAAU,EAAE,UAAWpB,KAAX,EAAmB;AAC9B,WAAKC,KAAL,CAAYD,KAAZ;AACA,WAAKqB,WAAL;AACA,WAAKC,cAAL;AACA,WAAKC,WAAL;AACA,KAvF0D;AAyF3DF,IAAAA,WAAW,EAAE,YAAY;AACxB;AACA,UAAIG,OAAO,GAAG,EAAd;AACA,UAAIC,eAAe,GAAG,EAAtB;AACA,UAAIC,GAAG,GAAG,KAAKC,WAAL,CAAiBD,GAA3B;AACA,UAAIE,OAAO,GAAG,KAAKzB,MAAL,CAAa,OAAb,CAAd,CALwB,CAOxB;;AACAnF,MAAAA,GAAG,CAAC6G,eAAJ,GAAsBC,GAAtB,CAA2B,UAAWH,WAAX,EAAyB;AACnD;AACA,YAAII,MAAM,GAAG;AACZC,UAAAA,EAAE,EAAEL,WAAW,CAACM,MAAZ,EADQ;AAEZC,UAAAA,IAAI,EAAEP,WAAW,CAACQ,QAAZ;AAFM,SAAb,CAFmD,CAOnD;;AACA,YAAKR,WAAW,CAACD,GAAZ,KAAoBA,GAAzB,EAA+B;AAC9BK,UAAAA,MAAM,CAACG,IAAP,IAAelH,GAAG,CAACoH,EAAJ,CAAQ,cAAR,CAAf;AACAL,UAAAA,MAAM,CAACM,QAAP,GAAkB,IAAlB;AACA,SAXkD,CAanD;;;AACA,YAAIC,cAAc,GAAGtH,GAAG,CAACuH,iBAAJ,CAAuB;AAC3CC,UAAAA,SAAS,EAAEb,WAAW,CAACc,OAAZ;AADgC,SAAvB,CAArB,CAdmD,CAkBnD;;AACA,YAAK,CAAEH,cAAc,CAACI,MAAtB,EAA+B;AAC9BX,UAAAA,MAAM,CAACM,QAAP,GAAkB,IAAlB;AACA,SArBkD,CAuBnD;;;AACA,YAAIM,OAAO,GAAGhB,WAAW,CAACiB,UAAZ,GAAyBF,MAAvC;AACAX,QAAAA,MAAM,CAACG,IAAP,GAAc,KAAKW,MAAL,CAAaF,OAAb,IAAyBZ,MAAM,CAACG,IAA9C,CAzBmD,CA2BnD;;AACAV,QAAAA,OAAO,CAACsB,IAAR,CAAcf,MAAd;AACA,OA7BD,EARwB,CAuCxB;;AACA,UAAK,CAAEP,OAAO,CAACkB,MAAf,EAAwB;AACvBlB,QAAAA,OAAO,CAACsB,IAAR,CAAc;AACbd,UAAAA,EAAE,EAAE,EADS;AAEbE,UAAAA,IAAI,EAAElH,GAAG,CAACoH,EAAJ,CAAQ,4BAAR;AAFO,SAAd;AAIA,OA7CuB,CA+CxB;;;AACApH,MAAAA,GAAG,CAAC+H,YAAJ,CAAkBnB,OAAlB,EAA2BJ,OAA3B,EAhDwB,CAkDxB;;AACA,WAAKtB,QAAL,CAAe,OAAf,EAAwB0B,OAAO,CAACoB,GAAR,EAAxB;AACA,KA7I0D;AA+I3D1B,IAAAA,cAAc,EAAE,YAAY;AAC3B;AACA,UAAK,CAAE,KAAKpB,QAAL,CAAe,OAAf,CAAP,EAAkC;AACjC;AACA,OAJ0B,CAM3B;;;AACA,UAAI0B,OAAO,GAAG,KAAKzB,MAAL,CAAa,UAAb,CAAd;AACA,UAAI6C,GAAG,GAAGpB,OAAO,CAACoB,GAAR,EAAV;AACA,UAAIxB,OAAO,GAAG,EAAd,CAT2B,CAW3B;AACA;;AACA,UAAKI,OAAO,CAACoB,GAAR,OAAkB,IAAvB,EAA8B;AAC7BhI,QAAAA,GAAG,CAAC+H,YAAJ,CAAkBnB,OAAlB,EAA2B,CAC1B;AACCI,UAAAA,EAAE,EAAE,KAAK9B,QAAL,CAAe,UAAf,CADL;AAECgC,UAAAA,IAAI,EAAE;AAFP,SAD0B,CAA3B;AAMA,OApB0B,CAsB3B;;;AACA,UAAI9G,MAAM,GAAGJ,GAAG,CAACiI,eAAJ,CAAqB,KAAK/C,QAAL,CAAe,OAAf,CAArB,CAAb;AACA,UAAIjB,KAAK,GAAGjE,GAAG,CAACM,cAAJ,CAAoBF,MAApB,CAAZ,CAxB2B,CA0B3B;;AACA,UAAIkH,cAAc,GAAGtH,GAAG,CAACuH,iBAAJ,CAAuB;AAC3CC,QAAAA,SAAS,EAAEvD,KAAK,CAACwD,OAAN;AADgC,OAAvB,CAArB,CA3B2B,CA+B3B;;AACAH,MAAAA,cAAc,CAACR,GAAf,CAAoB,UAAW7F,KAAX,EAAmB;AACtCuF,QAAAA,OAAO,CAACsB,IAAR,CAAc;AACbd,UAAAA,EAAE,EAAE/F,KAAK,CAACiH,SAAN,CAAgBC,QADP;AAEbjB,UAAAA,IAAI,EAAEjG,KAAK,CAACiH,SAAN,CAAgBE;AAFT,SAAd;AAIA,OALD,EAhC2B,CAuC3B;;AACApI,MAAAA,GAAG,CAAC+H,YAAJ,CAAkBnB,OAAlB,EAA2BJ,OAA3B,EAxC2B,CA0C3B;;AACA,WAAKtB,QAAL,CAAe,UAAf,EAA2B0B,OAAO,CAACoB,GAAR,EAA3B;AACA,KA3L0D;AA6L3DzB,IAAAA,WAAW,EAAE,YAAY;AACxB;AACA,UAAK,CAAE,KAAKrB,QAAL,CAAe,OAAf,CAAF,IAA8B,CAAE,KAAKA,QAAL,CAAe,UAAf,CAArC,EAAmE;AAClE;AACA,OAJuB,CAMxB;;;AACA,UAAI0B,OAAO,GAAG,KAAKzB,MAAL,CAAa,OAAb,CAAd;AACA,UAAIC,GAAG,GAAG,KAAKA,GAAL,CAAU,OAAV,CAAV;AACA,UAAI4C,GAAG,GAAGpB,OAAO,CAACoB,GAAR,EAAV,CATwB,CAWxB;;AACA,UAAI5H,MAAM,GAAGJ,GAAG,CAACiI,eAAJ,CAAqB,KAAK/C,QAAL,CAAe,OAAf,CAArB,CAAb;AACA,UAAIjB,KAAK,GAAGjE,GAAG,CAACM,cAAJ,CAAoBF,MAApB,CAAZ,CAbwB,CAexB;;AACA,UAAIkH,cAAc,GAAGtH,GAAG,CAACuH,iBAAJ,CAAuB;AAC3CC,QAAAA,SAAS,EAAEvD,KAAK,CAACwD,OAAN,EADgC;AAE3CU,QAAAA,QAAQ,EAAE,KAAKjD,QAAL,CAAe,UAAf;AAFiC,OAAvB,CAArB,CAhBwB,CAqBxB;;AACA,UAAImD,aAAa,GAAGf,cAAc,CAAE,CAAF,CAAd,CAAoBY,SAAxC;AACA,UAAI1B,OAAO,GAAG6B,aAAa,CAAC7B,OAAd,CAAuBvC,KAAvB,CAAd,CAvBwB,CAyBxB;;AACA,UAAKuC,OAAO,YAAY8B,KAAxB,EAAgC;AAC/B,YAAIC,UAAU,GAAG1I,CAAC,CAAE,mBAAF,CAAlB;AACAG,QAAAA,GAAG,CAAC+H,YAAJ,CAAkBQ,UAAlB,EAA8B/B,OAA9B,EAF+B,CAI/B;AACA,OALD,MAKO;AACN,YAAI+B,UAAU,GAAG1I,CAAC,CAAE2G,OAAF,CAAlB;AACA,OAjCuB,CAmCxB;;;AACAI,MAAAA,OAAO,CAAC4B,MAAR;AACApD,MAAAA,GAAG,CAACqD,IAAJ,CAAUF,UAAV,EArCwB,CAuCxB;AACA;;AACAG,MAAAA,UAAU,CAAE,YAAY;AACvB,SAAE,OAAF,EAAW,MAAX,EAAmB,IAAnB,EAA0B5B,GAA1B,CAA+B,UAAW6B,IAAX,EAAkB;AAChDJ,UAAAA,UAAU,CAACI,IAAX,CAAiBA,IAAjB,EAAuB/B,OAAO,CAAC+B,IAAR,CAAcA,IAAd,CAAvB;AACA,SAFD;AAGA,OAJS,EAIP,CAJO,CAAV,CAzCwB,CA+CxB;;AACA,UAAK,CAAEJ,UAAU,CAACzH,IAAX,CAAiB,UAAjB,CAAP,EAAuC;AACtCd,QAAAA,GAAG,CAACgI,GAAJ,CAASO,UAAT,EAAqBP,GAArB,EAA0B,IAA1B;AACA,OAlDuB,CAoDxB;;;AACA,WAAK9C,QAAL,CAAe,OAAf,EAAwBqD,UAAU,CAACP,GAAX,EAAxB;AACA,KAnP0D;AAqP3DY,IAAAA,cAAc,EAAE,YAAY;AAC3B,WAAK5C,MAAL;AACA,KAvP0D;AAyP3D6C,IAAAA,eAAe,EAAE,UAAWlG,CAAX,EAAcC,GAAd,EAAoB;AACpC,WAAKkG,QAAL;AACA,KA3P0D;AA6P3DA,IAAAA,QAAQ,EAAE,YAAY;AACrB;AACA,UAAIC,MAAM,GAAG,KAAKlJ,CAAL,CAAQ,kBAAR,CAAb,CAFqB,CAIrB;;AACA,UAAImJ,OAAO,GAAGhJ,GAAG,CAACiJ,SAAJ,CAAeF,MAAf,CAAd,CALqB,CAOrB;;AACAC,MAAAA,OAAO,CAAChG,IAAR,CAAc,IAAd,EAAqBkE,IAArB,CAA2BlH,GAAG,CAACoH,EAAJ,CAAQ,IAAR,CAA3B,EARqB,CAUrB;;AACA4B,MAAAA,OAAO,CAAChG,IAAR,CAAc,IAAd,EAAqBkG,GAArB,CAA0B,QAA1B,EAAqCC,MAArC,GAXqB,CAarB;;AACA,WAAKxC,WAAL,CAAiBpG,IAAjB;AACA,KA5Q0D;AA8Q3D6I,IAAAA,YAAY,EAAE,UAAWzG,CAAX,EAAcC,GAAd,EAAoB;AACjC,WAAKyD,WAAL;AACA,KAhR0D;AAkR3DgD,IAAAA,aAAa,EAAE,UAAW1G,CAAX,EAAcC,GAAd,EAAoB;AAClC;AACA,WAAKqC,KAAL,CAAYrC,GAAG,CAACC,OAAJ,CAAa,OAAb,CAAZ,EAFkC,CAIlC;;AACA,WAAKqC,QAAL,CAAe,OAAf,EAAwBtC,GAAG,CAACoF,GAAJ,EAAxB,EALkC,CAOlC;;AACA,WAAK1B,cAAL;AACA,WAAKC,WAAL;AACA,KA5R0D;AA8R3D+C,IAAAA,gBAAgB,EAAE,UAAW3G,CAAX,EAAcC,GAAd,EAAoB;AACrC;AACA,WAAKqC,KAAL,CAAYrC,GAAG,CAACC,OAAJ,CAAa,OAAb,CAAZ,EAFqC,CAIrC;;AACA,WAAKqC,QAAL,CAAe,UAAf,EAA2BtC,GAAG,CAACoF,GAAJ,EAA3B,EALqC,CAOrC;;AACA,WAAKzB,WAAL;AACA,KAvS0D;AAyS3DgD,IAAAA,UAAU,EAAE,UAAW5G,CAAX,EAAcC,GAAd,EAAoB;AAC/B;AACA,UAAIoC,KAAK,GAAGhF,GAAG,CAACiJ,SAAJ,CAAerG,GAAG,CAACC,OAAJ,CAAa,OAAb,CAAf,CAAZ,CAF+B,CAI/B;;AACA,WAAKuD,UAAL,CAAiBpB,KAAjB;AACA,KA/S0D;AAiT3DwE,IAAAA,aAAa,EAAE,UAAW7G,CAAX,EAAcC,GAAd,EAAoB;AAClC;AACA,UAAIoC,KAAK,GAAGpC,GAAG,CAACC,OAAJ,CAAa,OAAb,CAAZ,CAFkC,CAIlC;;AACA,WAAK8D,WAAL,CAAiBpG,IAAjB,GALkC,CAOlC;;AACA,UAAKyE,KAAK,CAACyE,QAAN,CAAgB,OAAhB,EAA0B/B,MAA1B,IAAoC,CAAzC,EAA6C;AAC5C1C,QAAAA,KAAK,CAACnC,OAAN,CAAe,aAAf,EAA+BsG,MAA/B;AACA,OAViC,CAYlC;;;AACAnE,MAAAA,KAAK,CAACmE,MAAN;AACA;AA/T0D,GAAzB,CAAnC;AAkUAnJ,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0B7E,4BAA1B;AAEA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAI8E,sBAAsB,GAAG,IAAI3J,GAAG,CAACoD,KAAR,CAAe;AAC3CC,IAAAA,OAAO,EAAE;AACRuG,MAAAA,uBAAuB,EAAE;AADjB,KADkC;AAK3CC,IAAAA,uBAAuB,EAAE,UAAWC,QAAX,EAAqBC,QAArB,EAA+BC,SAA/B,EAA2C;AACnE;AACA,UAAIjH,IAAI,GAAG,EAAX;AACA,UAAIkH,QAAQ,GAAGpK,CAAC,EAAhB,CAHmE,CAKnE;;AACAiK,MAAAA,QAAQ,CAAChD,GAAT,CAAc,UAAWoD,KAAX,EAAmB;AAChC;AACAnH,QAAAA,IAAI,CAAEmH,KAAK,CAAC/F,GAAN,CAAW,SAAX,CAAF,CAAJ,GAAiC+F,KAAK,CAAC/F,GAAN,CAAW,KAAX,CAAjC,CAFgC,CAIhC;;AACA8F,QAAAA,QAAQ,GAAGA,QAAQ,CAACE,GAAT,CAAcD,KAAK,CAACrK,CAAN,CAAS,uBAAT,CAAd,CAAX;AACA,OAND,EANmE,CAcnE;;AACAoK,MAAAA,QAAQ,CAAC9D,IAAT,CAAe,YAAY;AAC1B;AACA,YAAIS,OAAO,GAAG/G,CAAC,CAAE,IAAF,CAAf;AACA,YAAImI,GAAG,GAAGpB,OAAO,CAACoB,GAAR,EAAV,CAH0B,CAK1B;;AACA,YAAK,CAAEA,GAAF,IAAS,CAAEjF,IAAI,CAAEiF,GAAF,CAApB,EAA8B;AAC7B;AACA,SARyB,CAU1B;;;AACApB,QAAAA,OAAO,CAAC5D,IAAR,CAAc,iBAAd,EAAkC2F,IAAlC,CAAwC,OAAxC,EAAiD5F,IAAI,CAAEiF,GAAF,CAArD,EAX0B,CAa1B;;AACApB,QAAAA,OAAO,CAACoB,GAAR,CAAajF,IAAI,CAAEiF,GAAF,CAAjB;AACA,OAfD;AAgBA;AApC0C,GAAf,CAA7B;AAsCA,CAnYD,EAmYKpD,MAnYL;;;;;;;;;;ACAA,CAAE,UAAW/E,CAAX,EAAcC,SAAd,EAA0B;AAC3BE,EAAAA,GAAG,CAACoK,WAAJ,GAAkBpK,GAAG,CAACoD,KAAJ,CAAUlC,MAAV,CAAkB;AACnC;AACAmJ,IAAAA,UAAU,EAAE,mBAFuB;AAInC;AACAtF,IAAAA,MAAM,EAAE;AACP,2BAAqB,aADd;AAEP,6BAAuB,eAFhB;AAGP,gCAA0B,WAHnB;AAIP,2BAAqB,MAJd;AAMP,4BAAsB,cANf;AAOP,gCAA0B,kBAPnB;AAQP,2BAAqB,eARd;AASP,0BAAoB,cATb;AAWPuF,MAAAA,MAAM,EAAE,UAXD;AAYPC,MAAAA,OAAO,EAAE;AAZF,KAL2B;AAoBnC;AACAxH,IAAAA,IAAI,EAAE;AACL;AACA;AACAiE,MAAAA,EAAE,EAAE,CAHC;AAKL;AACAwD,MAAAA,GAAG,EAAE,EANA;AAQL;AACAnK,MAAAA,IAAI,EAAE,EATD,CAWL;AACA;AAEA;AACA;AAEA;AACA;;AAlBK,KArB6B;AA0CnCoK,IAAAA,KAAK,EAAE,UAAWrK,MAAX,EAAoB;AAC1B;AACA,WAAKwC,GAAL,GAAWxC,MAAX,CAF0B,CAI1B;;AACA,WAAKsK,OAAL,CAActK,MAAd,EAL0B,CAO1B;AACA;;AACA,WAAKU,IAAL,CAAW,IAAX;AACA,WAAKA,IAAL,CAAW,QAAX;AACA,WAAKA,IAAL,CAAW,YAAX;AACA,KAtDkC;AAwDnCqE,IAAAA,MAAM,EAAE,UAAWvE,IAAX,EAAkB;AACzB,aAAOf,CAAC,CAAE,MAAM,KAAK8K,UAAL,EAAN,GAA0B,GAA1B,GAAgC/J,IAAlC,CAAR;AACA,KA1DkC;AA4DnCgK,IAAAA,KAAK,EAAE,YAAY;AAClB,aAAO,KAAK/K,CAAL,CAAQ,aAAR,CAAP;AACA,KA9DkC;AAgEnCgL,IAAAA,OAAO,EAAE,YAAY;AACpB,aAAO,KAAKhL,CAAL,CAAQ,eAAR,CAAP;AACA,KAlEkC;AAoEnCuB,IAAAA,SAAS,EAAE,YAAY;AACtB,aAAO,KAAKvB,CAAL,CAAQ,iBAAR,CAAP;AACA,KAtEkC;AAwEnCiL,IAAAA,QAAQ,EAAE,UAAWlK,IAAX,EAAkB;AAC3B,aAAO,KAAKf,CAAL,CACN,oDAAoDe,IAD9C,CAAP;AAGA,KA5EkC;AA8EnCmK,IAAAA,SAAS,EAAE,YAAY;AACtB,aAAO/K,GAAG,CAAC6G,eAAJ,CAAqB;AAAEqD,QAAAA,KAAK,EAAE,KAAKtH,GAAd;AAAmBoI,QAAAA,KAAK,EAAE;AAA1B,OAArB,EAAqDC,GAArD,EAAP;AACA,KAhFkC;AAkFnCrD,IAAAA,UAAU,EAAE,YAAY;AACvB,aAAO5H,GAAG,CAAC6G,eAAJ,CAAqB;AAAEqD,QAAAA,KAAK,EAAE,KAAKtH;AAAd,OAArB,CAAP;AACA,KApFkC;AAsFnCsI,IAAAA,SAAS,EAAE,YAAY;AACtB,aAAOlL,GAAG,CAAC6G,eAAJ,CAAqB;AAAEsE,QAAAA,MAAM,EAAE,KAAKvI;AAAf,OAArB,CAAP;AACA,KAxFkC;AA0FnCwI,IAAAA,YAAY,EAAE,YAAY;AACzB,aAAO,gBAAgB,KAAKjH,GAAL,CAAU,IAAV,CAAhB,GAAmC,GAA1C;AACA,KA5FkC;AA8FnCwG,IAAAA,UAAU,EAAE,YAAY;AACvB,aAAO,gBAAgB,KAAKxG,GAAL,CAAU,IAAV,CAAvB;AACA,KAhGkC;AAkGnCkH,IAAAA,QAAQ,EAAE,UAAWzK,IAAX,EAAiBC,KAAjB,EAAyB;AAClC;AACA,UAAIyK,OAAO,GAAG,KAAKX,UAAL,EAAd;AACA,UAAIY,SAAS,GAAG,KAAKH,YAAL,EAAhB,CAHkC,CAKlC;;AACA,UAAKxK,IAAL,EAAY;AACX0K,QAAAA,OAAO,IAAI,MAAM1K,IAAjB;AACA2K,QAAAA,SAAS,IAAI,MAAM3K,IAAN,GAAa,GAA1B;AACA,OATiC,CAWlC;;;AACA,UAAIuE,MAAM,GAAGtF,CAAC,CAAE,WAAF,CAAD,CAAiB8I,IAAjB,CAAuB;AACnC3B,QAAAA,EAAE,EAAEsE,OAD+B;AAEnC1K,QAAAA,IAAI,EAAE2K,SAF6B;AAGnC1K,QAAAA,KAAK,EAAEA;AAH4B,OAAvB,CAAb;AAKA,WAAKhB,CAAL,CAAQ,SAAR,EAAoB2L,MAApB,CAA4BrG,MAA5B,EAjBkC,CAmBlC;;AACA,aAAOA,MAAP;AACA,KAvHkC;AAyHnCsG,IAAAA,OAAO,EAAE,UAAW7K,IAAX,EAAkB;AAC1B;AACA,UAAK,KAAK8K,GAAL,CAAU9K,IAAV,CAAL,EAAwB;AACvB,eAAO,KAAKuD,GAAL,CAAUvD,IAAV,CAAP;AACA,OAJyB,CAM1B;;;AACA,UAAIuE,MAAM,GAAG,KAAKA,MAAL,CAAavE,IAAb,CAAb;AACA,UAAIC,KAAK,GAAGsE,MAAM,CAACuC,MAAP,GAAgBvC,MAAM,CAAC6C,GAAP,EAAhB,GAA+B,IAA3C,CAR0B,CAU1B;;AACA,WAAKjG,GAAL,CAAUnB,IAAV,EAAgBC,KAAhB,EAAuB,IAAvB,EAX0B,CAa1B;;AACA,aAAOA,KAAP;AACA,KAxIkC;AA0InC8K,IAAAA,OAAO,EAAE,UAAW/K,IAAX,EAAiBC,KAAjB,EAAyB;AACjC;AACA,UAAIsE,MAAM,GAAG,KAAKA,MAAL,CAAavE,IAAb,CAAb;AACA,UAAIgL,OAAO,GAAGzG,MAAM,CAAC6C,GAAP,EAAd,CAHiC,CAKjC;;AACA,UAAK,CAAE7C,MAAM,CAACuC,MAAd,EAAuB;AACtBvC,QAAAA,MAAM,GAAG,KAAKkG,QAAL,CAAezK,IAAf,EAAqBC,KAArB,CAAT;AACA,OARgC,CAUjC;;;AACA,UAAKA,KAAK,KAAK,IAAf,EAAsB;AACrBsE,QAAAA,MAAM,CAACgE,MAAP,GADqB,CAGrB;AACA,OAJD,MAIO;AACNhE,QAAAA,MAAM,CAAC6C,GAAP,CAAYnH,KAAZ;AACA,OAjBgC,CAmBjC;AAEA;;;AACA,UAAK,CAAE,KAAK6K,GAAL,CAAU9K,IAAV,CAAP,EAA0B;AACzB;AACA,aAAKmB,GAAL,CAAUnB,IAAV,EAAgBC,KAAhB,EAAuB,IAAvB,EAFyB,CAIzB;AACA,OALD,MAKO;AACN;AACA,aAAKkB,GAAL,CAAUnB,IAAV,EAAgBC,KAAhB;AACA,OA9BgC,CAgCjC;;;AACA,aAAO,IAAP;AACA,KA5KkC;AA8KnCC,IAAAA,IAAI,EAAE,UAAWF,IAAX,EAAiBC,KAAjB,EAAyB;AAC9B,UAAKA,KAAK,KAAKf,SAAf,EAA2B;AAC1B,eAAO,KAAK6L,OAAL,CAAc/K,IAAd,EAAoBC,KAApB,CAAP;AACA,OAFD,MAEO;AACN,eAAO,KAAK4K,OAAL,CAAc7K,IAAd,CAAP;AACA;AACD,KApLkC;AAsLnCiL,IAAAA,KAAK,EAAE,UAAWA,KAAX,EAAmB;AACzBC,MAAAA,MAAM,CAACC,IAAP,CAAaF,KAAb,EAAqB/E,GAArB,CAA0B,UAAW0D,GAAX,EAAiB;AAC1C,aAAKmB,OAAL,CAAcnB,GAAd,EAAmBqB,KAAK,CAAErB,GAAF,CAAxB;AACA,OAFD,EAEG,IAFH;AAGA,KA1LkC;AA4LnCrD,IAAAA,QAAQ,EAAE,YAAY;AACrB;AACA,UAAIiB,KAAK,GAAG,KAAKtH,IAAL,CAAW,OAAX,CAAZ;;AACA,UAAKsH,KAAK,KAAK,EAAf,EAAoB;AACnBA,QAAAA,KAAK,GAAGpI,GAAG,CAACoH,EAAJ,CAAQ,YAAR,CAAR;AACA,OALoB,CAOrB;;;AACA,aAAOgB,KAAP;AACA,KArMkC;AAuMnC4D,IAAAA,OAAO,EAAE,YAAY;AACpB,aAAO,KAAKlL,IAAL,CAAW,MAAX,CAAP;AACA,KAzMkC;AA2MnC2G,IAAAA,OAAO,EAAE,YAAY;AACpB,aAAO,KAAK3G,IAAL,CAAW,MAAX,CAAP;AACA,KA7MkC;AA+MnCmL,IAAAA,YAAY,EAAE,YAAY;AACzB,UAAI5L,IAAI,GAAG,KAAKS,IAAL,CAAW,MAAX,CAAX;AACA,UAAIoL,KAAK,GAAGlM,GAAG,CAACmE,GAAJ,CAAS,YAAT,CAAZ;AACA,aAAO+H,KAAK,CAAE7L,IAAF,CAAL,GAAgB6L,KAAK,CAAE7L,IAAF,CAAL,CAAc+H,KAA9B,GAAsC/H,IAA7C;AACA,KAnNkC;AAqNnC4G,IAAAA,MAAM,EAAE,YAAY;AACnB,aAAO,KAAKnG,IAAL,CAAW,KAAX,CAAP;AACA,KAvNkC;AAyNnCqL,IAAAA,UAAU,EAAE,YAAY;AACvB,WAAKC,YAAL;AACA,KA3NkC;AA6NnCA,IAAAA,YAAY,EAAE,YAAY;AACzB;AACA,UAAKpM,GAAG,CAAC+C,IAAJ,CAASsJ,UAAT,CAAoBC,cAApB,CAAoC,OAApC,CAAL,EAAqD;AACpD;AACA,OAJwB,CAMzB;;;AACA,UAAIC,gBAAgB,GAAG1M,CAAC,CAAE,aAAF,CAAD,CAAmBqJ,GAAnB,CACtB,sBADsB,CAAvB,CAPyB,CAWzB;;AACA,UAAIsD,YAAY,GAAGD,gBAAgB,CACjCvJ,IADiB,CACX,gCADW,EAEjBmI,MAFiB,EAAnB;AAGAqB,MAAAA,YAAY,CAAChB,MAAb,CACC,8CACCxL,GAAG,CAACoH,EAAJ,CAAQ,qBAAR,CADD,GAEC,WAFD,GAGC,2CAHD,GAICpH,GAAG,CAACoH,EAAJ,CAAQ,6BAAR,CAJD,GAKC,WALD,GAMC,2CAND,GAOCpH,GAAG,CAACoH,EAAJ,CAAQ,kBAAR,CAPD,GAQC,WATF,EAfyB,CA2BzB;;AACA,UAAIqF,aAAa,GAAGF,gBAAgB,CAClCvJ,IADkB,CACZ,gCADY,EAElBmI,MAFkB,EAApB;AAGAsB,MAAAA,aAAa,CAACjB,MAAd,CACC,8CACCxL,GAAG,CAACoH,EAAJ,CAAQ,oBAAR,CADD,GAEC,WAHF;AAMAmF,MAAAA,gBAAgB,CAACG,QAAjB,CAA2B,qBAA3B;AACA,KAnQkC;AAqQnC1G,IAAAA,MAAM,EAAE,YAAY;AACnB;AACA,UAAI6E,OAAO,GAAG,KAAKhL,CAAL,CAAQ,eAAR,CAAd;AACA,UAAI8M,UAAU,GAAG,KAAK7L,IAAL,CAAW,YAAX,CAAjB;AACA,UAAIsH,KAAK,GAAG,KAAKjB,QAAL,EAAZ;AACA,UAAIvG,IAAI,GAAG,KAAKE,IAAL,CAAW,MAAX,CAAX;AACA,UAAIT,IAAI,GAAG,KAAK4L,YAAL,EAAX;AACA,UAAIzB,GAAG,GAAG,KAAK1J,IAAL,CAAW,KAAX,CAAV;AACA,UAAI8L,QAAQ,GAAG,KAAKzH,MAAL,CAAa,UAAb,EAA0BrE,IAA1B,CAAgC,SAAhC,CAAf,CARmB,CAUnB;;AACA+J,MAAAA,OAAO,CAAC7H,IAAR,CAAc,WAAd,EAA4ByF,IAA5B,CAAkCoE,QAAQ,CAAEF,UAAF,CAAR,GAAyB,CAA3D,EAXmB,CAanB;;AACA,UAAKC,QAAL,EAAgB;AACfxE,QAAAA,KAAK,IAAI,sCAAT;AACA,OAhBkB,CAkBnB;;;AACAyC,MAAAA,OAAO,CAAC7H,IAAR,CAAc,0BAAd,EAA2CyF,IAA3C,CAAiDL,KAAjD,EAnBmB,CAqBnB;;AACAyC,MAAAA,OAAO,CAAC7H,IAAR,CAAc,gBAAd,EAAiCkE,IAAjC,CAAuCtG,IAAvC,EAtBmB,CAwBnB;;AACAiK,MAAAA,OAAO,CAAC7H,IAAR,CAAc,gBAAd,EAAiCkE,IAAjC,CAAuC7G,IAAvC,EAzBmB,CA2BnB;;AACAwK,MAAAA,OAAO,CAAC7H,IAAR,CAAc,eAAd,EAAgCkE,IAAhC,CAAsCsD,GAAtC,EA5BmB,CA8BnB;;AACAxK,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqC,IAArC;AACA,KArSkC;AAuSnC4I,IAAAA,OAAO,EAAE,YAAY;AACpB9M,MAAAA,GAAG,CAACkE,QAAJ,CAAc,sBAAd,EAAsC,IAAtC;AACA,KAzSkC;AA2SnC6I,IAAAA,MAAM,EAAE,YAAY;AACnB,aAAO,KAAKnK,GAAL,CAASoK,QAAT,CAAmB,MAAnB,CAAP;AACA,KA7SkC;AA+SnCC,IAAAA,WAAW,EAAE,UAAWtK,CAAX,EAAe;AAC3B,WAAKoK,MAAL,KAAgB,KAAKlH,KAAL,EAAhB,GAA+B,KAAKJ,IAAL,EAA/B;AACA,KAjTkC;AAmTnCA,IAAAA,IAAI,EAAE,YAAY;AACjB;AACA,UAAIrE,SAAS,GAAG,KAAKwB,GAAL,CAASkH,QAAT,CAAmB,WAAnB,CAAhB,CAFiB,CAIjB;;AACA1I,MAAAA,SAAS,CAAC8L,SAAV;AACA,WAAKtK,GAAL,CAAS8J,QAAT,CAAmB,MAAnB,EANiB,CAQjB;;AACA1M,MAAAA,GAAG,CAACkE,QAAJ,CAAc,mBAAd,EAAmC,IAAnC;AACA,WAAKiJ,OAAL,CAAc,iBAAd,EAViB,CAYjB;;AACAnN,MAAAA,GAAG,CAACkE,QAAJ,CAAc,MAAd,EAAsB9C,SAAtB;AACA,KAjUkC;AAmUnCyE,IAAAA,KAAK,EAAE,YAAY;AAClB;AACA,UAAIzE,SAAS,GAAG,KAAKwB,GAAL,CAASkH,QAAT,CAAmB,WAAnB,CAAhB,CAFkB,CAIlB;;AACA1I,MAAAA,SAAS,CAACgM,OAAV;AACA,WAAKxK,GAAL,CAASyK,WAAT,CAAsB,MAAtB,EANkB,CAQlB;;AACArN,MAAAA,GAAG,CAACkE,QAAJ,CAAc,oBAAd,EAAoC,IAApC;AACA,WAAKiJ,OAAL,CAAc,kBAAd,EAVkB,CAYlB;;AACAnN,MAAAA,GAAG,CAACkE,QAAJ,CAAc,MAAd,EAAsB9C,SAAtB;AACA,KAjVkC;AAmVnCkM,IAAAA,SAAS,EAAE,YAAY;AACtB,aAAOtN,GAAG,CAACsN,SAAJ,CAAe,KAAK1K,GAApB,EAAyB,KAAKwI,YAAL,EAAzB,CAAP;AACA,KArVkC;AAuVnC7K,IAAAA,IAAI,EAAE,UAAWF,IAAX,EAAkB;AACvB;AACAA,MAAAA,IAAI,GAAGA,IAAI,IAAI,UAAf,CAFuB,CAEI;AAE3B;;AACA,UAAIE,IAAI,GAAG,KAAKkL,OAAL,CAAc,MAAd,CAAX,CALuB,CAOvB;;AACA,UAAKlL,IAAI,KAAK,UAAd,EAA2B;AAC1B;AACA,OAVsB,CAYvB;;;AACA,WAAKoL,OAAL,CAAc,MAAd,EAAsBtL,IAAtB,EAbuB,CAevB;;AACA,WAAKuC,GAAL,CAAS+F,IAAT,CAAe,WAAf,EAA4BtI,IAA5B,EAhBuB,CAkBvB;;AACAL,MAAAA,GAAG,CAACkE,QAAJ,CAAc,mBAAd,EAAmC,IAAnC,EAAyC7D,IAAzC;AACA,KA3WkC;AA6WnCkN,IAAAA,MAAM,EAAE,YAAY;AACnB;AACA,UAAIhC,SAAS,GAAG,KAAKH,YAAL,EAAhB;AACA,UAAI7K,IAAI,GAAG,KAAK4D,GAAL,CAAU,MAAV,CAAX,CAHmB,CAKnB;;AACA,UAAK,KAAK4I,MAAL,EAAL,EAAqB;AACpB,aAAKlH,KAAL;AACA,OARkB,CAUnB;;;AACA,UAAKtF,IAAI,IAAI,UAAb,EAA0B,CACzB;AACA;AACA,OAHD,MAGO,IAAKA,IAAI,IAAI,MAAb,EAAsB;AAC5B,aAAKV,CAAL,CAAQ,yBAAyB0L,SAAzB,GAAqC,IAA7C,EAAoDpC,MAApD,GAD4B,CAG5B;AACA,OAJM,MAIA;AACN,aAAKtJ,CAAL,CAAQ,aAAa0L,SAAb,GAAyB,IAAjC,EAAwCpC,MAAxC;AACA,OApBkB,CAsBnB;;;AACAnJ,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqC,IAArC;AACA,KArYkC;AAuYnCsJ,IAAAA,QAAQ,EAAE,UAAW7K,CAAX,EAAcC,GAAd,EAAoB;AAC7B;AACA,WAAKrC,IAAL,GAF6B,CAI7B;;AACAP,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqC,IAArC;AACA,KA7YkC;AA+YnCuJ,IAAAA,SAAS,EAAE,UAAW9K,CAAX,EAAcC,GAAd,EAAmBhC,IAAnB,EAAyBC,KAAzB,EAAiC;AAC3C;AACA,UAAKD,IAAI,IAAI,MAAb,EAAsB;AACrB;AACA,OAJ0C,CAM3C;;;AACA,UAAK,CAAE,YAAF,EAAgB,QAAhB,EAA2B2B,OAA3B,CAAoC3B,IAApC,IAA6C,CAAC,CAAnD,EAAuD;AACtD,aAAKL,IAAL,CAAW,MAAX,EADsD,CAGtD;AACA,OAJD,MAIO;AACN,aAAKA,IAAL;AACA,OAb0C,CAe3C;;;AACA,UACC,CACC,YADD,EAEC,OAFD,EAGC,UAHD,EAIC,MAJD,EAKC,MALD,EAMC,KAND,EAOEgC,OAPF,CAOW3B,IAPX,IAOoB,CAAC,CARtB,EASE;AACD,aAAKoF,MAAL;AACA,OA3B0C,CA6B3C;;;AACAhG,MAAAA,GAAG,CAACkE,QAAJ,CAAc,yBAAyBtD,IAAvC,EAA6C,IAA7C,EAAmDC,KAAnD;AACA,KA9akC;AAgbnC6M,IAAAA,aAAa,EAAE,UAAW/K,CAAX,EAAcC,GAAd,EAAoB;AAClC;AACA,UAAIwF,KAAK,GAAGxF,GAAG,CAACoF,GAAJ,EAAZ;AACA,WAAKjG,GAAL,CAAU,OAAV,EAAmBqG,KAAnB,EAHkC,CAKlC;;AACA,UAAK,KAAKtH,IAAL,CAAW,MAAX,KAAuB,EAA5B,EAAiC;AAChC,YAAIF,IAAI,GAAGZ,GAAG,CAAC2N,YAAJ,CACV,4BADU,EAEV3N,GAAG,CAAC4N,WAAJ,CAAiBxF,KAAjB,CAFU,EAGV,IAHU,CAAX;AAKA,aAAKtH,IAAL,CAAW,MAAX,EAAmBF,IAAnB;AACA;AACD,KA9bkC;AAgcnCiN,IAAAA,YAAY,EAAE,UAAWlL,CAAX,EAAcC,GAAd,EAAoB;AACjC;AACA,UAAIhC,IAAI,GAAGgC,GAAG,CAACoF,GAAJ,EAAX;AACA,WAAKjG,GAAL,CAAU,MAAV,EAAkBnB,IAAlB,EAHiC,CAKjC;;AACA,UAAKA,IAAI,CAAC0B,MAAL,CAAa,CAAb,EAAgB,CAAhB,MAAwB,QAA7B,EAAwC;AACvCwL,QAAAA,KAAK,CACJ9N,GAAG,CAACoH,EAAJ,CACC,kEADD,CADI,CAAL;AAKA;AACD,KA7ckC;AA+cnC2G,IAAAA,gBAAgB,EAAE,UAAWpL,CAAX,EAAcC,GAAd,EAAoB;AACrC;AACA,UAAIgK,QAAQ,GAAGhK,GAAG,CAAC9B,IAAJ,CAAU,SAAV,IAAwB,CAAxB,GAA4B,CAA3C;AACA,WAAKiB,GAAL,CAAU,UAAV,EAAsB6K,QAAtB;AACA,KAndkC;AAqdnClM,IAAAA,MAAM,EAAE,UAAWsN,IAAX,EAAkB;AACzB;AACAA,MAAAA,IAAI,GAAGhO,GAAG,CAACiO,SAAJ,CAAeD,IAAf,EAAqB;AAC3BvN,QAAAA,OAAO,EAAE;AADkB,OAArB,CAAP,CAFyB,CAMzB;;AACA,UAAIuG,EAAE,GAAG,KAAKlG,IAAL,CAAW,IAAX,CAAT;;AAEA,UAAKkG,EAAL,EAAU;AACT,YAAI7B,MAAM,GAAGtF,CAAC,CAAE,qBAAF,CAAd;AACA,YAAIqO,MAAM,GAAG/I,MAAM,CAAC6C,GAAP,KAAe,GAAf,GAAqBhB,EAAlC;AACA7B,QAAAA,MAAM,CAAC6C,GAAP,CAAYkG,MAAZ;AACA,OAbwB,CAezB;;;AACAlO,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqC,IAArC,EAhByB,CAkBzB;;AACA,UAAK8J,IAAI,CAACvN,OAAV,EAAoB;AACnB,aAAK0N,aAAL;AACA,OAFD,MAEO;AACN,aAAKhF,MAAL;AACA;AACD,KA7ekC;AA+enCiF,IAAAA,aAAa,EAAE,UAAWzL,CAAX,EAAcC,GAAd,EAAoB;AAClC;AACA,UAAKD,CAAC,CAAC0L,QAAP,EAAkB;AACjB,eAAO,KAAK3N,MAAL,EAAP;AACA,OAJiC,CAMlC;;;AACA,WAAKkC,GAAL,CAAS8J,QAAT,CAAmB,QAAnB,EAPkC,CASlC;;AACA,UAAI4B,OAAO,GAAGtO,GAAG,CAACuO,UAAJ,CAAgB;AAC7BC,QAAAA,aAAa,EAAE,IADc;AAE7BC,QAAAA,MAAM,EAAE7L,GAFqB;AAG7BJ,QAAAA,OAAO,EAAE,IAHoB;AAI7BkM,QAAAA,OAAO,EAAE,YAAY;AACpB,eAAKhO,MAAL;AACA,SAN4B;AAO7BiO,QAAAA,MAAM,EAAE,YAAY;AACnB,eAAK/L,GAAL,CAASyK,WAAT,CAAsB,QAAtB;AACA;AAT4B,OAAhB,CAAd;AAWA,KApgBkC;AAsgBnCc,IAAAA,aAAa,EAAE,YAAY;AAC1B;AACA,UAAIlK,KAAK,GAAG,IAAZ;AACA,UAAI2K,KAAK,GAAG,KAAKhM,GAAL,CAASuI,MAAT,EAAZ;AACA,UAAI0D,OAAO,GAAG7O,GAAG,CAAC8O,gBAAJ,CAAsB;AACnCC,QAAAA,OAAO,EAAE,KAAKnM;AADqB,OAAtB,CAAd,CAJ0B,CAQ1B;;AACA5C,MAAAA,GAAG,CAACmJ,MAAJ,CAAY;AACXsF,QAAAA,MAAM,EAAE,KAAK7L,GADF;AAEXoM,QAAAA,SAAS,EAAEH,OAAO,CAACnH,MAAR,GAAiB,CAAjB,GAAqB,EAFrB;AAGXuH,QAAAA,QAAQ,EAAE,YAAY;AACrBhL,UAAAA,KAAK,CAACkF,MAAN;AACAnJ,UAAAA,GAAG,CAACkE,QAAJ,CAAc,sBAAd,EAAsCD,KAAtC,EAA6C2K,KAA7C;AACA;AANU,OAAZ,EAT0B,CAkB1B;;AACA5O,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqCD,KAArC,EAA4C2K,KAA5C;AACA,KA1hBkC;AA4hBnC3F,IAAAA,SAAS,EAAE,YAAY;AACtB;AACA,UAAIiG,MAAM,GAAGlP,GAAG,CAACmP,MAAJ,CAAY,QAAZ,CAAb,CAFsB,CAItB;;AACA,UAAIC,SAAS,GAAGpP,GAAG,CAACiJ,SAAJ,CAAe;AAC9BwF,QAAAA,MAAM,EAAE,KAAK7L,GADiB;AAE9ByM,QAAAA,MAAM,EAAE,KAAKlL,GAAL,CAAU,IAAV,CAFsB;AAG9BmL,QAAAA,OAAO,EAAEJ;AAHqB,OAAf,CAAhB,CALsB,CAWtB;;AACAE,MAAAA,SAAS,CAACzG,IAAV,CAAgB,UAAhB,EAA4BuG,MAA5B,EAZsB,CActB;;AACA,UAAInF,QAAQ,GAAG/J,GAAG,CAACM,cAAJ,CAAoB8O,SAApB,CAAf,CAfsB,CAiBtB;;AACA,UAAK,KAAKrC,MAAL,EAAL,EAAqB;AACpB,aAAKlH,KAAL;AACA,OAFD,MAEO;AACNkE,QAAAA,QAAQ,CAACtE,IAAT;AACA,OAtBqB,CAwBtB;;;AACA,UAAI8J,MAAM,GAAGxF,QAAQ,CAACe,QAAT,CAAmB,aAAnB,CAAb;AACApC,MAAAA,UAAU,CAAE,YAAY;AACvB6G,QAAAA,MAAM,CAACpC,OAAP,CAAgB,OAAhB;AACA,OAFS,EAEP,GAFO,CAAV,CA1BsB,CA8BtB;;AACA,UAAI/E,KAAK,GAAG2B,QAAQ,CAACjJ,IAAT,CAAe,OAAf,CAAZ;AACA,UAAIF,IAAI,GAAGmJ,QAAQ,CAACjJ,IAAT,CAAe,MAAf,CAAX;AACA,UAAI0O,GAAG,GAAG5O,IAAI,CAACW,KAAL,CAAY,GAAZ,EAAkB0J,GAAlB,EAAV;;AACA,UAAIwE,IAAI,GAAGzP,GAAG,CAACoH,EAAJ,CAAQ,MAAR,CAAX,CAlCsB,CAoCtB;;;AACA,UAAKpH,GAAG,CAAC0P,SAAJ,CAAeF,GAAf,CAAL,EAA4B;AAC3B,YAAIG,CAAC,GAAGH,GAAG,GAAG,CAAN,GAAU,CAAlB;AACApH,QAAAA,KAAK,GAAGA,KAAK,CAACkH,OAAN,CAAeE,GAAf,EAAoBG,CAApB,CAAR;AACA/O,QAAAA,IAAI,GAAGA,IAAI,CAAC0O,OAAL,CAAcE,GAAd,EAAmBG,CAAnB,CAAP,CAH2B,CAK3B;AACA,OAND,MAMO,IAAKH,GAAG,CAACjN,OAAJ,CAAakN,IAAb,MAAwB,CAA7B,EAAiC;AACvC,YAAIE,CAAC,GAAGH,GAAG,CAACF,OAAJ,CAAaG,IAAb,EAAmB,EAAnB,IAA0B,CAAlC;AACAE,QAAAA,CAAC,GAAGA,CAAC,GAAGA,CAAC,GAAG,CAAP,GAAW,CAAhB,CAFuC,CAIvC;;AACAvH,QAAAA,KAAK,GAAGA,KAAK,CAACkH,OAAN,CAAeE,GAAf,EAAoBC,IAAI,GAAGE,CAA3B,CAAR;AACA/O,QAAAA,IAAI,GAAGA,IAAI,CAAC0O,OAAL,CAAcE,GAAd,EAAmBC,IAAI,GAAGE,CAA1B,CAAP,CANuC,CAQvC;AACA,OATM,MASA;AACNvH,QAAAA,KAAK,IAAI,OAAOqH,IAAP,GAAc,GAAvB;AACA7O,QAAAA,IAAI,IAAI,MAAM6O,IAAd;AACA;;AAED1F,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,IAAf,EAAqB,CAArB;AACAiJ,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,OAAf,EAAwBsH,KAAxB;AACA2B,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,MAAf,EAAuBF,IAAvB;AACAmJ,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,KAAf,EAAsBoO,MAAtB,EA5DsB,CA8DtB;;AACAlP,MAAAA,GAAG,CAACkE,QAAJ,CAAc,wBAAd,EAAwC,IAAxC,EAA8C6F,QAA9C;AACA/J,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqC6F,QAArC;AACA,KA7lBkC;AA+lBnC6F,IAAAA,IAAI,EAAE,YAAY;AACjB;AACA,UAAIC,MAAM,GAAG,KAAK1L,GAAL,CAAU,IAAV,CAAb;AACA,UAAI2L,OAAO,GAAG,KAAK3L,GAAL,CAAU,KAAV,CAAd;AACA,UAAI+K,MAAM,GAAGlP,GAAG,CAACmP,MAAJ,CAAY,QAAZ,CAAb,CAJiB,CAMjB;;AACAnP,MAAAA,GAAG,CAAC+P,MAAJ,CAAY;AACXtB,QAAAA,MAAM,EAAE,KAAK7L,GADF;AAEXyM,QAAAA,MAAM,EAAEQ,MAFG;AAGXP,QAAAA,OAAO,EAAEJ;AAHE,OAAZ,EAPiB,CAajB;;AACA,WAAKnN,GAAL,CAAU,IAAV,EAAgBmN,MAAhB;AACA,WAAKnN,GAAL,CAAU,QAAV,EAAoB8N,MAApB;AACA,WAAK9N,GAAL,CAAU,SAAV,EAAqB+N,OAArB,EAhBiB,CAkBjB;;AACA,WAAKhP,IAAL,CAAW,KAAX,EAAkBoO,MAAlB;AACA,WAAKpO,IAAL,CAAW,IAAX,EAAiB,CAAjB,EApBiB,CAsBjB;;AACA,WAAK8B,GAAL,CAAS+F,IAAT,CAAe,UAAf,EAA2BuG,MAA3B;AACA,WAAKtM,GAAL,CAAS+F,IAAT,CAAe,SAAf,EAA0BuG,MAA1B,EAxBiB,CA0BjB;;AACAlP,MAAAA,GAAG,CAACkE,QAAJ,CAAc,mBAAd,EAAmC,IAAnC;AACA,KA3nBkC;AA6nBnC8L,IAAAA,IAAI,EAAE,YAAY;AACjB;AACA,UAAIC,UAAU,GAAG,UAAWhM,KAAX,EAAmB;AACnC,eAAOA,KAAK,CAACE,GAAN,CAAW,MAAX,KAAuB,UAA9B;AACA,OAFD,CAFiB,CAMjB;;;AACA,UAAIoG,OAAO,GAAG0F,UAAU,CAAE,IAAF,CAAxB,CAPiB,CASjB;;AACA,UAAK,CAAE1F,OAAP,EAAiB;AAChBvK,QAAAA,GAAG,CAAC6G,eAAJ,CAAqB;AACpBsE,UAAAA,MAAM,EAAE,KAAKvI;AADO,SAArB,EAEIkE,GAFJ,CAES,UAAW7C,KAAX,EAAmB;AAC3BsG,UAAAA,OAAO,GAAG0F,UAAU,CAAEhM,KAAF,CAAV,IAAuBA,KAAK,CAACsG,OAAvC;AACA,SAJD;AAKA,OAhBgB,CAkBjB;;;AACA,UAAKA,OAAL,EAAe;AACduD,QAAAA,KAAK,CACJ9N,GAAG,CAACoH,EAAJ,CACC,8DADD,CADI,CAAL;AAKA;AACA,OA1BgB,CA4BjB;;;AACA,UAAIJ,EAAE,GAAG,KAAKlG,IAAL,CAAW,IAAX,CAAT;AACA,UAAImD,KAAK,GAAG,IAAZ;AACA,UAAIiM,KAAK,GAAG,KAAZ;;AACA,UAAIC,KAAK,GAAG,YAAY;AACvB;AACAD,QAAAA,KAAK,GAAGlQ,GAAG,CAACoQ,QAAJ,CAAc;AACrBC,UAAAA,KAAK,EAAErQ,GAAG,CAACoH,EAAJ,CAAQ,mBAAR,CADc;AAErBkJ,UAAAA,OAAO,EAAE,IAFY;AAGrBC,UAAAA,KAAK,EAAE;AAHc,SAAd,CAAR,CAFuB,CAQvB;;AACA,YAAIC,QAAQ,GAAG;AACdC,UAAAA,MAAM,EAAE,4BADM;AAEdC,UAAAA,QAAQ,EAAE1J;AAFI,SAAf,CATuB,CAcvB;;AACAnH,QAAAA,CAAC,CAAC8Q,IAAF,CAAQ;AACPC,UAAAA,GAAG,EAAE5Q,GAAG,CAACmE,GAAJ,CAAS,SAAT,CADE;AAEPpB,UAAAA,IAAI,EAAE/C,GAAG,CAAC6Q,cAAJ,CAAoBL,QAApB,CAFC;AAGPnQ,UAAAA,IAAI,EAAE,MAHC;AAIPyQ,UAAAA,QAAQ,EAAE,MAJH;AAKPC,UAAAA,OAAO,EAAEC;AALF,SAAR;AAOA,OAtBD;;AAwBA,UAAIA,KAAK,GAAG,UAAWvI,IAAX,EAAkB;AAC7B;AACAyH,QAAAA,KAAK,CAACI,OAAN,CAAe,KAAf;AACAJ,QAAAA,KAAK,CAACe,OAAN,CAAexI,IAAf,EAH6B,CAK7B;;AACAyH,QAAAA,KAAK,CAACxN,EAAN,CAAU,QAAV,EAAoB,MAApB,EAA4BwO,KAA5B;AACA,OAPD;;AASA,UAAIA,KAAK,GAAG,UAAWvO,CAAX,EAAcC,GAAd,EAAoB;AAC/B;AACAD,QAAAA,CAAC,CAACwO,cAAF,GAF+B,CAI/B;;AACAnR,QAAAA,GAAG,CAACoR,kBAAJ,CAAwBlB,KAAK,CAACrQ,CAAN,CAAS,SAAT,CAAxB,EAL+B,CAO/B;;AACA,YAAI2Q,QAAQ,GAAG;AACdC,UAAAA,MAAM,EAAE,4BADM;AAEdC,UAAAA,QAAQ,EAAE1J,EAFI;AAGdqK,UAAAA,cAAc,EAAEnB,KAAK,CAACrQ,CAAN,CAAS,QAAT,EAAoBmI,GAApB;AAHF,SAAf,CAR+B,CAc/B;;AACAnI,QAAAA,CAAC,CAAC8Q,IAAF,CAAQ;AACPC,UAAAA,GAAG,EAAE5Q,GAAG,CAACmE,GAAJ,CAAS,SAAT,CADE;AAEPpB,UAAAA,IAAI,EAAE/C,GAAG,CAAC6Q,cAAJ,CAAoBL,QAApB,CAFC;AAGPnQ,UAAAA,IAAI,EAAE,MAHC;AAIPyQ,UAAAA,QAAQ,EAAE,MAJH;AAKPC,UAAAA,OAAO,EAAEO;AALF,SAAR;AAOA,OAtBD;;AAwBA,UAAIA,KAAK,GAAG,UAAW7I,IAAX,EAAkB;AAC7B;AACAyH,QAAAA,KAAK,CAACe,OAAN,CAAexI,IAAf,EAF6B,CAI7B;;AACAxE,QAAAA,KAAK,CAACkK,aAAN;AACA,OAND,CAzFiB,CAiGjB;;;AACAgC,MAAAA,KAAK;AACL,KAhuBkC;AAkuBnCoB,IAAAA,YAAY,EAAE,UAAW5O,CAAX,EAAcC,GAAd,EAAoB;AACjC;AACA,UAAK,KAAK4O,aAAV,EAA0B;AACzBC,QAAAA,YAAY,CAAE,KAAKD,aAAP,CAAZ;AACA,OAJgC,CAMjC;AACA;;;AACA,WAAKA,aAAL,GAAqB,KAAK9I,UAAL,CAAiB,YAAY;AACjD,aAAKgJ,UAAL,CAAiB9O,GAAG,CAACoF,GAAJ,EAAjB;AACA,OAFoB,EAElB,GAFkB,CAArB;AAGA,KA7uBkC;AA+uBnC0J,IAAAA,UAAU,EAAE,UAAWC,OAAX,EAAqB;AAChC;AACA,UAAIC,QAAQ,GAAG,KAAK9Q,IAAL,CAAW,MAAX,CAAf;AACA,UAAI+Q,SAAS,GAAG7R,GAAG,CAAC8R,UAAJ,CAAgB,sBAAsBF,QAAtC,CAAhB;AACA,UAAIG,QAAQ,GAAG/R,GAAG,CAAC8R,UAAJ,CAAgB,sBAAsBH,OAAtC,CAAf,CAJgC,CAMhC;;AACA,WAAK/O,GAAL,CAASyK,WAAT,CAAsBwE,SAAtB,EAAkCnF,QAAlC,CAA4CqF,QAA5C;AACA,WAAKnP,GAAL,CAAS+F,IAAT,CAAe,WAAf,EAA4BgJ,OAA5B;AACA,WAAK/O,GAAL,CAASG,IAAT,CAAe,MAAf,EAAuB4O,OAAvB,EATgC,CAWhC;;AACA,UAAK,KAAKjG,GAAL,CAAU,KAAV,CAAL,EAAyB;AACxB,aAAKvH,GAAL,CAAU,KAAV,EAAkB6N,KAAlB;AACA,OAd+B,CAgBhC;;;AACA,UAAIC,MAAM,GAAG,KAAKpS,CAAL,CAAQ,6BAAR,CAAb;AACA,UAAIuB,SAAS,GAAG6Q,MAAM,CAACnI,QAAP,CACf,oBAAoB8H,QAApB,GAA+B,IADhB,CAAhB;AAGA,WAAK7P,GAAL,CAAU,cAAc6P,QAAxB,EAAkCxQ,SAAlC;AACAA,MAAAA,SAAS,CAACoH,MAAV,GAtBgC,CAwBhC;;AACA,UAAK,KAAKkD,GAAL,CAAU,cAAciG,OAAxB,CAAL,EAAyC;AACxC,YAAIO,YAAY,GAAG,KAAK/N,GAAL,CAAU,cAAcwN,OAAxB,CAAnB;AACA,aAAK7G,QAAL,CAAe,mBAAf,EAAqCqH,MAArC,CAA6CD,YAA7C;AACA,aAAKnQ,GAAL,CAAU,MAAV,EAAkB4P,OAAlB,EAHwC,CAIxC;;AACA;AACA,OA/B+B,CAiChC;;;AACA,UAAIS,QAAQ,GAAGvS,CAAC,CACf,kHADe,CAAhB;AAGA,WAAKiL,QAAL,CAAe,mBAAf,EAAqCqH,MAArC,CAA6CC,QAA7C,EArCgC,CAuChC;;AACA,UAAI5B,QAAQ,GAAG;AACdC,QAAAA,MAAM,EAAE,uCADM;AAEdxM,QAAAA,KAAK,EAAE,KAAKqJ,SAAL,EAFO;AAGd+E,QAAAA,MAAM,EAAE,KAAKjH,YAAL;AAHM,OAAf,CAxCgC,CA8ChC;;AACA,UAAIkH,GAAG,GAAGzS,CAAC,CAAC8Q,IAAF,CAAQ;AACjBC,QAAAA,GAAG,EAAE5Q,GAAG,CAACmE,GAAJ,CAAS,SAAT,CADY;AAEjBpB,QAAAA,IAAI,EAAE/C,GAAG,CAAC6Q,cAAJ,CAAoBL,QAApB,CAFW;AAGjBnQ,QAAAA,IAAI,EAAE,MAHW;AAIjByQ,QAAAA,QAAQ,EAAE,MAJO;AAKjBtO,QAAAA,OAAO,EAAE,IALQ;AAMjBuO,QAAAA,OAAO,EAAE,UAAWtI,IAAX,EAAkB;AAC1B;AACA,cAAK,CAAEA,IAAP,EAAc,OAFY,CAI1B;;AACA2J,UAAAA,QAAQ,CAACG,KAAT,CAAgB9J,IAAhB,EAL0B,CAO1B;;AACAzI,UAAAA,GAAG,CAACkE,QAAJ,CAAc,QAAd,EAAwB+N,MAAxB;AACA,SAfgB;AAgBjBhD,QAAAA,QAAQ,EAAE,YAAY;AACrB;AACAmD,UAAAA,QAAQ,CAACjJ,MAAT;AACA,eAAKpH,GAAL,CAAU,MAAV,EAAkB4P,OAAlB,EAHqB,CAIrB;AACA;AArBgB,OAAR,CAAV,CA/CgC,CAuEhC;;AACA,WAAK5P,GAAL,CAAU,KAAV,EAAiBuQ,GAAjB;AACA,KAxzBkC;AA0zBnCE,IAAAA,YAAY,EAAE,YAAY;AACzB;AACA,UAAIC,EAAE,GAAGzS,GAAG,CAACmE,GAAJ,CAAS,SAAT,CAAT,CAFyB,CAIzB;;AACA,UAAIgH,MAAM,GAAG,KAAKJ,SAAL,EAAb;;AACA,UAAKI,MAAL,EAAc;AACbsH,QAAAA,EAAE,GAAG5F,QAAQ,CAAE1B,MAAM,CAACrK,IAAP,CAAa,IAAb,CAAF,CAAR,IAAmCqK,MAAM,CAACrK,IAAP,CAAa,KAAb,CAAxC;AACA,OARwB,CAUzB;;;AACA,WAAKA,IAAL,CAAW,QAAX,EAAqB2R,EAArB;AACA;AAt0BkC,GAAlB,CAAlB;AAw0BA,CAz0BD,EAy0BK7N,MAz0BL;;;;;;;;;;ACAA,CAAE,UAAW/E,CAAX,EAAcC,SAAd,EAA0B;AAC3B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAECE,EAAAA,GAAG,CAACiI,eAAJ,GAAsB,UAAWuC,GAAX,EAAiB;AACtC,WAAOxK,GAAG,CAAC8O,gBAAJ,CAAsB;AAC5BtE,MAAAA,GAAG,EAAEA,GADuB;AAE5BQ,MAAAA,KAAK,EAAE;AAFqB,KAAtB,CAAP;AAIA,GALD;AAOA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEChL,EAAAA,GAAG,CAAC8O,gBAAJ,GAAuB,UAAWd,IAAX,EAAkB;AACxC;AACAA,IAAAA,IAAI,GAAGA,IAAI,IAAI,EAAf;AACA,QAAItM,QAAQ,GAAG,mBAAf;AACA,QAAImN,OAAO,GAAG,KAAd,CAJwC,CAMxC;;AACAb,IAAAA,IAAI,GAAGhO,GAAG,CAACiO,SAAJ,CAAeD,IAAf,EAAqB;AAC3BhH,MAAAA,EAAE,EAAE,EADuB;AAE3BwD,MAAAA,GAAG,EAAE,EAFsB;AAG3BnK,MAAAA,IAAI,EAAE,EAHqB;AAI3B2K,MAAAA,KAAK,EAAE,KAJoB;AAK3B0H,MAAAA,IAAI,EAAE,IALqB;AAM3BvH,MAAAA,MAAM,EAAE,KANmB;AAO3B4D,MAAAA,OAAO,EAAE,KAPkB;AAQ3B7E,MAAAA,KAAK,EAAE;AARoB,KAArB,CAAP,CAPwC,CAkBxC;;AACA,QAAK8D,IAAI,CAAChH,EAAV,EAAe;AACdtF,MAAAA,QAAQ,IAAI,eAAesM,IAAI,CAAChH,EAApB,GAAyB,IAArC;AACA,KArBuC,CAuBxC;;;AACA,QAAKgH,IAAI,CAACxD,GAAV,EAAgB;AACf9I,MAAAA,QAAQ,IAAI,gBAAgBsM,IAAI,CAACxD,GAArB,GAA2B,IAAvC;AACA,KA1BuC,CA4BxC;;;AACA,QAAKwD,IAAI,CAAC3N,IAAV,EAAiB;AAChBqB,MAAAA,QAAQ,IAAI,iBAAiBsM,IAAI,CAAC3N,IAAtB,GAA6B,IAAzC;AACA,KA/BuC,CAiCxC;;;AACA,QAAK2N,IAAI,CAAC0E,IAAV,EAAiB;AAChB7D,MAAAA,OAAO,GAAGb,IAAI,CAAC0E,IAAL,CAAU5I,QAAV,CAAoBpI,QAApB,CAAV;AACA,KAFD,MAEO,IAAKsM,IAAI,CAAC7C,MAAV,EAAmB;AACzB0D,MAAAA,OAAO,GAAGb,IAAI,CAAC7C,MAAL,CAAYnI,IAAZ,CAAkBtB,QAAlB,CAAV;AACA,KAFM,MAEA,IAAKsM,IAAI,CAACe,OAAV,EAAoB;AAC1BF,MAAAA,OAAO,GAAGb,IAAI,CAACe,OAAL,CAAatF,QAAb,CAAuB/H,QAAvB,CAAV;AACA,KAFM,MAEA,IAAKsM,IAAI,CAAC9D,KAAV,EAAkB;AACxB2E,MAAAA,OAAO,GAAGb,IAAI,CAAC9D,KAAL,CAAWyI,OAAX,CAAoBjR,QAApB,CAAV;AACA,KAFM,MAEA;AACNmN,MAAAA,OAAO,GAAGhP,CAAC,CAAE6B,QAAF,CAAX;AACA,KA5CuC,CA8CxC;;;AACA,QAAKsM,IAAI,CAAChD,KAAV,EAAkB;AACjB6D,MAAAA,OAAO,GAAGA,OAAO,CAAC+D,KAAR,CAAe,CAAf,EAAkB5E,IAAI,CAAChD,KAAvB,CAAV;AACA,KAjDuC,CAmDxC;;;AACA,WAAO6D,OAAP;AACA,GArDD;AAuDA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEC7O,EAAAA,GAAG,CAACM,cAAJ,GAAqB,UAAWF,MAAX,EAAoB;AACxC;AACA,QAAK,OAAOA,MAAP,KAAkB,QAAvB,EAAkC;AACjCA,MAAAA,MAAM,GAAGJ,GAAG,CAACiI,eAAJ,CAAqB7H,MAArB,CAAT;AACA,KAJuC,CAMxC;;;AACA,QAAI6D,KAAK,GAAG7D,MAAM,CAAC2C,IAAP,CAAa,KAAb,CAAZ;;AACA,QAAK,CAAEkB,KAAP,EAAe;AACdA,MAAAA,KAAK,GAAGjE,GAAG,CAAC6S,cAAJ,CAAoBzS,MAApB,CAAR;AACA,KAVuC,CAYxC;;;AACA,WAAO6D,KAAP;AACA,GAdD;AAgBA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAECjE,EAAAA,GAAG,CAAC6G,eAAJ,GAAsB,UAAWmH,IAAX,EAAkB;AACvC;AACA,QAAIa,OAAO,GAAG7O,GAAG,CAAC8O,gBAAJ,CAAsBd,IAAtB,CAAd,CAFuC,CAIvC;;AACA,QAAI8E,MAAM,GAAG,EAAb;AACAjE,IAAAA,OAAO,CAAC1I,IAAR,CAAc,YAAY;AACzB,UAAIlC,KAAK,GAAGjE,GAAG,CAACM,cAAJ,CAAoBT,CAAC,CAAE,IAAF,CAArB,CAAZ;AACAiT,MAAAA,MAAM,CAAChL,IAAP,CAAa7D,KAAb;AACA,KAHD,EANuC,CAWvC;;AACA,WAAO6O,MAAP;AACA,GAbD;AAeA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEC9S,EAAAA,GAAG,CAAC6S,cAAJ,GAAqB,UAAWzS,MAAX,EAAoB;AACxC;AACA,QAAI6D,KAAK,GAAG,IAAIjE,GAAG,CAACoK,WAAR,CAAqBhK,MAArB,CAAZ,CAFwC,CAIxC;;AACAJ,IAAAA,GAAG,CAACkE,QAAJ,CAAc,kBAAd,EAAkCD,KAAlC,EALwC,CAOxC;;AACA,WAAOA,KAAP;AACA,GATD;AAWA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEC,MAAI8O,YAAY,GAAG,IAAI/S,GAAG,CAACoD,KAAR,CAAe;AACjC4P,IAAAA,QAAQ,EAAE,CADuB;AAGjC7G,IAAAA,UAAU,EAAE,YAAY;AACvB;AACA,UAAI9I,OAAO,GAAG,CAAE,SAAF,EAAa,OAAb,EAAsB,QAAtB,EAAgC,QAAhC,CAAd,CAFuB,CAIvB;;AACAA,MAAAA,OAAO,CAACyD,GAAR,CAAa,UAAW2J,MAAX,EAAoB;AAChC,aAAKwC,eAAL,CAAsBxC,MAAtB;AACA,OAFD,EAEG,IAFH;AAGA,KAXgC;AAajCwC,IAAAA,eAAe,EAAE,UAAWxC,MAAX,EAAoB;AACpC;AACA,UAAIyC,YAAY,GAAGzC,MAAM,GAAG,gBAA5B,CAFoC,CAEU;;AAC9C,UAAI0C,YAAY,GAAG1C,MAAM,GAAG,eAA5B,CAHoC,CAGS;;AAC7C,UAAI2C,WAAW,GAAG3C,MAAM,GAAG,aAA3B,CAJoC,CAIM;AAE1C;;AACA,UAAI5O,QAAQ,GAAG,UAAWe;AAAI;AAAf,QAAuC;AACrD;AACA,YAAIyQ,YAAY,GAAGrT,GAAG,CAAC6G,eAAJ,CAAqB;AAAEsE,UAAAA,MAAM,EAAEvI;AAAV,SAArB,CAAnB,CAFqD,CAIrD;;AACA,YAAKyQ,YAAY,CAAC3L,MAAlB,EAA2B;AAC1B;AACA,cAAIsG,IAAI,GAAGhO,GAAG,CAACsT,SAAJ,CAAerR,SAAf,CAAX,CAF0B,CAI1B;;AACA+L,UAAAA,IAAI,CAACxM,MAAL,CAAa,CAAb,EAAgB,CAAhB,EAAmB0R,YAAnB,EAAiCG,YAAjC;AACArT,UAAAA,GAAG,CAACkE,QAAJ,CAAalC,KAAb,CAAoB,IAApB,EAA0BgM,IAA1B;AACA;AACD,OAbD,CAPoC,CAsBpC;;;AACA,UAAIuF,cAAc,GAAG,UACpBF;AAAa;AADO,QAEnB;AACD;AACA,YAAIrF,IAAI,GAAGhO,GAAG,CAACsT,SAAJ,CAAerR,SAAf,CAAX,CAFC,CAID;;AACA+L,QAAAA,IAAI,CAACwF,OAAL,CAAcL,YAAd,EALC,CAOD;;AACAE,QAAAA,YAAY,CAACvM,GAAb,CAAkB,UAAWH,WAAX,EAAyB;AAC1C;AACAqH,UAAAA,IAAI,CAAE,CAAF,CAAJ,GAAYrH,WAAZ;AACA3G,UAAAA,GAAG,CAACkE,QAAJ,CAAalC,KAAb,CAAoB,IAApB,EAA0BgM,IAA1B;AACA,SAJD;AAKA,OAfD,CAvBoC,CAwCpC;;;AACA,UAAIyF,cAAc,GAAG,UACpB9M;AAAY;AADQ,QAEnB;AACD;AACA,YAAIqH,IAAI,GAAGhO,GAAG,CAACsT,SAAJ,CAAerR,SAAf,CAAX,CAFC,CAID;;AACA+L,QAAAA,IAAI,CAACwF,OAAL,CAAcL,YAAd,EALC,CAOD;;AACA,YAAIO,UAAU,GAAG,CAAE,MAAF,EAAU,MAAV,EAAkB,KAAlB,CAAjB;AACAA,QAAAA,UAAU,CAAC5M,GAAX,CAAgB,UAAW6M,SAAX,EAAuB;AACtC3F,UAAAA,IAAI,CAAE,CAAF,CAAJ,GACCmF,YAAY,GACZ,GADA,GAEAQ,SAFA,GAGA,GAHA,GAIAhN,WAAW,CAACxC,GAAZ,CAAiBwP,SAAjB,CALD;AAMA3T,UAAAA,GAAG,CAACkE,QAAJ,CAAalC,KAAb,CAAoB,IAApB,EAA0BgM,IAA1B;AACA,SARD,EATC,CAmBD;;AACAA,QAAAA,IAAI,CAACxM,MAAL,CAAa,CAAb,EAAgB,CAAhB,EApBC,CAsBD;;AACAmF,QAAAA,WAAW,CAACwG,OAAZ,CAAqBiG,WAArB,EAAkCpF,IAAlC;AACA,OA1BD,CAzCoC,CAqEpC;;;AACAhO,MAAAA,GAAG,CAAC4T,SAAJ,CAAenD,MAAf,EAAuB5O,QAAvB,EAAiC,CAAjC;AACA7B,MAAAA,GAAG,CAAC4T,SAAJ,CAAeV,YAAf,EAA6BK,cAA7B,EAA6C,CAA7C;AACAvT,MAAAA,GAAG,CAAC4T,SAAJ,CAAeT,YAAf,EAA6BM,cAA7B,EAA6C,CAA7C;AACA;AAtFgC,GAAf,CAAnB;AAyFA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAII,YAAY,GAAG,IAAI7T,GAAG,CAACoD,KAAR,CAAe;AACjC4D,IAAAA,EAAE,EAAE,cAD6B;AAGjCjC,IAAAA,MAAM,EAAE;AACP,sBAAgB,UADT;AAEP,oCAA8B,iBAFvB;AAGP,0BAAoB;AAHb,KAHyB;AASjC1B,IAAAA,OAAO,EAAE;AACRyQ,MAAAA,oBAAoB,EAAE,gBADd;AAER/P,MAAAA,qBAAqB,EAAE,gBAFf;AAGRL,MAAAA,mBAAmB,EAAE,eAHb;AAIRC,MAAAA,wBAAwB,EAAE,mBAJlB;AAKRF,MAAAA,sBAAsB,EAAE;AALhB,KATwB;AAiBjCsQ,IAAAA,QAAQ,EAAE,UAAWpR,CAAX,EAAcC,GAAd,EAAoB;AAC7B;AACA,UAAIkQ,MAAM,GAAG9S,GAAG,CAAC6G,eAAJ,EAAb,CAF6B,CAI7B;;AACAiM,MAAAA,MAAM,CAAChM,GAAP,CAAY,UAAW7C,KAAX,EAAmB;AAC9BA,QAAAA,KAAK,CAACsJ,MAAN;AACA,OAFD;AAGA,KAzBgC;AA2BjCyG,IAAAA,iBAAiB,EAAE,UAAW/P,KAAX,EAAmB;AACrC,WAAKgQ,YAAL,CAAmBhQ,KAAK,CAACrB,GAAN,CAAUuI,MAAV,EAAnB;AACA,KA7BgC;AA+BjC+I,IAAAA,eAAe,EAAE,UAAWvR,CAAX,EAAcC,GAAd,EAAoB;AACpC;AACA,UAAKA,GAAG,CAACoK,QAAJ,CAAc,aAAd,CAAL,EAAqC,OAFD,CAIpC;;AACApK,MAAAA,GAAG,CAACuR,QAAJ,CAAc;AACbC,QAAAA,MAAM,EAAE,sBADK;AAEbC,QAAAA,WAAW,EAAE,iBAFA;AAGbC,QAAAA,KAAK,EAAE,UAAW3R,CAAX,EAAc4R,EAAd,EAAmB;AACzB,cAAItQ,KAAK,GAAGjE,GAAG,CAACM,cAAJ,CAAoBiU,EAAE,CAACC,IAAvB,CAAZ;AACAD,UAAAA,EAAE,CAACE,WAAH,CAAeC,MAAf,CAAuBH,EAAE,CAACC,IAAH,CAAQE,MAAR,EAAvB;AACA1U,UAAAA,GAAG,CAACkE,QAAJ,CAAc,wBAAd,EAAwCD,KAAxC,EAA+CrB,GAA/C;AACA,SAPY;AAQb+R,QAAAA,MAAM,EAAE,UAAWhS,CAAX,EAAc4R,EAAd,EAAmB;AAC1B,cAAItQ,KAAK,GAAGjE,GAAG,CAACM,cAAJ,CAAoBiU,EAAE,CAACC,IAAvB,CAAZ;AACAxU,UAAAA,GAAG,CAACkE,QAAJ,CAAc,uBAAd,EAAuCD,KAAvC,EAA8CrB,GAA9C;AACA;AAXY,OAAd;AAaA,KAjDgC;AAmDjCgS,IAAAA,cAAc,EAAE,UAAW3Q,KAAX,EAAkB2K,KAAlB,EAA0B;AACzC,WAAKqF,YAAL,CAAmBrF,KAAnB;AACA,KArDgC;AAuDjCiG,IAAAA,cAAc,EAAE,UAAW5Q,KAAX,EAAkB2K,KAAlB,EAA0B;AACzC3K,MAAAA,KAAK,CAACuO,YAAN;AACA,WAAKyB,YAAL,CAAmBrF,KAAnB;AACA,KA1DgC;AA4DjCkG,IAAAA,aAAa,EAAE,UAAW7Q,KAAX,EAAmB;AACjC;AACAA,MAAAA,KAAK,CAACiH,SAAN,GAAkBpE,GAAlB,CAAuB,UAAWoD,KAAX,EAAmB;AACzCA,QAAAA,KAAK,CAACxJ,MAAN,CAAc;AAAED,UAAAA,OAAO,EAAE;AAAX,SAAd;AACA,OAFD;AAGA,KAjEgC;AAmEjCsU,IAAAA,iBAAiB,EAAE,UAAW9Q,KAAX,EAAmB,CACrC;AACA;AACA,KAtEgC;AAwEjC+Q,IAAAA,gBAAgB,EAAE,UAAW/Q,KAAX,EAAkB8F,QAAlB,EAA6B;AAC9C;AACA,UAAID,QAAQ,GAAGC,QAAQ,CAACmB,SAAT,EAAf;;AACA,UAAKpB,QAAQ,CAACpC,MAAd,EAAuB;AACtB;AACAoC,QAAAA,QAAQ,CAAChD,GAAT,CAAc,UAAWoD,KAAX,EAAmB;AAChC;AACAA,UAAAA,KAAK,CAAC0F,IAAN,GAFgC,CAIhC;;AACA1F,UAAAA,KAAK,CAACsI,YAAN;AACA,SAND,EAFsB,CAUtB;;AACAxS,QAAAA,GAAG,CAACkE,QAAJ,CACC,yBADD,EAEC4F,QAFD,EAGCC,QAHD,EAIC9F,KAJD;AAMA,OApB6C,CAsB9C;;;AACA,WAAK+P,iBAAL,CAAwBjK,QAAxB;AACA,KAhGgC;AAkGjCkK,IAAAA,YAAY,EAAE,UAAWrF,KAAX,EAAmB;AAChC;AACA,UAAIkE,MAAM,GAAG9S,GAAG,CAAC6G,eAAJ,CAAqB;AACjC6L,QAAAA,IAAI,EAAE9D;AAD2B,OAArB,CAAb,CAFgC,CAMhC;;AACA,UAAK,CAAEkE,MAAM,CAACpL,MAAd,EAAuB;AACtBkH,QAAAA,KAAK,CAAClC,QAAN,CAAgB,QAAhB;AACA;AACA,OAV+B,CAYhC;;;AACAkC,MAAAA,KAAK,CAACvB,WAAN,CAAmB,QAAnB,EAbgC,CAehC;;AACAyF,MAAAA,MAAM,CAAChM,GAAP,CAAY,UAAW7C,KAAX,EAAkB0L,CAAlB,EAAsB;AACjC1L,QAAAA,KAAK,CAACnD,IAAN,CAAY,YAAZ,EAA0B6O,CAA1B;AACA,OAFD;AAGA,KArHgC;AAuHjCpG,IAAAA,UAAU,EAAE,UAAW5G,CAAX,EAAcC,GAAd,EAAoB;AAC/B,UAAIgM,KAAK,GAAGhM,GAAG,CACbC,OADU,CACD,YADC,EAEV4G,QAFU,CAEA,iBAFA,CAAZ;AAGA,WAAKwL,QAAL,CAAerG,KAAf;AACA,KA5HgC;AA8HjCqG,IAAAA,QAAQ,EAAE,UAAWrG,KAAX,EAAmB;AAC5B;AACA,UAAInG,IAAI,GAAG5I,CAAC,CAAE,iBAAF,CAAD,CAAuB4I,IAAvB,EAAX;AACA,UAAI7F,GAAG,GAAG/C,CAAC,CAAE4I,IAAF,CAAX;AACA,UAAIoH,MAAM,GAAGjN,GAAG,CAACG,IAAJ,CAAU,IAAV,CAAb;AACA,UAAImM,MAAM,GAAGlP,GAAG,CAACmP,MAAJ,CAAY,QAAZ,CAAb,CAL4B,CAO5B;;AACA,UAAIC,SAAS,GAAGpP,GAAG,CAACiJ,SAAJ,CAAe;AAC9BwF,QAAAA,MAAM,EAAE7L,GADsB;AAE9ByM,QAAAA,MAAM,EAAEQ,MAFsB;AAG9BP,QAAAA,OAAO,EAAEJ,MAHqB;AAI9B1D,QAAAA,MAAM,EAAE,UAAW5I,GAAX,EAAgBsS,IAAhB,EAAuB;AAC9BtG,UAAAA,KAAK,CAACpD,MAAN,CAAc0J,IAAd;AACA;AAN6B,OAAf,CAAhB,CAR4B,CAiB5B;;AACA,UAAInL,QAAQ,GAAG/J,GAAG,CAACM,cAAJ,CAAoB8O,SAApB,CAAf,CAlB4B,CAoB5B;;AACArF,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,KAAf,EAAsBoO,MAAtB;AACAnF,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,IAAf,EAAqB,CAArB;AACAiJ,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,OAAf,EAAwB,EAAxB;AACAiJ,MAAAA,QAAQ,CAACjJ,IAAT,CAAe,MAAf,EAAuB,EAAvB,EAxB4B,CA0B5B;;AACAsO,MAAAA,SAAS,CAACzG,IAAV,CAAgB,UAAhB,EAA4BuG,MAA5B;AACAE,MAAAA,SAAS,CAACzG,IAAV,CAAgB,SAAhB,EAA2BuG,MAA3B,EA5B4B,CA8B5B;;AACAnF,MAAAA,QAAQ,CAACyI,YAAT,GA/B4B,CAiC5B;;AACA,UAAIjD,MAAM,GAAGxF,QAAQ,CAAC5E,MAAT,CAAiB,OAAjB,CAAb;AACAuD,MAAAA,UAAU,CAAE,YAAY;AACvB6G,QAAAA,MAAM,CAACpC,OAAP,CAAgB,OAAhB;AACA,OAFS,EAEP,GAFO,CAAV,CAnC4B,CAuC5B;;AACApD,MAAAA,QAAQ,CAACtE,IAAT,GAxC4B,CA0C5B;;AACA,WAAKwO,YAAL,CAAmBrF,KAAnB,EA3C4B,CA6C5B;;AACA5O,MAAAA,GAAG,CAACkE,QAAJ,CAAc,kBAAd,EAAkC6F,QAAlC;AACA/J,MAAAA,GAAG,CAACkE,QAAJ,CAAc,qBAAd,EAAqC6F,QAArC;AACA;AA9KgC,GAAf,CAAnB;AAgLA,CAtcD,EAscKnF,MAtcL;;;;;;;;;;ACAA,CAAE,UAAW/E,CAAX,EAAcC,SAAd,EAA0B;AAC3B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEC,MAAIqV,eAAe,GAAG,IAAInV,GAAG,CAACoD,KAAR,CAAe;AACpC4D,IAAAA,EAAE,EAAE,iBADgC;AAEpCoO,IAAAA,IAAI,EAAE,OAF8B;AAIpCrQ,IAAAA,MAAM,EAAE;AACP,kCAA4B,gBADrB;AAEP,mCAA6B,iBAFtB;AAGP,qCAA+B,mBAHxB;AAIP,uCAAiC;AAJ1B,KAJ4B;AAWpCoH,IAAAA,UAAU,EAAE,YAAY;AACvB,WAAKvJ,GAAL,GAAW/C,CAAC,CAAE,4BAAF,CAAZ;AACA,WAAKwV,iBAAL;AACA,KAdmC;AAgBpCC,IAAAA,cAAc,EAAE,UAAW3S,CAAX,EAAcC,GAAd,EAAoB;AACnC,WAAK2S,OAAL,CAAc3S,GAAG,CAACC,OAAJ,CAAa,IAAb,CAAd;AACA,KAlBmC;AAoBpC2S,IAAAA,iBAAiB,EAAE,UAAW7S,CAAX,EAAcC,GAAd,EAAoB;AACtC,WAAK6S,UAAL,CAAiB7S,GAAG,CAACC,OAAJ,CAAa,IAAb,CAAjB;AACA,KAtBmC;AAwBpC6S,IAAAA,kBAAkB,EAAE,UAAW/S,CAAX,EAAcC,GAAd,EAAoB;AACvC,WAAK+S,UAAL,CAAiB/S,GAAG,CAACC,OAAJ,CAAa,IAAb,CAAjB;AACA,KA1BmC;AA4BpCgG,IAAAA,eAAe,EAAE,UAAWlG,CAAX,EAAcC,GAAd,EAAoB;AACpC,WAAKkG,QAAL;AACA,KA9BmC;AAgCpCyM,IAAAA,OAAO,EAAE,UAAWK,GAAX,EAAiB;AACzB5V,MAAAA,GAAG,CAACiJ,SAAJ,CAAe2M,GAAf;AACA,WAAKP,iBAAL;AACA,KAnCmC;AAqCpCI,IAAAA,UAAU,EAAE,UAAWG,GAAX,EAAiB;AAC5B,UAAKA,GAAG,CAACnM,QAAJ,CAAc,IAAd,EAAqB/B,MAArB,IAA+B,CAApC,EAAwC;AACvCkO,QAAAA,GAAG,CAAC/S,OAAJ,CAAa,aAAb,EAA6BsG,MAA7B;AACA,OAFD,MAEO;AACNyM,QAAAA,GAAG,CAACzM,MAAJ;AACA,OAL2B,CAO5B;;;AACA,UAAIJ,MAAM,GAAG,KAAKlJ,CAAL,CAAQ,mBAAR,CAAb;AACAkJ,MAAAA,MAAM,CAAC/F,IAAP,CAAa,IAAb,EAAoBkE,IAApB,CAA0BlH,GAAG,CAACoH,EAAJ,CAAQ,0BAAR,CAA1B;AAEA,WAAKiO,iBAAL;AACA,KAjDmC;AAmDpCM,IAAAA,UAAU,EAAE,UAAW3Q,KAAX,EAAmB;AAC9B;AACA,UAAI+D,MAAM,GAAG/D,KAAK,CAACnC,OAAN,CAAe,aAAf,CAAb;AACA,UAAIwP,MAAM,GAAGrN,KAAK,CAChBhC,IADW,CACL,iBADK,EAEX2F,IAFW,CAEL,MAFK,EAGX2G,OAHW,CAGF,SAHE,EAGS,EAHT,CAAb,CAH8B,CAQ9B;;AACA,UAAIuG,QAAQ,GAAG,EAAf;AACAA,MAAAA,QAAQ,CAACpF,MAAT,GAAkB,sCAAlB;AACAoF,MAAAA,QAAQ,CAACC,IAAT,GAAgB9V,GAAG,CAACsN,SAAJ,CAAetI,KAAf,EAAsBqN,MAAtB,CAAhB;AACAwD,MAAAA,QAAQ,CAACC,IAAT,CAAc9O,EAAd,GAAmBhC,KAAK,CAACjC,IAAN,CAAY,IAAZ,CAAnB;AACA8S,MAAAA,QAAQ,CAACC,IAAT,CAAcC,KAAd,GAAsBhN,MAAM,CAAChG,IAAP,CAAa,IAAb,CAAtB,CAb8B,CAe9B;;AACA/C,MAAAA,GAAG,CAAC+F,OAAJ,CAAaf,KAAK,CAAChC,IAAN,CAAY,UAAZ,CAAb,EAhB8B,CAkB9B;;AACAnD,MAAAA,CAAC,CAAC8Q,IAAF,CAAQ;AACPC,QAAAA,GAAG,EAAE5Q,GAAG,CAACmE,GAAJ,CAAS,SAAT,CADE;AAEPpB,QAAAA,IAAI,EAAE/C,GAAG,CAAC6Q,cAAJ,CAAoBgF,QAApB,CAFC;AAGPxV,QAAAA,IAAI,EAAE,MAHC;AAIPyQ,QAAAA,QAAQ,EAAE,MAJH;AAKPC,QAAAA,OAAO,EAAE,UAAWtI,IAAX,EAAkB;AAC1B,cAAK,CAAEA,IAAP,EAAc;AACdzD,UAAAA,KAAK,CAACgR,WAAN,CAAmBvN,IAAnB;AACA;AARM,OAAR;AAUA,KAhFmC;AAkFpCK,IAAAA,QAAQ,EAAE,YAAY;AACrB;AACA,UAAIC,MAAM,GAAG,KAAKlJ,CAAL,CAAQ,kBAAR,CAAb,CAFqB,CAIrB;;AACAmJ,MAAAA,OAAO,GAAGhJ,GAAG,CAACiJ,SAAJ,CAAeF,MAAf,CAAV,CALqB,CAOrB;;AACAC,MAAAA,OAAO,CAAChG,IAAR,CAAc,IAAd,EAAqBkE,IAArB,CAA2BlH,GAAG,CAACoH,EAAJ,CAAQ,IAAR,CAA3B,EARqB,CAUrB;;AACA4B,MAAAA,OAAO,CAAChG,IAAR,CAAc,IAAd,EAAqBkG,GAArB,CAA0B,QAA1B,EAAqCC,MAArC,GAXqB,CAarB;;AACA,WAAKkM,iBAAL;AACA,KAjGmC;AAmGpCA,IAAAA,iBAAiB,EAAE,YAAY;AAC9B,UAAItM,MAAM,GAAG,KAAKlJ,CAAL,CAAQ,kBAAR,CAAb;AAEA,UAAIoW,WAAW,GAAGlN,MAAM,CAAClG,OAAP,CAAgB,cAAhB,CAAlB;AAEA,UAAIqT,UAAU,GAAGD,WAAW,CAACjT,IAAZ,CAAkB,eAAlB,EAAoC0E,MAArD;;AAEA,UAAKwO,UAAU,GAAG,CAAlB,EAAsB;AACrBD,QAAAA,WAAW,CAACvJ,QAAZ,CAAsB,sBAAtB;AACA,OAFD,MAEO;AACNuJ,QAAAA,WAAW,CAAC5I,WAAZ,CAAyB,sBAAzB;AACA;AACD;AA/GmC,GAAf,CAAtB;AAiHA,CA9HD,EA8HKzI,MA9HL;;;;;;;;;;ACAA,CAAE,UAAW/E,CAAX,EAAcC,SAAd,EAA0B;AAC3B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEC,MAAIqW,OAAO,GAAG,UAAW9V,IAAX,EAAkB;AAC/B,WAAOL,GAAG,CAACoW,aAAJ,CAAmB/V,IAAI,IAAI,EAA3B,IAAkC,cAAzC;AACA,GAFD;AAIA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAECL,EAAAA,GAAG,CAAC0J,oBAAJ,GAA2B,UAAWzI,KAAX,EAAmB;AAC7C,QAAIoV,KAAK,GAAGpV,KAAK,CAACiH,SAAlB;AACA,QAAIoO,GAAG,GAAGH,OAAO,CAAEE,KAAK,CAAChW,IAAN,GAAa,GAAb,GAAmBgW,KAAK,CAACzV,IAA3B,CAAjB;AACA,SAAK2V,MAAL,CAAaD,GAAb,IAAqBrV,KAArB;AACA,GAJD;AAMA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAECjB,EAAAA,GAAG,CAACwW,eAAJ,GAAsB,UAAWvS,KAAX,EAAmB;AACxC;AACA,QAAI5D,IAAI,GAAG4D,KAAK,CAACE,GAAN,CAAW,SAAX,KAA0B,EAArC;AACA,QAAIvD,IAAI,GAAGqD,KAAK,CAACE,GAAN,CAAW,MAAX,KAAuB,EAAlC;AACA,QAAImS,GAAG,GAAGH,OAAO,CAAE9V,IAAI,GAAG,GAAP,GAAaO,IAAf,CAAjB;AACA,QAAIK,KAAK,GAAGjB,GAAG,CAACuW,MAAJ,CAAYD,GAAZ,KAAqB,IAAjC,CALwC,CAOxC;;AACA,QAAKrV,KAAK,KAAK,IAAf,EAAsB,OAAO,KAAP,CARkB,CAUxC;;AACA,QAAIiC,OAAO,GAAG,IAAIjC,KAAJ,CAAWgD,KAAX,CAAd,CAXwC,CAaxC;;AACA,WAAOf,OAAP;AACA,GAfD;AAiBA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEClD,EAAAA,GAAG,CAACyW,eAAJ,GAAsB,UAAWxS,KAAX,EAAmB;AACxC;AACA,QAAKA,KAAK,YAAYW,MAAtB,EAA+B;AAC9BX,MAAAA,KAAK,GAAGjE,GAAG,CAAC0W,QAAJ,CAAczS,KAAd,CAAR;AACA,KAJuC,CAMxC;;;AACA,WAAOA,KAAK,CAACf,OAAb;AACA,GARD;AAUA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEC,MAAIyT,eAAe,GAAG,IAAI3W,GAAG,CAACoD,KAAR,CAAe;AACpCC,IAAAA,OAAO,EAAE;AACRuT,MAAAA,SAAS,EAAE;AADH,KAD2B;AAIpCC,IAAAA,UAAU,EAAE,UAAW5S,KAAX,EAAmB;AAC9BA,MAAAA,KAAK,CAACf,OAAN,GAAgBlD,GAAG,CAACwW,eAAJ,CAAqBvS,KAArB,CAAhB;AACA;AANmC,GAAf,CAAtB;AASA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAECjE,EAAAA,GAAG,CAAC8E,YAAJ,GAAmB9E,GAAG,CAACoD,KAAJ,CAAUlC,MAAV,CAAkB;AACpC+C,IAAAA,KAAK,EAAE,KAD6B;AAEpC5D,IAAAA,IAAI,EAAE,EAF8B;AAGpCO,IAAAA,IAAI,EAAE,EAH8B;AAIpCwU,IAAAA,IAAI,EAAE,OAJ8B;AAKpC/K,IAAAA,UAAU,EAAE,YALwB;AAOpCtF,IAAAA,MAAM,EAAE;AACPuF,MAAAA,MAAM,EAAE;AADD,KAP4B;AAWpCG,IAAAA,KAAK,EAAE,UAAWxG,KAAX,EAAmB;AACzB;AACA,UAAI7D,MAAM,GAAG6D,KAAK,CAACrB,GAAnB,CAFyB,CAIzB;;AACA,WAAKA,GAAL,GAAWxC,MAAX;AACA,WAAK6D,KAAL,GAAaA,KAAb;AACA,WAAK6S,YAAL,GAAoB1W,MAAM,CAACyC,OAAP,CAAgB,mBAAhB,CAApB;AACA,WAAK8D,WAAL,GAAmB3G,GAAG,CAACM,cAAJ,CAAoB,KAAKwW,YAAzB,CAAnB,CARyB,CAUzB;;AACAjX,MAAAA,CAAC,CAACqB,MAAF,CAAU,KAAK6B,IAAf,EAAqBkB,KAAK,CAAClB,IAA3B;AACA,KAvBmC;AAyBpCoJ,IAAAA,UAAU,EAAE,YAAY;AACvB,WAAKnG,MAAL;AACA,KA3BmC;AA6BpCA,IAAAA,MAAM,EAAE,YAAY,CACnB;AACA;AA/BmC,GAAlB,CAAnB;AAkCA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAI+Q,yBAAyB,GAAG/W,GAAG,CAAC8E,YAAJ,CAAiB5D,MAAjB,CAAyB;AACxDb,IAAAA,IAAI,EAAE,EADkD;AAExDO,IAAAA,IAAI,EAAE,EAFkD;AAGxDoF,IAAAA,MAAM,EAAE,YAAY;AACnB,UAAIb,MAAM,GAAG,KAAKtF,CAAL,CAAQ,6BAAR,CAAb;;AACA,UAAKsF,MAAM,CAAC6C,GAAP,MAAgB,OAArB,EAA+B;AAC9B,aAAKnI,CAAL,CAAQ,oBAAR,EAA+BmI,GAA/B,CAAoC7C,MAAM,CAAC6C,GAAP,EAApC;AACA;AACD;AARuD,GAAzB,CAAhC;AAWA,MAAIgP,mCAAmC,GAAGD,yBAAyB,CAAC7V,MAA1B,CACzC;AACCb,IAAAA,IAAI,EAAE,aADP;AAECO,IAAAA,IAAI,EAAE;AAFP,GADyC,CAA1C;AAOA,MAAIqW,kCAAkC,GAAGF,yBAAyB,CAAC7V,MAA1B,CAAkC;AAC1Eb,IAAAA,IAAI,EAAE,aADoE;AAE1EO,IAAAA,IAAI,EAAE;AAFoE,GAAlC,CAAzC;AAKAZ,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0BsN,mCAA1B;AACAhX,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0BuN,kCAA1B;AAEA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAIC,uCAAuC,GAAGH,yBAAyB,CAAC7V,MAA1B,CAC7C;AACCb,IAAAA,IAAI,EAAE,kBADP;AAECO,IAAAA,IAAI,EAAE;AAFP,GAD6C,CAA9C;AAOA,MAAIuW,sCAAsC,GAAGJ,yBAAyB,CAAC7V,MAA1B,CAC5C;AACCb,IAAAA,IAAI,EAAE,kBADP;AAECO,IAAAA,IAAI,EAAE;AAFP,GAD4C,CAA7C;AAOAZ,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0BwN,uCAA1B;AACAlX,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0ByN,sCAA1B;AAEA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAIC,mCAAmC,GAAGL,yBAAyB,CAAC7V,MAA1B,CACzC;AACCb,IAAAA,IAAI,EAAE,aADP;AAECO,IAAAA,IAAI,EAAE;AAFP,GADyC,CAA1C;AAOA,MAAIyW,kCAAkC,GAAGN,yBAAyB,CAAC7V,MAA1B,CAAkC;AAC1Eb,IAAAA,IAAI,EAAE,aADoE;AAE1EO,IAAAA,IAAI,EAAE;AAFoE,GAAlC,CAAzC;AAKAZ,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0B0N,mCAA1B;AACApX,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0B2N,kCAA1B;AAEA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACC,MAAIC,uBAAuB,GAAGtX,GAAG,CAAC8E,YAAJ,CAAiB5D,MAAjB,CAAyB;AACtDb,IAAAA,IAAI,EAAE,cADgD;AAEtDO,IAAAA,IAAI,EAAE,gBAFgD;AAGtDoF,IAAAA,MAAM,EAAE,YAAY;AACnB,UAAIuR,sBAAsB,GAAG,KAAK5Q,WAAL,CAAiBmE,QAAjB,CAC5B,eAD4B,CAA7B;AAGA,UAAI0M,sBAAsB,GAAG,KAAK7Q,WAAL,CAAiBmE,QAAjB,CAC5B,eAD4B,CAA7B;AAGA,UAAI2M,UAAU,GAAGF,sBAAsB,CACrCvU,IADe,CACT,qCADS,EAEfmI,MAFe,CAEP,OAFO,EAGfuM,QAHe,GAIfC,IAJe,EAAjB;AAKA,UAAIC,mBAAmB,GAAGJ,sBAAsB,CAACxU,IAAvB,CACzB,oBADyB,CAA1B;AAGA,UAAI6U,IAAI,GAAG7X,GAAG,CAACmE,GAAJ,CAAS,iBAAT,CAAX;;AAEA,UAAK,KAAKF,KAAL,CAAW+D,GAAX,EAAL,EAAwB;AACvByP,QAAAA,UAAU,CAACzB,WAAX,CAAwB6B,IAAI,CAACC,WAA7B;AACAF,QAAAA,mBAAmB,CAACjP,IAApB,CACC,aADD,EAEC,uBAFD;AAIA,OAND,MAMO;AACN8O,QAAAA,UAAU,CAACzB,WAAX,CAAwB6B,IAAI,CAACE,UAA7B;AACAH,QAAAA,mBAAmB,CAACjP,IAApB,CAA0B,aAA1B,EAAyC,SAAzC;AACA;AACD;AA9BqD,GAAzB,CAA9B;AAgCA3I,EAAAA,GAAG,CAAC0J,oBAAJ,CAA0B4N,uBAA1B;AACA,CApSD,EAoSK1S,MApSL;;;;;;;;;;ACAA,CAAE,UAAW/E,CAAX,EAAcC,SAAd,EAA0B;AAC3B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEC,MAAIkY,iBAAiB,GAAG,IAAIhY,GAAG,CAACoD,KAAR,CAAe;AACtC4D,IAAAA,EAAE,EAAE,mBADkC;AAGtCjC,IAAAA,MAAM,EAAE;AACP,sBAAgB,UADT;AAEP,2BAAqB,SAFd;AAGP,6BAAuB;AAHhB,KAH8B;AAStCkT,IAAAA,OAAO,EAAE;AACRC,MAAAA,gBAAgB,EAAE;AADV,KAT6B;AAatCnE,IAAAA,QAAQ,EAAE,UAAWpR,CAAX,EAAcC,GAAd,EAAoB;AAC7B;AACA,UAAIuV,MAAM,GAAGtY,CAAC,CAAE,mBAAF,CAAd,CAF6B,CAI7B;;AACA,UAAK,CAAEsY,MAAM,CAACnQ,GAAP,EAAP,EAAsB;AACrB;AACArF,QAAAA,CAAC,CAACwO,cAAF,GAFqB,CAIrB;;AACAnR,QAAAA,GAAG,CAACoY,UAAJ,CAAgBxV,GAAhB,EALqB,CAOrB;;AACAkL,QAAAA,KAAK,CAAE9N,GAAG,CAACoH,EAAJ,CAAQ,+BAAR,CAAF,CAAL,CARqB,CAUrB;;AACA+Q,QAAAA,MAAM,CAAChL,OAAP,CAAgB,OAAhB;AACA;AACD,KA/BqC;AAiCtCkL,IAAAA,OAAO,EAAE,UAAW1V,CAAX,EAAe;AACvBA,MAAAA,CAAC,CAACwO,cAAF;AACA,KAnCqC;AAqCtCmH,IAAAA,YAAY,EAAE,UAAW3V,CAAX,EAAe;AAC5B,UAAI4V,MAAM,GAAG7J,OAAO,CAAE1O,GAAG,CAACoH,EAAJ,CAAQ,8BAAR,CAAF,CAApB;;AACA,UAAK,CAAEmR,MAAP,EAAgB;AACf5V,QAAAA,CAAC,CAACwO,cAAF;AACA;AACD,KA1CqC;AA4CtCqH,IAAAA,mBAAmB,EAAE,UAAWxK,IAAX,EAAkB;AACtCA,MAAAA,IAAI,CAACyK,OAAL,GAAe,IAAf;AACA,aAAOzK,IAAP;AACA;AA/CqC,GAAf,CAAxB;AAkDA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAI0K,oBAAoB,GAAG,IAAI1Y,GAAG,CAACoD,KAAR,CAAe;AACzC4D,IAAAA,EAAE,EAAE,sBADqC;AAEzCoO,IAAAA,IAAI,EAAE,SAFmC;AAIzCrQ,IAAAA,MAAM,EAAE;AACPuF,MAAAA,MAAM,EAAE;AADD,KAJiC;AAQzC6B,IAAAA,UAAU,EAAE,YAAY;AACvB;AACA,UAAIzG,IAAI,GAAG7F,CAAC,CAAE,eAAF,CAAZ;AACA,UAAI8Y,OAAO,GAAG9Y,CAAC,CAAE,4BAAF,CAAf,CAHuB,CAKvB;;AACA6F,MAAAA,IAAI,CAAC1C,IAAL,CAAW,gBAAX,EAA8BwI,MAA9B,CAAsCmN,OAAO,CAAClQ,IAAR,EAAtC;AACA/C,MAAAA,IAAI,CAAC1C,IAAL,CAAW,mBAAX,EAAiCmG,MAAjC,GAPuB,CASvB;;AACAwP,MAAAA,OAAO,CAACxP,MAAR,GAVuB,CAYvB;;AACA,WAAKvG,GAAL,GAAW/C,CAAC,CAAE,qBAAF,CAAZ,CAbuB,CAevB;;AACA,WAAKmG,MAAL;AACA,KAzBwC;AA2BzC4S,IAAAA,SAAS,EAAE,YAAY;AACtB,aAAO,KAAKhW,GAAL,CAAS9B,IAAT,CAAe,SAAf,CAAP;AACA,KA7BwC;AA+BzC0M,IAAAA,QAAQ,EAAE,UAAW7K,CAAX,EAAcC,GAAd,EAAoB;AAC7B,UAAIoF,GAAG,GAAG,KAAK4Q,SAAL,KAAmB,CAAnB,GAAuB,CAAjC;AACA5Y,MAAAA,GAAG,CAAC6Y,iBAAJ,CAAuB,iBAAvB,EAA0C7Q,GAA1C;AACA,WAAKhC,MAAL;AACA,KAnCwC;AAqCzCA,IAAAA,MAAM,EAAE,YAAY;AACnB,UAAK,KAAK4S,SAAL,EAAL,EAAwB;AACvB/Y,QAAAA,CAAC,CAAE,yBAAF,CAAD,CAA+B6M,QAA/B,CAAyC,iBAAzC;AACA,OAFD,MAEO;AACN7M,QAAAA,CAAC,CAAE,yBAAF,CAAD,CAA+BwN,WAA/B,CAA4C,iBAA5C;AACA;AACD;AA3CwC,GAAf,CAA3B;AA8CA;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEC,MAAIyL,kBAAkB,GAAG,IAAI9Y,GAAG,CAACoD,KAAR,CAAe;AACvCC,IAAAA,OAAO,EAAE;AACRuT,MAAAA,SAAS,EAAE;AADH,KAD8B;AAKvCC,IAAAA,UAAU,EAAE,UAAW5S,KAAX,EAAmB;AAC9B;AACA,UAAK,CAAEA,KAAK,CAACyH,GAAN,CAAW,QAAX,CAAP,EAA+B,OAFD,CAI9B;;AACA,UAAIF,MAAM,GAAGvH,KAAK,CAACE,GAAN,CAAW,QAAX,CAAb;AACA,UAAI4U,QAAQ,GAAG9U,KAAK,CAACrB,GAAN,CACb6G,QADa,CACH,iBAAiB+B,MAAjB,GAA0B,IADvB,EAEbwN,KAFa,EAAf,CAN8B,CAU9B;;AACA,UAAK,CAAED,QAAQ,CAACrR,MAAhB,EAAyB,OAXK,CAa9B;;AACA,UAAIhC,IAAI,GAAGqT,QAAQ,CAACjP,QAAT,CAAmB,YAAnB,CAAX;AACA,UAAImP,GAAG,GAAGvT,IAAI,CAACoE,QAAL,CAAe,IAAf,CAAV,CAf8B,CAiB9B;;AACA,UAAK,CAAEmP,GAAG,CAACvR,MAAX,EAAoB;AACnBhC,QAAAA,IAAI,CAACwT,SAAL,CAAgB,mCAAhB;AACAD,QAAAA,GAAG,GAAGvT,IAAI,CAACoE,QAAL,CAAe,IAAf,CAAN;AACA,OArB6B,CAuB9B;;;AACA,UAAIrB,IAAI,GAAGxE,KAAK,CAACpE,CAAN,CAAS,YAAT,EAAwB4I,IAAxB,EAAX;AACA,UAAI0Q,GAAG,GAAGtZ,CAAC,CAAE,SAAS4I,IAAT,GAAgB,OAAlB,CAAX;AACAwQ,MAAAA,GAAG,CAACzN,MAAJ,CAAY2N,GAAZ;AACAF,MAAAA,GAAG,CAACtQ,IAAJ,CAAU,WAAV,EAAuBsQ,GAAG,CAACnP,QAAJ,GAAepC,MAAtC,EA3B8B,CA6B9B;;AACAzD,MAAAA,KAAK,CAACkF,MAAN;AACA;AApCsC,GAAf,CAAzB;AAsCA,CA3KD,EA2KKvE,MA3KL;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA,eAAe,4BAA4B;WAC3C,eAAe;WACf,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA,8CAA8C;;;;;WCA9C;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA","sources":["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/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":["( 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\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.renderRules();\n\t\t\t\tthis.open();\n\n\t\t\t\t// hide\n\t\t\t} else {\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// events\n\t\tevents: {\n\t\t\t'click .edit-field': 'onClickEdit',\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\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\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.addProFields();\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.data.fieldTypes.hasOwnProperty( 'clone' ) ) {\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 = $( '.field-type' ).not(\n\t\t\t\t'.acf-free-field-type'\n\t\t\t);\n\n\t\t\t// Append pro fields to \"Layout\" group.\n\t\t\tvar $layoutGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"group\"]' )\n\t\t\t\t.parent();\n\t\t\t$layoutGroup.append(\n\t\t\t\t'' +\n\t\t\t\t\t'' +\n\t\t\t\t\t''\n\t\t\t);\n\n\t\t\t// Add pro fields to \"Content\" group.\n\t\t\tvar $contentGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"image\"]' )\n\t\t\t\t.parent();\n\t\t\t$contentGroup.append(\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' ).text( name );\n\n\t\t\t// update type\n\t\t\t$handle.find( '.li-field-type' ).text( type );\n\n\t\t\t// update key\n\t\t\t$handle.find( '.li-field-key' ).text( 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\tonClickEdit: function ( e ) {\n\t\t\tthis.isOpen() ? this.close() : this.open();\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// open\n\t\t\t$settings.slideDown();\n\t\t\tthis.$el.addClass( 'open' );\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\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\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// open / close\n\t\t\tif ( this.isOpen() ) {\n\t\t\t\tthis.close();\n\t\t\t} else {\n\t\t\t\tnewField.open();\n\t\t\t}\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// 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// 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} );\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\t// update popup\n\t\t\t\tpopup.content( html );\n\n\t\t\t\t// remove element\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\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\t// vars\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 settings\n\t\t\tvar $tbody = this.$( '> .settings > table > tbody' );\n\t\t\tvar $settings = $tbody.children(\n\t\t\t\t'[data-setting=\"' + prevType + '\"]'\n\t\t\t);\n\t\t\tthis.set( 'settings-' + prevType, $settings );\n\t\t\t$settings.detach();\n\n\t\t\t// show settings\n\t\t\tif ( this.has( 'settings-' + newType ) ) {\n\t\t\t\tvar $newSettings = this.get( 'settings-' + newType );\n\t\t\t\tthis.$setting( 'conditional_logic' ).before( $newSettings );\n\t\t\t\tthis.set( 'type', newType );\n\t\t\t\t//this.refresh();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// load settings\n\t\t\tvar $loading = $(\n\t\t\t\t'
'\n\t\t\t);\n\t\t\tthis.$setting( 'conditional_logic' ).before( $loading );\n\n\t\t\t// ajax\n\t\t\tvar 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// 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: 'html',\n\t\t\t\tcontext: this,\n\t\t\t\tsuccess: function ( html ) {\n\t\t\t\t\t// bail early if no settings\n\t\t\t\t\tif ( ! html ) return;\n\n\t\t\t\t\t// append settings\n\t\t\t\t\t$loading.after( html );\n\n\t\t\t\t\t// events\n\t\t\t\t\tacf.doAction( 'append', $tbody );\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\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\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\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// this caused sub fields to disapear if changing type back...\n\t\t\t//this.onDeleteField( field );\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// 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\treturn;\n\t\t\t}\n\n\t\t\t// has fields\n\t\t\t$list.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\tvar $list = $el\n\t\t\t\t.closest( '.acf-tfoot' )\n\t\t\t\t.siblings( '.acf-field-list' );\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 label\n\t\t\tvar $label = newField.$input( 'label' );\n\t\t\tsetTimeout( function () {\n\t\t\t\t$label.trigger( 'focus' );\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-locations' );\n\t\t\tthis.updateGroupsClass();\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 ealry 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 * description\n\t *\n\t * @date\t6/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 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 * description\n\t *\n\t * @date\t6/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.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 * Date Picker\n\t *\n\t * This field type requires some extra logic for its settings\n\t *\n\t * @type\tfunction\n\t * @date\t24/10/13\n\t * @since\t5.0.0\n\t *\n\t * @param\tn/a\n\t * @return\tn/a\n\t */\n\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 * @type\tfunction\n\t * @date\t24/10/13\n\t * @since\t5.0.0\n\t *\n\t * @param\tn/a\n\t * @return\tn/a\n\t */\n\n\tvar DateTimePickerDisplayFormatFieldSetting = DisplayFormatFieldSetting.extend(\n\t\t{\n\t\t\ttype: 'date_time_picker',\n\t\t\tname: 'display_format',\n\t\t}\n\t);\n\n\tvar DateTimePickerReturnFormatFieldSetting = DisplayFormatFieldSetting.extend(\n\t\t{\n\t\t\ttype: 'date_time_picker',\n\t\t\tname: 'return_format',\n\t\t}\n\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 * @type\tfunction\n\t * @date\t24/10/13\n\t * @since\t5.0.0\n\t *\n\t * @param\tn/a\n\t * @return\tn/a\n\t */\n\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\ttype $var Description. Default.\n\t * @return\ttype Description.\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 = this.fieldObject.$setting(\n\t\t\t\t'return_format'\n\t\t\t);\n\t\t\tvar $default_value_setting = this.fieldObject.$setting(\n\t\t\t\t'default_value'\n\t\t\t);\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 = $default_value_setting.find(\n\t\t\t\t'input[type=\"text\"]'\n\t\t\t);\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 .submitdelete': 'onClickTrash',\n\t\t},\n\n\t\tfilters: {\n\t\t\tfind_fields_args: 'filterFindFieldArgs',\n\t\t},\n\n\t\tonSubmit: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar $title = $( '#titlewrap #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// alert\n\t\t\t\talert( acf.__( 'Field group title is required' ) );\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\tonClickTrash: function ( e ) {\n\t\t\tvar result = confirm( acf.__( 'Move to trash. Are you sure?' ) );\n\t\t\tif ( ! result ) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\t\t},\n\n\t\tfilterFindFieldArgs: function ( args ) {\n\t\t\targs.visible = true;\n\t\t\treturn args;\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\tchange: 'onChange',\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 = $( '#acf-field-key-hide' );\n\n\t\t\t// render\n\t\t\tthis.render();\n\t\t},\n\n\t\tisChecked: function () {\n\t\t\treturn this.$el.prop( 'checked' );\n\t\t},\n\n\t\tonChange: function ( e, $el ) {\n\t\t\tvar val = this.isChecked() ? 1 : 0;\n\t\t\tacf.updateUserSetting( 'show_field_keys', val );\n\t\t\tthis.render();\n\t\t},\n\n\t\trender: function () {\n\t\t\tif ( this.isChecked() ) {\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\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 ealry 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","// 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 = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(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 = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(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';\n"],"names":["$","undefined","_acf","acf","getCompatibility","field_group","save_field","$field","type","getFieldObject","save","delete_field","animate","delete","update_field_meta","name","value","prop","delete_field_meta","field_object","model","extend","o","$settings","tag","tags","split","splice","join","selector","str_replace","_add_action","callback","add_action","set","apply","arguments","_add_filter","add_filter","_add_event","event","substr","indexOf","context","document","on","e","$el","closest","_set_$field","data","find","focus","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","doAction","get","onCloseFieldObject","onAddFieldObject","onDuplicateFieldObject","onDeleteFieldObject","onChangeFieldObjectType","onChangeFieldObjectLabel","onChangeFieldObjectName","onChangeFieldObjectParent","jQuery","ConditionalLogicFieldSetting","FieldSetting","events","$rule","scope","ruleData","$input","$td","$toggle","$control","$groups","$rules","open","$div","show","enable","close","hide","disable","render","renderRules","self","each","renderRule","renderField","renderOperator","renderValue","choices","validFieldTypes","cid","fieldObject","$select","getFieldObjects","map","choice","id","getKey","text","getLabel","__","disabled","conditionTypes","getConditionTypes","fieldType","getType","length","indents","getParents","repeat","push","renderSelect","val","findFieldObject","prototype","operator","label","conditionType","Array","$newSelect","detach","html","setTimeout","attr","onChangeToggle","onClickAddGroup","addGroup","$group","$group2","duplicate","not","remove","onFocusField","onChangeField","onChangeOperator","onClickAdd","onClickRemove","siblings","registerFieldSetting","conditionalLogicHelper","duplicate_field_objects","onDuplicateFieldObjects","children","newField","prevField","$selects","child","add","FieldObject","eventScope","change","changed","key","setup","inherit","getInputId","$meta","$handle","$setting","getParent","limit","pop","getFields","parent","getInputName","newInput","inputId","inputName","append","getProp","has","setProp","prevVal","props","Object","keys","getName","getTypeLabel","types","initialize","addProFields","fieldTypes","hasOwnProperty","$fieldTypeSelect","$layoutGroup","$contentGroup","addClass","menu_order","required","parseInt","refresh","isOpen","hasClass","onClickEdit","slideDown","trigger","slideUp","removeClass","serialize","submit","onChange","onChanged","onChangeLabel","applyFilters","strSanitize","onChangeName","alert","onChangeRequired","args","parseArgs","newVal","removeAnimate","onClickDelete","shiftKey","tooltip","newTooltip","confirmRemove","target","confirm","cancel","$list","$fields","findFieldObjects","sibling","endHeight","complete","newKey","uniqid","$newField","search","replace","$label","end","copy","isNumeric","i","wipe","prevId","prevKey","rename","move","hasChanged","popup","step1","newPopup","title","loading","width","ajaxData","action","field_id","ajax","url","prepareForAjax","dataType","success","step2","content","step3","preventDefault","startButtonLoading","field_group_id","step4","onChangeType","changeTimeout","clearTimeout","changeType","newType","prevType","prevClass","strSlugify","newClass","abort","$tbody","$newSettings","before","$loading","prefix","xhr","after","updateParent","ID","list","parents","slice","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","handle","connectWith","start","ui","item","placeholder","height","update","onRemovedField","onReorderField","onDeleteField","onChangeFieldType","onDuplicateField","addField","$el2","locationManager","wait","updateGroupsClass","onClickAddRule","addRule","onClickRemoveRule","removeRule","onChangeRemoveRule","changeRule","$tr","ajaxdata","rule","group","replaceWith","$ruleGroups","rows_count","modelId","strPascalCase","proto","mid","models","newFieldSetting","getFieldSetting","getField","settingsManager","new_field","onNewField","$fieldObject","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","$title","unlockForm","onClick","onClickTrash","result","filterFindFieldArgs","visible","screenOptionsManager","$append","isChecked","updateUserSetting","appendFieldManager","$sibling","first","$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/_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/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":["( 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// events\n\t\tevents: {\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\"]': '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\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\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.addProFields();\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.data.fieldTypes.hasOwnProperty( 'clone' ) ) {\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 = $( '.field-type' ).not(\n\t\t\t\t'.acf-free-field-type'\n\t\t\t);\n\n\t\t\t// Append pro fields to \"Layout\" group.\n\t\t\tvar $layoutGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"group\"]' )\n\t\t\t\t.parent();\n\t\t\t$layoutGroup.append(\n\t\t\t\t'' +\n\t\t\t\t\t'' +\n\t\t\t\t\t''\n\t\t\t);\n\n\t\t\t// Add pro fields to \"Content\" group.\n\t\t\tvar $contentGroup = $fieldTypeSelect\n\t\t\t\t.find( 'optgroup option[value=\"image\"]' )\n\t\t\t\t.parent();\n\t\t\t$contentGroup.append(\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' ).text( 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' ).text( 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\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// open\n\t\t\t$settings.slideDown();\n\t\t\tthis.$el.addClass( 'open' );\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\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\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// open / close\n\t\t\tif ( this.isOpen() ) {\n\t\t\t\tthis.close();\n\t\t\t} else {\n\t\t\t\tnewField.open();\n\t\t\t}\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// 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// 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} );\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\t// update popup\n\t\t\t\tpopup.content( html );\n\n\t\t\t\t// remove element\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\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.find( '.acf-field-settings:first > .acf-field-settings-main > .acf-field-type-settings' ).each(\n\t\t\t\tfunction () {\n\t\t\t\t\tlet tab = $( this ).data( 'parent-tab' );\n\t\t\t\t\tlet $tabSettings = $( this ).children();\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\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 +\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\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\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\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// this caused sub fields to disapear if changing type back...\n\t\t\t//this.onDeleteField( field );\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// 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' );\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 label\n\t\t\tvar $label = newField.$input( 'label' );\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$label.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.updateGroupsClass();\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\t\twait: 'prepare',\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},\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\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\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// alert\n\t\t\t\talert( acf.__( 'Field group title is required' ) );\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\tfilterFindFieldArgs: function ( args ) {\n\t\t\t// Don't change this!\n\t\t\targs.visible = true;\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 [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\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\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.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","// 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 = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(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 = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(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';\n"],"names":["$","undefined","_acf","acf","getCompatibility","field_group","save_field","$field","type","getFieldObject","save","delete_field","animate","delete","update_field_meta","name","value","prop","delete_field_meta","field_object","model","extend","o","$settings","tag","tags","split","splice","join","selector","str_replace","_add_action","callback","add_action","set","apply","arguments","_add_filter","add_filter","_add_event","event","substr","indexOf","context","document","on","e","$el","closest","_set_$field","data","find","focus","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","doAction","get","onCloseFieldObject","onAddFieldObject","onDuplicateFieldObject","onDeleteFieldObject","onChangeFieldObjectType","onChangeFieldObjectLabel","onChangeFieldObjectName","onChangeFieldObjectParent","jQuery","ConditionalLogicFieldSetting","FieldSetting","events","$rule","scope","ruleData","$input","$td","$toggle","$control","$groups","$rules","$tabLabel","fieldObject","open","$div","show","enable","close","hide","disable","render","addClass","renderRules","removeClass","self","each","renderRule","renderField","renderOperator","renderValue","choices","validFieldTypes","cid","$select","getFieldObjects","map","choice","id","getKey","text","getLabel","__","disabled","conditionTypes","getConditionTypes","fieldType","getType","length","indents","getParents","repeat","push","renderSelect","val","findFieldObject","prototype","operator","label","conditionType","Array","$newSelect","detach","html","setTimeout","attr","onChangeToggle","onClickAddGroup","addGroup","$group","$group2","duplicate","not","remove","onFocusField","onChangeField","onChangeOperator","onClickAdd","onClickRemove","siblings","registerFieldSetting","conditionalLogicHelper","duplicate_field_objects","onDuplicateFieldObjects","children","newField","prevField","$selects","child","add","FieldObject","eventScope","change","changed","key","setup","inherit","getInputId","$meta","$handle","$setting","getParent","limit","pop","getFields","parent","getInputName","newInput","inputId","inputName","append","getProp","has","setProp","prevVal","props","Object","keys","getName","getTypeLabel","types","initialize","addProFields","fieldTypes","hasOwnProperty","$fieldTypeSelect","$layoutGroup","$contentGroup","menu_order","required","parseInt","iconName","strSlugify","refresh","isOpen","hasClass","onClickEdit","$target","target","onChangeSettingsTab","onFocusEdit","$rowOptions","onBlurEdit","focusDelayMilliseconds","$rowOptionsBlurElement","$rowOptionsFocusElement","activeElement","is","slideDown","trigger","slideUp","serialize","submit","onChange","onChanged","onChangeLabel","applyFilters","strSanitize","onChangeName","alert","onChangeRequired","args","parseArgs","newVal","removeAnimate","onClickDelete","shiftKey","tooltip","newTooltip","confirmRemove","confirm","cancel","$list","$fields","findFieldObjects","sibling","endHeight","complete","newKey","uniqid","$newField","search","replace","$label","end","copy","isNumeric","i","wipe","prevId","prevKey","rename","move","hasChanged","popup","step1","newPopup","title","loading","width","ajaxData","action","field_id","ajax","url","prepareForAjax","dataType","success","step2","content","step3","preventDefault","startButtonLoading","field_group_id","step4","onChangeType","changeTimeout","clearTimeout","changeType","newType","prevType","prevClass","newClass","abort","$oldSettings","tab","$tabSettings","$newSettings","showFieldTypeSettings","$loading","before","prefix","xhr","response","isAjaxSuccess","settings","tabs","forEach","$tab","tabContent","includes","prepend","updateParent","ID","list","parents","slice","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","handle","connectWith","start","ui","item","placeholder","height","update","onRemovedField","onReorderField","onDeleteField","onChangeFieldType","onDuplicateField","first","eq","addField","$el2","locationManager","wait","updateGroupsClass","onClickAddRule","addRule","onClickRemoveRule","removeRule","onChangeRemoveRule","changeRule","$tr","ajaxdata","rule","group","replaceWith","$ruleGroups","rows_count","modelId","strPascalCase","proto","mid","models","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","$field_list_wrapper","$title","unlockForm","onClick","onClickDeleteFieldGroup","window","location","href","filterFindFieldArgs","visible","filterFindFieldsSelector","screenOptionsManager","$append","isFieldKeysChecked","getSelectedColumnCount","onFieldKeysChange","updateUserSetting","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 2f89a7a..4f829b2 100644 --- a/assets/build/js/acf-field-group.min.js +++ b/assets/build/js/acf-field-group.min.js @@ -1 +1 @@ -!function(){var e={2961:function(){!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),o=this.selector();e(document).on(a,o+" "+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:function(){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")},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.renderRules(),this.open()):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),o=acf.getConditionTypes({fieldType:l.getType(),operator:this.ruleData("operator")})[0].prototype.choices(l);if(o instanceof Array){var c=e("");acf.renderSelect(c,o)}else c=e(o);t.detach(),i.html(c),setTimeout((function(){["class","name","id"].map((function(e){c.attr(e,t.attr(e))}))}),0),c.prop("disabled")||acf.val(c,n,!0),this.ruleData("value",c.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:function(){var e;e=jQuery,acf.FieldObject=acf.Model.extend({eventScope:".acf-field-object",events:{"click .edit-field":"onClickEdit","click .delete-field":"onClickDelete","click .duplicate-field":"duplicate","click .move-field":"move","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)},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.addProFields()},addProFields:function(){if(!acf.data.fieldTypes.hasOwnProperty("clone")){var t=e(".field-type").not(".acf-free-field-type");t.find('optgroup option[value="group"]').parent().append('"),t.find('optgroup option[value="image"]').parent().append('"),t.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"),o=this.$input("required").prop("checked");e.find(".acf-icon").html(parseInt(t)+1),o&&(i+=' *'),e.find(".li-field-label strong a").html(i),e.find(".li-field-name").text(n),e.find(".li-field-type").text(a),e.find(".li-field-key").text(l),acf.doAction("render_field_object",this)},refresh:function(){acf.doAction("refresh_field_object",this)},isOpen:function(){return this.$el.hasClass("open")},onClickEdit:function(e){this.isOpen()?this.close():this.open()},open:function(){var e=this.$el.children(".settings");e.slideDown(),this.$el.addClass("open"),acf.doAction("open_field_object",this),this.trigger("openFieldObject"),acf.doAction("show",e)},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(e,t,i,n){"save"!=i&&(["menu_order","parent"].indexOf(i)>-1?this.save("meta"):this.save(),["menu_order","label","required","name","type","key"].indexOf(i)>-1&&this.render(),acf.doAction("change_field_object_"+i,this,n))},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);this.isOpen()?this.close():i.open();var n=i.$setting("label input");setTimeout((function(){n.trigger("focus")}),251);var a=i.prop("label"),l=i.prop("name"),o=l.split("_").pop(),c=acf.__("copy");if(acf.isNumeric(o)){var r=1*o+1;a=a.replace(o,r),l=l.replace(o,r)}else 0===o.indexOf(c)?(r=(r=1*o.replace(c,""))?r+1:2,a=a.replace(o,c+r),l=l.replace(o,c+r)):(a+=" ("+c+")",l+="_"+c);i.prop("ID",0),i.prop("label",a),i.prop("name",l),i.prop("key",e),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,o=function(e){l.loading(!1),l.content(e),l.on("submit","form",c)},c=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:r})},r=function(e){l.content(e),a.removeAnimate()};!function(){l=acf.newPopup({title:acf.__("Move Custom Field"),loading:!0,width:"300px"});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:o})}()}},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();var l=this.$("> .settings > table > tbody"),o=l.children('[data-setting="'+i+'"]');if(this.set("settings-"+i,o),o.detach(),this.has("settings-"+t)){var c=this.get("settings-"+t);return this.$setting("conditional_logic").before(c),void this.set("type",t)}var r=e('
    ');this.$setting("conditional_logic").before(r);var d={action:"acf/field_group/render_field_settings",field:this.serialize(),prefix:this.getInputName()},s=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(d),type:"post",dataType:"html",context:this,success:function(e){e&&(r.after(e),acf.doAction("append",l))},complete:function(){r.remove(),this.set("type",t)}});this.set("xhr",s)},updateParent:function(){var e=acf.get("post_id"),t=this.getParent();t&&(e=parseInt(t.prop("ID"))||t.prop("key")),this.prop("parent",e)}})},3523:function(){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);var a=["type","name","key"];a.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({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){},onDuplicateField:function(e,t){var i=t.getFields();i.length&&(i.map((function(e){e.wipe(),e.updateParent()})),acf.doAction("duplicate_field_objects",i,t,e)),this.setFieldMenuOrder(t)},renderFields:function(e){var t=acf.getFieldObjects({list:e});t.length?(e.removeClass("-empty"),t.map((function(e,t){e.prop("menu_order",t)}))):e.addClass("-empty")},onClickAdd:function(e,t){var i=t.closest(".acf-tfoot").siblings(".acf-field-list");this.addField(i)},addField:function(t){var i=e("#tmpl-acf-field").html(),n=e(i),a=n.data("id"),l=acf.uniqid("field_"),o=acf.duplicate({target:n,search:a,replace:l,append:function(e,i){t.append(i)}}),c=acf.getFieldObject(o);c.prop("key",l),c.prop("ID",0),c.prop("label",""),c.prop("name",""),o.attr("data-key",l),o.attr("data-id",l),c.updateParent();var r=c.$input("label");setTimeout((function(){r.trigger("focus")}),251),c.open(),this.renderFields(t),acf.doAction("add_field_object",c),acf.doAction("append_field_object",c)}})},8687:function(){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-locations"),this.updateGroupsClass()},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(){!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(){var e=this.$('input[type="radio"]:checked');"other"!=e.val()&&this.$('input[type="text"]').val(e.val())}}),a=n.extend({type:"date_picker",name:"display_format"}),l=n.extend({type:"date_picker",name:"return_format"});acf.registerFieldSetting(a),acf.registerFieldSetting(l);var o=n.extend({type:"date_time_picker",name:"display_format"}),c=n.extend({type:"date_time_picker",name:"return_format"});acf.registerFieldSetting(o),acf.registerFieldSetting(c);var r=n.extend({type:"time_picker",name:"display_format"}),d=n.extend({type:"time_picker",name:"return_format"});acf.registerFieldSetting(r),acf.registerFieldSetting(d);var s=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(s)}(jQuery)},3791:function(){var e;e=jQuery,new acf.Model({id:"fieldGroupManager",events:{"submit #post":"onSubmit",'click a[href="#"]':"onClick","click .submitdelete":"onClickTrash"},filters:{find_fields_args:"filterFindFieldArgs"},onSubmit:function(t,i){var n=e("#titlewrap #title");n.val()||(t.preventDefault(),acf.unlockForm(i),alert(acf.__("Field group title is required")),n.trigger("focus"))},onClick:function(e){e.preventDefault()},onClickTrash:function(e){confirm(acf.__("Move to trash. Are you sure?"))||e.preventDefault()},filterFindFieldArgs:function(e){return e.visible=!0,e}}),new acf.Model({id:"screenOptionsManager",wait:"prepare",events:{change:"onChange"},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("#acf-field-key-hide"),this.render()},isChecked:function(){return this.$el.prop("checked")},onChange:function(e,t){var i=this.isChecked()?1:0;acf.updateUserSetting("show_field_keys",i),this.render()},render:function(){this.isChecked()?e("#acf-field-group-fields").addClass("show-field-keys"):e("#acf-field-group-fields").removeClass("show-field-keys")}}),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 o=t.$(".acf-input").html(),c=e("
  • "+o+"
  • ");l.append(c),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}i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,{a:t}),t},i.d=function(e,t){for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){"use strict";i(3791),i(5358),i(6125),i(8931),i(3523),i(8687),i(2961)}()}(); \ No newline at end of file +!function(){var e={2961:function(){!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),o=this.selector();e(document).on(a,o+" "+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:function(){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),o=acf.getConditionTypes({fieldType:l.getType(),operator:this.ruleData("operator")})[0].prototype.choices(l);if(o instanceof Array){var c=e("");acf.renderSelect(c,o)}else c=e(o);t.detach(),i.html(c),setTimeout((function(){["class","name","id"].map((function(e){c.attr(e,t.attr(e))}))}),0),c.prop("disabled")||acf.val(c,n,!0),this.ruleData("value",c.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:function(){var e;e=jQuery,acf.FieldObject=acf.Model.extend({eventScope:".acf-field-object",events:{"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","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)},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.addProFields()},addProFields:function(){if(!acf.data.fieldTypes.hasOwnProperty("clone")){var t=e(".field-type").not(".acf-free-field-type");t.find('optgroup option[value="group"]').parent().append('"),t.find('optgroup option[value="image"]').parent().append('"),t.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"),o=this.$input("required").prop("checked");e.find(".acf-icon").html(parseInt(t)+1),o&&(i+=' *'),e.find(".li-field-label strong a").html(i),e.find(".li-field-name").text(n);const c=acf.strSlugify(this.getType());e.find(".field-type-label").text(" "+a),e.find(".field-type-icon").removeClass().addClass("field-type-icon field-type-icon-"+c),e.find(".li-field-key").text(l),acf.doAction("render_field_object",this)},refresh:function(){acf.doAction("refresh_field_object",this)},isOpen:function(){return this.$el.hasClass("open")},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");e.slideDown(),this.$el.addClass("open"),acf.doAction("open_field_object",this),this.trigger("openFieldObject"),acf.doAction("show",e)},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(e,t,i,n){"save"!=i&&(["menu_order","parent"].indexOf(i)>-1?this.save("meta"):this.save(),["menu_order","label","required","name","type","key"].indexOf(i)>-1&&this.render(),acf.doAction("change_field_object_"+i,this,n))},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);this.isOpen()?this.close():i.open();var n=i.$setting("label input");setTimeout((function(){n.trigger("focus")}),251);var a=i.prop("label"),l=i.prop("name"),o=l.split("_").pop(),c=acf.__("copy");if(acf.isNumeric(o)){var r=1*o+1;a=a.replace(o,r),l=l.replace(o,r)}else 0===o.indexOf(c)?(r=(r=1*o.replace(c,""))?r+1:2,a=a.replace(o,c+r),l=l.replace(o,c+r)):(a+=" ("+c+")",l+="_"+c);i.prop("ID",0),i.prop("label",a),i.prop("name",l),i.prop("key",e),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,o=function(e){l.loading(!1),l.content(e),l.on("submit","form",c)},c=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:r})},r=function(e){l.content(e),a.removeAnimate()};!function(){l=acf.newPopup({title:acf.__("Move Custom Field"),loading:!0,width:"300px"});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:o})}()}},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();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 o=e('
    ');this.$el.find(".acf-field-settings-main-general .acf-field-type-settings").before(o);const c={action:"acf/field_group/render_field_settings",field:this.serialize(),prefix:this.getInputName()};var r=e.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(c),type:"post",dataType:"json",context:this,success:function(e){acf.isAjaxSuccess(e)&&this.showFieldTypeSettings(e.data)},complete:function(){o.remove(),this.set("type",t)}});this.set("xhr",r)},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+" .acf-field-type-settings");let a="";["object","string"].includes(typeof e[i])&&(a=e[i]),n.prepend(a),acf.doAction("append",n)}))},updateParent:function(){var e=acf.get("post_id"),t=this.getParent();t&&(e=parseInt(t.prop("ID"))||t.prop("key")),this.prop("parent",e)}})},3523:function(){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);var a=["type","name","key"];a.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({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){},onDuplicateField:function(e,t){var i=t.getFields();i.length&&(i.map((function(e){e.wipe(),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"):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_"),o=acf.duplicate({target:n,search:a,replace:l,append:function(e,i){t.append(i)}}),c=acf.getFieldObject(o);c.prop("key",l),c.prop("ID",0),c.prop("label",""),c.prop("name",""),o.attr("data-key",l),o.attr("data-id",l),c.updateParent();var r=c.$input("label");setTimeout((function(){t.hasClass("acf-auto-add-field")?t.removeClass("acf-auto-add-field"):r.trigger("focus")}),251),c.open(),this.renderFields(t),acf.doAction("add_field_object",c),acf.doAction("append_field_object",c)}})},8687:function(){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.updateGroupsClass()},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(){!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 o=acf.FieldSetting.extend({type:"",name:"",render:function(){var e=this.$('input[type="radio"]:checked');"other"!=e.val()&&this.$('input[type="text"]').val(e.val())}}),c=o.extend({type:"date_picker",name:"display_format"}),r=o.extend({type:"date_picker",name:"return_format"});acf.registerFieldSetting(c),acf.registerFieldSetting(r);var d=o.extend({type:"date_time_picker",name:"display_format"}),s=o.extend({type:"date_time_picker",name:"return_format"});acf.registerFieldSetting(d),acf.registerFieldSetting(s);var f=o.extend({type:"time_picker",name:"display_format"}),u=o.extend({type:"time_picker",name:"return_format"});acf.registerFieldSetting(f),acf.registerFieldSetting(u);var p=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(p)}(jQuery)},3791:function(){var e;e=jQuery,new acf.Model({id:"fieldGroupManager",wait:"prepare",events:{"submit #post":"onSubmit",'click a[href="#"]':"onClick","click .acf-delete-field-group":"onClickDeleteFieldGroup"},filters:{find_fields_args:"filterFindFieldArgs",find_fields_selector:"filterFindFieldsSelector"},initialize: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),alert(acf.__("Field group title is required")),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")}})},filterFindFieldArgs:function(e){return e.visible=!0,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 [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")},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()},render:function(){this.isFieldKeysChecked()?e("#acf-field-group-fields").addClass("show-field-keys"):e("#acf-field-group-fields").removeClass("show-field-keys"),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 o=t.$(".acf-input").html(),c=e("
  • "+o+"
  • ");l.append(c),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}i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,{a:t}),t},i.d=function(e,t){for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){"use strict";i(3791),i(5358),i(6125),i(8931),i(3523),i(8687),i(2961)}()}(); \ No newline at end of file diff --git a/assets/build/js/acf-input.js b/assets/build/js/acf-input.js index c488d8d..98672d6 100644 --- a/assets/build/js/acf-input.js +++ b/assets/build/js/acf-input.js @@ -1189,7 +1189,7 @@ var target = conditions.get('field'); // use the 'target' to find the 'trigger' field. // - this field is used to setup the conditional logic events - var field = target.getField(rule.field); // bail ealry if no target or no field (possible if field doesn't exist due to HTML error) + var field = target.getField(rule.field); // bail early if no target or no field (possible if field doesn't exist due to HTML error) if (!target || !field) { return false; @@ -1580,7 +1580,7 @@ } // instantiate - var condition = acf.newCondition(rule, this); // bail ealry if condition failed (field did not exist) + var condition = acf.newCondition(rule, this); // bail early if condition failed (field did not exist) if (!condition) { return false; @@ -1737,9 +1737,9 @@ // Use SVG inside Gutenberg editor. if (acf.isGutenberg()) { if (props.open) { - return ''; + return ''; } else { - return ''; + return ''; } } else { if (props.open) { @@ -2114,11 +2114,11 @@ // vars var locale = acf.get('locale'); var rtl = acf.get('rtl'); - var l10n = acf.get('datePickerL10n'); // bail ealry if no l10n + var l10n = acf.get('datePickerL10n'); // bail early if no l10n if (!l10n) { return false; - } // bail ealry if no datepicker library + } // bail early if no datepicker library if (typeof $.datepicker === 'undefined') { @@ -2134,7 +2134,7 @@ }); // add acf.newDatePicker = function ($input, args) { - // bail ealry if no datepicker library + // bail early if no datepicker library if (typeof $.datepicker === 'undefined') { return false; } // defaults @@ -2201,11 +2201,11 @@ // vars var locale = acf.get('locale'); var rtl = acf.get('rtl'); - var l10n = acf.get('dateTimePickerL10n'); // bail ealry if no l10n + var l10n = acf.get('dateTimePickerL10n'); // bail early if no l10n if (!l10n) { return false; - } // bail ealry if no datepicker library + } // bail early if no datepicker library if (typeof $.timepicker === 'undefined') { @@ -2221,7 +2221,7 @@ }); // add acf.newDateTimePicker = function ($input, args) { - // bail ealry if no datepicker library + // bail early if no datepicker library if (typeof $.timepicker === 'undefined') { return false; } // defaults @@ -2252,7 +2252,7 @@ return this.$('.acf-file-uploader'); }, $input: function () { - return this.$('input[type="hidden"]'); + return this.$('input[type="hidden"]:first'); }, validateAttachment: function (attachment) { // defaults @@ -2871,7 +2871,7 @@ return this.$('.acf-image-uploader'); }, $input: function () { - return this.$('input[type="hidden"]'); + return this.$('input[type="hidden"]:first'); }, events: { 'click a[data-name="add"]': 'onClickAdd', @@ -3849,7 +3849,17 @@ duplicateField: 'onDuplicate' }, findFields: function () { - return this.$el.nextUntil('.acf-field-tab', '.acf-field'); + let filter = '.acf-field'; + + if (this.get('key') === 'acf_field_settings_tabs') { + filter = '.acf-field-settings-main'; + } + + if (this.get('key') === 'acf_field_group_settings_tabs') { + filter = '.field-group-settings-tab'; + } + + return this.$el.nextUntil('.acf-field-tab', filter); }, getFields: function () { return acf.getFields(this.findFields()); @@ -3995,7 +4005,13 @@ if ($before.is('tr')) { this.$el = $(''); } else { - this.$el = $('
      '); + let ulClass = 'acf-hl acf-tab-group'; + + if (this.get('key') === 'acf_field_settings_tabs') { + ulClass = 'acf-field-settings-tab-bar'; + } + + this.$el = $('
        '); } // append @@ -4078,7 +4094,10 @@ }, addTab: function ($a, field) { // create
      • - var $li = $('
      • ' + $a.outerHTML() + '
      • '); // append + var $li = $('
      • ' + $a.outerHTML() + '
      • '); // add settings type class. + + var classes = $a.attr('class').replace('acf-tab-button', ''); + $li.addClass(classes); // append this.$('ul').append($li); // initialize @@ -4179,6 +4198,7 @@ prepare: 'render', append: 'render', unload: 'onUnload', + show: 'render', invalid_field: 'onInvalidField' }, findTabs: function () { @@ -4549,7 +4569,7 @@ acf.registerFieldType(Field); // add acf.newTimePicker = function ($input, args) { - // bail ealry if no datepicker library + // bail early if no datepicker library if (typeof $.timepicker === 'undefined') { return false; } // defaults @@ -4596,13 +4616,13 @@ }, render: function () { // vars - var $switch = this.$switch(); // bail ealry if no $switch + var $switch = this.$switch(); // bail early if no $switch if (!$switch.length) return; // vars var $on = $switch.children('.acf-switch-on'); var $off = $switch.children('.acf-switch-off'); - var width = Math.max($on.width(), $off.width()); // bail ealry if no width + var width = Math.max($on.width(), $off.width()); // bail early if no width if (!width) return; // set widths @@ -5358,7 +5378,11 @@ if (args.visible) { - selector += ':visible'; + selector += ':visible, .acf-field-acf-field-settings-tabs'; + } + + if (!args.suppressFilters) { + selector = acf.applyFilters('find_fields_selector', selector, args); } // query @@ -5916,7 +5940,7 @@ if (!$fields.length) { return false; - } // bail ealry if is .-left + } // bail early if is .-left if ($el.hasClass('-left')) { @@ -7247,8 +7271,14 @@ if (data.sorted) { // Loop over each position (acf_after_title, side, normal). for (var position in data.sorted) { - // Explode string into array of ids. - var order = data.sorted[position].split(','); // Position metabox relative to order. + let order = data.sorted[position]; + + if (typeof order !== 'string') { + continue; + } // Explode string into array of ids. + + + order = order.split(','); // Position metabox relative to order. if (sortMetabox(result.id, order)) { break; @@ -8023,7 +8053,7 @@ var locale = acf.get('locale'); var rtl = acf.get('rtl'); var l10n = acf.get('select2L10n'); - var version = getVersion(); // bail ealry if no l10n + var version = getVersion(); // bail early if no l10n if (!l10n) { return false; @@ -8458,7 +8488,7 @@ }, enableTinymce: function (id) { // bail early - if (typeof switchEditors === 'undefined') return false; // bail ealry if not initialized + if (typeof switchEditors === 'undefined') return false; // bail early if not initialized if (typeof tinyMCEPreInit.mceInit[id] === 'undefined') return false; // Ensure textarea element is visible // - Fixes bug in block editor when switching between "Block" and "Document" tabs. @@ -8541,7 +8571,7 @@ this.stopListening(); }, startListening: function () { - // bail ealry if already changed, not active + // bail early if already changed, not active if (this.changed || !this.active) { return; } // update @@ -9141,7 +9171,7 @@ acf.lockForm = function ($form) { // vars var $wrap = findSubmitWrap($form); - var $submit = $wrap.find('.button, [type="submit"]'); + var $submit = $wrap.find('.button, [type="submit"]').not('.acf-nav, .acf-repeater-add-row'); var $spinner = $wrap.find('.spinner, .acf-spinner'); // hide all spinners (hides the preview spinner) acf.hideSpinner($spinner); // lock @@ -9166,7 +9196,7 @@ acf.unlockForm = function ($form) { // vars var $wrap = findSubmitWrap($form); - var $submit = $wrap.find('.button, [type="submit"]'); + var $submit = $wrap.find('.button, [type="submit"]').not('.acf-nav, .acf-repeater-add-row'); var $spinner = $wrap.find('.spinner, .acf-spinner'); // unlock acf.enableSubmit($submit); diff --git a/assets/build/js/acf-input.js.map b/assets/build/js/acf-input.js.map index f344894..1677499 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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","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 ealry 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// 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 ealry 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},\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 ealry if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail ealry 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 ealry 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 ealry if no l10n\n\t\t\tif ( ! l10n ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// bail ealry 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 ealry 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\"]' );\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\"]' );\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'click [data-name=\"remove_item\"]': 'onClickRemove',\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// 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\t// vars\n\t\t\tvar $span = $el.parent();\n\t\t\tvar $li = $span.parent();\n\t\t\tvar 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\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\treturn this.$el.nextUntil( '.acf-field-tab', '.acf-field' );\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},\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\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// 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// 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\n\t\t\t// find next active tab\n\t\t\tvar tab = this.getVisible().shift();\n\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\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\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\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 ealry 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 ealry 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 ealry 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} );\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\t// query\n\t\tif ( 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 {\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 ealry 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\t// Explode string into array of ids.\n\t\t\t\t\t\t\tvar order = data.sorted[ position ].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.isGutenberg() ) {\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\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} );\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\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// 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\toptions.templateSelection = function ( selection ) {\n\t\t\t\t\tvar $selection = $( '' );\n\t\t\t\t\t$selection.html( acf.escHtml( selection.text ) );\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\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\t//options = acf.applyFilters( 'select2_args', options, $select, this );\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$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\t\t\t\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').get(-1).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\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\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 ealry 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 ealry 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 ealry 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 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' );\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' );\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.find( '.button, [type=\"submit\"]' );\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.find( '.button, [type=\"submit\"]' );\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// 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 = editorSelect.getEditedPostAttribute(\n\t\t\t\t\t'status'\n\t\t\t\t);\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.catch( function ( 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 = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(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 = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(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","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","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","index","initialized","$before","initializeTabs","getVisible","shift","groupIndex","tabIndex","isVisible","selectTab","closeTabs","getActive","setActive","hasActive","closeActive","closeTab","openTab","t","$a","outerHTML","Tab","onRefresh","attribute","top","outerHeight","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","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","last","$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","classes","$prefs","_result","sorted","gutenScreen","postEdits","subscribe","debounce","onRefreshPostScreen","domReady","getTaxonomies","taxonomy","rest_base","_postEdits","getPostEdits","getEditedPostAttribute","taxonomies","slug","dispatch","locations","getActiveMetaBoxLocations","getMetaBoxesPerLocation","m","r","setAvailableMetaBoxesPerLocation","ajaxResults","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","templateSelection","$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","catch","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// 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},\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'click [data-name=\"remove_item\"]': 'onClickRemove',\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// 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\t// vars\n\t\t\tvar $span = $el.parent();\n\t\t\tvar $li = $span.parent();\n\t\t\tvar 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\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 = '.acf-field';\n\n\t\t\tif ( this.get( 'key' ) === 'acf_field_settings_tabs' ) {\n\t\t\t\tfilter = '.acf-field-settings-main';\n\t\t\t}\n\n\t\t\tif ( this.get( 'key' ) === 'acf_field_group_settings_tabs' ) {\n\t\t\t\tfilter = '.field-group-settings-tab';\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},\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// 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\n\t\t\t// find next active tab\n\t\t\tvar tab = this.getVisible().shift();\n\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\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\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} );\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, .acf-field-acf-field-settings-tabs';\n\t\t}\n\n\t\tif ( ! args.suppressFilters ) {\n\t\t\tselector = acf.applyFilters( 'find_fields_selector', selector, args );\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} 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.isGutenberg() ) {\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\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} );\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\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// 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\toptions.templateSelection = function ( selection ) {\n\t\t\t\t\tvar $selection = $( '' );\n\t\t\t\t\t$selection.html( acf.escHtml( selection.text ) );\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\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\t//options = acf.applyFilters( 'select2_args', options, $select, this );\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$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\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\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 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' );\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' );\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.find( '.button, [type=\"submit\"]' ).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.find( '.button, [type=\"submit\"]' ).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// 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 = editorSelect.getEditedPostAttribute(\n\t\t\t\t\t'status'\n\t\t\t\t);\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.catch( function ( 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 = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(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 = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(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","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","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","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","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","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","last","$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","subscribe","debounce","onRefreshPostScreen","domReady","getTaxonomies","taxonomy","rest_base","_postEdits","getPostEdits","getEditedPostAttribute","taxonomies","slug","dispatch","locations","getActiveMetaBoxLocations","getMetaBoxesPerLocation","m","r","setAvailableMetaBoxesPerLocation","ajaxResults","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","templateSelection","$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","catch","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 9f9cf42..7322942 100644 --- a/assets/build/js/acf-input.min.js +++ b/assets/build/js/acf-input.min.js @@ -1 +1 @@ -!function(){var t={7787:function(){!function(t,e){acf.newCompatibility=function(t,e){return(e=e||{}).__proto__=t.__proto__,t.__proto__=e,t.compatibility=e,e},acf.getCompatibility=function(t){return t.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(t,e){t=t||"";var i=(e=e||"")?t+"."+e:t,a={"image.select":"Select Image","image.edit":"Edit Image","image.update":"Update Image"};if(a[i])return acf.__(a[i]);var n=this.l10n[t]||"";return e&&(n=n[e]||""),n},i.get_selector=function(e){var i=".acf-field";if(!e)return i;if(t.isPlainObject(e)){if(t.isEmptyObject(e))return i;for(var a in e){e=e[a];break}}return i+="-"+e,i=acf.strReplace("_","-",i),acf.strReplace("field-field-","field-",i)},i.get_fields=function(t,e,i){var a={is:t||"",parent:e||!1,suppressFilters:i||!1};return a.is&&(a.is=this.get_selector(a.is)),acf.findFields(a)},i.get_field=function(t,e){var i=this.get_fields.apply(this,arguments);return!!i.length&&i.first()},i.get_closest_field=function(t,e){return t.closest(this.get_selector(e))},i.get_field_wrap=function(t){return t.closest(this.get_selector())},i.get_field_key=function(t){return t.data("key")},i.get_field_type=function(t){return t.data("type")},i.get_data=function(t,e){return acf.parseArgs(t.data(),e)},i.maybe_get=function(t,e,i){void 0===i&&(i=null),keys=String(e).split(".");for(var a=0;a1){for(var c=0;c0?e.substr(0,n):e,o=n>0?e.substr(n+1):"",r=function(e){e.$el=t(this),acf.field_group&&(e.$field=e.$el.closest(".acf-field-object")),"function"==typeof a.event&&(e=a.event(e)),a[i].apply(a,arguments)};o?t(document).on(s,o,r):t(document).on(s,r)},get:function(t,e){return e=e||null,void 0!==this[t]&&(e=this[t]),e},set:function(t,e){return this[t]=e,"function"==typeof this["_set_"+t]&&this["_set_"+t].apply(this),this}},i.field=acf.model.extend({type:"",o:{},$field:null,_add_action:function(t,e){var i=this;t=t+"_field/type="+i.type,acf.add_action(t,(function(t){i.set("$field",t),i[e].apply(i,arguments)}))},_add_filter:function(t,e){var i=this;t=t+"_field/type="+i.type,acf.add_filter(t,(function(t){i.set("$field",t),i[e].apply(i,arguments)}))},_add_event:function(e,i){var a=this,n=e.substr(0,e.indexOf(" ")),s=e.substr(e.indexOf(" ")+1),o=acf.get_selector(a.type);t(document).on(n,o+" "+s,(function(e){var n=t(this),s=acf.get_closest_field(n,a.type);s.length&&(s.is(a.$field)||a.set("$field",s),e.$el=n,e.$field=s,a[i].apply(a,[e]))}))},_set_$field:function(){"function"==typeof this.focus&&this.focus()},doFocus:function(t){return this.set("$field",t)}}),acf.newCompatibility(acf.validation,{remove_error:function(t){acf.getField(t).removeError()},add_warning:function(t,e){acf.getField(t).showNotice({text:e,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(t,e){return acf.newTooltip({text:t,target:e}).$el},temp:function(t,e){acf.newTooltip({text:t,target:e,timeout:250})},confirm:function(t,e,i,a,n){acf.newTooltip({confirm:!0,text:i,target:t,confirm:function(){e(!0)},cancel:function(){e(!1)}})},confirm_remove:function(t,e){acf.newTooltip({confirmRemove:!0,target:t,confirm:function(){e(!0)},cancel:function(){e(!1)}})}},i.media=new acf.Model({activeFrame:!1,actions:{new_media_popup:"onNewMediaPopup"},frame:function(){return this.activeFrame},onNewMediaPopup:function(t){this.activeFrame=t.frame},popup:function(t){return t.mime_types&&(t.allowedTypes=t.mime_types),t.id&&(t.attachment=t.id),acf.newMediaPopup(t).frame}}),i.select2={init:function(t,e,i){return e.allow_null&&(e.allowNull=e.allow_null),e.ajax_action&&(e.ajaxAction=e.ajax_action),i&&(e.field=acf.getField(i)),acf.newSelect2(t,e)},destroy:function(t){return acf.getInstance(t).destroy()}},i.postbox={render:function(t){return t.edit_url&&(t.editLink=t.edit_url),t.edit_title&&(t.editTitle=t.edit_title),acf.newPostbox(t)}},acf.newCompatibility(acf.screen,{update:function(){return this.set.apply(this,arguments)},fetch:acf.screen.check}),i.ajax=acf.screen}(jQuery)},682:function(){!function(t,e){var __=acf.__,i=function(t){return t?""+t:""},a=function(t,e){return i(t).toLowerCase()===i(e).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(t,e){let i=e.val();return i instanceof Array&&(i=i.length),!!i},choices:function(t){return''}});acf.registerConditionType(n);var s=n.extend({type:"hasNoValue",operator:"==empty",label:__("Has no value"),match:function(t,e){return!n.prototype.match.apply(this,arguments)}});acf.registerConditionType(s);var o=acf.Condition.extend({type:"equalTo",operator:"==",label:__("Value is equal to"),fieldTypes:["text","textarea","number","range","email","url","password"],match:function(t,e){return acf.isNumeric(t.value)?(i=t.value,n=e.val(),parseFloat(i)===parseFloat(n)):a(t.value,e.val());var i,n},choices:function(t){return''}});acf.registerConditionType(o);var r=o.extend({type:"notEqualTo",operator:"!=",label:__("Value is not equal to"),match:function(t,e){return!o.prototype.match.apply(this,arguments)}});acf.registerConditionType(r);var c=acf.Condition.extend({type:"patternMatch",operator:"==pattern",label:__("Value matches pattern"),fieldTypes:["text","textarea","email","url","password","wysiwyg"],match:function(t,e){return a=e.val(),n=t.value,s=new RegExp(i(n),"gi"),i(a).match(s);var a,n,s},choices:function(t){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(t,e){return a=e.val(),n=t.value,i(a).indexOf(i(n))>-1;var a,n},choices:function(t){return''}});acf.registerConditionType(l);var d=o.extend({type:"trueFalseEqualTo",choiceType:"select",fieldTypes:["true_false"],choices:function(t){return[{id:1,text:__("Checked")}]}});acf.registerConditionType(d);var u=r.extend({type:"trueFalseNotEqualTo",choiceType:"select",fieldTypes:["true_false"],choices:function(t){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(t,e){var n,s=e.val();return s instanceof Array?(n=t.value,s.map((function(t){return i(t)})).indexOf(n)>-1):a(t.value,s)},choices:function(t){var e=[],i=t.$setting("choices textarea").val().split("\n");return t.$input("allow_null").prop("checked")&&e.push({id:"",text:__("Null")}),i.map((function(t){(t=t.split(":"))[1]=t[1]||t[0],e.push({id:t[0].trim(),text:t[1].trim()})})),e}});acf.registerConditionType(f);var p=f.extend({type:"selectNotEqualTo",operator:"!=",label:__("Value is not equal to"),match:function(t,e){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(t,e){var i,a,n=e.val();return n instanceof Array&&(n=n.length),i=n,a=t.value,parseFloat(i)>parseFloat(a)},choices:function(t){return''}});acf.registerConditionType(h);var g=h.extend({type:"lessThan",operator:"<",label:__("Value is less than"),match:function(t,e){var i,a,n=e.val();return n instanceof Array&&(n=n.length),null==n||!1===n||(i=n,a=t.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(){!function(t,e){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(e){t.extend(this.data,e)},getEventTarget:function(t,e){return t||this.get("field").$el},change:function(t,e){this.get("conditions").change(t)},match:function(t,e){return!1},calculate:function(){return this.match(this.get("rule"),this.get("field"))},choices:function(t){return''}}),acf.newCondition=function(t,e){var i=e.get("field"),a=i.getField(t.field);if(!i||!a)return!1;var n={rule:t,target:i,conditions:e,field:a},s=a.get("type"),o=t.operator;return new(acf.getConditionTypes({fieldType:s,operator:o})[0]||acf.Condition)(n)};var a=function(t){return acf.strPascalCase(t||"")+"Condition"};acf.registerConditionType=function(t){var e=t.prototype.type,n=a(e);acf.models[n]=t,i.push(e)},acf.getConditionType=function(t){var e=a(t);return acf.models[e]||!1},acf.registerConditionForFieldType=function(t,e){var i=acf.getConditionType(t);i&&i.prototype.fieldTypes.push(e)},acf.getConditionTypes=function(t){t=acf.parseArgs(t,{fieldType:"",operator:""});var e=[];return i.map((function(i){var a=acf.getConditionType(i),n=a.prototype.fieldTypes,s=a.prototype.operator;t.fieldType&&-1===n.indexOf(t.fieldType)||t.operator&&s!==t.operator||e.push(a)})),e}}(jQuery)},3155:function(){!function(t,e){var i="conditional_logic",a=(new acf.Model({id:"conditionsManager",priority:20,actions:{new_field:"onNewField"},onNewField:function(t){t.has("conditions")&&t.getConditions().render()}}),function(t,e){var i=acf.getFields({key:e,sibling:t.$el,suppressFilters:!0});return i.length||(i=acf.getFields({key:e,parent:t.$el.parent(),suppressFilters:!0})),!!i.length&&i[0]});acf.Field.prototype.getField=function(t){var e=a(this,t);if(e)return e;for(var i=this.parents(),n=0;n'),d=t('

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

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

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

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

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

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

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

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

                              "].join("");n.classes||(n.classes="");var c=t(['
                              ',r,'
                              ',n.html,"
                              ","
                              "].join(""));if(t("#adv-settings").length){var l=t("#adv-settings .metabox-prefs"),d=t(['"].join(""));i(l.find("input").first(),d.find("input")),l.append(d)}t(".postbox").length&&(i(t(".postbox .handlediv").first(),c.children(".handlediv")),i(t(".postbox .hndle").first(),c.children(".hndle"))),"side"===n.position?t("#"+n.position+"-sortables").append(c):t("#"+n.position+"-sortables").prepend(c);var u=[];if(e.results.map((function(e){n.position===e.position&&t("#"+n.position+"-sortables #"+e.id).length&&u.push(e.id)})),a(n.id,u),e.sorted)for(var f in e.sorted){let t=e.sorted[f];if("string"==typeof t&&(t=t.split(","),a(n.id,t)))break}o=acf.newPostbox(n),acf.doAction("append",c),acf.doAction("append_postbox",o)}return o.showEnable(),e.visible.push(n.id),n})),acf.getPostboxes().map((function(t){-1===e.visible.indexOf(t.get("id"))&&(t.hideDisable(),e.hidden.push(t.get("id")))})),t("#acf-style").html(e.style),acf.doAction("refresh_post_screen",e)},renderUserScreen:function(t){}}),new acf.Model({postEdits:{},wait:"prepare",initialize:function(){acf.isGutenberg()&&(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 t=["template","parent","format"];(wp.data.select("core").getTaxonomies()||[]).map((function(e){t.push(e.rest_base)}));var e=wp.data.select("core/editor").getPostEdits(),i={};t.map((function(t){void 0!==e[t]&&(i[t]=e[t])})),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(t,e){return wp.data.select("core/editor").getEditedPostAttribute("parent")},getPostType:function(){return wp.data.select("core/editor").getEditedPostAttribute("type")},getPostFormat:function(t,e){return wp.data.select("core/editor").getEditedPostAttribute("format")},getPostCoreTerms:function(){var t={};return(wp.data.select("core").getTaxonomies()||[]).map((function(e){var i=wp.data.select("core/editor").getEditedPostAttribute(e.rest_base);i&&(t[e.slug]=i)})),t},onRefreshPostScreen:function(t){var e=wp.data.select("core/edit-post"),i=wp.data.dispatch("core/edit-post"),a={};e.getActiveMetaBoxLocations().map((function(t){a[t]=e.getMetaBoxesPerLocation(t)}));var n=[];for(var s in a)a[s].map((function(t){n.push(t.id)}));for(var s in t.results.filter((function(t){return-1===n.indexOf(t.id)})).map((function(t,e){var i=t.position;a[i]=a[i]||[],a[i].push({id:t.id,title:t.title})})),a)a[s]=a[s].filter((function(e){return-1===t.hidden.indexOf(e.id)}));i.setAvailableMetaBoxesPerLocation(a)}})},5796:function(){!function(t,e){function i(){return acf.isset(window,"jQuery","fn","select2","amd")?4:!!acf.isset(window,"Select2")&&3}acf.newSelect2=function(t,e){if(e=acf.parseArgs(e,{allowNull:!1,placeholder:"",multiple:!1,field:!1,ajax:!1,ajaxAction:"",ajaxData:function(t){return t},ajaxResults:function(t){return t}}),4==i())var a=new n(t,e);else a=new s(t,e);return acf.doAction("new_select2",a),a};var a=acf.Model.extend({setup:function(e,i){t.extend(this.data,i),this.$el=e},initialize:function(){},selectOption:function(t){var e=this.getOption(t);e.prop("selected")||e.prop("selected",!0).trigger("change")},unselectOption:function(t){var e=this.getOption(t);e.prop("selected")&&e.prop("selected",!1).trigger("change")},getOption:function(t){return this.$('option[value="'+t+'"]')},addOption:function(e){e=acf.parseArgs(e,{id:"",text:"",selected:!1});var i=this.getOption(e.id);return i.length||((i=t("")).html(e.text),i.attr("value",e.id),i.prop("selected",e.selected),this.$el.append(i)),i},getValue:function(){var e=[],i=this.$el.find("option:selected");return i.exists()?((i=i.sort((function(t,e){return+t.getAttribute("data-i")-+e.getAttribute("data-i")}))).each((function(){var i=t(this);e.push({$el:i,id:i.attr("value"),text:i.text()})})),e):e},mergeOptions:function(){},getChoices:function(){var e=function(i){var a=[];return i.children().each((function(){var i=t(this);i.is("optgroup")?a.push({text:i.attr("label"),children:e(i)}):a.push({id:i.attr("value"),text:i.text()})})),a};return e(this.$el)},getAjaxData:function(t){var e={action:this.get("ajaxAction"),s:t.term||"",paged:t.page||1},i=this.get("field");i&&(e.field_key=i.get("key"));var a=this.get("ajaxData");return a&&(e=a.apply(this,[e,t])),e=acf.applyFilters("select2_ajax_data",e,this.data,this.$el,i||!1,this),acf.prepareForAjax(e)},getAjaxResults:function(t,e){t=acf.parseArgs(t,{results:!1,more:!1});var i=this.get("ajaxResults");return i&&(t=i.apply(this,[t,e])),acf.applyFilters("select2_ajax_results",t,e,this)},processAjaxResults:function(e,i){return(e=this.getAjaxResults(e,i)).more&&(e.pagination={more:!0}),setTimeout(t.proxy(this.mergeOptions,this),1),e},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"),data:[],escapeMarkup:function(t){return"string"!=typeof t?t:acf.escHtml(t)}};acf.isset(window,"jQuery","fn","selectWoo")||(a.templateSelection=function(e){var i=t('');return i.html(acf.escHtml(e.text)),i.data("element",e.element),i}),a.multiple&&this.getValue().map((function(t){t.$el.detach().appendTo(i)}));var n=i.attr("data-ajax");n!==e&&(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:t.proxy(this.getAjaxData,this),processResults:t.proxy(this.processAjaxResults,this)});var s=this.get("field");a=acf.applyFilters("select2_args",a,i,this.data,s||!1,this),i.select2(a);var o=i.next(".select2-container");if(a.multiple){var r=o.find("ul");r.sortable({stop:function(e){r.find(".select2-selection__choice").each((function(){if(t(this).data("data"))var e=t(t(this).data("data").element);else e=t(t(this).find("span.acf-selection").data("element"));e.detach().appendTo(i)})),i.trigger("change")}}),i.on("select2:select",this.proxy((function(t){this.getOption(t.params.data.id).detach().appendTo(this.$el)})))}i.on("select2:open",(()=>{t(".select2-container--open .select2-search__field").get(-1).focus()})),o.addClass("-acf"),n!==e&&i.attr("data-ajax",n),acf.doAction("select2_init",i,a,this.data,s||!1,this)},mergeOptions:function(){var e=!1,i=!1;t('.select2-results__option[role="group"]').each((function(){var a=t(this).children("ul"),n=t(this).children("strong");if(i&&i.text()===n.text())return e.append(a.children()),void t(this).remove();e=a,i=n}))}}),s=a.extend({initialize:function(){var e=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(t){return acf.escHtml(t)},dropdownCss:{"z-index":"999999999"},initSelection:function(t,e){e(a?i:i.shift())}},s=e.siblings("input");s.length||(s=t(''),e.before(s)),inputValue=i.map((function(t){return t.id})).join("||"),s.val(inputValue),n.multiple&&i.map((function(t){t.$el.detach().appendTo(e)})),n.allowClear&&(n.data=n.data.filter((function(t){return""!==t.id}))),e.removeData("ajax"),e.removeAttr("data-ajax"),this.get("ajax")&&(n.ajax={url:acf.get("ajaxurl"),quietMillis:250,dataType:"json",type:"post",cache:!1,data:t.proxy(this.getAjaxData,this),results:t.proxy(this.processAjaxResults,this)});var o=this.get("field");n=acf.applyFilters("select2_args",n,e,this.data,o||!1,this),s.select2(n);var r=s.select2("container"),c=t.proxy(this.getOption,this);if(n.multiple){var l=r.find("ul");l.sortable({stop:function(){l.find(".select2-search-choice").each((function(){var i=t(this).data("select2Data");c(i.id).detach().appendTo(e)})),e.trigger("change")}})}s.on("select2-selecting",(function(i){var a=i.choice,n=c(a.id);n.length||(n=t('")),n.detach().appendTo(e)})),r.addClass("-acf"),acf.doAction("select2_init",e,n,this.data,o||!1,this),s.on("change",(function(){var t=s.val();t.indexOf("||")&&(t=t.split("||")),e.val(t).trigger("change")})),e.hide()},mergeOptions:function(){var e=!1;t("#select2-drop .select2-result-with-children").each((function(){var i=t(this).children("ul"),a=t(this).children(".select2-result-label");if(e&&e.text()===a.text())return e.append(i.children()),void t(this).remove();e=a}))},getAjaxData:function(t,e){var i={term:t,page:e},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 t=acf.get("locale"),e=(acf.get("rtl"),acf.get("select2L10n")),a=i();return!!e&&0!==t.indexOf("en")&&void(4==a?this.addTranslations4():3==a&&this.addTranslations3())},addTranslations4:function(){var t=acf.get("select2L10n"),e=acf.get("locale");e=e.replace("_","-");var i={errorLoading:function(){return t.load_fail},inputTooLong:function(e){var i=e.input.length-e.maximum;return i>1?t.input_too_long_n.replace("%d",i):t.input_too_long_1},inputTooShort:function(e){var i=e.minimum-e.input.length;return i>1?t.input_too_short_n.replace("%d",i):t.input_too_short_1},loadingMore:function(){return t.load_more},maximumSelected:function(e){var i=e.maximum;return i>1?t.selection_too_long_n.replace("%d",i):t.selection_too_long_1},noResults:function(){return t.matches_0},searching:function(){return t.searching}};jQuery.fn.select2.amd.define("select2/i18n/"+e,[],(function(){return i}))},addTranslations3:function(){var e=acf.get("select2L10n"),i=acf.get("locale");i=i.replace("_","-");var a={formatMatches:function(t){return t>1?e.matches_n.replace("%d",t):e.matches_1},formatNoMatches:function(){return e.matches_0},formatAjaxError:function(){return e.load_fail},formatInputTooShort:function(t,i){var a=i-t.length;return a>1?e.input_too_short_n.replace("%d",a):e.input_too_short_1},formatInputTooLong:function(t,i){var a=t.length-i;return a>1?e.input_too_long_n.replace("%d",a):e.input_too_long_1},formatSelectionTooBig:function(t){return t>1?e.selection_too_long_n.replace("%d",t):e.selection_too_long_1},formatLoadMore:function(){return e.load_more},formatSearching:function(){return e.searching}};t.fn.select2.locales=t.fn.select2.locales||{},t.fn.select2.locales[i]=a,t.extend(t.fn.select2.defaults,a)},onDuplicate:function(t,e){e.find(".select2-container").remove()}})}(jQuery)},8061:function(){var t;t=jQuery,acf.tinymce={defaults:function(){return"undefined"!=typeof tinyMCEPreInit&&{tinymce:tinyMCEPreInit.mceInit.acf_content,quicktags:tinyMCEPreInit.qtInit.acf_content}},initialize:function(t,e){(e=acf.parseArgs(e,{tinymce:!0,quicktags:!0,toolbar:"full",mode:"visual",field:!1})).tinymce&&this.initializeTinymce(t,e),e.quicktags&&this.initializeQuicktags(t,e)},initializeTinymce:function(e,i){var a=t("#"+e),n=this.defaults(),s=acf.get("toolbars"),o=i.field||!1;if(o.$el,"undefined"==typeof tinymce)return!1;if(!n)return!1;if(tinymce.get(e))return this.enable(e);var r=t.extend({},n.tinymce,i.tinymce);r.id=e,r.selector="#"+e;var c=i.toolbar;if(c&&s&&s[c])for(var l=1;l<=4;l++)r["toolbar"+l]=s[c][l]||"";if(r.setup=function(t){t.on("change",(function(e){t.save(),a.trigger("change")})),t.on("mouseup",(function(t){var e=new MouseEvent("mouseup");window.dispatchEvent(e)}))},r.wp_autoresize_on=!1,r.tadv_noautop||(r.wpautop=!0),r=acf.applyFilters("wysiwyg_tinymce_settings",r,e,o),tinyMCEPreInit.mceInit[e]=r,"visual"==i.mode){tinymce.init(r);var d=tinymce.get(e);if(!d)return!1;d.acf=i.field,acf.doAction("wysiwyg_tinymce_init",d,d.id,r,o)}},initializeQuicktags:function(e,i){var a=this.defaults();if("undefined"==typeof quicktags)return!1;if(!a)return!1;var n=t.extend({},a.quicktags,i.quicktags);n.id=e;var s=i.field||!1;s.$el,n=acf.applyFilters("wysiwyg_quicktags_settings",n,n.id,s),tinyMCEPreInit.qtInit[e]=n;var o=quicktags(n);if(!o)return!1;this.buildQuicktags(o),acf.doAction("wysiwyg_quicktags_init",o,o.id,n,s)},buildQuicktags:function(t){var e,i,a,n,s,o,r,c;for(o in t.canvas,e=t.name,i=t.settings,n="",a={},r="",c=t.id,i.buttons&&(r=","+i.buttons+","),edButtons)edButtons[o]&&(s=edButtons[o].id,r&&-1!==",strong,em,link,block,del,ins,img,ul,ol,li,code,more,close,".indexOf(","+s+",")&&-1===r.indexOf(","+s+",")||edButtons[o].instance&&edButtons[o].instance!==c||(a[s]=edButtons[o],edButtons[o].html&&(n+=edButtons[o].html(e+"_"))));r&&-1!==r.indexOf(",dfw,")&&(a.dfw=new QTags.DFWButton,n+=a.dfw.html(e+"_")),"rtl"===document.getElementsByTagName("html")[0].dir&&(a.textdirection=new QTags.TextDirectionButton,n+=a.textdirection.html(e+"_")),t.toolbar.innerHTML=n,t.theButtons=a,"undefined"!=typeof jQuery&&jQuery(document).triggerHandler("quicktags-init",[t])},disable:function(t){this.destroyTinymce(t)},remove:function(t){this.destroyTinymce(t)},destroy:function(t){this.destroyTinymce(t)},destroyTinymce:function(t){if("undefined"==typeof tinymce)return!1;var e=tinymce.get(t);return!!e&&(e.save(),e.destroy(),!0)},enable:function(t){this.enableTinymce(t)},enableTinymce:function(e){return"undefined"!=typeof switchEditors&&void 0!==tinyMCEPreInit.mceInit[e]&&(t("#"+e).show(),switchEditors.go(e,"tmce"),!0)}},new acf.Model({priority:5,actions:{prepare:"onPrepare",ready:"onReady"},onPrepare:function(){var e=t("#acf-hidden-wp-editor");e.exists()&&e.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(t){var e=t.editor;"acf"===e.id.substr(0,3)&&(e=tinymce.editors.content||e,tinymce.activeEditor=e,wpActiveEditor=e.id)}))}})},1417:function(){var t;t=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,t(window).on("beforeunload",this.onUnload))},stopListening:function(){this.changed=!1,t(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(){!function(t,e){var i=acf.Model.extend({id:"Validator",data:{errors:[],notice:null,status:""},events:{"changed:status":"onChangeStatus"},addErrors:function(t){t.map(this.addError,this)},addError:function(t){this.data.errors.push(t)},hasErrors:function(){return this.data.errors.length},clearErrors:function(){return this.data.errors=[]},getErrors:function(){return this.data.errors},getFieldErrors:function(){var t=[],e=[];return this.getErrors().map((function(i){if(i.input){var a=e.indexOf(i.input);a>-1?t[a]=i:(t.push(i),e.push(i.input))}})),t},getGlobalErrors:function(){return this.getErrors().filter((function(t){return!t.input}))},showErrors:function(){if(this.hasErrors()){var e=this.getFieldErrors(),i=this.getGlobalErrors(),a=0,n=!1;e.map((function(t){var e=this.$('[name="'+t.input+'"]').first();if(e.length||(e=this.$('[name^="'+t.input+'"]').first()),e.length){a++;var i=acf.getClosestField(e);o(i.$el),i.showError(t.message),n||(n=i.$el)}}),this);var s=acf.__("Validation failed");if(i.map((function(t){s+=". "+t.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 r=acf.newNotice({type:"error",text:s,target:this.$el});this.set("notice",r)}n||(n=this.get("notice").$el),setTimeout((function(){t("html, body").animate({scrollTop:n.offset().top-t(window).height()/2},500)}),10)}},onChangeStatus:function(t,e,i,a){this.$el.removeClass("is-"+a).addClass("is-"+i)},validate:function(e){if(e=acf.parseArgs(e,{event:!1,reset:!1,loading:function(){},complete:function(){},failure:function(){},success:function(t){t.submit()}}),"valid"==this.get("status"))return!0;if("validating"==this.get("status"))return!1;if(!this.$(".acf-field").length)return!0;if(e.event){var i=t.Event(null,e.event);e.success=function(){acf.enableSubmit(t(i.target)).trigger(i)}}acf.doAction("validation_begin",this.$el),acf.lockForm(this.$el),e.loading(this.$el,this),this.set("status","validating");var a=acf.serialize(this.$el);return a.action="acf/validate_save_post",t.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"json",context:this,success:function(t){if(acf.isAjaxSuccess(t)){var e=acf.applyFilters("validation_complete",t.data,this.$el,this);e.valid||this.addErrors(e.errors)}},complete:function(){acf.unlockForm(this.$el),this.hasErrors()?(this.set("status","invalid"),acf.doAction("validation_failure",this.$el,this),this.showErrors(),e.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),e.success(this.$el,this),acf.lockForm(this.$el),e.reset&&this.reset()),e.complete(this.$el,this),this.clearErrors()}}),!1},setup:function(t){this.$el=t},reset:function(){this.set("errors",[]),this.set("notice",null),this.set("status",""),acf.unlockForm(this.$el)}}),a=function(t){var e=t.data("acf");return e||(e=new i(t)),e};acf.validateForm=function(t){return a(t.form).validate(t)},acf.enableSubmit=function(t){return t.removeClass("disabled")},acf.disableSubmit=function(t){return t.addClass("disabled")},acf.showSpinner=function(t){return t.addClass("is-active"),t.css("display","inline-block"),t},acf.hideSpinner=function(t){return t.removeClass("is-active"),t.css("display","none"),t},acf.lockForm=function(t){var e=n(t),i=e.find('.button, [type="submit"]').not(".acf-nav, .acf-repeater-add-row"),a=e.find(".spinner, .acf-spinner");return acf.hideSpinner(a),acf.disableSubmit(i),acf.showSpinner(a.last()),t},acf.unlockForm=function(t){var e=n(t),i=e.find('.button, [type="submit"]').not(".acf-nav, .acf-repeater-add-row"),a=e.find(".spinner, .acf-spinner");return acf.enableSubmit(i),acf.hideSpinner(a),t};var n=function(t){var e;return(e=t.find("#submitdiv")).length||(e=t.find("#submitpost")).length||(e=t.find("p.submit").last()).length||(e=t.find(".acf-form-submit")).length?e:t},s=acf.debounce((function(t){t.submit()})),o=function(t){var e=t.parents(".acf-postbox");if(e.length){var i=acf.getPostbox(e);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(t){a(t).reset()},addInputEvents:function(e){if("safari"!==acf.get("browser")){var i=t(".acf-field [name]",e);i.length&&this.on(i,"invalid","onInvalid")}},onInvalid:function(t,e){t.preventDefault();var i=e.closest("form");i.length&&(a(i).addError({input:e.attr("name"),message:acf.strEscape(t.target.validationMessage)}),s(i))},onClickSubmit:function(e,i){t(".acf-field input").each((function(){this.checkValidity()||o(t(this))})),this.set("originalEvent",e)},onClickSave:function(t,e){this.set("ignore",!0)},onClickSubmitGutenberg:function(e,i){acf.validateForm({form:t("#editor"),event:e,reset:!0,failure:function(t,e){var i=e.get("notice").$el;i.appendTo(".components-notice-list"),i.find(".acf-notice-dismiss").removeClass("small")}})||(e.preventDefault(),e.stopImmediatePropagation())},onSubmitPost:function(e,i){"dopreview"===t("input#wp-preview").val()&&(this.set("ignore",!0),acf.unlockForm(i))},onSubmit:function(t,e){if(!this.active||this.get("ignore")||t.isDefaultPrevented())return this.allowSubmit();acf.validateForm({form:e,event:this.get("originalEvent")})||t.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 e=wp.data.dispatch("core/editor"),i=wp.data.select("core/editor"),a=wp.data.dispatch("core/notices"),n=e.savePost,s=!1,o="";wp.data.subscribe((function(){var t=i.getEditedPostAttribute("status");s="publish"===t||"future"===t,o="publish"!==t?t:o})),e.savePost=function(i){i=i||{};var r=this,c=arguments;return new Promise((function(n,r){return i.isAutosave||i.isPreview?n("Validation ignored (autosave)."):s?void(acf.validateForm({form:t("#editor"),reset:!0,complete:function(t,i){e.unlockPostSaving("acf")},failure:function(t,i){var n=i.get("notice");a.createErrorNotice(n.get("text"),{id:"acf-validation",isDismissible:!0}),n.remove(),o&&e.editPost({status:o}),r("Validation failed.")},success:function(){a.removeNotice("acf-validation"),n("Validation success.")}})?n("Validation bypassed."):e.lockPostSaving("acf")):n("Validation ignored (draft).")})).then((function(){return n.apply(r,c)})).catch((function(t){}))}}})}(jQuery)}},e={};function i(a){var n=e[a];if(void 0!==n)return n.exports;var s=e[a]={exports:{}};return t[a](s,s.exports,i),s.exports}i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,{a:e}),e},i.d=function(t,e){for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){"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 diff --git a/assets/build/js/acf.js b/assets/build/js/acf.js index df6c8b4..015d2ff 100644 --- a/assets/build/js/acf.js +++ b/assets/build/js/acf.js @@ -1694,11 +1694,14 @@ events: { 'mouseenter .acf-js-tooltip': 'showTitle', 'mouseup .acf-js-tooltip': 'hideTitle', - 'mouseleave .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 (e, $el) { // vars - var title = $el.attr('title'); // bail ealry if no title + var title = $el.attr('title'); // bail early if no title if (!title) { return; @@ -1724,6 +1727,11 @@ this.tooltip.hide(); // restore title $el.attr('title', this.tooltip.get('text')); + }, + onKeyUp: function (e, $el) { + if ('Escape' === e.key) { + this.hideTitle(e, $el); + } } }); })(jQuery); @@ -3664,8 +3672,16 @@ acf.getXhrError = function (xhr) { - if (xhr.responseJSON && xhr.responseJSON.message) { - return xhr.responseJSON.message; + if (xhr.responseJSON) { + // Responses via `return new WP_Error();` + if (xhr.responseJSON.message) { + return xhr.responseJSON.message; + } // Responses via `wp_send_json_error();`. + + + if (xhr.responseJSON.data && xhr.responseJSON.data.error) { + return xhr.responseJSON.data.error; + } } else if (xhr.statusText) { return xhr.statusText; } diff --git a/assets/build/js/acf.js.map b/assets/build/js/acf.js.map index eee28a2..c49f1fb 100644 --- a/assets/build/js/acf.js.map +++ b/assets/build/js/acf.js.map @@ -1 +1 @@ -{"version":3,"file":"acf.js","mappings":"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","sources":["webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-hooks.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-modal.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-model.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-notice.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-panel.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-popup.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf-tooltip.js","webpack://advanced-custom-fields-pro/./src/advanced-custom-fields-pro/assets/src/js/_acf.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.js"],"sourcesContent":["( function ( window, undefined ) {\n\t'use strict';\n\n\t/**\n\t * Handles managing all events for whatever you plug it into. Priorities for hooks are based on lowest to highest in\n\t * that, lowest priority hooks are fired first.\n\t */\n\tvar EventManager = function () {\n\t\t/**\n\t\t * Maintain a reference to the object scope so our public methods never get confusing.\n\t\t */\n\t\tvar MethodsAvailable = {\n\t\t\tremoveFilter: removeFilter,\n\t\t\tapplyFilters: applyFilters,\n\t\t\taddFilter: addFilter,\n\t\t\tremoveAction: removeAction,\n\t\t\tdoAction: doAction,\n\t\t\taddAction: addAction,\n\t\t\tstorage: getStorage,\n\t\t};\n\n\t\t/**\n\t\t * Contains the hooks that get registered with this EventManager. The array for storage utilizes a \"flat\"\n\t\t * object literal such that looking up the hook utilizes the native object literal hash.\n\t\t */\n\t\tvar STORAGE = {\n\t\t\tactions: {},\n\t\t\tfilters: {},\n\t\t};\n\n\t\tfunction getStorage() {\n\t\t\treturn STORAGE;\n\t\t}\n\n\t\t/**\n\t\t * Adds an action to the event manager.\n\t\t *\n\t\t * @param action Must contain namespace.identifier\n\t\t * @param callback Must be a valid callback function before this action is added\n\t\t * @param [priority=10] Used to control when the function is executed in relation to other callbacks bound to the same hook\n\t\t * @param [context] Supply a value to be used for this\n\t\t */\n\t\tfunction addAction( action, callback, priority, context ) {\n\t\t\tif (\n\t\t\t\ttypeof action === 'string' &&\n\t\t\t\ttypeof callback === 'function'\n\t\t\t) {\n\t\t\t\tpriority = parseInt( priority || 10, 10 );\n\t\t\t\t_addHook( 'actions', action, callback, priority, context );\n\t\t\t}\n\n\t\t\treturn MethodsAvailable;\n\t\t}\n\n\t\t/**\n\t\t * Performs an action if it exists. You can pass as many arguments as you want to this function; the only rule is\n\t\t * that the first argument must always be the action.\n\t\t */\n\t\tfunction doAction(/* action, arg1, arg2, ... */) {\n\t\t\tvar args = Array.prototype.slice.call( arguments );\n\t\t\tvar action = args.shift();\n\n\t\t\tif ( typeof action === 'string' ) {\n\t\t\t\t_runHook( 'actions', action, args );\n\t\t\t}\n\n\t\t\treturn MethodsAvailable;\n\t\t}\n\n\t\t/**\n\t\t * Removes the specified action if it contains a namespace.identifier & exists.\n\t\t *\n\t\t * @param action The action to remove\n\t\t * @param [callback] Callback function to remove\n\t\t */\n\t\tfunction removeAction( action, callback ) {\n\t\t\tif ( typeof action === 'string' ) {\n\t\t\t\t_removeHook( 'actions', action, callback );\n\t\t\t}\n\n\t\t\treturn MethodsAvailable;\n\t\t}\n\n\t\t/**\n\t\t * Adds a filter to the event manager.\n\t\t *\n\t\t * @param filter Must contain namespace.identifier\n\t\t * @param callback Must be a valid callback function before this action is added\n\t\t * @param [priority=10] Used to control when the function is executed in relation to other callbacks bound to the same hook\n\t\t * @param [context] Supply a value to be used for this\n\t\t */\n\t\tfunction addFilter( filter, callback, priority, context ) {\n\t\t\tif (\n\t\t\t\ttypeof filter === 'string' &&\n\t\t\t\ttypeof callback === 'function'\n\t\t\t) {\n\t\t\t\tpriority = parseInt( priority || 10, 10 );\n\t\t\t\t_addHook( 'filters', filter, callback, priority, context );\n\t\t\t}\n\n\t\t\treturn MethodsAvailable;\n\t\t}\n\n\t\t/**\n\t\t * Performs a filter if it exists. You should only ever pass 1 argument to be filtered. The only rule is that\n\t\t * the first argument must always be the filter.\n\t\t */\n\t\tfunction applyFilters(/* filter, filtered arg, arg2, ... */) {\n\t\t\tvar args = Array.prototype.slice.call( arguments );\n\t\t\tvar filter = args.shift();\n\n\t\t\tif ( typeof filter === 'string' ) {\n\t\t\t\treturn _runHook( 'filters', filter, args );\n\t\t\t}\n\n\t\t\treturn MethodsAvailable;\n\t\t}\n\n\t\t/**\n\t\t * Removes the specified filter if it contains a namespace.identifier & exists.\n\t\t *\n\t\t * @param filter The action to remove\n\t\t * @param [callback] Callback function to remove\n\t\t */\n\t\tfunction removeFilter( filter, callback ) {\n\t\t\tif ( typeof filter === 'string' ) {\n\t\t\t\t_removeHook( 'filters', filter, callback );\n\t\t\t}\n\n\t\t\treturn MethodsAvailable;\n\t\t}\n\n\t\t/**\n\t\t * Removes the specified hook by resetting the value of it.\n\t\t *\n\t\t * @param type Type of hook, either 'actions' or 'filters'\n\t\t * @param hook The hook (namespace.identifier) to remove\n\t\t * @private\n\t\t */\n\t\tfunction _removeHook( type, hook, callback, context ) {\n\t\t\tif ( ! STORAGE[ type ][ hook ] ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( ! callback ) {\n\t\t\t\tSTORAGE[ type ][ hook ] = [];\n\t\t\t} else {\n\t\t\t\tvar handlers = STORAGE[ type ][ hook ];\n\t\t\t\tvar i;\n\t\t\t\tif ( ! context ) {\n\t\t\t\t\tfor ( i = handlers.length; i--; ) {\n\t\t\t\t\t\tif ( handlers[ i ].callback === callback ) {\n\t\t\t\t\t\t\thandlers.splice( i, 1 );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tfor ( i = handlers.length; i--; ) {\n\t\t\t\t\t\tvar handler = handlers[ i ];\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\thandler.callback === callback &&\n\t\t\t\t\t\t\thandler.context === context\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\thandlers.splice( i, 1 );\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\t/**\n\t\t * Adds the hook to the appropriate storage container\n\t\t *\n\t\t * @param type 'actions' or 'filters'\n\t\t * @param hook The hook (namespace.identifier) to add to our event manager\n\t\t * @param callback The function that will be called when the hook is executed.\n\t\t * @param priority The priority of this hook. Must be an integer.\n\t\t * @param [context] A value to be used for this\n\t\t * @private\n\t\t */\n\t\tfunction _addHook( type, hook, callback, priority, context ) {\n\t\t\tvar hookObject = {\n\t\t\t\tcallback: callback,\n\t\t\t\tpriority: priority,\n\t\t\t\tcontext: context,\n\t\t\t};\n\n\t\t\t// Utilize 'prop itself' : http://jsperf.com/hasownproperty-vs-in-vs-undefined/19\n\t\t\tvar hooks = STORAGE[ type ][ hook ];\n\t\t\tif ( hooks ) {\n\t\t\t\thooks.push( hookObject );\n\t\t\t\thooks = _hookInsertSort( hooks );\n\t\t\t} else {\n\t\t\t\thooks = [ hookObject ];\n\t\t\t}\n\n\t\t\tSTORAGE[ type ][ hook ] = hooks;\n\t\t}\n\n\t\t/**\n\t\t * Use an insert sort for keeping our hooks organized based on priority. This function is ridiculously faster\n\t\t * than bubble sort, etc: http://jsperf.com/javascript-sort\n\t\t *\n\t\t * @param hooks The custom array containing all of the appropriate hooks to perform an insert sort on.\n\t\t * @private\n\t\t */\n\t\tfunction _hookInsertSort( hooks ) {\n\t\t\tvar tmpHook, j, prevHook;\n\t\t\tfor ( var i = 1, len = hooks.length; i < len; i++ ) {\n\t\t\t\ttmpHook = hooks[ i ];\n\t\t\t\tj = i;\n\t\t\t\twhile (\n\t\t\t\t\t( prevHook = hooks[ j - 1 ] ) &&\n\t\t\t\t\tprevHook.priority > tmpHook.priority\n\t\t\t\t) {\n\t\t\t\t\thooks[ j ] = hooks[ j - 1 ];\n\t\t\t\t\t--j;\n\t\t\t\t}\n\t\t\t\thooks[ j ] = tmpHook;\n\t\t\t}\n\n\t\t\treturn hooks;\n\t\t}\n\n\t\t/**\n\t\t * Runs the specified hook. If it is an action, the value is not modified but if it is a filter, it is.\n\t\t *\n\t\t * @param type 'actions' or 'filters'\n\t\t * @param hook The hook ( namespace.identifier ) to be ran.\n\t\t * @param args Arguments to pass to the action/filter. If it's a filter, args is actually a single parameter.\n\t\t * @private\n\t\t */\n\t\tfunction _runHook( type, hook, args ) {\n\t\t\tvar handlers = STORAGE[ type ][ hook ];\n\n\t\t\tif ( ! handlers ) {\n\t\t\t\treturn type === 'filters' ? args[ 0 ] : false;\n\t\t\t}\n\n\t\t\tvar i = 0,\n\t\t\t\tlen = handlers.length;\n\t\t\tif ( type === 'filters' ) {\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\targs[ 0 ] = handlers[ i ].callback.apply(\n\t\t\t\t\t\thandlers[ i ].context,\n\t\t\t\t\t\targs\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\thandlers[ i ].callback.apply( handlers[ i ].context, args );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn type === 'filters' ? args[ 0 ] : true;\n\t\t}\n\n\t\t// return all of the publicly available methods\n\t\treturn MethodsAvailable;\n\t};\n\n\t// instantiate\n\tacf.hooks = new EventManager();\n} )( window );\n","( function ( $, undefined ) {\n\tacf.models.Modal = acf.Model.extend( {\n\t\tdata: {\n\t\t\ttitle: '',\n\t\t\tcontent: '',\n\t\t\ttoolbar: '',\n\t\t},\n\t\tevents: {\n\t\t\t'click .acf-modal-close': 'onClickClose',\n\t\t},\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t\tthis.$el = $();\n\t\t\tthis.render();\n\t\t},\n\t\tinitialize: function () {\n\t\t\tthis.open();\n\t\t},\n\t\trender: function () {\n\t\t\t// Extract vars.\n\t\t\tvar title = this.get( 'title' );\n\t\t\tvar content = this.get( 'content' );\n\t\t\tvar toolbar = this.get( 'toolbar' );\n\n\t\t\t// Create element.\n\t\t\tvar $el = $(\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\t'

                              ' + title + '

                              ',\n\t\t\t\t\t'',\n\t\t\t\t\t'
                              ',\n\t\t\t\t\t'
                              ' + content + '
                              ',\n\t\t\t\t\t'
                              ' + toolbar + '
                              ',\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// Update DOM.\n\t\t\tif ( this.$el ) {\n\t\t\t\tthis.$el.replaceWith( $el );\n\t\t\t}\n\t\t\tthis.$el = $el;\n\n\t\t\t// Trigger action.\n\t\t\tacf.doAction( 'append', $el );\n\t\t},\n\t\tupdate: function ( props ) {\n\t\t\tthis.data = acf.parseArgs( props, this.data );\n\t\t\tthis.render();\n\t\t},\n\t\ttitle: function ( title ) {\n\t\t\tthis.$( '.acf-modal-title h2' ).html( title );\n\t\t},\n\t\tcontent: function ( content ) {\n\t\t\tthis.$( '.acf-modal-content' ).html( content );\n\t\t},\n\t\ttoolbar: function ( toolbar ) {\n\t\t\tthis.$( '.acf-modal-toolbar' ).html( toolbar );\n\t\t},\n\t\topen: function () {\n\t\t\t$( 'body' ).append( this.$el );\n\t\t},\n\t\tclose: function () {\n\t\t\tthis.remove();\n\t\t},\n\t\tonClickClose: function ( e, $el ) {\n\t\t\te.preventDefault();\n\t\t\tthis.close();\n\t\t},\n\t} );\n\n\t/**\n\t * Returns a new modal.\n\t *\n\t * @date\t21/4/20\n\t * @since\t5.9.0\n\t *\n\t * @param\tobject props The modal props.\n\t * @return\tobject\n\t */\n\tacf.newModal = function ( props ) {\n\t\treturn new acf.models.Modal( props );\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\t// Cached regex to split keys for `addEvent`.\n\tvar delegateEventSplitter = /^(\\S+)\\s*(.*)$/;\n\n\t/**\n\t * extend\n\t *\n\t * Helper function to correctly set up the prototype chain for subclasses\n\t * Heavily inspired by backbone.js\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject protoProps New properties for this object.\n\t * @return\tfunction.\n\t */\n\n\tvar extend = function ( protoProps ) {\n\t\t// vars\n\t\tvar Parent = this;\n\t\tvar Child;\n\n\t\t// The constructor function for the new subclass is either defined by you\n\t\t// (the \"constructor\" property in your `extend` definition), or defaulted\n\t\t// by us to simply call the parent constructor.\n\t\tif ( protoProps && protoProps.hasOwnProperty( 'constructor' ) ) {\n\t\t\tChild = protoProps.constructor;\n\t\t} else {\n\t\t\tChild = function () {\n\t\t\t\treturn Parent.apply( this, arguments );\n\t\t\t};\n\t\t}\n\n\t\t// Add static properties to the constructor function, if supplied.\n\t\t$.extend( Child, Parent );\n\n\t\t// Set the prototype chain to inherit from `parent`, without calling\n\t\t// `parent`'s constructor function and add the prototype properties.\n\t\tChild.prototype = Object.create( Parent.prototype );\n\t\t$.extend( Child.prototype, protoProps );\n\t\tChild.prototype.constructor = Child;\n\n\t\t// Set a convenience property in case the parent's prototype is needed later.\n\t\t//Child.prototype.__parent__ = Parent.prototype;\n\n\t\t// return\n\t\treturn Child;\n\t};\n\n\t/**\n\t * Model\n\t *\n\t * Base class for all inheritence\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject props\n\t * @return\tfunction.\n\t */\n\n\tvar Model = ( acf.Model = function () {\n\t\t// generate uique client id\n\t\tthis.cid = acf.uniqueId( 'acf' );\n\n\t\t// set vars to avoid modifying prototype\n\t\tthis.data = $.extend( true, {}, this.data );\n\n\t\t// pass props to setup function\n\t\tthis.setup.apply( this, arguments );\n\n\t\t// store on element (allow this.setup to create this.$el)\n\t\tif ( this.$el && ! this.$el.data( 'acf' ) ) {\n\t\t\tthis.$el.data( 'acf', this );\n\t\t}\n\n\t\t// initialize\n\t\tvar initialize = function () {\n\t\t\tthis.initialize();\n\t\t\tthis.addEvents();\n\t\t\tthis.addActions();\n\t\t\tthis.addFilters();\n\t\t};\n\n\t\t// initialize on action\n\t\tif ( this.wait && ! acf.didAction( this.wait ) ) {\n\t\t\tthis.addAction( this.wait, initialize );\n\n\t\t\t// initialize now\n\t\t} else {\n\t\t\tinitialize.apply( this );\n\t\t}\n\t} );\n\n\t// Attach all inheritable methods to the Model prototype.\n\t$.extend( Model.prototype, {\n\t\t// Unique model id\n\t\tid: '',\n\n\t\t// Unique client id\n\t\tcid: '',\n\n\t\t// jQuery element\n\t\t$el: null,\n\n\t\t// Data specific to this instance\n\t\tdata: {},\n\n\t\t// toggle used when changing data\n\t\tbusy: false,\n\t\tchanged: false,\n\n\t\t// Setup events hooks\n\t\tevents: {},\n\t\tactions: {},\n\t\tfilters: {},\n\n\t\t// class used to avoid nested event triggers\n\t\teventScope: '',\n\n\t\t// action to wait until initialize\n\t\twait: false,\n\n\t\t// action priority default\n\t\tpriority: 10,\n\n\t\t/**\n\t\t * get\n\t\t *\n\t\t * Gets a specific data value\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @return\tmixed\n\t\t */\n\n\t\tget: function ( name ) {\n\t\t\treturn this.data[ name ];\n\t\t},\n\n\t\t/**\n\t\t * has\n\t\t *\n\t\t * Returns `true` if the data exists and is not null\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @return\tboolean\n\t\t */\n\n\t\thas: function ( name ) {\n\t\t\treturn this.get( name ) != null;\n\t\t},\n\n\t\t/**\n\t\t * set\n\t\t *\n\t\t * Sets a specific data value\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tmixed value\n\t\t * @return\tthis\n\t\t */\n\n\t\tset: function ( name, value, silent ) {\n\t\t\t// bail if unchanged\n\t\t\tvar prevValue = this.get( name );\n\t\t\tif ( prevValue == value ) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// set data\n\t\t\tthis.data[ name ] = value;\n\n\t\t\t// trigger events\n\t\t\tif ( ! silent ) {\n\t\t\t\tthis.changed = true;\n\t\t\t\tthis.trigger( 'changed:' + name, [ value, prevValue ] );\n\t\t\t\tthis.trigger( 'changed', [ name, value, prevValue ] );\n\t\t\t}\n\n\t\t\t// return\n\t\t\treturn this;\n\t\t},\n\n\t\t/**\n\t\t * inherit\n\t\t *\n\t\t * Inherits the data from a jQuery element\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tjQuery $el\n\t\t * @return\tthis\n\t\t */\n\n\t\tinherit: function ( data ) {\n\t\t\t// allow jQuery\n\t\t\tif ( data instanceof jQuery ) {\n\t\t\t\tdata = data.data();\n\t\t\t}\n\n\t\t\t// extend\n\t\t\t$.extend( this.data, data );\n\n\t\t\t// return\n\t\t\treturn this;\n\t\t},\n\n\t\t/**\n\t\t * prop\n\t\t *\n\t\t * mimics the jQuery prop function\n\t\t *\n\t\t * @date\t4/6/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\tprop: function () {\n\t\t\treturn this.$el.prop.apply( this.$el, arguments );\n\t\t},\n\n\t\t/**\n\t\t * setup\n\t\t *\n\t\t * Run during constructor function\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tn/a\n\t\t * @return\tn/a\n\t\t */\n\n\t\tsetup: function ( props ) {\n\t\t\t$.extend( this, props );\n\t\t},\n\n\t\t/**\n\t\t * initialize\n\t\t *\n\t\t * Also run during constructor function\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tn/a\n\t\t * @return\tn/a\n\t\t */\n\n\t\tinitialize: function () {},\n\n\t\t/**\n\t\t * addElements\n\t\t *\n\t\t * Adds multiple jQuery elements to this object\n\t\t *\n\t\t * @date\t9/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\taddElements: function ( elements ) {\n\t\t\telements = elements || this.elements || null;\n\t\t\tif ( ! elements || ! Object.keys( elements ).length ) return false;\n\t\t\tfor ( var i in elements ) {\n\t\t\t\tthis.addElement( i, elements[ i ] );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * addElement\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t9/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\taddElement: function ( name, selector ) {\n\t\t\tthis[ '$' + name ] = this.$( selector );\n\t\t},\n\n\t\t/**\n\t\t * addEvents\n\t\t *\n\t\t * Adds multiple event handlers\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tobject events {event1 : callback, event2 : callback, etc }\n\t\t * @return\tn/a\n\t\t */\n\n\t\taddEvents: function ( events ) {\n\t\t\tevents = events || this.events || null;\n\t\t\tif ( ! events ) return false;\n\t\t\tfor ( var key in events ) {\n\t\t\t\tvar match = key.match( delegateEventSplitter );\n\t\t\t\tthis.on( match[ 1 ], match[ 2 ], events[ key ] );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * removeEvents\n\t\t *\n\t\t * Removes multiple event handlers\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tobject events {event1 : callback, event2 : callback, etc }\n\t\t * @return\tn/a\n\t\t */\n\n\t\tremoveEvents: function ( events ) {\n\t\t\tevents = events || this.events || null;\n\t\t\tif ( ! events ) return false;\n\t\t\tfor ( var key in events ) {\n\t\t\t\tvar match = key.match( delegateEventSplitter );\n\t\t\t\tthis.off( match[ 1 ], match[ 2 ], events[ key ] );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * getEventTarget\n\t\t *\n\t\t * Returns a jQUery element to tigger an event on\n\t\t *\n\t\t * @date\t5/6/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tjQuery $el\t\tThe default jQuery element. Optional.\n\t\t * @param\tstring event\tThe event name. Optional.\n\t\t * @return\tjQuery\n\t\t */\n\n\t\tgetEventTarget: function ( $el, event ) {\n\t\t\treturn $el || this.$el || $( document );\n\t\t},\n\n\t\t/**\n\t\t * validateEvent\n\t\t *\n\t\t * Returns true if the event target's closest $el is the same as this.$el\n\t\t * Requires both this.el and this.$el to be defined\n\t\t *\n\t\t * @date\t5/6/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\tvalidateEvent: function ( e ) {\n\t\t\tif ( this.eventScope ) {\n\t\t\t\treturn $( e.target ).closest( this.eventScope ).is( this.$el );\n\t\t\t} else {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * proxyEvent\n\t\t *\n\t\t * Returns a new event callback function scoped to this model\n\t\t *\n\t\t * @date\t29/3/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tfunction callback\n\t\t * @return\tfunction\n\t\t */\n\n\t\tproxyEvent: function ( callback ) {\n\t\t\treturn this.proxy( function ( e ) {\n\t\t\t\t// validate\n\t\t\t\tif ( ! this.validateEvent( e ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// construct args\n\t\t\t\tvar args = acf.arrayArgs( arguments );\n\t\t\t\tvar extraArgs = args.slice( 1 );\n\t\t\t\tvar eventArgs = [ e, $( e.currentTarget ) ].concat( extraArgs );\n\n\t\t\t\t// callback\n\t\t\t\tcallback.apply( this, eventArgs );\n\t\t\t} );\n\t\t},\n\n\t\t/**\n\t\t * on\n\t\t *\n\t\t * Adds an event handler similar to jQuery\n\t\t * Uses the instance 'cid' to namespace event\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tstring callback\n\t\t * @return\tn/a\n\t\t */\n\n\t\ton: function ( a1, a2, a3, a4 ) {\n\t\t\t// vars\n\t\t\tvar $el, event, selector, callback, args;\n\n\t\t\t// find args\n\t\t\tif ( a1 instanceof jQuery ) {\n\t\t\t\t// 1. args( $el, event, selector, callback )\n\t\t\t\tif ( a4 ) {\n\t\t\t\t\t$el = a1;\n\t\t\t\t\tevent = a2;\n\t\t\t\t\tselector = a3;\n\t\t\t\t\tcallback = a4;\n\n\t\t\t\t\t// 2. args( $el, event, callback )\n\t\t\t\t} else {\n\t\t\t\t\t$el = a1;\n\t\t\t\t\tevent = a2;\n\t\t\t\t\tcallback = a3;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// 3. args( event, selector, callback )\n\t\t\t\tif ( a3 ) {\n\t\t\t\t\tevent = a1;\n\t\t\t\t\tselector = a2;\n\t\t\t\t\tcallback = a3;\n\n\t\t\t\t\t// 4. args( event, callback )\n\t\t\t\t} else {\n\t\t\t\t\tevent = a1;\n\t\t\t\t\tcallback = a2;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// element\n\t\t\t$el = this.getEventTarget( $el );\n\n\t\t\t// modify callback\n\t\t\tif ( typeof callback === 'string' ) {\n\t\t\t\tcallback = this.proxyEvent( this[ callback ] );\n\t\t\t}\n\n\t\t\t// modify event\n\t\t\tevent = event + '.' + this.cid;\n\n\t\t\t// args\n\t\t\tif ( selector ) {\n\t\t\t\targs = [ event, selector, callback ];\n\t\t\t} else {\n\t\t\t\targs = [ event, callback ];\n\t\t\t}\n\n\t\t\t// on()\n\t\t\t$el.on.apply( $el, args );\n\t\t},\n\n\t\t/**\n\t\t * off\n\t\t *\n\t\t * Removes an event handler similar to jQuery\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tstring callback\n\t\t * @return\tn/a\n\t\t */\n\n\t\toff: function ( a1, a2, a3 ) {\n\t\t\t// vars\n\t\t\tvar $el, event, selector, args;\n\n\t\t\t// find args\n\t\t\tif ( a1 instanceof jQuery ) {\n\t\t\t\t// 1. args( $el, event, selector )\n\t\t\t\tif ( a3 ) {\n\t\t\t\t\t$el = a1;\n\t\t\t\t\tevent = a2;\n\t\t\t\t\tselector = a3;\n\n\t\t\t\t\t// 2. args( $el, event )\n\t\t\t\t} else {\n\t\t\t\t\t$el = a1;\n\t\t\t\t\tevent = a2;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// 3. args( event, selector )\n\t\t\t\tif ( a2 ) {\n\t\t\t\t\tevent = a1;\n\t\t\t\t\tselector = a2;\n\n\t\t\t\t\t// 4. args( event )\n\t\t\t\t} else {\n\t\t\t\t\tevent = a1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// element\n\t\t\t$el = this.getEventTarget( $el );\n\n\t\t\t// modify event\n\t\t\tevent = event + '.' + this.cid;\n\n\t\t\t// args\n\t\t\tif ( selector ) {\n\t\t\t\targs = [ event, selector ];\n\t\t\t} else {\n\t\t\t\targs = [ event ];\n\t\t\t}\n\n\t\t\t// off()\n\t\t\t$el.off.apply( $el, args );\n\t\t},\n\n\t\t/**\n\t\t * trigger\n\t\t *\n\t\t * Triggers an event similar to jQuery\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tstring callback\n\t\t * @return\tn/a\n\t\t */\n\n\t\ttrigger: function ( name, args, bubbles ) {\n\t\t\tvar $el = this.getEventTarget();\n\t\t\tif ( bubbles ) {\n\t\t\t\t$el.trigger.apply( $el, arguments );\n\t\t\t} else {\n\t\t\t\t$el.triggerHandler.apply( $el, arguments );\n\t\t\t}\n\t\t\treturn this;\n\t\t},\n\n\t\t/**\n\t\t * addActions\n\t\t *\n\t\t * Adds multiple action handlers\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tobject actions {action1 : callback, action2 : callback, etc }\n\t\t * @return\tn/a\n\t\t */\n\n\t\taddActions: function ( actions ) {\n\t\t\tactions = actions || this.actions || null;\n\t\t\tif ( ! actions ) return false;\n\t\t\tfor ( var i in actions ) {\n\t\t\t\tthis.addAction( i, actions[ i ] );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * removeActions\n\t\t *\n\t\t * Removes multiple action handlers\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tobject actions {action1 : callback, action2 : callback, etc }\n\t\t * @return\tn/a\n\t\t */\n\n\t\tremoveActions: function ( actions ) {\n\t\t\tactions = actions || this.actions || null;\n\t\t\tif ( ! actions ) return false;\n\t\t\tfor ( var i in actions ) {\n\t\t\t\tthis.removeAction( i, actions[ i ] );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * addAction\n\t\t *\n\t\t * Adds an action using the wp.hooks library\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tstring callback\n\t\t * @return\tn/a\n\t\t */\n\n\t\taddAction: function ( name, callback, priority ) {\n\t\t\t//console.log('addAction', name, priority);\n\t\t\t// defaults\n\t\t\tpriority = priority || this.priority;\n\n\t\t\t// modify callback\n\t\t\tif ( typeof callback === 'string' ) {\n\t\t\t\tcallback = this[ callback ];\n\t\t\t}\n\n\t\t\t// add\n\t\t\tacf.addAction( name, callback, priority, this );\n\t\t},\n\n\t\t/**\n\t\t * removeAction\n\t\t *\n\t\t * Remove an action using the wp.hooks library\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tstring callback\n\t\t * @return\tn/a\n\t\t */\n\n\t\tremoveAction: function ( name, callback ) {\n\t\t\tacf.removeAction( name, this[ callback ] );\n\t\t},\n\n\t\t/**\n\t\t * addFilters\n\t\t *\n\t\t * Adds multiple filter handlers\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tobject filters {filter1 : callback, filter2 : callback, etc }\n\t\t * @return\tn/a\n\t\t */\n\n\t\taddFilters: function ( filters ) {\n\t\t\tfilters = filters || this.filters || null;\n\t\t\tif ( ! filters ) return false;\n\t\t\tfor ( var i in filters ) {\n\t\t\t\tthis.addFilter( i, filters[ i ] );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * addFilter\n\t\t *\n\t\t * Adds a filter using the wp.hooks library\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tstring callback\n\t\t * @return\tn/a\n\t\t */\n\n\t\taddFilter: function ( name, callback, priority ) {\n\t\t\t// defaults\n\t\t\tpriority = priority || this.priority;\n\n\t\t\t// modify callback\n\t\t\tif ( typeof callback === 'string' ) {\n\t\t\t\tcallback = this[ callback ];\n\t\t\t}\n\n\t\t\t// add\n\t\t\tacf.addFilter( name, callback, priority, this );\n\t\t},\n\n\t\t/**\n\t\t * removeFilters\n\t\t *\n\t\t * Removes multiple filter handlers\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tobject filters {filter1 : callback, filter2 : callback, etc }\n\t\t * @return\tn/a\n\t\t */\n\n\t\tremoveFilters: function ( filters ) {\n\t\t\tfilters = filters || this.filters || null;\n\t\t\tif ( ! filters ) return false;\n\t\t\tfor ( var i in filters ) {\n\t\t\t\tthis.removeFilter( i, filters[ i ] );\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * removeFilter\n\t\t *\n\t\t * Remove a filter using the wp.hooks library\n\t\t *\n\t\t * @date\t14/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\tstring name\n\t\t * @param\tstring callback\n\t\t * @return\tn/a\n\t\t */\n\n\t\tremoveFilter: function ( name, callback ) {\n\t\t\tacf.removeFilter( name, this[ callback ] );\n\t\t},\n\n\t\t/**\n\t\t * $\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t16/12/17\n\t\t * @since\t5.6.5\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 ( selector ) {\n\t\t\treturn this.$el.find( selector );\n\t\t},\n\n\t\t/**\n\t\t * remove\n\t\t *\n\t\t * Removes the element and listenters\n\t\t *\n\t\t * @date\t19/12/17\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\tremove: function () {\n\t\t\tthis.removeEvents();\n\t\t\tthis.removeActions();\n\t\t\tthis.removeFilters();\n\t\t\tthis.$el.remove();\n\t\t},\n\n\t\t/**\n\t\t * setTimeout\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t16/1/18\n\t\t * @since\t5.6.5\n\t\t *\n\t\t * @param\ttype $var Description. Default.\n\t\t * @return\ttype Description.\n\t\t */\n\n\t\tsetTimeout: function ( callback, milliseconds ) {\n\t\t\treturn setTimeout( this.proxy( callback ), milliseconds );\n\t\t},\n\n\t\t/**\n\t\t * time\n\t\t *\n\t\t * used for debugging\n\t\t *\n\t\t * @date\t7/3/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\ttime: function () {\n\t\t\tconsole.time( this.id || this.cid );\n\t\t},\n\n\t\t/**\n\t\t * timeEnd\n\t\t *\n\t\t * used for debugging\n\t\t *\n\t\t * @date\t7/3/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\ttimeEnd: function () {\n\t\t\tconsole.timeEnd( this.id || this.cid );\n\t\t},\n\n\t\t/**\n\t\t * show\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t15/3/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\tshow: function () {\n\t\t\tacf.show( this.$el );\n\t\t},\n\n\t\t/**\n\t\t * hide\n\t\t *\n\t\t * description\n\t\t *\n\t\t * @date\t15/3/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\thide: function () {\n\t\t\tacf.hide( this.$el );\n\t\t},\n\n\t\t/**\n\t\t * proxy\n\t\t *\n\t\t * Returns a new function scoped to this model\n\t\t *\n\t\t * @date\t29/3/18\n\t\t * @since\t5.6.9\n\t\t *\n\t\t * @param\tfunction callback\n\t\t * @return\tfunction\n\t\t */\n\n\t\tproxy: function ( callback ) {\n\t\t\treturn $.proxy( callback, this );\n\t\t},\n\t} );\n\n\t// Set up inheritance for the model\n\tModel.extend = extend;\n\n\t// Global model storage\n\tacf.models = {};\n\n\t/**\n\t * acf.getInstance\n\t *\n\t * This function will get an instance from an element\n\t *\n\t * @date\t5/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.getInstance = function ( $el ) {\n\t\treturn $el.data( 'acf' );\n\t};\n\n\t/**\n\t * acf.getInstances\n\t *\n\t * This function will get an array of instances from multiple elements\n\t *\n\t * @date\t5/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.getInstances = function ( $el ) {\n\t\tvar instances = [];\n\t\t$el.each( function () {\n\t\t\tinstances.push( acf.getInstance( $( this ) ) );\n\t\t} );\n\t\treturn instances;\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar Notice = acf.Model.extend( {\n\t\tdata: {\n\t\t\ttext: '',\n\t\t\ttype: '',\n\t\t\ttimeout: 0,\n\t\t\tdismiss: true,\n\t\t\ttarget: false,\n\t\t\tclose: function () {},\n\t\t},\n\n\t\tevents: {\n\t\t\t'click .acf-notice-dismiss': 'onClickClose',\n\t\t},\n\n\t\ttmpl: function () {\n\t\t\treturn '
                              ';\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},\n\n\t\tinitialize: function () {\n\t\t\t// render\n\t\t\tthis.render();\n\n\t\t\t// show\n\t\t\tthis.show();\n\t\t},\n\n\t\trender: function () {\n\t\t\t// class\n\t\t\tthis.type( this.get( 'type' ) );\n\n\t\t\t// text\n\t\t\tthis.html( '

                              ' + this.get( 'text' ) + '

                              ' );\n\n\t\t\t// close\n\t\t\tif ( this.get( 'dismiss' ) ) {\n\t\t\t\tthis.$el.append(\n\t\t\t\t\t''\n\t\t\t\t);\n\t\t\t\tthis.$el.addClass( '-dismiss' );\n\t\t\t}\n\n\t\t\t// timeout\n\t\t\tvar timeout = this.get( 'timeout' );\n\t\t\tif ( timeout ) {\n\t\t\t\tthis.away( timeout );\n\t\t\t}\n\t\t},\n\n\t\tupdate: function ( props ) {\n\t\t\t// update\n\t\t\t$.extend( this.data, props );\n\n\t\t\t// re-initialize\n\t\t\tthis.initialize();\n\n\t\t\t// refresh events\n\t\t\tthis.removeEvents();\n\t\t\tthis.addEvents();\n\t\t},\n\n\t\tshow: function () {\n\t\t\tvar $target = this.get( 'target' );\n\t\t\tif ( $target ) {\n\t\t\t\t$target.prepend( this.$el );\n\t\t\t}\n\t\t},\n\n\t\thide: function () {\n\t\t\tthis.$el.remove();\n\t\t},\n\n\t\taway: function ( timeout ) {\n\t\t\tthis.setTimeout( function () {\n\t\t\t\tacf.remove( this.$el );\n\t\t\t}, timeout );\n\t\t},\n\n\t\ttype: function ( type ) {\n\t\t\t// remove prev type\n\t\t\tvar prevType = this.get( 'type' );\n\t\t\tif ( prevType ) {\n\t\t\t\tthis.$el.removeClass( '-' + prevType );\n\t\t\t}\n\n\t\t\t// add new type\n\t\t\tthis.$el.addClass( '-' + type );\n\n\t\t\t// backwards compatibility\n\t\t\tif ( type == 'error' ) {\n\t\t\t\tthis.$el.addClass( 'acf-error-message' );\n\t\t\t}\n\t\t},\n\n\t\thtml: function ( html ) {\n\t\t\tthis.$el.html( acf.escHtml( html ) );\n\t\t},\n\n\t\ttext: function ( text ) {\n\t\t\tthis.$( 'p' ).html( acf.escHtml( text ) );\n\t\t},\n\n\t\tonClickClose: function ( e, $el ) {\n\t\t\te.preventDefault();\n\t\t\tthis.get( 'close' ).apply( this, arguments );\n\t\t\tthis.remove();\n\t\t},\n\t} );\n\n\tacf.newNotice = function ( props ) {\n\t\t// ensure object\n\t\tif ( typeof props !== 'object' ) {\n\t\t\tprops = { text: props };\n\t\t}\n\n\t\t// instantiate\n\t\treturn new Notice( props );\n\t};\n\n\tvar noticeManager = new acf.Model( {\n\t\twait: 'prepare',\n\t\tpriority: 1,\n\t\tinitialize: function () {\n\t\t\t// vars\n\t\t\tvar $notice = $( '.acf-admin-notice' );\n\n\t\t\t// move to avoid WP flicker\n\t\t\tif ( $notice.length ) {\n\t\t\t\t$( 'h1:first' ).after( $notice );\n\t\t\t}\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tvar panel = new acf.Model( {\n\t\tevents: {\n\t\t\t'click .acf-panel-title': 'onClick',\n\t\t},\n\n\t\tonClick: function ( e, $el ) {\n\t\t\te.preventDefault();\n\t\t\tthis.toggle( $el.parent() );\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\tthis.isOpen( $el ) ? this.close( $el ) : this.open( $el );\n\t\t},\n\n\t\topen: function ( $el ) {\n\t\t\t$el.addClass( '-open' );\n\t\t\t$el.find( '.acf-panel-title i' ).attr(\n\t\t\t\t'class',\n\t\t\t\t'dashicons dashicons-arrow-down'\n\t\t\t);\n\t\t},\n\n\t\tclose: function ( $el ) {\n\t\t\t$el.removeClass( '-open' );\n\t\t\t$el.find( '.acf-panel-title i' ).attr(\n\t\t\t\t'class',\n\t\t\t\t'dashicons dashicons-arrow-right'\n\t\t\t);\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.models.Popup = acf.Model.extend( {\n\t\tdata: {\n\t\t\ttitle: '',\n\t\t\tcontent: '',\n\t\t\twidth: 0,\n\t\t\theight: 0,\n\t\t\tloading: false,\n\t\t},\n\n\t\tevents: {\n\t\t\t'click [data-event=\"close\"]': 'onClickClose',\n\t\t\t'click .acf-close-popup': 'onClickClose',\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},\n\n\t\tinitialize: function () {\n\t\t\tthis.render();\n\t\t\tthis.open();\n\t\t},\n\n\t\ttmpl: function () {\n\t\t\treturn [\n\t\t\t\t'
                              ',\n\t\t\t\t'
                              ',\n\t\t\t\t'

                              ',\n\t\t\t\t'
                              ',\n\t\t\t\t'
                              ',\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\trender: function () {\n\t\t\t// Extract Vars.\n\t\t\tvar title = this.get( 'title' );\n\t\t\tvar content = this.get( 'content' );\n\t\t\tvar loading = this.get( 'loading' );\n\t\t\tvar width = this.get( 'width' );\n\t\t\tvar height = this.get( 'height' );\n\n\t\t\t// Update.\n\t\t\tthis.title( title );\n\t\t\tthis.content( content );\n\t\t\tif ( width ) {\n\t\t\t\tthis.$( '.acf-popup-box' ).css( 'width', width );\n\t\t\t}\n\t\t\tif ( height ) {\n\t\t\t\tthis.$( '.acf-popup-box' ).css( 'min-height', height );\n\t\t\t}\n\t\t\tthis.loading( loading );\n\n\t\t\t// Trigger action.\n\t\t\tacf.doAction( 'append', this.$el );\n\t\t},\n\n\t\tupdate: function ( props ) {\n\t\t\tthis.data = acf.parseArgs( props, this.data );\n\t\t\tthis.render();\n\t\t},\n\n\t\ttitle: function ( title ) {\n\t\t\tthis.$( '.title:first h3' ).html( title );\n\t\t},\n\n\t\tcontent: function ( content ) {\n\t\t\tthis.$( '.inner:first' ).html( content );\n\t\t},\n\n\t\tloading: function ( show ) {\n\t\t\tvar $loading = this.$( '.loading:first' );\n\t\t\tshow ? $loading.show() : $loading.hide();\n\t\t},\n\n\t\topen: function () {\n\t\t\t$( 'body' ).append( this.$el );\n\t\t},\n\n\t\tclose: function () {\n\t\t\tthis.remove();\n\t\t},\n\n\t\tonClickClose: function ( e, $el ) {\n\t\t\te.preventDefault();\n\t\t\tthis.close();\n\t\t},\n\t} );\n\n\t/**\n\t * newPopup\n\t *\n\t * Creates a new Popup with the supplied props\n\t *\n\t * @date\t17/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tobject props\n\t * @return\tobject\n\t */\n\n\tacf.newPopup = function ( props ) {\n\t\treturn new acf.models.Popup( props );\n\t};\n} )( jQuery );\n","( function ( $, undefined ) {\n\tacf.newTooltip = function ( props ) {\n\t\t// ensure object\n\t\tif ( typeof props !== 'object' ) {\n\t\t\tprops = { text: props };\n\t\t}\n\n\t\t// confirmRemove\n\t\tif ( props.confirmRemove !== undefined ) {\n\t\t\tprops.textConfirm = acf.__( 'Remove' );\n\t\t\tprops.textCancel = acf.__( 'Cancel' );\n\t\t\treturn new TooltipConfirm( props );\n\n\t\t\t// confirm\n\t\t} else if ( props.confirm !== undefined ) {\n\t\t\treturn new TooltipConfirm( props );\n\n\t\t\t// default\n\t\t} else {\n\t\t\treturn new Tooltip( props );\n\t\t}\n\t};\n\n\tvar Tooltip = acf.Model.extend( {\n\t\tdata: {\n\t\t\ttext: '',\n\t\t\ttimeout: 0,\n\t\t\ttarget: null,\n\t\t},\n\n\t\ttmpl: function () {\n\t\t\treturn '
                              ';\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},\n\n\t\tinitialize: function () {\n\t\t\t// render\n\t\t\tthis.render();\n\n\t\t\t// append\n\t\t\tthis.show();\n\n\t\t\t// position\n\t\t\tthis.position();\n\n\t\t\t// timeout\n\t\t\tvar timeout = this.get( 'timeout' );\n\t\t\tif ( timeout ) {\n\t\t\t\tsetTimeout( $.proxy( this.fade, this ), timeout );\n\t\t\t}\n\t\t},\n\n\t\tupdate: function ( props ) {\n\t\t\t$.extend( this.data, props );\n\t\t\tthis.initialize();\n\t\t},\n\n\t\trender: function () {\n\t\t\tthis.html( this.get( 'text' ) );\n\t\t},\n\n\t\tshow: function () {\n\t\t\t$( 'body' ).append( this.$el );\n\t\t},\n\n\t\thide: function () {\n\t\t\tthis.$el.remove();\n\t\t},\n\n\t\tfade: function () {\n\t\t\t// add class\n\t\t\tthis.$el.addClass( 'acf-fade-up' );\n\n\t\t\t// remove\n\t\t\tthis.setTimeout( function () {\n\t\t\t\tthis.remove();\n\t\t\t}, 250 );\n\t\t},\n\n\t\thtml: function ( html ) {\n\t\t\tthis.$el.html( html );\n\t\t},\n\n\t\tposition: function () {\n\t\t\t// vars\n\t\t\tvar $tooltip = this.$el;\n\t\t\tvar $target = this.get( 'target' );\n\t\t\tif ( ! $target ) return;\n\n\t\t\t// Reset position.\n\t\t\t$tooltip\n\t\t\t\t.removeClass( 'right left bottom top' )\n\t\t\t\t.css( { top: 0, left: 0 } );\n\n\t\t\t// Declare tollerance to edge of screen.\n\t\t\tvar tolerance = 10;\n\n\t\t\t// Find target position.\n\t\t\tvar targetWidth = $target.outerWidth();\n\t\t\tvar targetHeight = $target.outerHeight();\n\t\t\tvar targetTop = $target.offset().top;\n\t\t\tvar targetLeft = $target.offset().left;\n\n\t\t\t// Find tooltip position.\n\t\t\tvar tooltipWidth = $tooltip.outerWidth();\n\t\t\tvar tooltipHeight = $tooltip.outerHeight();\n\t\t\tvar tooltipTop = $tooltip.offset().top; // Should be 0, but WP media grid causes this to be 32 (toolbar padding).\n\n\t\t\t// Assume default top alignment.\n\t\t\tvar top = targetTop - tooltipHeight - tooltipTop;\n\t\t\tvar left = targetLeft + targetWidth / 2 - tooltipWidth / 2;\n\n\t\t\t// Check if too far left.\n\t\t\tif ( left < tolerance ) {\n\t\t\t\t$tooltip.addClass( 'right' );\n\t\t\t\tleft = targetLeft + targetWidth;\n\t\t\t\ttop =\n\t\t\t\t\ttargetTop +\n\t\t\t\t\ttargetHeight / 2 -\n\t\t\t\t\ttooltipHeight / 2 -\n\t\t\t\t\ttooltipTop;\n\n\t\t\t\t// Check if too far right.\n\t\t\t} else if (\n\t\t\t\tleft + tooltipWidth + tolerance >\n\t\t\t\t$( window ).width()\n\t\t\t) {\n\t\t\t\t$tooltip.addClass( 'left' );\n\t\t\t\tleft = targetLeft - tooltipWidth;\n\t\t\t\ttop =\n\t\t\t\t\ttargetTop +\n\t\t\t\t\ttargetHeight / 2 -\n\t\t\t\t\ttooltipHeight / 2 -\n\t\t\t\t\ttooltipTop;\n\n\t\t\t\t// Check if too far up.\n\t\t\t} else if ( top - $( window ).scrollTop() < tolerance ) {\n\t\t\t\t$tooltip.addClass( 'bottom' );\n\t\t\t\ttop = targetTop + targetHeight - tooltipTop;\n\n\t\t\t\t// No colision with edges.\n\t\t\t} else {\n\t\t\t\t$tooltip.addClass( 'top' );\n\t\t\t}\n\n\t\t\t// update css\n\t\t\t$tooltip.css( { top: top, left: left } );\n\t\t},\n\t} );\n\n\tvar TooltipConfirm = Tooltip.extend( {\n\t\tdata: {\n\t\t\ttext: '',\n\t\t\ttextConfirm: '',\n\t\t\ttextCancel: '',\n\t\t\ttarget: null,\n\t\t\ttargetConfirm: true,\n\t\t\tconfirm: function () {},\n\t\t\tcancel: function () {},\n\t\t\tcontext: false,\n\t\t},\n\n\t\tevents: {\n\t\t\t'click [data-event=\"cancel\"]': 'onCancel',\n\t\t\t'click [data-event=\"confirm\"]': 'onConfirm',\n\t\t},\n\n\t\taddEvents: function () {\n\t\t\t// add events\n\t\t\tacf.Model.prototype.addEvents.apply( this );\n\n\t\t\t// vars\n\t\t\tvar $document = $( document );\n\t\t\tvar $target = this.get( 'target' );\n\n\t\t\t// add global 'cancel' click event\n\t\t\t// - use timeout to avoid the current 'click' event triggering the onCancel function\n\t\t\tthis.setTimeout( function () {\n\t\t\t\tthis.on( $document, 'click', 'onCancel' );\n\t\t\t} );\n\n\t\t\t// add target 'confirm' click event\n\t\t\t// - allow setting to control this feature\n\t\t\tif ( this.get( 'targetConfirm' ) ) {\n\t\t\t\tthis.on( $target, 'click', 'onConfirm' );\n\t\t\t}\n\t\t},\n\n\t\tremoveEvents: function () {\n\t\t\t// remove events\n\t\t\tacf.Model.prototype.removeEvents.apply( this );\n\n\t\t\t// vars\n\t\t\tvar $document = $( document );\n\t\t\tvar $target = this.get( 'target' );\n\n\t\t\t// remove custom events\n\t\t\tthis.off( $document, 'click' );\n\t\t\tthis.off( $target, 'click' );\n\t\t},\n\n\t\trender: function () {\n\t\t\t// defaults\n\t\t\tvar text = this.get( 'text' ) || acf.__( 'Are you sure?' );\n\t\t\tvar textConfirm = this.get( 'textConfirm' ) || acf.__( 'Yes' );\n\t\t\tvar textCancel = this.get( 'textCancel' ) || acf.__( 'No' );\n\n\t\t\t// html\n\t\t\tvar html = [\n\t\t\t\ttext,\n\t\t\t\t'' + textConfirm + '',\n\t\t\t\t'' + textCancel + '',\n\t\t\t].join( ' ' );\n\n\t\t\t// html\n\t\t\tthis.html( html );\n\n\t\t\t// class\n\t\t\tthis.$el.addClass( '-confirm' );\n\t\t},\n\n\t\tonCancel: function ( e, $el ) {\n\t\t\t// prevent default\n\t\t\te.preventDefault();\n\t\t\te.stopImmediatePropagation();\n\n\t\t\t// callback\n\t\t\tvar callback = this.get( 'cancel' );\n\t\t\tvar context = this.get( 'context' ) || this;\n\t\t\tcallback.apply( context, arguments );\n\n\t\t\t//remove\n\t\t\tthis.remove();\n\t\t},\n\n\t\tonConfirm: function ( e, $el ) {\n\t\t\t// Prevent event from propagating completely to allow \"targetConfirm\" to be clicked.\n\t\t\te.preventDefault();\n\t\t\te.stopImmediatePropagation();\n\n\t\t\t// callback\n\t\t\tvar callback = this.get( 'confirm' );\n\t\t\tvar context = this.get( 'context' ) || this;\n\t\t\tcallback.apply( context, arguments );\n\n\t\t\t//remove\n\t\t\tthis.remove();\n\t\t},\n\t} );\n\n\t// storage\n\tacf.models.Tooltip = Tooltip;\n\tacf.models.TooltipConfirm = TooltipConfirm;\n\n\t/**\n\t * tooltipManager\n\t *\n\t * description\n\t *\n\t * @date\t17/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 tooltipHoverHelper = new acf.Model( {\n\t\ttooltip: false,\n\n\t\tevents: {\n\t\t\t'mouseenter .acf-js-tooltip': 'showTitle',\n\t\t\t'mouseup .acf-js-tooltip': 'hideTitle',\n\t\t\t'mouseleave .acf-js-tooltip': 'hideTitle',\n\t\t},\n\n\t\tshowTitle: function ( e, $el ) {\n\t\t\t// vars\n\t\t\tvar title = $el.attr( 'title' );\n\n\t\t\t// bail ealry if no title\n\t\t\tif ( ! title ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// clear title to avoid default browser tooltip\n\t\t\t$el.attr( 'title', '' );\n\n\t\t\t// create\n\t\t\tif ( ! this.tooltip ) {\n\t\t\t\tthis.tooltip = acf.newTooltip( {\n\t\t\t\t\ttext: title,\n\t\t\t\t\ttarget: $el,\n\t\t\t\t} );\n\n\t\t\t\t// update\n\t\t\t} else {\n\t\t\t\tthis.tooltip.update( {\n\t\t\t\t\ttext: title,\n\t\t\t\t\ttarget: $el,\n\t\t\t\t} );\n\t\t\t}\n\t\t},\n\n\t\thideTitle: function ( e, $el ) {\n\t\t\t// hide tooltip\n\t\t\tthis.tooltip.hide();\n\n\t\t\t// restore title\n\t\t\t$el.attr( 'title', this.tooltip.get( 'text' ) );\n\t\t},\n\t} );\n} )( jQuery );\n","( function ( $, undefined ) {\n\t/**\n\t * acf\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\t// The global acf object\n\tvar acf = {};\n\n\t// Set as a browser global\n\twindow.acf = acf;\n\n\t/** @var object Data sent from PHP */\n\tacf.data = {};\n\n\t/**\n\t * get\n\t *\n\t * Gets a specific data value\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring name\n\t * @return\tmixed\n\t */\n\n\tacf.get = function ( name ) {\n\t\treturn this.data[ name ] || null;\n\t};\n\n\t/**\n\t * has\n\t *\n\t * Returns `true` if the data exists and is not null\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring name\n\t * @return\tboolean\n\t */\n\n\tacf.has = function ( name ) {\n\t\treturn this.get( name ) !== null;\n\t};\n\n\t/**\n\t * set\n\t *\n\t * Sets a specific data value\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring name\n\t * @param\tmixed value\n\t * @return\tthis\n\t */\n\n\tacf.set = function ( name, value ) {\n\t\tthis.data[ name ] = value;\n\t\treturn this;\n\t};\n\n\t/**\n\t * uniqueId\n\t *\n\t * Returns a unique ID\n\t *\n\t * @date\t9/11/17\n\t * @since\t5.6.3\n\t *\n\t * @param\tstring prefix Optional prefix.\n\t * @return\tstring\n\t */\n\n\tvar idCounter = 0;\n\tacf.uniqueId = function ( prefix ) {\n\t\tvar id = ++idCounter + '';\n\t\treturn prefix ? prefix + id : id;\n\t};\n\n\t/**\n\t * acf.uniqueArray\n\t *\n\t * Returns a new array with only unique values\n\t * Credit: https://stackoverflow.com/questions/1960473/get-all-unique-values-in-an-array-remove-duplicates\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.uniqueArray = function ( array ) {\n\t\tfunction onlyUnique( value, index, self ) {\n\t\t\treturn self.indexOf( value ) === index;\n\t\t}\n\t\treturn array.filter( onlyUnique );\n\t};\n\n\t/**\n\t * uniqid\n\t *\n\t * Returns a unique ID (PHP version)\n\t *\n\t * @date\t9/11/17\n\t * @since\t5.6.3\n\t * @source\thttp://locutus.io/php/misc/uniqid/\n\t *\n\t * @param\tstring prefix Optional prefix.\n\t * @return\tstring\n\t */\n\n\tvar uniqidSeed = '';\n\tacf.uniqid = function ( prefix, moreEntropy ) {\n\t\t// discuss at: http://locutus.io/php/uniqid/\n\t\t// original by: Kevin van Zonneveld (http://kvz.io)\n\t\t// revised by: Kankrelune (http://www.webfaktory.info/)\n\t\t// note 1: Uses an internal counter (in locutus global) to avoid collision\n\t\t// example 1: var $id = uniqid()\n\t\t// example 1: var $result = $id.length === 13\n\t\t// returns 1: true\n\t\t// example 2: var $id = uniqid('foo')\n\t\t// example 2: var $result = $id.length === (13 + 'foo'.length)\n\t\t// returns 2: true\n\t\t// example 3: var $id = uniqid('bar', true)\n\t\t// example 3: var $result = $id.length === (23 + 'bar'.length)\n\t\t// returns 3: true\n\t\tif ( typeof prefix === 'undefined' ) {\n\t\t\tprefix = '';\n\t\t}\n\n\t\tvar retId;\n\t\tvar formatSeed = function ( seed, reqWidth ) {\n\t\t\tseed = parseInt( seed, 10 ).toString( 16 ); // to hex str\n\t\t\tif ( reqWidth < seed.length ) {\n\t\t\t\t// so long we split\n\t\t\t\treturn seed.slice( seed.length - reqWidth );\n\t\t\t}\n\t\t\tif ( reqWidth > seed.length ) {\n\t\t\t\t// so short we pad\n\t\t\t\treturn (\n\t\t\t\t\tArray( 1 + ( reqWidth - seed.length ) ).join( '0' ) + seed\n\t\t\t\t);\n\t\t\t}\n\t\t\treturn seed;\n\t\t};\n\n\t\tif ( ! uniqidSeed ) {\n\t\t\t// init seed with big random int\n\t\t\tuniqidSeed = Math.floor( Math.random() * 0x75bcd15 );\n\t\t}\n\t\tuniqidSeed++;\n\n\t\tretId = prefix; // start with prefix, add current milliseconds hex string\n\t\tretId += formatSeed( parseInt( new Date().getTime() / 1000, 10 ), 8 );\n\t\tretId += formatSeed( uniqidSeed, 5 ); // add seed hex string\n\t\tif ( moreEntropy ) {\n\t\t\t// for more entropy we add a float lower to 10\n\t\t\tretId += ( Math.random() * 10 ).toFixed( 8 ).toString();\n\t\t}\n\n\t\treturn retId;\n\t};\n\n\t/**\n\t * strReplace\n\t *\n\t * Performs a string replace\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring search\n\t * @param\tstring replace\n\t * @param\tstring subject\n\t * @return\tstring\n\t */\n\n\tacf.strReplace = function ( search, replace, subject ) {\n\t\treturn subject.split( search ).join( replace );\n\t};\n\n\t/**\n\t * strCamelCase\n\t *\n\t * Converts a string into camelCase\n\t * Thanks to https://stackoverflow.com/questions/2970525/converting-any-string-into-camel-case\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring str\n\t * @return\tstring\n\t */\n\n\tacf.strCamelCase = function ( str ) {\n\t\tvar matches = str.match( /([a-zA-Z0-9]+)/g );\n\t\treturn matches\n\t\t\t? matches\n\t\t\t\t\t.map( function ( s, i ) {\n\t\t\t\t\t\tvar c = s.charAt( 0 );\n\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t( i === 0 ? c.toLowerCase() : c.toUpperCase() ) +\n\t\t\t\t\t\t\ts.slice( 1 )\n\t\t\t\t\t\t);\n\t\t\t\t\t} )\n\t\t\t\t\t.join( '' )\n\t\t\t: '';\n\t};\n\n\t/**\n\t * strPascalCase\n\t *\n\t * Converts a string into PascalCase\n\t * Thanks to https://stackoverflow.com/questions/1026069/how-do-i-make-the-first-letter-of-a-string-uppercase-in-javascript\n\t *\n\t * @date\t14/12/17\n\t * @since\t5.6.5\n\t *\n\t * @param\tstring str\n\t * @return\tstring\n\t */\n\n\tacf.strPascalCase = function ( str ) {\n\t\tvar camel = acf.strCamelCase( str );\n\t\treturn camel.charAt( 0 ).toUpperCase() + camel.slice( 1 );\n\t};\n\n\t/**\n\t * acf.strSlugify\n\t *\n\t * Converts a string into a HTML class friendly slug\n\t *\n\t * @date\t21/3/18\n\t * @since\t5.6.9\n\t *\n\t * @param\tstring str\n\t * @return\tstring\n\t */\n\n\tacf.strSlugify = function ( str ) {\n\t\treturn acf.strReplace( '_', '-', str.toLowerCase() );\n\t};\n\n\tacf.strSanitize = function ( str ) {\n\t\t// chars (https://jsperf.com/replace-foreign-characters)\n\t\tvar map = {\n\t\t\tÀ: 'A',\n\t\t\tÁ: 'A',\n\t\t\tÂ: 'A',\n\t\t\tÃ: 'A',\n\t\t\tÄ: 'A',\n\t\t\tÅ: 'A',\n\t\t\tÆ: 'AE',\n\t\t\tÇ: 'C',\n\t\t\tÈ: 'E',\n\t\t\tÉ: 'E',\n\t\t\tÊ: 'E',\n\t\t\tË: 'E',\n\t\t\tÌ: 'I',\n\t\t\tÍ: 'I',\n\t\t\tÎ: 'I',\n\t\t\tÏ: 'I',\n\t\t\tÐ: 'D',\n\t\t\tÑ: 'N',\n\t\t\tÒ: 'O',\n\t\t\tÓ: 'O',\n\t\t\tÔ: 'O',\n\t\t\tÕ: 'O',\n\t\t\tÖ: 'O',\n\t\t\tØ: 'O',\n\t\t\tÙ: 'U',\n\t\t\tÚ: 'U',\n\t\t\tÛ: 'U',\n\t\t\tÜ: 'U',\n\t\t\tÝ: 'Y',\n\t\t\tß: 's',\n\t\t\tà: 'a',\n\t\t\tá: 'a',\n\t\t\tâ: 'a',\n\t\t\tã: 'a',\n\t\t\tä: 'a',\n\t\t\tå: 'a',\n\t\t\tæ: 'ae',\n\t\t\tç: 'c',\n\t\t\tè: 'e',\n\t\t\té: 'e',\n\t\t\tê: 'e',\n\t\t\të: 'e',\n\t\t\tì: 'i',\n\t\t\tí: 'i',\n\t\t\tî: 'i',\n\t\t\tï: 'i',\n\t\t\tñ: 'n',\n\t\t\tò: 'o',\n\t\t\tó: 'o',\n\t\t\tô: 'o',\n\t\t\tõ: 'o',\n\t\t\tö: 'o',\n\t\t\tø: 'o',\n\t\t\tù: 'u',\n\t\t\tú: 'u',\n\t\t\tû: 'u',\n\t\t\tü: 'u',\n\t\t\tý: 'y',\n\t\t\tÿ: 'y',\n\t\t\tĀ: 'A',\n\t\t\tā: 'a',\n\t\t\tĂ: 'A',\n\t\t\tă: 'a',\n\t\t\tĄ: 'A',\n\t\t\tą: 'a',\n\t\t\tĆ: 'C',\n\t\t\tć: 'c',\n\t\t\tĈ: 'C',\n\t\t\tĉ: 'c',\n\t\t\tĊ: 'C',\n\t\t\tċ: 'c',\n\t\t\tČ: 'C',\n\t\t\tč: 'c',\n\t\t\tĎ: 'D',\n\t\t\tď: 'd',\n\t\t\tĐ: 'D',\n\t\t\tđ: 'd',\n\t\t\tĒ: 'E',\n\t\t\tē: 'e',\n\t\t\tĔ: 'E',\n\t\t\tĕ: 'e',\n\t\t\tĖ: 'E',\n\t\t\tė: 'e',\n\t\t\tĘ: 'E',\n\t\t\tę: 'e',\n\t\t\tĚ: 'E',\n\t\t\tě: 'e',\n\t\t\tĜ: 'G',\n\t\t\tĝ: 'g',\n\t\t\tĞ: 'G',\n\t\t\tğ: 'g',\n\t\t\tĠ: 'G',\n\t\t\tġ: 'g',\n\t\t\tĢ: 'G',\n\t\t\tģ: 'g',\n\t\t\tĤ: 'H',\n\t\t\tĥ: 'h',\n\t\t\tĦ: 'H',\n\t\t\tħ: 'h',\n\t\t\tĨ: 'I',\n\t\t\tĩ: 'i',\n\t\t\tĪ: 'I',\n\t\t\tī: 'i',\n\t\t\tĬ: 'I',\n\t\t\tĭ: 'i',\n\t\t\tĮ: 'I',\n\t\t\tį: 'i',\n\t\t\tİ: 'I',\n\t\t\tı: 'i',\n\t\t\tIJ: 'IJ',\n\t\t\tij: 'ij',\n\t\t\tĴ: 'J',\n\t\t\tĵ: 'j',\n\t\t\tĶ: 'K',\n\t\t\tķ: 'k',\n\t\t\tĹ: 'L',\n\t\t\tĺ: 'l',\n\t\t\tĻ: 'L',\n\t\t\tļ: 'l',\n\t\t\tĽ: 'L',\n\t\t\tľ: 'l',\n\t\t\tĿ: 'L',\n\t\t\tŀ: 'l',\n\t\t\tŁ: 'l',\n\t\t\tł: 'l',\n\t\t\tŃ: 'N',\n\t\t\tń: 'n',\n\t\t\tŅ: 'N',\n\t\t\tņ: 'n',\n\t\t\tŇ: 'N',\n\t\t\tň: 'n',\n\t\t\tʼn: 'n',\n\t\t\tŌ: 'O',\n\t\t\tō: 'o',\n\t\t\tŎ: 'O',\n\t\t\tŏ: 'o',\n\t\t\tŐ: 'O',\n\t\t\tő: 'o',\n\t\t\tŒ: 'OE',\n\t\t\tœ: 'oe',\n\t\t\tŔ: 'R',\n\t\t\tŕ: 'r',\n\t\t\tŖ: 'R',\n\t\t\tŗ: 'r',\n\t\t\tŘ: 'R',\n\t\t\tř: 'r',\n\t\t\tŚ: 'S',\n\t\t\tś: 's',\n\t\t\tŜ: 'S',\n\t\t\tŝ: 's',\n\t\t\tŞ: 'S',\n\t\t\tş: 's',\n\t\t\tŠ: 'S',\n\t\t\tš: 's',\n\t\t\tŢ: 'T',\n\t\t\tţ: 't',\n\t\t\tŤ: 'T',\n\t\t\tť: 't',\n\t\t\tŦ: 'T',\n\t\t\tŧ: 't',\n\t\t\tŨ: 'U',\n\t\t\tũ: 'u',\n\t\t\tŪ: 'U',\n\t\t\tū: 'u',\n\t\t\tŬ: 'U',\n\t\t\tŭ: 'u',\n\t\t\tŮ: 'U',\n\t\t\tů: 'u',\n\t\t\tŰ: 'U',\n\t\t\tű: 'u',\n\t\t\tŲ: 'U',\n\t\t\tų: 'u',\n\t\t\tŴ: 'W',\n\t\t\tŵ: 'w',\n\t\t\tŶ: 'Y',\n\t\t\tŷ: 'y',\n\t\t\tŸ: 'Y',\n\t\t\tŹ: 'Z',\n\t\t\tź: 'z',\n\t\t\tŻ: 'Z',\n\t\t\tż: 'z',\n\t\t\tŽ: 'Z',\n\t\t\tž: 'z',\n\t\t\tſ: 's',\n\t\t\tƒ: 'f',\n\t\t\tƠ: 'O',\n\t\t\tơ: 'o',\n\t\t\tƯ: 'U',\n\t\t\tư: 'u',\n\t\t\tǍ: 'A',\n\t\t\tǎ: 'a',\n\t\t\tǏ: 'I',\n\t\t\tǐ: 'i',\n\t\t\tǑ: 'O',\n\t\t\tǒ: 'o',\n\t\t\tǓ: 'U',\n\t\t\tǔ: 'u',\n\t\t\tǕ: 'U',\n\t\t\tǖ: 'u',\n\t\t\tǗ: 'U',\n\t\t\tǘ: 'u',\n\t\t\tǙ: 'U',\n\t\t\tǚ: 'u',\n\t\t\tǛ: 'U',\n\t\t\tǜ: 'u',\n\t\t\tǺ: 'A',\n\t\t\tǻ: 'a',\n\t\t\tǼ: 'AE',\n\t\t\tǽ: 'ae',\n\t\t\tǾ: 'O',\n\t\t\tǿ: 'o',\n\n\t\t\t// extra\n\t\t\t' ': '_',\n\t\t\t\"'\": '',\n\t\t\t'?': '',\n\t\t\t'/': '',\n\t\t\t'\\\\': '',\n\t\t\t'.': '',\n\t\t\t',': '',\n\t\t\t'`': '',\n\t\t\t'>': '',\n\t\t\t'<': '',\n\t\t\t'\"': '',\n\t\t\t'[': '',\n\t\t\t']': '',\n\t\t\t'|': '',\n\t\t\t'{': '',\n\t\t\t'}': '',\n\t\t\t'(': '',\n\t\t\t')': '',\n\t\t};\n\n\t\t// vars\n\t\tvar nonWord = /\\W/g;\n\t\tvar mapping = function ( c ) {\n\t\t\treturn map[ c ] !== undefined ? map[ c ] : c;\n\t\t};\n\n\t\t// replace\n\t\tstr = str.replace( nonWord, mapping );\n\n\t\t// lowercase\n\t\tstr = str.toLowerCase();\n\n\t\t// return\n\t\treturn str;\n\t};\n\n\t/**\n\t * acf.strMatch\n\t *\n\t * Returns the number of characters that match between two strings\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.strMatch = function ( s1, s2 ) {\n\t\t// vars\n\t\tvar val = 0;\n\t\tvar min = Math.min( s1.length, s2.length );\n\n\t\t// loop\n\t\tfor ( var i = 0; i < min; i++ ) {\n\t\t\tif ( s1[ i ] !== s2[ i ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tval++;\n\t\t}\n\n\t\t// return\n\t\treturn val;\n\t};\n\n\t/**\n\t * Escapes HTML entities from a string.\n\t *\n\t * @date\t08/06/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring string The input string.\n\t * @return\tstring\n\t */\n\tacf.strEscape = function ( string ) {\n\t\tvar htmlEscapes = {\n\t\t\t'&': '&',\n\t\t\t'<': '<',\n\t\t\t'>': '>',\n\t\t\t'\"': '"',\n\t\t\t\"'\": ''',\n\t\t};\n\t\treturn ( '' + string ).replace( /[&<>\"']/g, function ( chr ) {\n\t\t\treturn htmlEscapes[ chr ];\n\t\t} );\n\t};\n\n\t// Tests.\n\t//console.log( acf.strEscape('Test 1') );\n\t//console.log( acf.strEscape('Test & 1') );\n\t//console.log( acf.strEscape('Test\\'s & 1') );\n\t//console.log( acf.strEscape('') );\n\n\t/**\n\t * Unescapes HTML entities from a string.\n\t *\n\t * @date\t08/06/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring string The input string.\n\t * @return\tstring\n\t */\n\tacf.strUnescape = function ( string ) {\n\t\tvar htmlUnescapes = {\n\t\t\t'&': '&',\n\t\t\t'<': '<',\n\t\t\t'>': '>',\n\t\t\t'"': '\"',\n\t\t\t''': \"'\",\n\t\t};\n\t\treturn ( '' + string ).replace(\n\t\t\t/&|<|>|"|'/g,\n\t\t\tfunction ( entity ) {\n\t\t\t\treturn htmlUnescapes[ entity ];\n\t\t\t}\n\t\t);\n\t};\n\n\t// Tests.\n\t//console.log( acf.strUnescape( acf.strEscape('Test 1') ) );\n\t//console.log( acf.strUnescape( acf.strEscape('Test & 1') ) );\n\t//console.log( acf.strUnescape( acf.strEscape('Test\\'s & 1') ) );\n\t//console.log( acf.strUnescape( acf.strEscape('') ) );\n\n\t/**\n\t * Escapes HTML entities from a string.\n\t *\n\t * @date\t08/06/2020\n\t * @since\t5.9.0\n\t *\n\t * @param\tstring string The input string.\n\t * @return\tstring\n\t */\n\tacf.escAttr = acf.strEscape;\n\n\t/**\n\t * Encodes ') );\n\t//console.log( acf.escHtml( acf.strEscape('') ) );\n\t//console.log( acf.escHtml( '' ) );\n\n\t/**\n\t * acf.decode\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.decode = function ( string ) {\n\t\treturn $( '*/ ?> -
                              > +
                              >
                              @@ -160,10 +160,7 @@ if ( ! class_exists( 'acf_field_link' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // return_format acf_render_field_setting( $field, array( @@ -181,7 +178,6 @@ if ( ! class_exists( 'acf_field_link' ) ) : } - /* * format_value() * diff --git a/includes/fields/class-acf-field-message.php b/includes/fields/class-acf-field-message.php index 401e132..491502a 100644 --- a/includes/fields/class-acf-field-message.php +++ b/includes/fields/class-acf-field-message.php @@ -90,10 +90,7 @@ if ( ! class_exists( 'acf_field_message' ) ) : * @since 3.6 * @date 23/01/13 */ - function render_field_settings( $field ) { - - // default_value acf_render_field_setting( $field, array( @@ -104,7 +101,6 @@ if ( ! class_exists( 'acf_field_message' ) ) : ) ); - // formatting acf_render_field_setting( $field, array( @@ -120,7 +116,6 @@ if ( ! class_exists( 'acf_field_message' ) ) : ) ); - // HTML acf_render_field_setting( $field, array( @@ -131,10 +126,8 @@ if ( ! class_exists( 'acf_field_message' ) ) : 'ui' => 1, ) ); - } - /* * translate_field * diff --git a/includes/fields/class-acf-field-number.php b/includes/fields/class-acf-field-number.php index cc4d6ad..b5fa4df 100644 --- a/includes/fields/class-acf-field-number.php +++ b/includes/fields/class-acf-field-number.php @@ -128,41 +128,17 @@ if ( ! class_exists( 'acf_field_number' ) ) : 'name' => 'default_value', ) ); + } - // placeholder - acf_render_field_setting( - $field, - array( - 'label' => __( 'Placeholder Text', 'acf' ), - 'instructions' => __( 'Appears within the input', 'acf' ), - 'type' => 'text', - 'name' => 'placeholder', - ) - ); - - // prepend - acf_render_field_setting( - $field, - array( - 'label' => __( 'Prepend', 'acf' ), - 'instructions' => __( 'Appears before the input', 'acf' ), - 'type' => 'text', - 'name' => 'prepend', - ) - ); - - // append - acf_render_field_setting( - $field, - array( - 'label' => __( 'Append', 'acf' ), - 'instructions' => __( 'Appears after the input', 'acf' ), - 'type' => 'text', - 'name' => 'append', - ) - ); - - // min + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { acf_render_field_setting( $field, array( @@ -173,7 +149,6 @@ if ( ! class_exists( 'acf_field_number' ) ) : ) ); - // max acf_render_field_setting( $field, array( @@ -183,8 +158,27 @@ if ( ! class_exists( 'acf_field_number' ) ) : 'name' => 'max', ) ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Placeholder Text', 'acf' ), + 'instructions' => __( 'Appears within the input', 'acf' ), + 'type' => 'text', + 'name' => 'placeholder', + ) + ); - // max acf_render_field_setting( $field, array( @@ -195,8 +189,26 @@ if ( ! class_exists( 'acf_field_number' ) ) : ) ); - } + acf_render_field_setting( + $field, + array( + 'label' => __( 'Prepend', 'acf' ), + 'instructions' => __( 'Appears before the input', 'acf' ), + 'type' => 'text', + 'name' => 'prepend', + ) + ); + acf_render_field_setting( + $field, + array( + 'label' => __( 'Append', 'acf' ), + 'instructions' => __( 'Appears after the input', 'acf' ), + 'type' => 'text', + 'name' => 'append', + ) + ); + } /* * validate_value diff --git a/includes/fields/class-acf-field-oembed.php b/includes/fields/class-acf-field-oembed.php index d13470e..e3ed6a4 100644 --- a/includes/fields/class-acf-field-oembed.php +++ b/includes/fields/class-acf-field-oembed.php @@ -66,48 +66,37 @@ if ( ! class_exists( 'acf_field_oembed' ) ) : } - - /* - * wp_oembed_get - * - * description - * - * @type function - * @date 24/01/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ - + /** + * Attempts to fetch the HTML for the provided URL using oEmbed. + * + * @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. + * @return string|false The embedded HTML on success, false on failure. + */ function wp_oembed_get( $url = '', $width = 0, $height = 0 ) { - - // vars - $embed = ''; + $embed = false; $res = array( 'width' => $width, 'height' => $height, ); - // get emebed - $embed = @wp_oembed_get( $url, $res ); + if ( function_exists( 'wp_oembed_get' ) ) { + $embed = wp_oembed_get( $url, $res ); + } // try shortcode if ( ! $embed ) { - - // global global $wp_embed; - - // get emebed $embed = $wp_embed->shortcode( $res, $url ); - } - // return return $embed; } - /* * ajax_query * @@ -209,7 +198,7 @@ if ( ! class_exists( 'acf_field_oembed' ) ) : } ?> -
                              > +
                              > 'width', ) ); - } - /** * format_value() * diff --git a/includes/fields/class-acf-field-page_link.php b/includes/fields/class-acf-field-page_link.php index 294f451..b888d4e 100644 --- a/includes/fields/class-acf-field-page_link.php +++ b/includes/fields/class-acf-field-page_link.php @@ -440,10 +440,7 @@ if ( ! class_exists( 'acf_field_page_link' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // post_type acf_render_field_setting( $field, array( @@ -459,7 +456,6 @@ if ( ! class_exists( 'acf_field_page_link' ) ) : ) ); - // taxonomy acf_render_field_setting( $field, array( @@ -475,19 +471,6 @@ if ( ! class_exists( 'acf_field_page_link' ) ) : ) ); - // allow_null - acf_render_field_setting( - $field, - array( - 'label' => __( 'Allow Null?', 'acf' ), - 'instructions' => '', - 'name' => 'allow_null', - 'type' => 'true_false', - 'ui' => 1, - ) - ); - - // allow_archives acf_render_field_setting( $field, array( @@ -499,7 +482,6 @@ if ( ! class_exists( 'acf_field_page_link' ) ) : ) ); - // multiple acf_render_field_setting( $field, array( @@ -510,9 +492,28 @@ if ( ! class_exists( 'acf_field_page_link' ) ) : 'ui' => 1, ) ); - } + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Allow Null?', 'acf' ), + 'instructions' => '', + 'name' => 'allow_null', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + } /* * format_value() diff --git a/includes/fields/class-acf-field-password.php b/includes/fields/class-acf-field-password.php index 100a108..7f71c6e 100644 --- a/includes/fields/class-acf-field-password.php +++ b/includes/fields/class-acf-field-password.php @@ -50,7 +50,6 @@ if ( ! class_exists( 'acf_field_password' ) ) : } - /* * render_field_settings() * @@ -63,10 +62,19 @@ if ( ! class_exists( 'acf_field_password' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { + // TODO: Delete this method? + } - // placeholder + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { acf_render_field_setting( $field, array( @@ -77,7 +85,6 @@ if ( ! class_exists( 'acf_field_password' ) ) : ) ); - // prepend acf_render_field_setting( $field, array( @@ -88,7 +95,6 @@ if ( ! class_exists( 'acf_field_password' ) ) : ) ); - // append acf_render_field_setting( $field, array( diff --git a/includes/fields/class-acf-field-post_object.php b/includes/fields/class-acf-field-post_object.php index ce5728c..7f3361c 100644 --- a/includes/fields/class-acf-field-post_object.php +++ b/includes/fields/class-acf-field-post_object.php @@ -352,10 +352,7 @@ if ( ! class_exists( 'acf_field_post_object' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // default_value acf_render_field_setting( $field, array( @@ -371,7 +368,6 @@ if ( ! class_exists( 'acf_field_post_object' ) ) : ) ); - // default_value acf_render_field_setting( $field, array( @@ -387,31 +383,6 @@ if ( ! class_exists( 'acf_field_post_object' ) ) : ) ); - // allow_null - acf_render_field_setting( - $field, - array( - 'label' => __( 'Allow Null?', 'acf' ), - 'instructions' => '', - 'name' => 'allow_null', - 'type' => 'true_false', - 'ui' => 1, - ) - ); - - // multiple - acf_render_field_setting( - $field, - array( - 'label' => __( 'Select multiple values?', 'acf' ), - 'instructions' => '', - 'name' => 'multiple', - 'type' => 'true_false', - 'ui' => 1, - ) - ); - - // return_format acf_render_field_setting( $field, array( @@ -427,8 +398,39 @@ if ( ! class_exists( 'acf_field_post_object' ) ) : ) ); + acf_render_field_setting( + $field, + array( + 'label' => __( 'Select multiple values?', 'acf' ), + 'instructions' => '', + 'name' => 'multiple', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + } + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Allow Null?', 'acf' ), + 'instructions' => '', + 'name' => 'allow_null', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + } /* * load_value() diff --git a/includes/fields/class-acf-field-radio.php b/includes/fields/class-acf-field-radio.php index 0319e7c..7f91a5b 100644 --- a/includes/fields/class-acf-field-radio.php +++ b/includes/fields/class-acf-field-radio.php @@ -180,92 +180,29 @@ if ( ! class_exists( 'acf_field_radio' ) ) : */ function render_field_settings( $field ) { - - // encode choices (convert from array) + // Encode choices (convert from array). $field['choices'] = acf_encode_choices( $field['choices'] ); - // choices acf_render_field_setting( $field, array( - 'label' => __( 'Choices', 'acf' ), - 'instructions' => __( 'Enter each choice on a new line.', 'acf' ) . '

                              ' . __( 'For more control, you may specify both a value and label like this:', 'acf' ) . '

                              ' . __( 'red : Red', 'acf' ), - 'type' => 'textarea', - 'name' => 'choices', + 'label' => __( 'Choices', 'acf' ), + 'hint' => __( 'Enter each choice on a new line.', 'acf' ) . '
                              ' . __( 'For more control, you may specify both a value and label like this:', 'acf' ) . '
                              ' . __( 'red : Red', 'acf' ) . '', + 'type' => 'textarea', + 'name' => 'choices', ) ); - // allow_null acf_render_field_setting( $field, array( - 'label' => __( 'Allow Null?', 'acf' ), - 'instructions' => '', - 'name' => 'allow_null', - 'type' => 'true_false', - 'ui' => 1, + 'label' => __( 'Default Value', 'acf' ), + 'hint' => __( 'Appears when creating a new post', 'acf' ), + 'type' => 'text', + 'name' => 'default_value', ) ); - // other_choice - acf_render_field_setting( - $field, - array( - 'label' => __( 'Other', 'acf' ), - 'instructions' => '', - 'name' => 'other_choice', - 'type' => 'true_false', - 'ui' => 1, - 'message' => __( "Add 'other' choice to allow for custom values", 'acf' ), - ) - ); - - // save_other_choice - acf_render_field_setting( - $field, - array( - 'label' => __( 'Save Other', 'acf' ), - 'instructions' => '', - 'name' => 'save_other_choice', - 'type' => 'true_false', - 'ui' => 1, - 'message' => __( "Save 'other' values to the field's choices", 'acf' ), - 'conditions' => array( - 'field' => 'other_choice', - 'operator' => '==', - 'value' => 1, - ), - ) - ); - - // default_value - acf_render_field_setting( - $field, - array( - 'label' => __( 'Default Value', 'acf' ), - 'instructions' => __( 'Appears when creating a new post', 'acf' ), - 'type' => 'text', - 'name' => 'default_value', - ) - ); - - // layout - acf_render_field_setting( - $field, - array( - 'label' => __( 'Layout', 'acf' ), - 'instructions' => '', - 'type' => 'radio', - 'name' => 'layout', - 'layout' => 'horizontal', - 'choices' => array( - 'vertical' => __( 'Vertical', 'acf' ), - 'horizontal' => __( 'Horizontal', 'acf' ), - ), - ) - ); - - // return_format acf_render_field_setting( $field, array( @@ -281,9 +218,80 @@ if ( ! class_exists( 'acf_field_radio' ) ) : ), ) ); - } + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Allow Null?', 'acf' ), + 'instructions' => '', + 'name' => 'allow_null', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Allow Other Choice', 'acf' ), + 'name' => 'other_choice', + 'type' => 'true_false', + 'ui' => 1, + 'instructions' => __( "Add 'other' choice to allow for custom values", 'acf' ), + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Save Other Choice', 'acf' ), + 'name' => 'save_other_choice', + 'type' => 'true_false', + 'ui' => 1, + 'instructions' => __( "Save 'other' values to the field's choices", 'acf' ), + 'conditions' => array( + 'field' => 'other_choice', + 'operator' => '==', + 'value' => 1, + ), + ) + ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Layout', 'acf' ), + 'instructions' => '', + 'type' => 'radio', + 'name' => 'layout', + 'layout' => 'horizontal', + 'choices' => array( + 'vertical' => __( 'Vertical', 'acf' ), + 'horizontal' => __( 'Horizontal', 'acf' ), + ), + ) + ); + } /* * update_field() @@ -343,7 +351,7 @@ if ( ! class_exists( 'acf_field_radio' ) ) : // get raw $field (may have been changed via repeater field) // if field is local, it won't have an ID $selector = $field['ID'] ? $field['ID'] : $field['key']; - $field = acf_get_field( $selector, true ); + $field = acf_get_field( $selector ); // bail early if no ID (JSON only) if ( ! $field['ID'] ) { diff --git a/includes/fields/class-acf-field-range.php b/includes/fields/class-acf-field-range.php index 17e3250..4dfe600 100644 --- a/includes/fields/class-acf-field-range.php +++ b/includes/fields/class-acf-field-range.php @@ -155,8 +155,6 @@ if ( ! class_exists( 'acf_field_range' ) ) : */ function render_field_settings( $field ) { - - // default_value acf_render_field_setting( $field, array( @@ -166,8 +164,17 @@ if ( ! class_exists( 'acf_field_range' ) ) : 'name' => 'default_value', ) ); + } - // min + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { acf_render_field_setting( $field, array( @@ -179,7 +186,6 @@ if ( ! class_exists( 'acf_field_range' ) ) : ) ); - // max acf_render_field_setting( $field, array( @@ -190,8 +196,18 @@ if ( ! class_exists( 'acf_field_range' ) ) : 'placeholder' => '100', ) ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { - // step acf_render_field_setting( $field, array( @@ -203,7 +219,6 @@ if ( ! class_exists( 'acf_field_range' ) ) : ) ); - // prepend acf_render_field_setting( $field, array( @@ -214,7 +229,6 @@ if ( ! class_exists( 'acf_field_range' ) ) : ) ); - // append acf_render_field_setting( $field, array( @@ -224,7 +238,6 @@ if ( ! class_exists( 'acf_field_range' ) ) : 'name' => 'append', ) ); - } /** diff --git a/includes/fields/class-acf-field-relationship.php b/includes/fields/class-acf-field-relationship.php index 3391473..db1a71d 100644 --- a/includes/fields/class-acf-field-relationship.php +++ b/includes/fields/class-acf-field-relationship.php @@ -440,7 +440,7 @@ if ( ! class_exists( 'acf_field_relationship' ) ) : ); ?> -
                              > +
                              > __( 'Elements', 'acf' ), - 'instructions' => __( 'Selected elements will be displayed in each result', 'acf' ), - 'type' => 'checkbox', - 'name' => 'elements', - 'choices' => array( - 'featured_image' => __( 'Featured Image', 'acf' ), - ), - ) - ); - - // min - acf_render_field_setting( - $field, - array( - 'label' => __( 'Minimum posts', 'acf' ), - 'instructions' => '', - 'type' => 'number', - 'name' => 'min', - ) - ); - - // max - acf_render_field_setting( - $field, - array( - 'label' => __( 'Maximum posts', 'acf' ), - 'instructions' => '', - 'type' => 'number', - 'name' => 'max', - ) - ); - - // return_format acf_render_field_setting( $field, array( @@ -670,9 +624,63 @@ if ( ! class_exists( 'acf_field_relationship' ) ) : 'layout' => 'horizontal', ) ); - } + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { + $field['min'] = empty( $field['min'] ) ? '' : $field['min']; + $field['max'] = empty( $field['max'] ) ? '' : $field['max']; + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Minimum posts', 'acf' ), + 'instructions' => '', + 'type' => 'number', + 'name' => 'min', + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Maximum posts', 'acf' ), + 'instructions' => '', + 'type' => 'number', + 'name' => 'max', + ) + ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Elements', 'acf' ), + 'instructions' => __( 'Selected elements will be displayed in each result', 'acf' ), + 'type' => 'checkbox', + 'name' => 'elements', + 'choices' => array( + 'featured_image' => __( 'Featured Image', 'acf' ), + ), + ) + ); + } /* * format_value() diff --git a/includes/fields/class-acf-field-select.php b/includes/fields/class-acf-field-select.php index def52fd..9d89952 100644 --- a/includes/fields/class-acf-field-select.php +++ b/includes/fields/class-acf-field-select.php @@ -361,10 +361,10 @@ if ( ! class_exists( 'acf_field_select' ) ) : acf_render_field_setting( $field, array( - 'label' => __( 'Choices', 'acf' ), - 'instructions' => __( 'Enter each choice on a new line.', 'acf' ) . '

                              ' . __( 'For more control, you may specify both a value and label like this:', 'acf' ) . '

                              ' . __( 'red : Red', 'acf' ), - 'name' => 'choices', - 'type' => 'textarea', + 'label' => __( 'Choices', 'acf' ), + 'hint' => __( 'Enter each choice on a new line.', 'acf' ) . '
                              ' . __( 'For more control, you may specify both a value and label like this:', 'acf' ) . '
                              ' . __( 'red : Red', 'acf' ) . '', + 'name' => 'choices', + 'type' => 'textarea', ) ); @@ -379,19 +379,23 @@ if ( ! class_exists( 'acf_field_select' ) ) : ) ); - // allow_null + // return_format acf_render_field_setting( $field, array( - 'label' => __( 'Allow Null?', 'acf' ), - 'instructions' => '', - 'name' => 'allow_null', - 'type' => 'true_false', - 'ui' => 1, + 'label' => __( 'Return Format', 'acf' ), + 'instructions' => __( 'Specify the value returned', 'acf' ), + 'type' => 'radio', + 'name' => 'return_format', + 'layout' => 'horizontal', + 'choices' => array( + 'value' => __( 'Value', 'acf' ), + 'label' => __( 'Label', 'acf' ), + 'array' => __( 'Both (Array)', 'acf' ), + ), ) ); - // multiple acf_render_field_setting( $field, array( @@ -403,19 +407,49 @@ if ( ! class_exists( 'acf_field_select' ) ) : ) ); - // ui + } + + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { acf_render_field_setting( $field, array( - 'label' => __( 'Stylised UI', 'acf' ), + 'label' => __( 'Allow Null?', 'acf' ), 'instructions' => '', + 'name' => 'allow_null', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Stylized UI', 'acf' ), + 'instructions' => __( 'Use a stylized checkbox using select2', 'acf' ), 'name' => 'ui', 'type' => 'true_false', 'ui' => 1, ) ); - // ajax acf_render_field_setting( $field, array( @@ -431,26 +465,8 @@ if ( ! class_exists( 'acf_field_select' ) ) : ), ) ); - - // return_format - acf_render_field_setting( - $field, - array( - 'label' => __( 'Return Format', 'acf' ), - 'instructions' => __( 'Specify the value returned', 'acf' ), - 'type' => 'select', - 'name' => 'return_format', - 'choices' => array( - 'value' => __( 'Value', 'acf' ), - 'label' => __( 'Label', 'acf' ), - 'array' => __( 'Both (Array)', 'acf' ), - ), - ) - ); - } - /* * load_value() * @@ -598,7 +614,7 @@ if ( ! class_exists( 'acf_field_select' ) ) : function format_value_single( $value, $post_id, $field ) { - // bail ealry if is empty + // bail early if is empty if ( acf_is_empty( $value ) ) { return $value; } diff --git a/includes/fields/class-acf-field-tab.php b/includes/fields/class-acf-field-tab.php index 5b03546..5161c76 100644 --- a/includes/fields/class-acf-field-tab.php +++ b/includes/fields/class-acf-field-tab.php @@ -56,8 +56,12 @@ if ( ! class_exists( 'acf_field_tab' ) ) : 'data-key' => $field['key'], ); + if ( isset( $field['settings-type'] ) ) { + $atts['class'] .= ' acf-settings-type-' . acf_slugify( $field['settings-type'] ); + } + ?> - > + > __( 'Endpoint', 'acf' ), - 'instructions' => __( 'Define an endpoint for the previous tabs to stop. This will start a new group of tabs.', 'acf' ), + 'label' => __( 'New Tab Group', 'acf' ), + 'instructions' => __( 'Start a new group of tabs at this tab.', 'acf' ), 'name' => 'endpoint', 'type' => 'true_false', 'ui' => 1, diff --git a/includes/fields/class-acf-field-taxonomy.php b/includes/fields/class-acf-field-taxonomy.php index fbef199..927c4d3 100644 --- a/includes/fields/class-acf-field-taxonomy.php +++ b/includes/fields/class-acf-field-taxonomy.php @@ -548,7 +548,7 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : } ?> -
                              > +
                              > cap->manage_terms ) ) : ?>
                              @@ -632,21 +632,16 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : } - /* - * render_field_checkbox() - * - * 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 + * + * @since 3.6 + * + * @param array $field an array holding all the field's data. + */ + public function render_field_checkbox( $field ) { - function render_field_checkbox( $field ) { - - // hidden input + // hidden input. acf_hidden_input( array( 'type' => 'hidden', @@ -654,29 +649,29 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : ) ); - // checkbox saves an array + // checkbox saves an array. if ( $field['field_type'] == 'checkbox' ) { $field['name'] .= '[]'; } - // taxonomy + // taxonomy. $taxonomy_obj = get_taxonomy( $field['taxonomy'] ); - // include walker + // include walker. acf_include( 'includes/walkers/class-acf-walker-taxonomy-field.php' ); - // vars + // vars. $args = array( 'taxonomy' => $field['taxonomy'], - 'show_option_none' => sprintf( _x( 'No %s', 'No terms', 'acf' ), strtolower( $taxonomy_obj->labels->name ) ), + 'show_option_none' => sprintf( _x( 'No %s', 'No Terms', 'acf' ), $taxonomy_obj->labels->name ), 'hide_empty' => false, 'style' => 'none', 'walker' => new ACF_Taxonomy_Field_Walker( $field ), ); - // filter for 3rd party customization + // filter for 3rd party customization. $args = apply_filters( 'acf/fields/taxonomy/wp_list_categories', $args, $field ); $args = apply_filters( 'acf/fields/taxonomy/wp_list_categories/name=' . $field['_name'], $args, $field ); $args = apply_filters( 'acf/fields/taxonomy/wp_list_categories/key=' . $field['key'], $args, $field ); @@ -704,10 +699,7 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // default_value acf_render_field_setting( $field, array( @@ -719,7 +711,54 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : ) ); - // field_type + acf_render_field_setting( + $field, + array( + 'label' => __( 'Create Terms', 'acf' ), + 'instructions' => __( 'Allow new terms to be created whilst editing', 'acf' ), + 'name' => 'add_term', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Save Terms', 'acf' ), + 'instructions' => __( 'Connect selected terms to the post', 'acf' ), + 'name' => 'save_terms', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Load Terms', 'acf' ), + 'instructions' => __( 'Load value from posts terms', 'acf' ), + 'name' => 'load_terms', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Return Value', 'acf' ), + 'instructions' => '', + 'type' => 'radio', + 'name' => 'return_format', + 'choices' => array( + 'object' => __( 'Term Object', 'acf' ), + 'id' => __( 'Term ID', 'acf' ), + ), + 'layout' => 'horizontal', + ) + ); + acf_render_field_setting( $field, array( @@ -740,8 +779,17 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : ), ) ); + } - // allow_null + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { acf_render_field_setting( $field, array( @@ -757,62 +805,8 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : ), ) ); - - // add_term - acf_render_field_setting( - $field, - array( - 'label' => __( 'Create Terms', 'acf' ), - 'instructions' => __( 'Allow new terms to be created whilst editing', 'acf' ), - 'name' => 'add_term', - 'type' => 'true_false', - 'ui' => 1, - ) - ); - - // save_terms - acf_render_field_setting( - $field, - array( - 'label' => __( 'Save Terms', 'acf' ), - 'instructions' => __( 'Connect selected terms to the post', 'acf' ), - 'name' => 'save_terms', - 'type' => 'true_false', - 'ui' => 1, - ) - ); - - // load_terms - acf_render_field_setting( - $field, - array( - 'label' => __( 'Load Terms', 'acf' ), - 'instructions' => __( 'Load value from posts terms', 'acf' ), - 'name' => 'load_terms', - 'type' => 'true_false', - 'ui' => 1, - ) - ); - - // return_format - acf_render_field_setting( - $field, - array( - 'label' => __( 'Return Value', 'acf' ), - 'instructions' => '', - 'type' => 'radio', - 'name' => 'return_format', - 'choices' => array( - 'object' => __( 'Term Object', 'acf' ), - 'id' => __( 'Term ID', 'acf' ), - ), - 'layout' => 'horizontal', - ) - ); - } - /* * ajax_add_term * @@ -828,6 +822,11 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : function ajax_add_term() { + // verify nonce + if ( ! acf_verify_ajax() ) { + die(); + } + // vars $args = wp_parse_args( $_POST, @@ -839,11 +838,6 @@ if ( ! class_exists( 'acf_field_taxonomy' ) ) : ) ); - // verify nonce - if ( ! acf_verify_ajax() ) { - die(); - } - // load field $field = acf_get_field( $args['field_key'] ); if ( ! $field ) { diff --git a/includes/fields/class-acf-field-text.php b/includes/fields/class-acf-field-text.php index d7d5cf6..de4970a 100644 --- a/includes/fields/class-acf-field-text.php +++ b/includes/fields/class-acf-field-text.php @@ -87,10 +87,7 @@ if ( ! class_exists( 'acf_field_text' ) ) : * @since 3.6 * @date 23/01/13 */ - function render_field_settings( $field ) { - - // default_value acf_render_field_setting( $field, array( @@ -100,8 +97,37 @@ if ( ! class_exists( 'acf_field_text' ) ) : 'name' => 'default_value', ) ); + } - // placeholder + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { + acf_render_field_setting( + $field, + array( + 'label' => __( 'Character Limit', 'acf' ), + 'instructions' => __( 'Leave blank for no limit', 'acf' ), + 'type' => 'number', + 'name' => 'maxlength', + ) + ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { acf_render_field_setting( $field, array( @@ -112,7 +138,6 @@ if ( ! class_exists( 'acf_field_text' ) ) : ) ); - // prepend acf_render_field_setting( $field, array( @@ -123,7 +148,6 @@ if ( ! class_exists( 'acf_field_text' ) ) : ) ); - // append acf_render_field_setting( $field, array( @@ -133,18 +157,6 @@ if ( ! class_exists( 'acf_field_text' ) ) : 'name' => 'append', ) ); - - // maxlength - acf_render_field_setting( - $field, - array( - 'label' => __( 'Character Limit', 'acf' ), - 'instructions' => __( 'Leave blank for no limit', 'acf' ), - 'type' => 'number', - 'name' => 'maxlength', - ) - ); - } /** diff --git a/includes/fields/class-acf-field-textarea.php b/includes/fields/class-acf-field-textarea.php index c52b4a3..972b8d3 100644 --- a/includes/fields/class-acf-field-textarea.php +++ b/includes/fields/class-acf-field-textarea.php @@ -93,10 +93,7 @@ if ( ! class_exists( 'acf_field_textarea' ) ) : * @since 3.6 * @date 23/01/13 */ - function render_field_settings( $field ) { - - // default_value acf_render_field_setting( $field, array( @@ -106,19 +103,17 @@ if ( ! class_exists( 'acf_field_textarea' ) ) : 'name' => 'default_value', ) ); + } - // placeholder - acf_render_field_setting( - $field, - array( - 'label' => __( 'Placeholder Text', 'acf' ), - 'instructions' => __( 'Appears within the input', 'acf' ), - 'type' => 'text', - 'name' => 'placeholder', - ) - ); - - // maxlength + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { acf_render_field_setting( $field, array( @@ -128,8 +123,18 @@ if ( ! class_exists( 'acf_field_textarea' ) ) : 'name' => 'maxlength', ) ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { - // rows acf_render_field_setting( $field, array( @@ -141,7 +146,16 @@ if ( ! class_exists( 'acf_field_textarea' ) ) : ) ); - // formatting + acf_render_field_setting( + $field, + array( + 'label' => __( 'Placeholder Text', 'acf' ), + 'instructions' => __( 'Appears within the input', 'acf' ), + 'type' => 'text', + 'name' => 'placeholder', + ) + ); + acf_render_field_setting( $field, array( @@ -156,10 +170,8 @@ if ( ! class_exists( 'acf_field_textarea' ) ) : ), ) ); - } - /* * format_value() * diff --git a/includes/fields/class-acf-field-time_picker.php b/includes/fields/class-acf-field-time_picker.php index ebed183..8db23fa 100644 --- a/includes/fields/class-acf-field-time_picker.php +++ b/includes/fields/class-acf-field-time_picker.php @@ -79,7 +79,7 @@ if ( ! class_exists( 'acf_field_time_picker' ) ) : // Output. ?> -
                              > +
                              >
                              @@ -100,14 +100,12 @@ if ( ! class_exists( 'acf_field_time_picker' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // vars $g_i_a = date_i18n( 'g:i a' ); $H_i_s = date_i18n( 'H:i:s' ); - // display_format + echo '
                              '; + acf_render_field_setting( $field, array( @@ -124,7 +122,6 @@ if ( ! class_exists( 'acf_field_time_picker' ) ) : ) ); - // return_format acf_render_field_setting( $field, array( @@ -141,8 +138,9 @@ if ( ! class_exists( 'acf_field_time_picker' ) ) : ) ); - } + echo '
                              '; + } /* * format_value() diff --git a/includes/fields/class-acf-field-true_false.php b/includes/fields/class-acf-field-true_false.php index a522437..fab36fe 100644 --- a/includes/fields/class-acf-field-true_false.php +++ b/includes/fields/class-acf-field-true_false.php @@ -127,21 +127,17 @@ if ( ! class_exists( 'acf_field_true_false' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // message acf_render_field_setting( $field, array( - 'label' => __( 'Message', 'acf' ), - 'instructions' => __( 'Displays text alongside the checkbox', 'acf' ), - 'type' => 'text', - 'name' => 'message', + 'label' => __( 'Message', 'acf' ), + 'hint' => __( 'Displays text alongside the checkbox', 'acf' ), + 'type' => 'text', + 'name' => 'message', ) ); - // default_value acf_render_field_setting( $field, array( @@ -151,21 +147,17 @@ if ( ! class_exists( 'acf_field_true_false' ) ) : 'name' => 'default_value', ) ); + } - // ui - acf_render_field_setting( - $field, - array( - 'label' => __( 'Stylised UI', 'acf' ), - 'instructions' => '', - 'type' => 'true_false', - 'name' => 'ui', - 'ui' => 1, - 'class' => 'acf-field-object-true-false-ui', - ) - ); - - // on_text + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { acf_render_field_setting( $field, array( @@ -182,7 +174,6 @@ if ( ! class_exists( 'acf_field_true_false' ) ) : ) ); - // on_text acf_render_field_setting( $field, array( @@ -199,9 +190,19 @@ if ( ! class_exists( 'acf_field_true_false' ) ) : ) ); + acf_render_field_setting( + $field, + array( + 'label' => __( 'Stylized UI', 'acf' ), + 'instructions' => __( 'Use a stylized checkbox using select2', 'acf' ), + 'type' => 'true_false', + 'name' => 'ui', + 'ui' => 1, + 'class' => 'acf-field-object-true-false-ui', + ) + ); } - /* * format_value() * diff --git a/includes/fields/class-acf-field-url.php b/includes/fields/class-acf-field-url.php index 58b7972..fd88622 100644 --- a/includes/fields/class-acf-field-url.php +++ b/includes/fields/class-acf-field-url.php @@ -91,10 +91,7 @@ if ( ! class_exists( 'acf_field_url' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // default_value acf_render_field_setting( $field, array( @@ -104,8 +101,17 @@ if ( ! class_exists( 'acf_field_url' ) ) : 'name' => 'default_value', ) ); + } - // placeholder + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { acf_render_field_setting( $field, array( @@ -115,7 +121,6 @@ if ( ! class_exists( 'acf_field_url' ) ) : 'name' => 'placeholder', ) ); - } diff --git a/includes/fields/class-acf-field-user.php b/includes/fields/class-acf-field-user.php index 6ddea8b..f7a475f 100644 --- a/includes/fields/class-acf-field-user.php +++ b/includes/fields/class-acf-field-user.php @@ -46,7 +46,6 @@ if ( ! class_exists( 'ACF_Field_User' ) ) : * @return void */ function render_field_settings( $field ) { - acf_render_field_setting( $field, array( @@ -65,11 +64,16 @@ if ( ! class_exists( 'ACF_Field_User' ) ) : acf_render_field_setting( $field, array( - 'label' => __( 'Allow Null?', 'acf' ), + 'label' => __( 'Return Format', 'acf' ), 'instructions' => '', - 'name' => 'allow_null', - 'type' => 'true_false', - 'ui' => 1, + 'type' => 'radio', + 'name' => 'return_format', + 'choices' => array( + 'array' => __( 'User Array', 'acf' ), + 'object' => __( 'User Object', 'acf' ), + 'id' => __( 'User ID', 'acf' ), + ), + 'layout' => 'horizontal', ) ); @@ -83,20 +87,25 @@ if ( ! class_exists( 'ACF_Field_User' ) ) : 'ui' => 1, ) ); + } + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { acf_render_field_setting( $field, array( - 'label' => __( 'Return Format', 'acf' ), + 'label' => __( 'Allow Null?', 'acf' ), 'instructions' => '', - 'type' => 'radio', - 'name' => 'return_format', - 'choices' => array( - 'array' => __( 'User Array', 'acf' ), - 'object' => __( 'User Object', 'acf' ), - 'id' => __( 'User ID', 'acf' ), - ), - 'layout' => 'horizontal', + 'name' => 'allow_null', + 'type' => 'true_false', + 'ui' => 1, ) ); } @@ -316,6 +325,7 @@ if ( ! class_exists( 'ACF_Field_User' ) ) : */ function ajax_query() { + // phpcs:disable WordPress.Security.NonceVerification.Recommended // Modify Request args. if ( isset( $_REQUEST['s'] ) ) { $_REQUEST['search'] = $_REQUEST['s']; @@ -323,6 +333,7 @@ if ( ! class_exists( 'ACF_Field_User' ) ) : if ( isset( $_REQUEST['paged'] ) ) { $_REQUEST['page'] = $_REQUEST['paged']; } + // phpcs:enable WordPress.Security.NonceVerification.Recommended // Add query hooks. add_action( 'acf/ajax/query_users/init', array( $this, 'ajax_query_init' ), 10, 2 ); diff --git a/includes/fields/class-acf-field-wysiwyg.php b/includes/fields/class-acf-field-wysiwyg.php index 1dbe816..36b41d7 100644 --- a/includes/fields/class-acf-field-wysiwyg.php +++ b/includes/fields/class-acf-field-wysiwyg.php @@ -265,7 +265,7 @@ if ( ! class_exists( 'acf_field_wysiwyg' ) ) : ); ?> -
                              > +
                              >
                              @@ -308,26 +308,7 @@ if ( ! class_exists( 'acf_field_wysiwyg' ) ) : * * @param $field - an array holding all the field's data */ - function render_field_settings( $field ) { - - // vars - $toolbars = $this->get_toolbars(); - $choices = array(); - - if ( ! empty( $toolbars ) ) { - - foreach ( $toolbars as $k => $v ) { - - $label = $k; - $name = sanitize_title( $label ); - $name = str_replace( '-', '_', $name ); - - $choices[ $name ] = $label; - } - } - - // default_value acf_render_field_setting( $field, array( @@ -338,52 +319,6 @@ if ( ! class_exists( 'acf_field_wysiwyg' ) ) : ) ); - // tabs - acf_render_field_setting( - $field, - array( - 'label' => __( 'Tabs', 'acf' ), - 'instructions' => '', - 'type' => 'select', - 'name' => 'tabs', - 'choices' => array( - 'all' => __( 'Visual & Text', 'acf' ), - 'visual' => __( 'Visual Only', 'acf' ), - 'text' => __( 'Text Only', 'acf' ), - ), - ) - ); - - // toolbar - acf_render_field_setting( - $field, - array( - 'label' => __( 'Toolbar', 'acf' ), - 'instructions' => '', - 'type' => 'select', - 'name' => 'toolbar', - 'choices' => $choices, - 'conditions' => array( - 'field' => 'tabs', - 'operator' => '!=', - 'value' => 'text', - ), - ) - ); - - // media_upload - acf_render_field_setting( - $field, - array( - 'label' => __( 'Show Media Upload Buttons?', 'acf' ), - 'instructions' => '', - 'name' => 'media_upload', - 'type' => 'true_false', - 'ui' => 1, - ) - ); - - // delay acf_render_field_setting( $field, array( @@ -402,6 +337,73 @@ if ( ! class_exists( 'acf_field_wysiwyg' ) ) : } + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { + $toolbars = $this->get_toolbars(); + $choices = array(); + + if ( ! empty( $toolbars ) ) { + + foreach ( $toolbars as $k => $v ) { + + $label = $k; + $name = sanitize_title( $label ); + $name = str_replace( '-', '_', $name ); + + $choices[ $name ] = $label; + } + } + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Tabs', 'acf' ), + 'instructions' => '', + 'type' => 'select', + 'name' => 'tabs', + 'choices' => array( + 'all' => __( 'Visual & Text', 'acf' ), + 'visual' => __( 'Visual Only', 'acf' ), + 'text' => __( 'Text Only', 'acf' ), + ), + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Toolbar', 'acf' ), + 'instructions' => '', + 'type' => 'select', + 'name' => 'toolbar', + 'choices' => $choices, + 'conditions' => array( + 'field' => 'tabs', + 'operator' => '!=', + 'value' => 'text', + ), + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Show Media Upload Buttons?', 'acf' ), + 'instructions' => '', + 'name' => 'media_upload', + 'type' => 'true_false', + 'ui' => 1, + ) + ); + } + /** * This filter is applied to the $value after it is loaded from the db, and before it is returned to the template * diff --git a/includes/fields/class-acf-field.php b/includes/fields/class-acf-field.php index 490508b..aae43e6 100755 --- a/includes/fields/class-acf-field.php +++ b/includes/fields/class-acf-field.php @@ -58,6 +58,10 @@ if ( ! class_exists( 'acf_field' ) ) : $this->add_field_action( 'acf/delete_field', array( $this, 'delete_field' ), 10, 1 ); $this->add_field_action( 'acf/render_field', array( $this, 'render_field' ), 9, 1 ); $this->add_field_action( 'acf/render_field_settings', array( $this, 'render_field_settings' ), 9, 1 ); + $this->add_field_action( 'acf/render_field_general_settings', array( $this, 'render_field_general_settings' ), 9, 1 ); + $this->add_field_action( 'acf/render_field_validation_settings', array( $this, 'render_field_validation_settings' ), 9, 1 ); + $this->add_field_action( 'acf/render_field_presentation_settings', array( $this, 'render_field_presentation_settings' ), 9, 1 ); + $this->add_field_action( 'acf/render_field_conditional_logic_settings', array( $this, 'render_field_conditional_logic_settings' ), 9, 1 ); $this->add_field_filter( 'acf/prepare_field', array( $this, 'prepare_field' ), 10, 1 ); $this->add_field_filter( 'acf/translate_field', array( $this, 'translate_field' ), 10, 1 ); diff --git a/includes/forms/form-customizer.php b/includes/forms/form-customizer.php index 8186fad..d65abf9 100644 --- a/includes/forms/form-customizer.php +++ b/includes/forms/form-customizer.php @@ -87,7 +87,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : function save_widget( $instance, $new_instance, $old_instance, $widget ) { - // bail ealry if not valid (customize + acf values + nonce) + // bail early if not valid (customize + acf values + nonce) if ( ! isset( $_POST['wp_customize'] ) || ! isset( $new_instance['acf'] ) || ! acf_verify_nonce( 'widget' ) ) { return $instance; } @@ -147,7 +147,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : $data = array(); $settings = $customizer->settings(); - // bail ealry if no settings + // bail early if no settings if ( empty( $settings ) ) { return false; } @@ -181,7 +181,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : } - // bail ealry if no settings + // bail early if no settings if ( empty( $data ) ) { return false; } @@ -210,7 +210,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : // get customizer settings (widgets) $settings = $this->settings( $customizer ); - // bail ealry if no settings + // bail early if no settings if ( empty( $settings ) ) { return; } @@ -227,7 +227,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : } - // bail ealry if no preview_values + // bail early if no preview_values if ( empty( $this->preview_values ) ) { return; } @@ -305,7 +305,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : // get customizer settings (widgets) $settings = $this->settings( $customizer ); - // bail ealry if no settings + // bail early if no settings if ( empty( $settings ) ) { return; } @@ -343,7 +343,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : function pre_update_option( $value, $option, $old_value ) { - // bail ealry if no value + // bail early if no value if ( empty( $value ) ) { return $value; } @@ -352,7 +352,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : // WP saves all widgets (of the same type) as an array of widgets foreach ( $value as $i => $widget ) { - // bail ealry if no acf + // bail early if no acf if ( ! isset( $widget['acf'] ) ) { continue; } @@ -426,7 +426,7 @@ if ( ! class_exists( 'acf_form_customizer' ) ) : var bit = signature[i]; - // bail ealry if acf is found + // bail early if acf is found if( bit.indexOf('acf') !== -1 ) continue; diff --git a/includes/forms/form-front.php b/includes/forms/form-front.php index f385176..106607c 100644 --- a/includes/forms/form-front.php +++ b/includes/forms/form-front.php @@ -221,7 +221,7 @@ if ( ! class_exists( 'acf_form_front' ) ) : foreach ( $this->fields as $k => $field ) { // bail early if no in $_POST - if ( ! isset( $_POST['acf'][ $k ] ) ) { + if ( ! isset( $_POST['acf'][ $k ] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. continue; } @@ -231,7 +231,7 @@ if ( ! class_exists( 'acf_form_front' ) ) : } // honeypot - if ( ! empty( $_POST['acf']['_validate_email'] ) ) { + if ( ! empty( $_POST['acf']['_validate_email'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Data not used; presence indicates spam. acf_add_validation_error( '', __( 'Spam Detected', 'acf' ) ); @@ -278,6 +278,7 @@ if ( ! class_exists( 'acf_form_front' ) ) : } + // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified in check_submit_form(). // save post_title if ( isset( $_POST['acf']['_post_title'] ) ) { @@ -291,9 +292,10 @@ if ( ! class_exists( 'acf_form_front' ) ) : $save['post_content'] = acf_extract_var( $_POST['acf'], '_post_content' ); } + // phpcs:enable WordPress.Security.NonceVerification.Missing // honeypot - if ( ! empty( $_POST['acf']['_validate_email'] ) ) { + if ( ! empty( $_POST['acf']['_validate_email'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Data not used; presence indicates spam. return false; } @@ -558,7 +560,7 @@ if ( ! class_exists( 'acf_form_front' ) ) : } // Display updated_message - if ( ! empty( $_GET['updated'] ) && $args['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'] ); } diff --git a/includes/forms/form-gutenberg.php b/includes/forms/form-gutenberg.php index cb0826d..e3612be 100644 --- a/includes/forms/form-gutenberg.php +++ b/includes/forms/form-gutenberg.php @@ -179,7 +179,7 @@ if ( ! class_exists( 'ACF_Form_Gutenberg' ) ) : function acf_validate_save_post() { // Check if current request came from Gutenberg. - if ( isset( $_GET['meta-box-loader'] ) ) { + if ( isset( $_GET['meta-box-loader'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Verified elsewhere. acf_reset_validation_errors(); } } diff --git a/includes/forms/form-nav-menu.php b/includes/forms/form-nav-menu.php index 87c07ea..e17e37e 100644 --- a/includes/forms/form-nav-menu.php +++ b/includes/forms/form-nav-menu.php @@ -182,7 +182,7 @@ if ( ! class_exists( 'acf_form_nav_menu' ) ) : function update_nav_menu_items( $menu_id ) { - // bail ealry if not set + // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified elsewhere. if ( empty( $_POST['menu-item-acf'] ) ) { return; } @@ -193,7 +193,7 @@ if ( ! class_exists( 'acf_form_nav_menu' ) ) : acf_save_post( $post_id, $values ); } - + // phpcs:enable WordPress.Security.NonceVerification.Missing } @@ -258,7 +258,7 @@ if ( ! class_exists( 'acf_form_nav_menu' ) ) : function acf_validate_save_post() { - // bail ealry if not set + // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified elsewhere. if ( empty( $_POST['menu-item-acf'] ) ) { return; } @@ -273,6 +273,7 @@ if ( ! class_exists( 'acf_form_nav_menu' ) ) : acf_validate_values( $values, $prefix ); } + // phpcs:enable // phpcs:disable WordPress.Security.NonceVerification.Missing } diff --git a/includes/forms/form-post.php b/includes/forms/form-post.php index 597cc2a..f33fa2f 100644 --- a/includes/forms/form-post.php +++ b/includes/forms/form-post.php @@ -50,6 +50,8 @@ if ( ! class_exists( 'ACF_Form_Post' ) ) : // globals global $typenow; + remove_meta_box( 'submitdiv', 'acf-field-group', 'side' ); + // restrict specific post types $restricted = array( 'acf-field-group', 'attachment' ); if ( in_array( $typenow, $restricted ) ) { @@ -300,7 +302,7 @@ if ( ! class_exists( 'ACF_Form_Post' ) ) : function save_post( $post_id, $post ) { - // bail ealry if no allowed to save this post type + // bail early if no allowed to save this post type if ( ! $this->allow_save_post( $post ) ) { return $post_id; } diff --git a/includes/forms/form-user.php b/includes/forms/form-user.php index 6f322e2..c9b36be 100644 --- a/includes/forms/form-user.php +++ b/includes/forms/form-user.php @@ -199,7 +199,7 @@ if ( ! class_exists( 'ACF_Form_User' ) ) : function render( $args = array() ) { // Allow $_POST data to persist across form submission attempts. - if ( isset( $_POST['acf'] ) ) { + if ( isset( $_POST['acf'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing add_filter( 'acf/pre_load_value', array( $this, 'filter_pre_load_value' ), 10, 3 ); } @@ -372,9 +372,11 @@ if ( ! class_exists( 'ACF_Form_User' ) ) : */ function filter_pre_load_value( $null, $post_id, $field ) { $field_key = $field['key']; + // phpcs:disable WordPress.Security.NonceVerification.Missing if ( isset( $_POST['acf'][ $field_key ] ) ) { return $_POST['acf'][ $field_key ]; } + // phpcs:enable WordPress.Security.NonceVerification.Missing return $null; } } diff --git a/includes/forms/form-widget.php b/includes/forms/form-widget.php index f806a0c..754caeb 100644 --- a/includes/forms/form-widget.php +++ b/includes/forms/form-widget.php @@ -97,7 +97,8 @@ if ( ! class_exists( 'acf_form_widget' ) ) : function acf_validate_save_post() { - // bail ealry if not widget + // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + // bail early if not widget if ( ! isset( $_POST['_acf_widget_id'] ) ) { return; } @@ -109,7 +110,7 @@ if ( ! class_exists( 'acf_form_widget' ) ) : // validate acf_validate_values( $_POST[ $id ][ $number ]['acf'], $prefix ); - + // phpcs:enable WordPress.Security.NonceVerification.Missing } diff --git a/includes/l10n.php b/includes/l10n.php index bb63a0e..54fcfea 100644 --- a/includes/l10n.php +++ b/includes/l10n.php @@ -31,6 +31,7 @@ if ( ! function_exists( 'determine_locale' ) ) : $determined_locale = get_user_locale(); } + // phpcs:disable WordPress.Security.NonceVerification.Recommended -- Copied from WordPress core. if ( function_exists( 'get_user_locale' ) && isset( $_GET['_locale'] ) && 'user' === $_GET['_locale'] ) { $determined_locale = get_user_locale(); } @@ -38,6 +39,7 @@ if ( ! function_exists( 'determine_locale' ) ) : if ( ! empty( $_GET['wp_lang'] ) && ! empty( $GLOBALS['pagenow'] ) && 'wp-login.php' === $GLOBALS['pagenow'] ) { $determined_locale = sanitize_text_field( $_GET['wp_lang'] ); } + // phpcs:enable WordPress.Security.NonceVerification.Recommended /** * Filters the locale for the current request. @@ -71,7 +73,6 @@ function acf_get_locale() { $langs = array( 'az_TR' => 'az', // Azerbaijani (Turkey) 'zh_HK' => 'zh_TW', // Chinese (Hong Kong) - 'nl_BE' => 'nl_NL', // Dutch (Belgium) 'fr_BE' => 'fr_FR', // French (Belgium) 'nn_NO' => 'nb_NO', // Norwegian (Nynorsk) 'fa_AF' => 'fa_IR', // Persian (Afghanistan) @@ -117,11 +118,6 @@ function acf_load_textdomain( $domain = 'acf' ) { $locale = apply_filters( 'plugin_locale', acf_get_locale(), $domain ); $mofile = $domain . '-' . $locale . '.mo'; - // Try to load from the languages directory first. - if ( load_textdomain( $domain, WP_LANG_DIR . '/plugins/' . $mofile ) ) { - return true; - } - // Load from plugin lang folder. return load_textdomain( $domain, acf_get_path( 'lang/' . $mofile ) ); } diff --git a/includes/locations.php b/includes/locations.php index 5e2cf88..b1b7b88 100644 --- a/includes/locations.php +++ b/includes/locations.php @@ -33,7 +33,7 @@ function acf_register_location_type( $class_name ) { // Check location type is unique. if ( $store->has( $name ) ) { - $message = sprintf( __( 'Location type "%s" is already registered.' ), $name ); + $message = sprintf( __( 'Location type "%s" is already registered.', 'acf' ), $name ); _doing_it_wrong( __FUNCTION__, $message, '5.9.0' ); return false; } diff --git a/includes/media.php b/includes/media.php index 9cffd14..9bbcc1b 100644 --- a/includes/media.php +++ b/includes/media.php @@ -139,6 +139,7 @@ if ( ! class_exists( 'ACF_Media' ) ) : private function get_source_field() { $field = false; + // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified elsewhere. // Search for field key within available data. // Case 1) Media modal query. if ( isset( $_POST['query']['_acfuploader'] ) ) { @@ -148,6 +149,7 @@ if ( ! class_exists( 'ACF_Media' ) ) : } elseif ( isset( $_POST['_acfuploader'] ) ) { $field_key = (string) $_POST['_acfuploader']; } + // phpcs:enable WordPress.Security.NonceVerification.Missing // Attempt to load field. // Note the `acf_get_field()` function will return false if not found. diff --git a/includes/rest-api/class-acf-rest-api.php b/includes/rest-api/class-acf-rest-api.php index 248b84b..3b18803 100644 --- a/includes/rest-api/class-acf-rest-api.php +++ b/includes/rest-api/class-acf-rest-api.php @@ -237,6 +237,13 @@ class ACF_Rest_Api { } } + /** + * Reset the store so that REST API values (which may be preloaded + * by WP core and have different values than standard values) aren't + * saved to the store. + */ + acf_get_store( 'values' )->reset(); + return $fields; } diff --git a/includes/rest-api/class-acf-rest-request.php b/includes/rest-api/class-acf-rest-request.php index 13b2eff..f1612a2 100644 --- a/includes/rest-api/class-acf-rest-request.php +++ b/includes/rest-api/class-acf-rest-request.php @@ -89,6 +89,7 @@ class ACF_Rest_Request { private function set_http_method() { $this->http_method = strtoupper( $_SERVER['REQUEST_METHOD'] ); + // phpcs:disable WordPress.Security.NonceVerification.Recommended -- Verified elsewhere. // HTTP method override for clients that can't use PUT/PATCH/DELETE. This is identical to WordPress' // handling in \WP_REST_Server::serve_request(). This block of code should always be identical to that // in core. @@ -97,6 +98,7 @@ class ACF_Rest_Request { } elseif ( isset( $_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] ) ) { $this->http_method = strtoupper( $_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] ); } + // phpcs:enable WordPress.Security.NonceVerification.Recommended } /** diff --git a/includes/revisions.php b/includes/revisions.php index 4e50595..185ea68 100644 --- a/includes/revisions.php +++ b/includes/revisions.php @@ -161,7 +161,7 @@ if ( ! class_exists( 'acf_revisions' ) ) : // attempt to find key value $key = acf_maybe_get( $meta, '_' . $name ); - // bail ealry if no key + // bail early if no key if ( ! $key ) { continue; } @@ -244,45 +244,33 @@ if ( ! class_exists( 'acf_revisions' ) ) : * @param $direction (string) to / from - not used * @return $value (string) */ - function wp_post_revision_field( $value, $field_name, $post = null, $direction = false ) { - // bail ealry if is empty + // bail early if is empty. if ( empty( $value ) ) { return $value; } - // value has not yet been 'maybe_unserialize' - $value = maybe_unserialize( $value ); - - // vars + $value = maybe_unserialize( $value ); $post_id = $post->ID; - // load field + // load field. $field = acf_maybe_get_field( $field_name, $post_id ); - // default formatting + // default formatting. if ( is_array( $value ) ) { - $value = implode( ', ', $value ); - } elseif ( is_object( $value ) ) { - $value = serialize( $value ); - } - // image - if ( $field['type'] == 'image' || $field['type'] == 'file' ) { - + // image. + if ( is_array( $field ) && isset( $field['type'] ) && ( $field['type'] === 'image' || $field['type'] === 'file' ) ) { $url = wp_get_attachment_url( $value ); $value = $value . ' (' . $url . ')'; - } - // return return $value; - } @@ -334,6 +322,7 @@ if ( ! class_exists( 'acf_revisions' ) ) : function acf_validate_post_id( $post_id, $_post_id ) { + // phpcs:disable WordPress.Security.NonceVerification.Recommended // bail early if no preview in URL if ( ! isset( $_GET['preview'] ) ) { return $post_id; @@ -367,6 +356,7 @@ if ( ! class_exists( 'acf_revisions' ) ) : $preview_id = (int) $_GET['page_id']; } + // phpcs:enable WordPress.Security.NonceVerification.Recommended // bail early id $preview_id does not match $post_id if ( $preview_id != $post_id ) { diff --git a/includes/third-party.php b/includes/third-party.php index 075c14d..53a50ce 100644 --- a/includes/third-party.php +++ b/includes/third-party.php @@ -158,7 +158,8 @@ if ( ! class_exists( 'acf_third_party' ) ) : // vars $post_type = ''; - // check $_GET becuase it is too early to use functions / global vars + // phpcs:disable WordPress.Security.NonceVerification.Recommended -- Verified elsewhere. + // check $_GET because it is too early to use functions / global vars. if ( ! empty( $_GET['post_type'] ) ) { $post_type = $_GET['post_type']; @@ -168,7 +169,7 @@ if ( ! class_exists( 'acf_third_party' ) ) : $post_type = get_post_type( $_GET['post'] ); } - + // phpcs:enable WordPress.Security.NonceVerification.Recommended // check post type if ( $post_type == 'acf-field-group' ) { diff --git a/includes/updates.php b/includes/updates.php index 6b36a89..cfd489b 100644 --- a/includes/updates.php +++ b/includes/updates.php @@ -151,25 +151,19 @@ if ( ! class_exists( 'ACF_Updates' ) ) : return $json; } - /* - * get_plugin_info - * - * Returns update information for the given plugin id. - * - * @date 9/4/17 - * @since 5.5.10 - * - * @param string $id The plugin id such as 'pro'. - * @param boolean $force_check Bypasses cached result. Defaults to false. - * @return array|WP_Error - */ - - function get_plugin_info( $id = '', $force_check = false ) { - - // var + /** + * Returns update information for the given plugin id. + * + * @since 5.5.10 + * + * @param string $id The plugin id such as 'pro'. + * @param boolean $force_check Bypasses cached result. Defaults to false. + * @return array|WP_Error + */ + public function get_plugin_info( $id = '', $force_check = false ) { $transient_name = 'acf_plugin_info_' . $id; - // check cache but allow for $force_check override + // check cache but allow for $force_check override. if ( ! $force_check ) { $transient = get_transient( $transient_name ); if ( $transient !== false ) { @@ -177,21 +171,19 @@ if ( ! class_exists( 'ACF_Updates' ) ) : } } - // connect $response = $this->request( 'v2/plugins/get-info?p=' . $id ); - // convert string (misc error) to WP_Error object + // convert string (misc error) to WP_Error object. if ( is_string( $response ) ) { $response = new WP_Error( 'server_error', esc_html( $response ) ); } - // allow json to include expiration but force minimum and max for safety + // allow json to include expiration but force minimum and max for safety. $expiration = $this->get_expiration( $response, DAY_IN_SECONDS, MONTH_IN_SECONDS ); - // update transient + // update transient. set_transient( $transient_name, $response, $expiration ); - // return return $response; } @@ -304,11 +296,8 @@ if ( ! class_exists( 'ACF_Updates' ) ) : } /** - * get_expiration - * * This function safely gets the expiration value from a response. * - * @date 8/7/18 * @since 5.6.9 * * @param mixed $response The response from the server. Default false. @@ -316,28 +305,29 @@ if ( ! class_exists( 'ACF_Updates' ) ) : * @param int $max The maximum expiration limit. Default 0. * @return int */ - - function get_expiration( $response = false, $min = 0, $max = 0 ) { - - // vars + public function get_expiration( $response = false, $min = 0, $max = 0 ) { $expiration = 0; - // check + // check possible error conditions. + if ( is_wp_error( $response ) || is_string( $response ) ) { + return 5 * MINUTE_IN_SECONDS; + } + + // use the server requested expiration if present. if ( is_array( $response ) && isset( $response['expiration'] ) ) { $expiration = (int) $response['expiration']; } - // min + // use the minimum if neither check matches, or ensure the server expiration isn't lower than our minimum. if ( $expiration < $min ) { return $min; } - // max + // ensure the server expiration isn't higher than our max. if ( $expiration > $max ) { return $max; } - // return return $expiration; } @@ -378,7 +368,7 @@ if ( ! class_exists( 'ACF_Updates' ) ) : } // force-check (only once) - $force_check = ( $this->checked == 0 ) ? ! empty( $_GET['force-check'] ) : false; + $force_check = ( $this->checked == 0 ) ? ! empty( $_GET['force-check'] ) : false; // phpcs:ignore -- False positive, value not used. // fetch updates (this filter is called multiple times during a single page load) $updates = $this->get_plugin_updates( $force_check ); diff --git a/includes/upgrades.php b/includes/upgrades.php index de5ba40..6de8f75 100644 --- a/includes/upgrades.php +++ b/includes/upgrades.php @@ -12,39 +12,30 @@ * @return bool */ function acf_has_upgrade() { - - // vars $db_version = acf_get_db_version(); - // return true if DB version is < latest upgrade version - if ( $db_version && acf_version_compare( $db_version, '<', '5.5.0' ) ) { + if ( $db_version && acf_version_compare( $db_version, '<', ACF_UPGRADE_VERSION ) ) { return true; } - // update DB version if needed if ( $db_version !== ACF_VERSION ) { acf_update_db_version( ACF_VERSION ); } - // return return false; } /** - * acf_upgrade_all + * Runs upgrade routines if this site has an upgrade available. * - * Returns true if this site has an upgrade avaialble. - * - * @date 24/8/18 - * @since 5.7.4 - * - * @param void - * @return bool + * @date 24/8/18 + * @since 5.7.4 */ function acf_upgrade_all() { - - // increase time limit - @set_time_limit( 600 ); + // Increase time limit if possible. + if ( function_exists( 'set_time_limit' ) ) { + set_time_limit( 600 ); + } // start timer timer_start(); @@ -65,9 +56,19 @@ function acf_upgrade_all() { acf_upgrade_550(); } + /** + * When adding new upgrade routines here, increment the ACF_UPGRADE_VERSION + * constant in `acf.php` to the new highest upgrade version. + */ + // upgrade DB version once all updates are complete acf_update_db_version( ACF_VERSION ); + if ( is_multisite() ) { + // Clears the network upgrade notification banner after site upgrades. + delete_site_transient( 'acf_network_upgrade_needed_' . ACF_UPGRADE_VERSION ); + } + // log global $wpdb; acf_dev_log( 'ACF Upgrade Complete.', $wpdb->num_queries, timer_stop( 0 ) ); @@ -542,5 +543,3 @@ function acf_upgrade_550_taxonomy( $taxonomy ) { // action for 3rd party do_action( 'acf/upgrade_550_taxonomy', $taxonomy ); } - - diff --git a/includes/validation.php b/includes/validation.php index 4c08a82..c71d634 100644 --- a/includes/validation.php +++ b/includes/validation.php @@ -198,6 +198,7 @@ if ( ! class_exists( 'acf_validation' ) ) : function acf_validate_save_post() { + // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified elsewhere. // bail early if no $_POST if ( empty( $_POST['acf'] ) ) { return; @@ -205,7 +206,7 @@ if ( ! class_exists( 'acf_validation' ) ) : // validate acf_validate_values( $_POST['acf'], 'acf' ); - + // phpcs:enable WordPress.Security.NonceVerification.Missing } } @@ -275,7 +276,7 @@ function acf_validate_save_post( $show_errors = false ) { // vars $errors = acf_get_validation_errors(); - // bail ealry if no errors + // bail early if no errors if ( ! $errors ) { return true; } diff --git a/includes/wpml.php b/includes/wpml.php index 596cb48..7d2bc09 100644 --- a/includes/wpml.php +++ b/includes/wpml.php @@ -137,7 +137,7 @@ if ( ! class_exists( 'ACF_WPML_Compatibility' ) ) : ARRAY_A ); - // bail ealry if no rows + // bail early if no rows if ( ! $old_row || ! $new_row ) { return; } @@ -281,12 +281,14 @@ if ( ! class_exists( 'ACF_WPML_Compatibility' ) ) : */ function verify_ajax() { + // phpcs:disable WordPress.Security.NonceVerification.Recommended -- Verified elsewhere. // set the language for this AJAX request // this will allow get_posts to work as expected (load posts from the correct language) if ( isset( $_REQUEST['lang'] ) ) { global $sitepress; $sitepress->switch_lang( $_REQUEST['lang'] ); } + // phpcs:enable WordPress.Security.NonceVerification.Recommended } /** diff --git a/lang/acf-ar.mo b/lang/acf-ar.mo old mode 100755 new mode 100644 index 5dcc8ac..0b30b41 Binary files a/lang/acf-ar.mo and b/lang/acf-ar.mo differ diff --git a/lang/acf-ar.po b/lang/acf-ar.po index 78a2807..d061919 100644 --- a/lang/acf-ar.po +++ b/lang/acf-ar.po @@ -1,25 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro\n" -"POT-Creation-Date: 2020-06-27 13:40+0200\n" -"PO-Revision-Date: 2020-06-27 15:50+0200\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Adil el hallaoui \n" +"PO-Revision-Date: 2022-09-29T12:15:07+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: Poedit 2.3.1\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:68 msgid "Advanced Custom Fields" diff --git a/lang/acf-bg_BG.mo b/lang/acf-bg_BG.mo index 994be7a..22ce90c 100644 Binary files a/lang/acf-bg_BG.mo and b/lang/acf-bg_BG.mo differ diff --git a/lang/acf-bg_BG.po b/lang/acf-bg_BG.po index 59456c4..7b24cf8 100644 --- a/lang/acf-bg_BG.po +++ b/lang/acf-bg_BG.po @@ -1,25 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2017-06-27 15:36+1000\n" -"PO-Revision-Date: 2018-02-06 10:03+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Elliot Condon \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: Poedit 1.8.1\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:63 msgid "Advanced Custom Fields" @@ -2625,8 +2625,8 @@ msgstr "Редактиране на група полета" msgid "Validate Email" msgstr "Провалена валидация" -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81 +#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:588 +#: pro/options-page.php:81 msgid "Update" msgstr "Обновяване" diff --git a/lang/acf-ca.mo b/lang/acf-ca.mo index 2ba2263..b015ad7 100644 Binary files a/lang/acf-ca.mo and b/lang/acf-ca.mo differ diff --git a/lang/acf-ca.po b/lang/acf-ca.po index 15df850..42b69fc 100644 --- a/lang/acf-ca.po +++ b/lang/acf-ca.po @@ -1,294 +1,3076 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2019-11-01 18:50+0100\n" -"PO-Revision-Date: 2019-11-12 15:35+0100\n" -"Last-Translator: \n" -"Language-Team: Jordi Tarrida (hola@jorditarrida.cat)\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2.4\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "Comença un nou grup de pestanyes en aquesta pestanya." -#: acf.php:341 includes/admin/admin.php:58 -msgid "Field Groups" -msgstr "Grups de camps" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "Nou grup de pestanyes" -#: acf.php:342 -msgid "Field Group" -msgstr "Grup de camps" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:343 acf.php:375 includes/admin/admin.php:59 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Add New" -msgstr "Afegeix-ne un" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:344 -msgid "Add New Field Group" -msgstr "Afegeix un nou grup de camps" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:345 -msgid "Edit Field Group" -msgstr "Edita el grup de camps" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -#: acf.php:346 -msgid "New Field Group" -msgstr "Nou grup de camps" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Desa els valors personalitzats" -#: acf.php:347 -msgid "View Field Group" -msgstr "Mostra el grup de camps" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Permet valors personalitzats" -#: acf.php:348 -msgid "Search Field Groups" -msgstr "Cerca grups de camps" +#: includes/fields/class-acf-field-checkbox.php:144 +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." -#: acf.php:349 -msgid "No Field Groups found" -msgstr "No s’ha trobat cap grup de camps" +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Actualitzacions" -#: acf.php:350 -msgid "No Field Groups found in Trash" -msgstr "No s’ha trobat cap grup de camps a la paperera" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "Logotip de l'Advanced Custom Fields" -#: acf.php:373 includes/admin/admin-field-group.php:220 -#: includes/admin/admin-field-groups.php:530 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Camps" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Desa els canvis" -#: acf.php:374 -msgid "Field" -msgstr "Camp" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Títol del grup de camps" -#: acf.php:376 -msgid "Add New Field" -msgstr "Afegeix un nou camp" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Afegeix un títol" -#: acf.php:377 -msgid "Edit Field" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +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/field-groups-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/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Afegiu el vostre primer grup de camps" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Actualitza ara" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Pàgines d'opcions" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "Blocs ACF" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Camp de galeria" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Camp de contingut flexible" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Camp repetible" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "Desbloquegeu característiques addicionals amb l'ACF PRO" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Suprimeix el grup de camps" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Creat el %1$s a les %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "Regles d'ubicació" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +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/field-group-fields.php:54 +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/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "#" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "Afegeix un camp" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Presentació" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validació" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Exporta grups de camps - Genera PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Exporta com a JSON" + +#: includes/admin/admin-field-groups.php:638 +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." + +#: includes/admin/admin-field-groups.php:585 +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-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Desactiva" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Desactiva aquest element" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Activa" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Activa aquest element" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "Voleu moure el grup de camps a la paperera?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "Inactiva" + +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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 - 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Sol·licitud no vàlida." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s requereix un identificador d'adjunt vàlid." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostra a l'API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activa la transparència" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Matriu RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadena RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadena hexadecimal" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galeria (només a la versió pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clona (només a la versió pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contingut flexible (només a la versió pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetible (només a la versió pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activa" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor de color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccioneu el color per defecte" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Neteja el color" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blocs" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opcions" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuaris" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elements del menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Ginys" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjunts" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomies" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entrades" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grup de camps JSON (nou)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grup de camps original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Darrera actualització: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group 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:43 +msgid "Invalid field group ID." +msgstr "ID de grup de camps invàlid." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Paràmetre/s del grup de camps no vàlids." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Esperant desar" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "S'ha desat" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importa" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisa els canvis" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Ubicat a: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Ubicat a l'extensió: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Ubicat al tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Diversos" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronitza els canvis" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "S'està carregant el diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisa els canvis JSON locals" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visiteu el lloc web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Visualitza els detalls" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versió %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Informació" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ajuda i suport" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error en carregar el camp." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:99 +msgid "Viewing back end" +msgstr "Veient l’administració" + +#: includes/locations/class-acf-location-current-user.php:98 +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:364 +#, php-format +msgid "%s value is required" +msgstr "Cal introduir un valor a %s" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostra aquest camp si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lògica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "i" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Clona el camp" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Cal actualitzar la base de dades" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Pàgina d'opcions" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galeria" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contingut flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetible" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Torna a totes les eines" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Seleccioneu els elements a amagarde la pantalla d'edició." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Amaga a la pantalla" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Envia retroenllaços" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetes" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categories" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributs de la pàgina" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Àlies" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisions" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentaris" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Debats" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracte" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contingut" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enllaç permanent" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Es mostra a la llista de grups de camps" + +#: includes/admin/views/field-group-options.php:122 +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/field-group-options.php:85 +msgid "Order No." +msgstr "Núm. d’ordre" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Sota els camps" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Sota les etiquetes" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Posició de les instruccions" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Posició de les etiquetes" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (després del contingut)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (després del títol)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posició" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Fluid (sense la caixa meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estàndard (en una caixa meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estil" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipus" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clau" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Ordre" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Tanca el camp" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "amplada" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Atributs del contenidor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Obligatori" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instruccions per als autors. Es mostren en enviar les dades" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instruccions" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipus de camp" + +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola paraula, sense espais. S’admeten barres baixes i guions" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nom del camp" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta del camp" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Suprimeix" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Suprimeix el camp" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mou" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mou el camp a un altre grup" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplica el camp" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" msgstr "Edita el camp" -#: acf.php:378 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Nou camp" +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrossegueu per reordenar" -#: acf.php:379 -msgid "View Field" -msgstr "Mostra el camp" +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostra aquest grup de camps si" -#: acf.php:380 +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hi ha actualitzacions disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "S'estan llegint les tasques d'actualització…" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "L'actualització ha fallat." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "S'ha completat l'actualització." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "S'estan actualitzant les dades a la versió %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Seleccioneu almenys un lloc web per actualitzar." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El lloc web està actualitzat" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Lloc" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "Actualitza els llocs" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Afegeix un grup de regles" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Regles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiat" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copia-ho al porta-retalls" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El següent codi es pot usar per a registrar una versió local del(s) grup(s) " +"de camps escollit(s). Un grup de camps local pot aportar diversos avantatges " +"com ara temps de càrrega més ràpids, control de versions, i opcions i camps " +"dinàmics. Simplement copieu i enganxeu el següent codi al fitxer functions." +"php del vostre tema, o incloeu-lo en un fitxer extern." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Seleccioneu grups de camps" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "S'ha exportat 1 grup de camps." +msgstr[1] "S'han exportat %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "S'ha importat un grup de camps." +msgstr[1] "S'han importat %s grups de camps." + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "El fitxer d'importació és buit" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipus de fitxer incorrecte" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +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:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importa grups de camps" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronitza" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplica" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplica aquest element" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripció" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronització disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "S'ha sincronitzat el grup de camps." +msgstr[1] "S'han sincronitzat %s grups de camps." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Actiu (%s)" +msgstr[1] "Actius (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualitza la base de dades" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Camps personalitzats" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mou el camp" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Seleccioneu la destinació d'aquest camp" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Tanca la finestra" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "S’ha completat el moviment." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Actiu" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claus dels camps" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Configuració" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Ubicació" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Nul" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copia" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(aquest camp)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Marcat" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mou el grup de camps" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No hi ha camps commutables disponibles" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "El títol del grup de camps és obligatori" + +#: includes/admin/admin-field-group.php:172 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "S'ha actualitzat l’esborrany del grup de camps." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "S'ha programat el grup de camps." + +#: includes/admin/admin-field-group.php:93 +msgid "Field group submitted." +msgstr "S’ha tramès el grup de camps." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "S'ha desat el grup de camps." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "S'ha publicat el grup de camps." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "S'ha suprimit el grup de camps." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "S'ha actualitzat el grup de camps." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Pàgina" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relacional" + +#: includes/fields.php:351 +msgid "Choice" +msgstr "Elecció" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Bàsic" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconegut" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contingut" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Títol" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Edita el grup de camps" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selecció és inferior a" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selecció és superior a" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor és inferior a" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor és superior a" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor conté" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincideix amb el patró" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No té cap valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Té algun valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancel·la" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "N'esteu segur?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "Cal revisar %d camps" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "Cal revisar un camp" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "La validació ha fallat" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validació correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restringit" + +#: includes/assets.php:176 +msgid "Collapse Details" +msgstr "Amaga els detalls" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Expandeix els detalls" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "S'ha penjat a aquesta entrada" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualitza" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Edita" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "El tipus de fitxer ha de ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "La mida del fitxer no ha de superar %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "La mida del fitxer ha de ser almenys %s." + +#: includes/api/api-helpers.php:3358 +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:3353 +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:3339 +msgid "Image width must not exceed %dpx." +msgstr "L'amplada de la imatge no pot ser superior a %dpx." + +#: includes/api/api-helpers.php:3334 +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:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sense títol)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Mida completa" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Gran" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mitjana" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sense etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Estableix l'alçada de l'àrea de text" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permet afegir-hi valors personalitzats" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Afegeix una nova opció" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Commuta'ls tots" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "Permet les URLs dels arxius" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Afegeix" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nom" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s afegit" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ja existeix" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "L'usuari no pot afegir nous %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Identificador de terme" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objecte de terme" + +#: includes/fields/class-acf-field-taxonomy.php:820 +msgid "Load value from posts terms" +msgstr "Carrega el valor dels termes de l’entrada" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Carrega els termes" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Connecta els termes seleccionats a l'entrada" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Desa els termes" + +#: includes/fields/class-acf-field-taxonomy.php:800 +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:717 +msgid "Create Terms" +msgstr "Crea els termes" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botons d'opció" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Un sol valor" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selecció múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Casella de selecció" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Múltiples valors" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Seleccioneu l'aparença d'aquest camp" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Aparença" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Seleccioneu la taxonomia a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "No hi ha %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:270 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Afegeix l'opció «altres» per permetre valors personalitzats" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botó d'opció" + +#: includes/fields/class-acf-field-accordion.php:120 +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:94 +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:109 +msgid "Multi-expand" +msgstr "Expansió múltiple" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Obert" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordió" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringeix quins fitxers es poden penjar" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "Identificador de fitxer" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL del fitxer" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Matriu de fitxer" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Afegeix un fitxer" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "No s'ha seleccionat cap fitxer" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nom del fitxer" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualitza el fitxer" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Edita el fitxer" + +#: includes/admin/tools/class-acf-admin-tool-import.php:52 +#: includes/fields/class-acf-field-file.php:57 +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:387 +msgid "Specify the value returned" +msgstr "Especifiqueu el valor a retornar" + +#: includes/fields/class-acf-field-select.php:412 +msgid "Use AJAX to lazy load choices?" +msgstr "Usa AJAX per a carregar opcions de manera relaxada?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Introduïu cada valor per defecte en una línia nova" + +#: includes/assets.php:171 includes/fields/class-acf-field-select.php:259 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "No s'ha pogut carregar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "S'està cercant…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "S'estan carregant més resultats…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Suprimiu %d caràcters" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Suprimiu un caràcter" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No hi ha coincidències" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selecció" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "Identificador de l'usuari" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Objecte d'usuari" + +#: includes/fields/class-acf-field-user.php:417 +msgid "User Array" +msgstr "Matriu d’usuari" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Tots els rols d'usuari" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtra per rol" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Selecciona un color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Predeterminat" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Fet" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ara" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fus horari" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegon" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Mil·lisegon" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segon" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minut" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Punt final" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alineat a l'esquerra" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alineat a la part superior" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Ubicació" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Pestanya" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "El valor ha de ser un URL vàlid" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL de l'enllaç" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Matriu d’enllaç" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "S'obre en una nova finestra/pestanya" + +#: includes/fields/class-acf-field-link.php:133 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Mida del pas" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor màxim" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambdós (matriu)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horitzontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "vermell : Vermell" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-user.php:403 +msgid "Select multiple values?" +msgstr "Escollir múltiples valors?" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:382 +#: includes/fields/class-acf-field-taxonomy.php:784 +#: includes/fields/class-acf-field-user.php:393 +msgid "Allow Null?" +msgstr "Permet nul?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Pare" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:429 +msgid "Delay initialization?" +msgstr "Endarrereix la inicialització?" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Show Media Upload Buttons?" +msgstr "Mostra els botons de penjar mèdia?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra d'eines" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Només Text" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Només visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual i text" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestanyes" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Feu clic per inicialitzar el TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +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:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Deixeu-lo en blanc per no establir cap límit" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límit de caràcters" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Apareix després del camp" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Afegeix al final" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Apareix abans del camp" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Afegeix al principi" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Apareix a dins del camp" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Text a l’espai reservat" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de l'entrada" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objecte de l'entrada" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Màxim d'entrades" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Mínim d'entrades" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imatge destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elements" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomia" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipus de contingut" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtres" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Totes les taxonomies" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtra per taxonomia" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Tots els tipus de contingut" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtra per tipus de contingut" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Cerca…" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Seleccioneu una taxonomia" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccioneu el tipus de contingut" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No s'ha trobat cap coincidència" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "S'està carregant" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "S'han assolit els valors màxims ({max} valors)" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relació" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipus de fitxers permesos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Màxim" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Mida del fitxer" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringeix quines imatges es poden penjar" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínim" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "S'ha penjat a l'entrada" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limita l'elecció d'elements de la mediateca" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Mediateca" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Mida de la vista prèvia" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de la imatge" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de la imatge" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Matriu d'imatges" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especifiqueu el valor retornat al davant" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorn" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Afegeix imatge" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No s'ha seleccionat cap imatge" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Suprimeix" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Edita" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Totes les imatges" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualitza la imatge" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Edita la imatge" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "Seleccioneu una imatge" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Imatge" + +#: includes/fields/class-acf-field-message.php:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" +"Permet que el marcatge HTML es mostri com a text visible en lloc de " +"renderitzar" + +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "Escapa l’HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sense format" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Afegeix <br> automàticament" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Afegeix paràgrafs automàticament" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Controla com es renderitzaran les línies noves" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Noves línies" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La setmana comença el" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "El format utilitzat en desar un valor" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Format de desat" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Stm" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Següent" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Avui" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Amplada" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Mida de la incrustació" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Text que es mostra quan està inactiu" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Text desactivat" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Text que es mostra quan està actiu" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Text activat" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor per defecte" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Missatge" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Taula" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloc" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Especifiqueu l'estil utilitzat per renderitzar els camps seleccionats" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Format" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalitzeu l'alçada del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Alçada" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Estableix el nivell inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centra el mapa inicial" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centra" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Cerca l'adreça…" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Cerca la ubicació actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Neteja la ubicació" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Cerca" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "El format retornat mitjançant funcions de plantilla" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Format de retorn" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalitzat:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "El format que es mostra en editar una publicació" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +msgid "Display Format" +msgstr "Format de visualització" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Selector d'hora" + +#. translators: counts for inactive field groups +#: acf.php:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactiu (%s)" +msgstr[1] "Inactius (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No s'ha trobat cap camp a la paperera" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No s'ha trobat cap camp" + +#: acf.php:410 msgid "Search Fields" msgstr "Cerca camps" -#: acf.php:381 -msgid "No Fields found" -msgstr "No s’han trobat camps" +#: acf.php:409 +msgid "View Field" +msgstr "Visualitza el camp" -#: acf.php:382 -msgid "No Fields found in Trash" -msgstr "No s’han trobat camps a la paperera" +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nou camp" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Edita el camp" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Afegeix un nou camp" + +#: acf.php:404 +msgid "Field" +msgstr "Camp" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Camps" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No s'ha trobat cap grup de camps a la paperera" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No s'ha trobat cap grup de camps" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Cerca grups de camps" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Visualitza el grup de camps" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nou grup de camps" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Edita el grup de camps" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Afegeix un nou grup de camps" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Afegeix nou" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grup de camps" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" #: acf.php:417 includes/admin/admin-field-group.php:402 #: includes/admin/admin-field-groups.php:587 msgid "Inactive" msgstr "Inactiu" -#: acf.php:422 -#, php-format -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactiu (%s)" -msgstr[1] "Inactius (%s)" - -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:178 -msgid "(no label)" -msgstr "(sense etiqueta)" - -#: includes/acf-field-group-functions.php:819 -#: includes/admin/admin-field-group.php:180 -msgid "copy" -msgstr "copia" - -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "S’ha actualitzat el grup de camps." - -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "S’ha esborrat el grup de camps." - -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "S’ha publicat el grup de camps." - -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "S’ha desat el grup de camps." - -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "S’ha tramès el grup de camps." - -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "S’ha programat el grup de camps." - -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "S’ha desat l’esborrany del grup de camps." - -#: includes/admin/admin-field-group.php:171 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "La cadena “field_” no pot ser usada al principi del nom d’un camp" - -#: includes/admin/admin-field-group.php:172 -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/admin-field-group.php:173 -msgid "Field group title is required" -msgstr "Cal un nom pel grup de cmaps" - #: includes/admin/admin-field-group.php:174 msgid "Move to trash. Are you sure?" msgstr "Segur que ho voleu moure a la paperera?" -#: includes/admin/admin-field-group.php:175 -msgid "No toggle fields available" -msgstr "No hi ha camps commutables disponibles" - -#: includes/admin/admin-field-group.php:176 -msgid "Move Custom Field" -msgstr "Mou el grup de camps" - -#: includes/admin/admin-field-group.php:177 -msgid "Checked" -msgstr "Activat" - -#: includes/admin/admin-field-group.php:179 -msgid "(this field)" -msgstr "(aquest camp)" - -#: includes/admin/admin-field-group.php:181 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3649 -msgid "or" -msgstr "o" - -#: includes/admin/admin-field-group.php:182 -msgid "Null" -msgstr "Nul" - -#: includes/admin/admin-field-group.php:221 -msgid "Location" -msgstr "Ubicació" - -#: includes/admin/admin-field-group.php:222 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Paràmetres" - -#: includes/admin/admin-field-group.php:372 -msgid "Field Keys" -msgstr "Claus dels camps" - -#: includes/admin/admin-field-group.php:402 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Actiu" - -#: includes/admin/admin-field-group.php:767 -msgid "Move Complete." -msgstr "S’ha completat el moviment." - #: includes/admin/admin-field-group.php:768 #, php-format msgid "The %s field can now be found in the %s field group" msgstr "El camp %s es pot trobar ara al grup de camps %s" -#: includes/admin/admin-field-group.php:769 -msgid "Close Window" -msgstr "Tanca la finestra" - -#: includes/admin/admin-field-group.php:810 -msgid "Please select the destination for this field" -msgstr "Escolliu el destí d’aquest camp" - -#: includes/admin/admin-field-group.php:817 -msgid "Move Field" -msgstr "Mou el camp" - -#: includes/admin/admin-field-groups.php:89 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actiu (%s)" -msgstr[1] "Actius (%s)" - -#: includes/admin/admin-field-groups.php:156 -#, php-format -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-field-groups.php:243 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "S’ha sincronitzat el grup de camps." -msgstr[1] "S’han sincronitzat %s grups de camps." - -#: includes/admin/admin-field-groups.php:414 -#: includes/admin/admin-field-groups.php:577 -msgid "Sync available" -msgstr "Sincronització disponible" - -#: includes/admin/admin-field-groups.php:527 includes/forms/form-front.php:38 -#: pro/fields/class-acf-field-gallery.php:353 -msgid "Title" -msgstr "Títol" - -#: includes/admin/admin-field-groups.php:528 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Description" -msgstr "Descripció" - #: includes/admin/admin-field-groups.php:529 msgid "Status" msgstr "Estat" -#. Description of the plugin/theme -#: includes/admin/admin-field-groups.php:626 -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personalitza el WordPress amb camps potents, professionals i intuïtius." - #: includes/admin/admin-field-groups.php:628 #: includes/admin/settings-info.php:76 #: pro/admin/views/html-settings-updates.php:107 @@ -326,37 +3108,10 @@ msgstr "Pro" msgid "Thank you for creating with ACF." msgstr "Gràcies per crear amb ACF." -#: includes/admin/admin-field-groups.php:686 -msgid "Duplicate this item" -msgstr "Duplica aquest element" - -#: includes/admin/admin-field-groups.php:686 -#: includes/admin/admin-field-groups.php:702 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Duplicate" -msgstr "Duplica" - -#: includes/admin/admin-field-groups.php:719 -#: includes/fields/class-acf-field-google-map.php:146 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Search" -msgstr "Cerca" - -#: includes/admin/admin-field-groups.php:778 -#, php-format -msgid "Select %s" -msgstr "Selecciona %s" - #: includes/admin/admin-field-groups.php:786 msgid "Synchronise field group" msgstr "Sincronitza el grup de camps" -#: includes/admin/admin-field-groups.php:786 -#: includes/admin/admin-field-groups.php:816 -msgid "Sync" -msgstr "Sincronitza" - #: includes/admin/admin-field-groups.php:798 msgid "Apply" msgstr "Aplica" @@ -365,26 +3120,6 @@ msgstr "Aplica" msgid "Bulk Actions" msgstr "Accions massives" -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Eines" - -#: includes/admin/admin-upgrade.php:47 includes/admin/admin-upgrade.php:109 -#: includes/admin/admin-upgrade.php:110 includes/admin/admin-upgrade.php:173 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualitza la base de dades" - -#: includes/admin/admin-upgrade.php:197 -msgid "Review sites & upgrade" -msgstr "Revisa els llocs i actualitza" - -#: includes/admin/admin.php:54 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "Camps personalitzats" - #: includes/admin/settings-info.php:50 msgid "Info" msgstr "Informació" @@ -393,33 +3128,6 @@ msgstr "Informació" msgid "What's New" msgstr "Novetats" -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Exporta els grups de camps" - -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "Genera PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "No s’han escollit grups de camps" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "S’ha exportat el grup de camps." -msgstr[1] "S’ha exportat %s grups de camps." - -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Escull els grups de camps" - #: includes/admin/tools/class-acf-admin-tool-export.php:336 msgid "" "Select the field groups you would like to export and then select your export " @@ -436,32 +3144,6 @@ msgstr "" msgid "Export File" msgstr "Exporta el fitxer" -#: includes/admin/tools/class-acf-admin-tool-export.php:414 -msgid "" -"The following code can be used to register a local version of the selected " -"field group(s). A local field group 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." -msgstr "" -"El següent codi es pot usar per a registrar una versió local del(s) grup(s) " -"de camps escollit(s). Un grup de camps local pot aportar diversos avantatges " -"com ara temps de càrrega més ràpids, control de versions, i opcions i camps " -"dinàmics. Simplement copieu i enganxeu el següent codi al fitxer functions." -"php del vostre tema, o incloeu-lo en un fitxer extern." - -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Copia-ho al porta-retalls" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "S’ha copiat" - -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Importa grups de camps" - #: includes/admin/tools/class-acf-admin-tool-import.php:47 msgid "" "Select the Advanced Custom Fields JSON file you would like to import. When " @@ -470,176 +3152,14 @@ msgstr "" "Escolliu 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:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Escull el fitxer" - #: includes/admin/tools/class-acf-admin-tool-import.php:62 msgid "Import File" msgstr "Importa el fitxer" -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:170 -msgid "No file selected" -msgstr "No s’ha escollit cap fitxer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -msgid "Error uploading file. Please try again" -msgstr "S’ha produït un error. Torneu-ho a provar" - -#: includes/admin/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "Tipus de fitxer incorrecte" - -#: includes/admin/tools/class-acf-admin-tool-import.php:107 -msgid "Import file empty" -msgstr "El fitxer d’importació és buit" - -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "S’ha importat el grup de camps" -msgstr[1] "S’han importat %s grups de camps" - -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Lògica condicional" - -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Mostra aquest camp si" - -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 -msgid "and" -msgstr "i" - -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Afegeix un grup de regles" - -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "Arrossegueu per a reordenar" - -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Edita el camp" - -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:152 -#: includes/fields/class-acf-field-image.php:138 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:337 -msgid "Edit" -msgstr "Edita" - -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Duplica el camp" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Mou el camp a un altre grup" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Mou" - -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Esborra el camp" - -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:556 -msgid "Delete" -msgstr "Esborra" - -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Etiqueta del camp" - -#: includes/admin/views/field-group-field.php:66 -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/field-group-field.php:75 -msgid "Field Name" -msgstr "Nom del camp" - -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Una sola paraula, sense espais. S’admeten barres baixes i guions" - -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Tipus de camp" - -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Instruccions" - -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instruccions per als autors. Es mostren en omplir els formularis" - #: includes/admin/views/field-group-field.php:106 msgid "Required?" msgstr "Obligatori?" -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Atributs del contenidor" - -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "amplada" - -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "classe" - -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "id" - -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Tanca el camp" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Ordre" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:582 -msgid "Label" -msgstr "Etiqueta" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:939 -#: pro/fields/class-acf-field-flexible-content.php:596 -msgid "Name" -msgstr "Nom" - -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Clau" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Tipus" - #: includes/admin/views/field-group-fields.php:14 msgid "" "No fields. Click the + Add Field button to create your " @@ -652,292 +3172,16 @@ msgstr "" msgid "+ Add Field" msgstr "+ Afegeix un camp" -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Regles" - -#: includes/admin/views/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/field-group-options.php:23 -msgid "Style" -msgstr "Estil" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Estàndard (en una caixa meta de WP)" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Fluid (sense la caixa meta)" - -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Posició" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Alta (damunt del títol)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normal (després del contingut)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Posició de les etiquetes" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Al damunt" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Al costat" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Posició de les instruccions" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Sota les etiquetes" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Sota els camps" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Núm. d’ordre" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "Els grups de camps amb un valor més baix apareixeran primer" - -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Es mostra a la llista de grups de camps" - -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Enllaç permanent" - -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Editor de contingut" - -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Extracte" - -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Discussió" - -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Comentaris" - -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Revisions" - -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Àlies" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Atributs de la pàgina" - -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:607 -msgid "Featured Image" -msgstr "Imatge destacada" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Categories" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Etiquetes" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Envia retroenllaços" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Amaga en pantalla" - -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "Escolliu elements a amagarde la pantalla d’edició." - -#: includes/admin/views/field-group-options.php:129 -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 múltiples grups de camps a la pantalla d’edició, s’usaran les " -"opcions del primer grup de camps (el que tingui el menor número d’ordre)" - -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#, php-format -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Els següents llocs necessiten una actualització de la base de dades. " -"Escolliu els que vulgueu actualitzar i feu clic a %s." - -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Actualitza els llocs" - -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Lloc" - #: includes/admin/views/html-admin-page-upgrade-network.php:74 #, php-format msgid "Site requires database upgrade from %s to %s" msgstr "Cal actualitzar la base de dades del lloc de %s a %s" -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "El lloc està actualitzat" - -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"S’ha completat l’actualització de la base de dades. Torna a " -"l’administració de la xarxa" - -#: includes/admin/views/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Escolliu almenys un lloc per a actualitzar." - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es recomana 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/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "S’estan actualitzant les dades a la versió %s" - -#: includes/admin/views/html-admin-page-upgrade-network.php:167 -msgid "Upgrade complete." -msgstr "S’ha completat l’actualització." - -#: includes/admin/views/html-admin-page-upgrade-network.php:176 -#: includes/admin/views/html-admin-page-upgrade-network.php:185 -#: includes/admin/views/html-admin-page-upgrade.php:78 -#: includes/admin/views/html-admin-page-upgrade.php:87 -msgid "Upgrade failed." -msgstr "L’actualització ha fallat." - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "S’estan llegint les tasques d’actualització…" - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "" -"S’ha completat l’actualització de la base de dades. Mira què " -"hi ha de nou" - -#: includes/admin/views/html-admin-page-upgrade.php:116 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "No hi ha actualitzacions disponibles." - -#: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Torna a totes les eines" - -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Mostra aquest grup de camps si" - -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Repetible" - -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Contingut flexible" - -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galeria" - -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:26 -msgid "Options Page" -msgstr "Pàgina d’opcions" - -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Cal actualitzar la base de dades" - #: includes/admin/views/html-notice-upgrade.php:22 #, php-format msgid "Thank you for updating to %s v%s!" msgstr "Gràcies per actualitzar a %s v%s!" -#: includes/admin/views/html-notice-upgrade.php:22 -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/html-notice-upgrade.php:24 -#, php-format -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/settings-addons.php:3 msgid "Add-ons" msgstr "Complements" @@ -1112,10 +3356,6 @@ msgstr "" "El camp d’oEmbed permet incrustar fàcilment vídeos, imatges, tuits, àudio i " "altres continguts." -#: includes/admin/views/settings-info.php:81 -msgid "Clone Field" -msgstr "Camp de clon" - #: includes/admin/views/settings-info.php:82 msgid "The clone field allows you to select and display existing fields." msgstr "El camp de clon permet escollir i mostrar camps existents." @@ -1130,10 +3370,6 @@ msgstr "" "Més camps usen una cerca que funciona amb AJAX per a accelerar la càrrega de " "la pàgina." -#: includes/admin/views/settings-info.php:91 -msgid "Local JSON" -msgstr "JSON local" - #: includes/admin/views/settings-info.php:92 msgid "" "New auto export to JSON feature improves speed and allows for syncronisation." @@ -1236,1159 +3472,35 @@ msgstr "" msgid "We think you'll love the changes in %s." msgstr "Creiem que us encantaran els canvis a %s." -#: includes/api/api-helpers.php:827 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/api/api-helpers.php:828 -msgid "Medium" -msgstr "Mitjana" - -#: includes/api/api-helpers.php:829 -msgid "Large" -msgstr "Grossa" - -#: includes/api/api-helpers.php:878 -msgid "Full Size" -msgstr "Mida completa" - -#: includes/api/api-helpers.php:1599 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(sense títol)" - -#: includes/api/api-helpers.php:3570 -#, php-format -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:3575 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "L’amplada de la imatge no pot ser superior a %dpx." - -#: includes/api/api-helpers.php:3591 -#, php-format -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:3596 -#, php-format -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:3614 -#, php-format -msgid "File size must be at least %s." -msgstr "La mida del fitxer ha de ser almenys %s." - #: includes/api/api-helpers.php:3619 #, php-format msgid "File size must must not exceed %s." msgstr "La mida del fitxer no pot ser superior a %s." -#: includes/api/api-helpers.php:3653 -#, php-format -msgid "File type must be %s." -msgstr "El tipus de fitxer ha de ser %s." - -#: includes/assets.php:168 -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/assets.php:171 includes/fields/class-acf-field-select.php:259 -msgctxt "verb" -msgid "Select" -msgstr "Selecciona" - -#: includes/assets.php:172 -msgctxt "verb" -msgid "Edit" -msgstr "Edita" - -#: includes/assets.php:173 -msgctxt "verb" -msgid "Update" -msgstr "Actualitza" - -#: includes/assets.php:174 -msgid "Uploaded to this post" -msgstr "Penjat a aquesta entrada" - -#: includes/assets.php:175 -msgid "Expand Details" -msgstr "Expandeix els detalls" - -#: includes/assets.php:176 -msgid "Collapse Details" -msgstr "Amaga els detalls" - -#: includes/assets.php:177 -msgid "Restricted" -msgstr "Restringit" - -#: includes/assets.php:178 includes/fields/class-acf-field-image.php:66 -msgid "All images" -msgstr "Totes les imatges" - -#: includes/assets.php:181 -msgid "Validation successful" -msgstr "Validació correcta" - -#: includes/assets.php:182 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "La validació ha fallat" - -#: includes/assets.php:183 -msgid "1 field requires attention" -msgstr "Cal revisar un camp" - -#: includes/assets.php:184 -#, php-format -msgid "%d fields require attention" -msgstr "Cal revisar %d camps" - -#: includes/assets.php:187 -msgid "Are you sure?" -msgstr "N'esteu segur?" - -#: includes/assets.php:188 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Sí" - -#: includes/assets.php:189 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "No" - -#: includes/assets.php:190 includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:338 -#: pro/fields/class-acf-field-gallery.php:478 -msgid "Remove" -msgstr "Suprimeix" - -#: includes/assets.php:191 -msgid "Cancel" -msgstr "Cancel·la" - -#: includes/assets.php:194 -msgid "Has any value" -msgstr "Té algun valor" - -#: includes/assets.php:195 -msgid "Has no value" -msgstr "No té cap valor" - -#: includes/assets.php:196 -msgid "Value is equal to" -msgstr "El valor és igual a" - -#: includes/assets.php:197 -msgid "Value is not equal to" -msgstr "El valor no és igual a" - -#: includes/assets.php:198 -msgid "Value matches pattern" -msgstr "El valor coincideix amb el patró" - -#: includes/assets.php:199 -msgid "Value contains" -msgstr "El valor conté" - -#: includes/assets.php:200 -msgid "Value is greater than" -msgstr "El valor és superior a" - -#: includes/assets.php:201 -msgid "Value is less than" -msgstr "El valor és inferior a" - -#: includes/assets.php:202 -msgid "Selection is greater than" -msgstr "La selecció és superior a" - -#: includes/assets.php:203 -msgid "Selection is less than" -msgstr "La selecció és inferior a" - -#: includes/assets.php:206 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Edita el grup de camps" - -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "El tipus de camp no existeix" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Desconegut" - -#: includes/fields.php:349 -msgid "Basic" -msgstr "Bàsic" - -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Contingut" - -#: includes/fields.php:351 -msgid "Choice" -msgstr "Elecció" - -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relacional" - -#: includes/fields.php:353 -msgid "jQuery" -msgstr "jQuery" - -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:553 -#: pro/fields/class-acf-field-flexible-content.php:602 -#: pro/fields/class-acf-field-repeater.php:448 -msgid "Layout" -msgstr "Disposició" - -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Acordió" - -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Obert" - -#: includes/fields/class-acf-field-accordion.php:100 -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:109 -msgid "Multi-expand" -msgstr "Expansió múltiple" - -#: includes/fields/class-acf-field-accordion.php:110 -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:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Punt final" - -#: includes/fields/class-acf-field-accordion.php:120 -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-button-group.php:24 -msgid "Button Group" -msgstr "Grup de botons" - -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Opcions" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -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:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Per a més control, podeu establir tant el valor com l’etiqueta d’aquesta " -"manera:" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "vermell : Vermell" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:513 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:784 -#: includes/fields/class-acf-field-user.php:393 -msgid "Allow Null?" -msgstr "Permet nul?" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:149 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:381 -msgid "Default Value" -msgstr "Valor per defecte" - -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:150 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:382 -msgid "Appears when creating a new post" -msgstr "Apareix quan es crea una nova entrada" - -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Horitzontal" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:829 -msgid "Return Value" -msgstr "Valor de retorn" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:216 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -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:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "Ambdós (matriu)" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Checkbox" -msgstr "Casella de selecció" - -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Commuta’ls tots" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Afegeix una nova opció" - #: includes/fields/class-acf-field-checkbox.php:353 msgid "Allow Custom" msgstr "Permet personalitzats" -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Permet afegir-hi valors personalitzats" - #: includes/fields/class-acf-field-checkbox.php:364 msgid "Save Custom" msgstr "Desa personalitzats" -#: includes/fields/class-acf-field-checkbox.php:369 -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:381 -#: includes/fields/class-acf-field-select.php:374 -msgid "Enter each default value on a new line" -msgstr "Afegiu cada valor per defecte en una línia nova" - #: includes/fields/class-acf-field-checkbox.php:403 msgid "Toggle" msgstr "Commuta" -#: includes/fields/class-acf-field-checkbox.php:404 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Afegeix una casella extra per a commutar totes les opcions" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" - -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Esborra" - -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Predeterminat" - -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Escolliu un color" - #: includes/fields/class-acf-field-color_picker.php:71 msgid "Current Color" msgstr "Color actual" -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de data" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fet" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Avui" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Següent" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Stm" - -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Format a mostrar" - -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -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:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Personalitzat:" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "Format de desat" - -#: includes/fields/class-acf-field-date_picker.php:198 -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:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:204 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:634 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:412 -#: pro/fields/class-acf-field-gallery.php:557 -msgid "Return Format" -msgstr "Format de retorn" - -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -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-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "La setmana comença en" - -#: 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-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Escolliu l’hora" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minut" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segon" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Mil·lisegon" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegon" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fus horari" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ara" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fet" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -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 amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:85 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Correu electrònic" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Text de mostra" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Apareix a dins del camp" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:188 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Afegeix al principi" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:189 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Apareix abans del camp" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:197 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Afegeix al final" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:198 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Apareix després del camp" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fitxer" - -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Edita el fitxer" - -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Actualitza el fitxer" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Nom del fitxer" - -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:248 -#: includes/fields/class-acf-field-file.php:259 -#: includes/fields/class-acf-field-image.php:264 -#: includes/fields/class-acf-field-image.php:293 -#: pro/fields/class-acf-field-gallery.php:642 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "File size" -msgstr "Mida del fitxer" - -#: includes/fields/class-acf-field-file.php:170 -msgid "Add File" -msgstr "Afegeix un fitxer" - -#: includes/fields/class-acf-field-file.php:221 -msgid "File Array" -msgstr "Matriu de fitxer" - -#: includes/fields/class-acf-field-file.php:222 -msgid "File URL" -msgstr "URL del fitxer" - -#: includes/fields/class-acf-field-file.php:223 -msgid "File ID" -msgstr "ID del fitxer" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:229 -#: pro/fields/class-acf-field-gallery.php:592 -msgid "Library" -msgstr "Mediateca" - -#: includes/fields/class-acf-field-file.php:231 -#: includes/fields/class-acf-field-image.php:230 -#: pro/fields/class-acf-field-gallery.php:593 -msgid "Limit the media library choice" -msgstr "Limita l’elecció d’elements de la mediateca" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:235 -#: includes/locations/class-acf-location-attachment.php:101 -#: includes/locations/class-acf-location-comment.php:79 -#: includes/locations/class-acf-location-nav-menu.php:102 -#: includes/locations/class-acf-location-taxonomy.php:79 -#: includes/locations/class-acf-location-user-form.php:72 -#: includes/locations/class-acf-location-user-role.php:88 -#: includes/locations/class-acf-location-widget.php:83 -#: pro/fields/class-acf-field-gallery.php:598 -#: pro/locations/class-acf-location-block.php:79 -msgid "All" -msgstr "Tots" - -#: includes/fields/class-acf-field-file.php:237 -#: includes/fields/class-acf-field-image.php:236 -#: pro/fields/class-acf-field-gallery.php:599 -msgid "Uploaded to post" -msgstr "Carregats a l’entrada" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-image.php:243 -#: pro/fields/class-acf-field-gallery.php:621 -msgid "Minimum" -msgstr "Mínim" - -#: includes/fields/class-acf-field-file.php:245 -#: includes/fields/class-acf-field-file.php:256 -msgid "Restrict which files can be uploaded" -msgstr "Limita quins fitxers poden ser carregats" - -#: includes/fields/class-acf-field-file.php:255 -#: includes/fields/class-acf-field-image.php:272 -#: pro/fields/class-acf-field-gallery.php:650 -msgid "Maximum" -msgstr "Màxim" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:301 -#: pro/fields/class-acf-field-gallery.php:678 -msgid "Allowed file types" -msgstr "Tipus de fitxers permesos" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-image.php:302 -#: pro/fields/class-acf-field-gallery.php:679 -msgid "Comma separated list. Leave blank for all types" -msgstr "Llista separada amb comes. Deixeu-la en blanc per a tots els tipus" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" - -#: includes/fields/class-acf-field-google-map.php:59 -msgid "Sorry, this browser does not support geolocation" -msgstr "Aquest navegador no suporta geolocalització" - -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Neteja la ubicació" - -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Cerca la ubicació actual" - -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Cerca l’adreça…" - -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Centra" - -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Centra el mapa inicial" - -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Estableix el valor inicial de zoom" - -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:255 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:633 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Height" -msgstr "Alçada" - -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Personalitzeu l’alçada del mapa" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grup" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:384 -msgid "Sub Fields" -msgstr "Sub camps" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "Especifiqueu l’estil usat per a mostrar els camps escollits" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:613 -#: pro/fields/class-acf-field-repeater.php:456 -#: pro/locations/class-acf-location-block.php:27 -msgid "Block" -msgstr "Bloc" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:612 -#: pro/fields/class-acf-field-repeater.php:455 -msgid "Table" -msgstr "Taula" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:457 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imatge" - -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Escolliu una imatge" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Edita imatge" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Penja imatge" - -#: includes/fields/class-acf-field-image.php:156 -msgid "No image selected" -msgstr "No s’ha escollit cap imatge" - -#: includes/fields/class-acf-field-image.php:156 -msgid "Add Image" -msgstr "Afegeix imatge" - -#: includes/fields/class-acf-field-image.php:210 -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image Array" -msgstr "Matriu d'imatge" - -#: includes/fields/class-acf-field-image.php:211 -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image URL" -msgstr "URL de la imatge" - -#: includes/fields/class-acf-field-image.php:212 -#: pro/fields/class-acf-field-gallery.php:565 -msgid "Image ID" -msgstr "ID de la imatge" - -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:571 -msgid "Preview Size" -msgstr "Mida de la vista prèvia" - -#: includes/fields/class-acf-field-image.php:244 -#: includes/fields/class-acf-field-image.php:273 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Restrict which images can be uploaded" -msgstr "Limita quines imatges es poden penjar" - -#: includes/fields/class-acf-field-image.php:247 -#: includes/fields/class-acf-field-image.php:276 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:625 -#: pro/fields/class-acf-field-gallery.php:654 -msgid "Width" -msgstr "Amplada" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enllaç" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Escolliu l’enllaç" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "S’obre en una finestra/pestanya nova" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Matriu d’enllaç" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "URL de l’enllaç" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Missatge" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Noves línies" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Controla com es mostren les noves línies" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Afegeix paràgrafs automàticament" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Afegeix <br> automàticament" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Sense formatejar" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapa l’HTML" - -#: 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-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:158 -msgid "Minimum Value" -msgstr "Valor mínim" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:168 -msgid "Maximum Value" -msgstr "Valor màxim" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:178 -msgid "Step Size" -msgstr "Mida del pas" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "El valor ha de ser un número" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Introduïu la URL" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Mida de la incrustació" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Enllaç de pàgina" - -#: includes/fields/class-acf-field-page_link.php:177 -msgid "Archives" -msgstr "Arxius" - -#: includes/fields/class-acf-field-page_link.php:269 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:961 -msgid "Parent" -msgstr "Pare" - -#: includes/fields/class-acf-field-page_link.php:485 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:560 -msgid "Filter by Post Type" -msgstr "Filtra per tipus de contingut" - -#: includes/fields/class-acf-field-page_link.php:493 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "All post types" -msgstr "Tots els tipus de contingut" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:574 -msgid "Filter by Taxonomy" -msgstr "Filtra per taxonomia" - -#: includes/fields/class-acf-field-page_link.php:507 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:582 -msgid "All taxonomies" -msgstr "Totes les taxonomies" - -#: includes/fields/class-acf-field-page_link.php:523 -msgid "Allow Archives URLs" -msgstr "Permet les URLs dels arxius" - -#: includes/fields/class-acf-field-page_link.php:533 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:403 -msgid "Select multiple values?" -msgstr "Escollir múltiples valors?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contrasenya" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:639 -msgid "Post Object" -msgstr "Objecte de l’entrada" - -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:640 -msgid "Post ID" -msgstr "ID de l’entrada" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botó d’opció" - #: includes/fields/class-acf-field-radio.php:254 msgid "Other" msgstr "Altres" -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Afegeix l’opció ‘Altres’ per a permetre valors personalitzats" - #: includes/fields/class-acf-field-radio.php:265 msgid "Save Other" msgstr "Desa Altres" -#: includes/fields/class-acf-field-radio.php:270 -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-range.php:25 -msgid "Range" -msgstr "Rang" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relació" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "S’ha arribat al màxim de valors ({max} valors)" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "S'està carregant" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "No hi ha coincidències" - -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Escolliu el tipus de contingut" - -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Escolliu la taxonomia" - -#: includes/fields/class-acf-field-relationship.php:477 -msgid "Search..." -msgstr "Cerca…" - -#: includes/fields/class-acf-field-relationship.php:588 -msgid "Filters" -msgstr "Filtres" - -#: includes/fields/class-acf-field-relationship.php:594 -#: includes/locations/class-acf-location-post-type.php:27 -msgid "Post Type" -msgstr "Tipus de contingut" - -#: includes/fields/class-acf-field-relationship.php:595 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:754 -#: includes/locations/class-acf-location-taxonomy.php:27 -msgid "Taxonomy" -msgstr "Taxonomia" - -#: includes/fields/class-acf-field-relationship.php:602 -msgid "Elements" -msgstr "Elements" - -#: includes/fields/class-acf-field-relationship.php:603 -msgid "Selected elements will be displayed in each result" -msgstr "Els elements escollits es mostraran a cada resultat" - -#: includes/fields/class-acf-field-relationship.php:614 -msgid "Minimum posts" -msgstr "Mínim d'entrades" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Maximum posts" -msgstr "Màxim d’entrades" - #: includes/fields/class-acf-field-relationship.php:727 #: pro/fields/class-acf-field-gallery.php:779 #, php-format @@ -2397,103 +3509,11 @@ msgid_plural "%s requires at least %s selections" msgstr[0] "%s necessita almenys %s selecció" msgstr[1] "%s necessita almenys %s seleccions" -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:776 -msgctxt "noun" -msgid "Select" -msgstr "Selecció" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hi ha disponible un resultat, premeu retorn per a escollir-lo." - -#: includes/fields/class-acf-field-select.php:112 -#, php-format -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"Hi ha disponibles %d resultats, useu les fletxes amunt i avall per a navegar-" -"hi." - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No hi ha coincidències" - -#: includes/fields/class-acf-field-select.php:114 -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:115 -#, php-format -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:116 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Esborreu un caràcter" - -#: includes/fields/class-acf-field-select.php:117 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Esborreu %d caràcters" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Només podeu escollir un element" - -#: includes/fields/class-acf-field-select.php:119 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Només podeu escollir %d elements" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "S'estan carregant més resultats…" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "S'està cercant…" - -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "No s'ha pogut carregar" - #: includes/fields/class-acf-field-select.php:402 #: includes/fields/class-acf-field-true_false.php:144 msgid "Stylised UI" msgstr "Interfície estilitzada" -#: includes/fields/class-acf-field-select.php:412 -msgid "Use AJAX to lazy load choices?" -msgstr "Usa AJAX per a carregar opcions de manera relaxada?" - -#: includes/fields/class-acf-field-select.php:428 -msgid "Specify the value returned" -msgstr "Especifiqueu el valor a retornar" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Pestanya" - -#: includes/fields/class-acf-field-tab.php:102 -msgid "Placement" -msgstr "Ubicació" - #: includes/fields/class-acf-field-tab.php:115 msgid "" "Define an endpoint for the previous tabs to stop. This will start a new " @@ -2508,404 +3528,11 @@ msgctxt "No terms" msgid "No %s" msgstr "No hi ha %s" -#: includes/fields/class-acf-field-taxonomy.php:755 -msgid "Select the taxonomy to be displayed" -msgstr "Escolliu la taxonomia a mostrar" - -#: includes/fields/class-acf-field-taxonomy.php:764 -msgid "Appearance" -msgstr "Aparença" - -#: includes/fields/class-acf-field-taxonomy.php:765 -msgid "Select the appearance of this field" -msgstr "Escolliu l’aparença d’aquest camp" - -#: includes/fields/class-acf-field-taxonomy.php:770 -msgid "Multiple Values" -msgstr "Múltiples valors" - -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Multi Select" -msgstr "Selecció múltiple" - -#: includes/fields/class-acf-field-taxonomy.php:774 -msgid "Single Value" -msgstr "Un sol valor" - -#: includes/fields/class-acf-field-taxonomy.php:775 -msgid "Radio Buttons" -msgstr "Botons d’opció" - -#: includes/fields/class-acf-field-taxonomy.php:799 -msgid "Create Terms" -msgstr "Crea els termes" - -#: includes/fields/class-acf-field-taxonomy.php:800 -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:809 -msgid "Save Terms" -msgstr "Desa els termes" - -#: includes/fields/class-acf-field-taxonomy.php:810 -msgid "Connect selected terms to the post" -msgstr "Connecta els termes escollits a l’entrada" - -#: includes/fields/class-acf-field-taxonomy.php:819 -msgid "Load Terms" -msgstr "Carrega els termes" - -#: includes/fields/class-acf-field-taxonomy.php:820 -msgid "Load value from posts terms" -msgstr "Carrega el valor dels termes de l’entrada" - -#: includes/fields/class-acf-field-taxonomy.php:834 -msgid "Term Object" -msgstr "Objecte de terme" - -#: includes/fields/class-acf-field-taxonomy.php:835 -msgid "Term ID" -msgstr "ID de terme" - -#: includes/fields/class-acf-field-taxonomy.php:885 -#, php-format -msgid "User unable to add new %s" -msgstr "L’usuari no pot crear nous %s" - -#: includes/fields/class-acf-field-taxonomy.php:895 -#, php-format -msgid "%s already exists" -msgstr "%s ja existeix" - -#: includes/fields/class-acf-field-taxonomy.php:927 -#, php-format -msgid "%s added" -msgstr "%s afegit" - -#: includes/fields/class-acf-field-taxonomy.php:973 -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add" -msgstr "Afegeix" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Límit de caràcters" - -#: includes/fields/class-acf-field-text.php:132 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Deixeu-lo en blanc per no establir cap límit" - -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:215 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "El valor no pot superar els %d caràcters" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Àrea de text" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Files" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Estableix l’alçada de l’àrea de text" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector d'hora" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Cert / Fals" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Mostra el text al costat de la casella de selecció" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Text d’actiu" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "El text que es mostrarà quan està actiu" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Text d’inactiu" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "El text que es mostrarà quan està inactiu" - -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "URL" - -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "El valor ha de ser una URL vàlida" - -#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 -msgid "User" -msgstr "Usuari" - -#: includes/fields/class-acf-field-user.php:378 -msgid "Filter by role" -msgstr "Filtra per rol" - -#: includes/fields/class-acf-field-user.php:386 -msgid "All user roles" -msgstr "Tots els rols d'usuari" - -#: includes/fields/class-acf-field-user.php:417 -msgid "User Array" -msgstr "Matriu d’usuari" - -#: includes/fields/class-acf-field-user.php:418 -msgid "User Object" -msgstr "Objecte d'usuari" - -#: includes/fields/class-acf-field-user.php:419 -msgid "User ID" -msgstr "ID d'usuari" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "Editor Wysiwyg" - -#: includes/fields/class-acf-field-wysiwyg.php:330 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-wysiwyg.php:331 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:337 -msgid "Click to initialize TinyMCE" -msgstr "Feu clic per a inicialitzar el TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "Tabs" -msgstr "Pestanyes" - -#: includes/fields/class-acf-field-wysiwyg.php:395 -msgid "Visual & Text" -msgstr "Visual i Text" - -#: includes/fields/class-acf-field-wysiwyg.php:396 -msgid "Visual Only" -msgstr "Només Visual" - -#: includes/fields/class-acf-field-wysiwyg.php:397 -msgid "Text Only" -msgstr "Només Text" - -#: includes/fields/class-acf-field-wysiwyg.php:404 -msgid "Toolbar" -msgstr "Barra d'eines" - -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Show Media Upload Buttons?" -msgstr "Mostra els botons de penjar mèdia?" - -#: includes/fields/class-acf-field-wysiwyg.php:429 -msgid "Delay initialization?" -msgstr "Endarrereix la inicialització?" - -#: includes/fields/class-acf-field-wysiwyg.php:430 -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/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Valida el correu" - -#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 -#: pro/options-page.php:81 -msgid "Update" -msgstr "Actualitza" - -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "S'ha actualitzat l'entrada" - -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "S’ha detectat brossa" - #: includes/forms/form-user.php:336 #, php-format msgid "ERROR: %s" msgstr "ERROR: %s" -#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 -msgid "Post" -msgstr "Entrada" - -#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 -msgid "Page" -msgstr "Pàgina" - -#: includes/locations.php:96 -msgid "Forms" -msgstr "Formularis" - -#: includes/locations.php:243 -msgid "is equal to" -msgstr "és igual a" - -#: includes/locations.php:244 -msgid "is not equal to" -msgstr "no és igual a" - -#: includes/locations/class-acf-location-attachment.php:27 -msgid "Attachment" -msgstr "Adjunt" - -#: includes/locations/class-acf-location-attachment.php:109 -#, php-format -msgid "All %s formats" -msgstr "Tots els formats de %s" - -#: includes/locations/class-acf-location-comment.php:27 -msgid "Comment" -msgstr "Comentari" - -#: includes/locations/class-acf-location-current-user-role.php:27 -msgid "Current User Role" -msgstr "Rol de l’usuari actual" - -#: includes/locations/class-acf-location-current-user-role.php:110 -msgid "Super Admin" -msgstr "Superadministrador" - -#: includes/locations/class-acf-location-current-user.php:27 -msgid "Current User" -msgstr "Usuari actual" - -#: includes/locations/class-acf-location-current-user.php:97 -msgid "Logged in" -msgstr "Amb la sessió iniciada" - -#: includes/locations/class-acf-location-current-user.php:98 -msgid "Viewing front end" -msgstr "Veient la part frontal" - -#: includes/locations/class-acf-location-current-user.php:99 -msgid "Viewing back end" -msgstr "Veient l’administració" - -#: includes/locations/class-acf-location-nav-menu-item.php:27 -msgid "Menu Item" -msgstr "Element del menú" - -#: includes/locations/class-acf-location-nav-menu.php:27 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-nav-menu.php:109 -msgid "Menu Locations" -msgstr "Ubicacions dels menús" - -#: includes/locations/class-acf-location-nav-menu.php:119 -msgid "Menus" -msgstr "Menús" - -#: includes/locations/class-acf-location-page-parent.php:27 -msgid "Page Parent" -msgstr "Pàgina mare" - -#: includes/locations/class-acf-location-page-template.php:27 -msgid "Page Template" -msgstr "Plantilla de la pàgina" - -#: includes/locations/class-acf-location-page-template.php:87 -#: includes/locations/class-acf-location-post-template.php:134 -msgid "Default Template" -msgstr "Plantilla per defecte" - -#: includes/locations/class-acf-location-page-type.php:27 -msgid "Page Type" -msgstr "Tipus de pàgina" - -#: includes/locations/class-acf-location-page-type.php:146 -msgid "Front Page" -msgstr "Portada" - -#: includes/locations/class-acf-location-page-type.php:147 -msgid "Posts Page" -msgstr "Pàgina de les entrades" - -#: includes/locations/class-acf-location-page-type.php:148 -msgid "Top Level Page (no parent)" -msgstr "Pàgina de primer nivell (no té mare)" - -#: includes/locations/class-acf-location-page-type.php:149 -msgid "Parent Page (has children)" -msgstr "Pàgina mare (té filles)" - -#: includes/locations/class-acf-location-page-type.php:150 -msgid "Child Page (has parent)" -msgstr "Pàgina filla (té mare)" - -#: includes/locations/class-acf-location-post-category.php:27 -msgid "Post Category" -msgstr "Categoria de l'entrada" - -#: includes/locations/class-acf-location-post-format.php:27 -msgid "Post Format" -msgstr "Format de l’entrada" - -#: includes/locations/class-acf-location-post-status.php:27 -msgid "Post Status" -msgstr "Estat de l'entrada" - -#: includes/locations/class-acf-location-post-taxonomy.php:27 -msgid "Post Taxonomy" -msgstr "Taxonomia de l’entrada" - -#: includes/locations/class-acf-location-post-template.php:27 -msgid "Post Template" -msgstr "Plantilla de l’entrada" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulari d’usuari" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Add / Edit" -msgstr "Afegeix / Edita" - -#: includes/locations/class-acf-location-user-form.php:75 -msgid "Register" -msgstr "Registra" - -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Rol de l'usuari" - -#: includes/locations/class-acf-location-widget.php:27 -msgid "Widget" -msgstr "Giny" - -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "Cal introduir un valor a %s" - #. Plugin Name of the plugin/theme #: pro/acf-pro.php:28 msgid "Advanced Custom Fields PRO" @@ -2928,10 +3555,6 @@ msgstr "" msgid "Error. Could not connect to update server" msgstr "Error. No s’ha pogut connectar al servidor d’actualitzacions" -#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "Actualitzacions" - #: pro/admin/admin-updates.php:191 msgid "" "Error. Could not authenticate update package. Please check again or " @@ -3273,10 +3896,6 @@ msgstr "Màxim de files" msgid "No options pages exist" msgstr "No hi ha pàgines d’opcions" -#: pro/options-page.php:51 -msgid "Options" -msgstr "Opcions" - #: pro/options-page.php:82 msgid "Options Updated" msgstr "S’han actualitzat les opcions" @@ -3300,11 +3919,6 @@ msgstr "Normal" msgid "Fancy" msgstr "Sofisticat" -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - #. Author of the plugin/theme msgid "Elliot Condon" msgstr "Elliot Condon" diff --git a/lang/acf-cs_CZ.mo b/lang/acf-cs_CZ.mo old mode 100755 new mode 100644 index 2f4462a..9bd6352 Binary files a/lang/acf-cs_CZ.mo and b/lang/acf-cs_CZ.mo differ diff --git a/lang/acf-cs_CZ.po b/lang/acf-cs_CZ.po index 10e6d27..bd30485 100644 --- a/lang/acf-cs_CZ.po +++ b/lang/acf-cs_CZ.po @@ -1,114 +1,2909 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2018-09-06 12:21+1000\n" -"PO-Revision-Date: 2018-12-11 09:20+0100\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: webees.cz s.r.o. \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: Poedit 2.2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:80 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -#: acf.php:385 includes/admin/admin.php:117 -msgid "Field Groups" -msgstr "Skupiny polí" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -#: acf.php:386 -msgid "Field Group" -msgstr "Skupina polí" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:387 acf.php:419 includes/admin/admin.php:118 -#: pro/fields/class-acf-field-flexible-content.php:572 -msgid "Add New" -msgstr "Přidat nové" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:388 -msgid "Add New Field Group" -msgstr "Přidat novou skupinu polí" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:389 -msgid "Edit Field Group" -msgstr "Upravit skupinu polí" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -#: acf.php:390 -msgid "New Field Group" -msgstr "Nová skupina polí" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" -#: acf.php:391 -msgid "View Field Group" -msgstr "Prohlížet skupinu polí" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" -#: acf.php:392 -msgid "Search Field Groups" -msgstr "Hledat skupiny polí" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:393 -msgid "No Field Groups found" -msgstr "Nebyly nalezeny žádné skupiny polí" +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Aktualizace" -#: acf.php:394 -msgid "No Field Groups found in Trash" -msgstr "V koši nebyly nalezeny žádné skupiny polí" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" -#: acf.php:417 includes/admin/admin-field-group.php:202 -#: includes/admin/admin-field-groups.php:510 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Pole" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" -#: acf.php:418 -msgid "Field" -msgstr "Pole" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" -#: acf.php:420 -msgid "Add New Field" -msgstr "Přidat nové pole" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" -#: acf.php:421 -msgid "Edit Field" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" +"Advanced Custom Fields a Advanced Custom Fields PRO by neměly být aktivní " +"současně. Automaticky jsme deaktivovali Advanced Custom Fields PRO." + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" +"Advanced Custom Fields a Advanced Custom Fields PRO by neměly být aktivní " +"současně. Automaticky jsme deaktivovali 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 – 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Neplatný požadavek." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Zobrazit v REST API" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galerie (pouze Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Klonovat (pouze Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexibilní obsah (pouze Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Opakovač (pouze Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Aktivní" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Hodnota barvy" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Vyberte výchozí barvu" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Zrušit barvu" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloky" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Konfigurace" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Uživatelé" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Položky menu" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgety" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Přílohy" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomie" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Příspěvky" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "" + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Uloženo" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Import" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Zkontrolovat změny" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Nachází se v pluginu: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Nachází se v šabloně: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Různé" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Synchronizovat změny" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Navštívit stránky" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Zobrazit podrobnosti" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Verze %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Informace" + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" + +#: includes/admin/admin.php:156 +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:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" + +#: includes/admin/admin.php:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "" + +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" + +#: includes/admin/admin.php:134 +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:132 +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:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Přehled" + +#: 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 "Neplatná hodnota." + +#: includes/fields/class-acf-field-user.php:361 +msgid "Error loading field." +msgstr "" + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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 "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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s hodnota je vyžadována" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Zobrazit toto pole, pokud" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Podmíněná logika" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "a" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Lokální JSON" + +#: includes/admin/views/settings-info.php:84 +msgid "Clone Field" +msgstr "Klonovat pole" + +#: includes/admin/views/html-notice-upgrade.php:31 +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Vyžadován upgrade databáze" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Stránka konfigurace" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galerie" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexibilní obsah" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Opakovač" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "Zvolte položky, které budou na obrazovce úprav skryté." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Skrýt na obrazovce" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Odesílat zpětné linkování odkazů" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Štítky" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Kategorie" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributy stránky" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formát" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Adresa" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revize" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Komentáře" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Diskuze" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Stručný výpis" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor obsahu" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Trvalý odkaz" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Zobrazit v seznamu skupin polí" + +#: includes/admin/views/field-group-options.php:122 +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/field-group-options.php:121 +msgid "Order No." +msgstr "Pořadové č." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Pod poli" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Pod štítky" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Umístění instrukcí" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Umístění štítků" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Na straně" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normální (po obsahu)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Vysoko (po nadpisu)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Pozice" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Bezokrajové (bez metaboxu)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standardní (WP metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Styl" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Typ" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Klíč" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Pořadí" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Zavřít pole" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "ID" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "třída" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "šířka" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributy obalového pole" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Požadováno?" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instrukce pro autory. Jsou zobrazeny při zadávání dat" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrukce" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Typ pole" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Jméno pole" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Štítek pole" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Smazat" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Smazat pole" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Přesunout" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Přesunout pole do jiné skupiny" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplikovat pole" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" msgstr "Upravit pole" -#: acf.php:422 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Nové pole" +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Přetažením změníte pořadí" -#: acf.php:423 -msgid "View Field" -msgstr "Zobrazit pole" +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Zobrazit tuto skupinu polí, pokud" -#: acf.php:424 -msgid "Search Fields" -msgstr "Vyhledat pole" +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "K dispozici nejsou žádné aktualizace." -#: acf.php:425 -msgid "No Fields found" -msgstr "Nenalezeno žádné pole" +#: includes/admin/views/html-admin-page-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" -#: acf.php:426 -msgid "No Fields found in Trash" -msgstr "V koši nenalezeno žádné pole" +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Čtení úkolů aktualizace..." -#: acf.php:465 includes/admin/admin-field-group.php:384 -#: includes/admin/admin-field-groups.php:567 -msgid "Inactive" -msgstr "Neaktivní" +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Upgrade se nezdařil." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Aktualizace dokončena." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Aktualizace dat na verzi %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Stránky jsou aktuální" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Stránky" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Upgradovat stránky" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Přidat skupinu pravidel" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Pravidla" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Zkopírováno" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Zkopírovat od schránky" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Následující kód lze použít k registraci lokální verze vybrané skupiny polí. " +"Místní skupina polí může poskytnout mnoho výhod, jako jsou rychlejší doby " +"načítání, řízení verzí a dynamická pole / nastavení. Jednoduše zkopírujte a " +"vložte následující kód do souboru functions.php svého motivu nebo jej vložte " +"do externího souboru." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Zvolit skupiny polí" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportovaná 1 skupina polí." +msgstr[1] "Exportované %s skupiny polí." +msgstr[2] "Exportovaných %s skupin 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Importovaná 1 skupina polí" +msgstr[1] "Importované %s skupiny polí" +msgstr[2] "Importovaných %s skupin polí" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Importovaný soubor je prázdný" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Nesprávný typ souboru" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +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:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importovat skupiny polí" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Synchronizace" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Zvolit %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplikovat" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplikovat tuto položku" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Popis" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synchronizace je k dispozici" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:118 +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:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Aktualizovat databázi" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Vlastní pole" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Přesunout pole" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Prosím zvolte umístění pro toto pole" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Zavřít okno" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Přesun hotov." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Aktivní" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Klíče polí" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Nastavení" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Umístění" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Nula" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "kopírovat" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(toto pole)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Zaškrtnuto" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Přesunout vlastní pole" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Žádné zapínatelné pole není k dispozici" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Vyžadován nadpis pro skupinu polí" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Koncept skupiny polí aktualizován." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Skupina polí naplánována." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Skupina polí odeslána." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Skupina polí uložena." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Skupina polí publikována." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Skupina polí smazána." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Skupina polí aktualizována." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Stránka" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Příspěvek" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relační" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Volba" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Základní" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Neznámý" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Obsah" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Název" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editovat skupinu polí" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Výběr je menší než" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Výběr je větší než" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Hodnota je menší než" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Hodnota je větší než" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Hodnota obsahuje" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Hodnota odpovídá masce" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Nemá hodnotu" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Má libovolnou hodnotu" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Zrušit" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Jste si jistí?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "Několik polí vyžaduje pozornost (%d)" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 pole vyžaduje pozornost" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Ověření selhalo" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Ověření úspěšné" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Omezeno" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Sbalit podrobnosti" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Rozbalit podrobnosti" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Nahrán k tomuto příspěvku" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Aktualizace" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Upravit" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "Typ souboru musí být %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "nebo" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "" + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "Velikost souboru musí být alespoň %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Výška obrázku nesmí přesáhnout %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Výška obrázku musí být alespoň %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Šířka obrázku nesmí přesáhnout %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Šířka obrázku musí být alespoň %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(bez názvu)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Plná velikost" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Velký" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Střední" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(bez štítku)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Nastavuje výšku textového pole" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +msgid "Save 'custom' values to the field's choices" +msgstr "Uložit 'vlastní' hodnoty do voleb polí" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "Povolit přidání 'vlastních' hodnot" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Přidat novou volbu" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Přepnout vše" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Umožnit URL adresy archivu" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Přidat" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Jméno" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s přidán" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s již existuje" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Uživatel není schopen přidat nové %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID pojmu" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objekt pojmu" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Nahrát pojmy z příspěvků" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Nahrát pojmy" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Připojte vybrané pojmy k příspěvku" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Uložit pojmy" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Vytvořit pojmy" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radio přepínače" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Jednotlivá hodnota" + +#: includes/fields/class-acf-field-taxonomy.php:773 +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:772 +msgid "Checkbox" +msgstr "Zaškrtávátko" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Více hodnot" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Vyberte vzhled tohoto pole" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Vzhled" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Zvolit zobrazovanou taxonomii" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Nic pro %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "Uložit 'jiné' hodnoty do voleb polí" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Přidat volbu 'jiné', která umožňuje vlastní hodnoty" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Přepínač" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Vícenásobné rozbalení" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Otevřít" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Akordeon" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Omezte, které typy souborů lze nahrát" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID souboru" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "Adresa souboru" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Pole souboru" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Přidat soubor" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Dokument nevybrán" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Jméno souboru" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Aktualizovat soubor" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Upravit soubor" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Zadat konkrétní návratovou hodnotu" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "K načtení volby použít AJAX lazy load?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Vybrat" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Načítání selhalo" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Vyhledávání…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Načítání dalších výsledků…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nebyly nalezeny žádné výsledky" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Vybrat" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID uživatele" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Objekt uživatele" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Pole uživatelů" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Všechny uživatelské role" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrovat podle role" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Výběr barvy" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Výchozí nastavení" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "do" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "odp" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "od" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "dop" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Vybrat" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hotovo" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Nyní" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Časové pásmo" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Vteřina" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuta" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hodina" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Čas" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Koncový bod" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Zarovnat zleva" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Zarovnat shora" + +#: includes/fields/class-acf-field-tab.php:107 +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:159 +msgid "Value must be a valid URL" +msgstr "Hodnota musí být validní adresa URL" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Adresa URL" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL adresa odkazu" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Pole odkazů" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Otevřít v novém okně/záložce" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Velikost kroku" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximální hodnota" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Obě (pole)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Štítek" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Hodnota" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertikální" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontální" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "cervena : Červená" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Zadejte každou volbu na nový řádek." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Vybrat více hodnot?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Povolit prázdné?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Rodič" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "Zpoždění inicializace?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Zobrazit tlačítka nahrávání médií?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Lišta nástrojů" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Pouze text" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Pouze grafika" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Grafika a text" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Záložky" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Klikněte pro inicializaci TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Grafika" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg Editor" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Nechte prázdné pro nastavení bez omezení" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limit znaků" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Zobrazí se za inputem" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Zobrazit po" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Zobrazí se před inputem" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Zobrazit před" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Zobrazí se v inputu" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Zástupný text" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID příspěvku" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objekt příspěvku" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum příspěvků" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum příspěvků" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Uživatelský obrázek" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Prvky" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomie" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Typ příspěvku" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtry" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Všechny taxonomie" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrovat dle taxonomie" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Všechny typy příspěvků" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrovat dle typu příspěvku" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Hledat..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Zvolit taxonomii" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Zvolit typ příspěvku" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Nebyly nalezeny žádné výsledky" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Načítání" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Dosaženo maximálního množství hodnot ( {max} hodnot )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Vztah" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Povolené typy souborů" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Velikost souboru" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +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:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Nahráno k příspěvku" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Omezit výběr knihovny médií" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Knihovna" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Velikost náhledu" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID obrázku" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Adresa obrázku" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Pole obrázku" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +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:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Vrátit hodnotu" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Přidat obrázek" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Není vybrán žádný obrázek" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Odstranit" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Upravit" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Všechny obrázky" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Aktualizovat obrázek" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Upravit obrázek" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapovat HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Žádné formátování" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Automaticky přidávat <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Automaticky přidávat odstavce" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Řídí, jak se vykreslují nové řádky" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nové řádky" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Týden začíná" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Uložit formát" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Týden" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Předchozí" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Následující" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Dnes" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Šířka" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Velikost pro Embed" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Text zobrazený při neaktivním poli" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Text (neaktivní)" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Text zobrazený při aktivním poli" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Text (aktivní)" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Stylizované uživatelské rozhraní" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Výchozí hodnota" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Zpráva" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Ne" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Řádek" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabulka" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Blok" + +#: includes/fields/class-acf-field-group.php:464 +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:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Typ zobrazení" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Výška" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Nastavit počáteční úroveň přiblížení" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Přiblížení" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Vycentrovat počáteční zobrazení mapy" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Vycentrovat" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Vyhledat adresu..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Najít aktuální umístění" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Vymazat polohu" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Hledat" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Formát vrácen pomocí funkcí šablony" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formát návratové hodnoty" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Vlastní:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +msgid "Display Format" +msgstr "Formát zobrazení" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Výběr času" #: acf.php:470 #, php-format @@ -118,137 +2913,112 @@ msgstr[0] "Neaktivní (%s)" msgstr[1] "Neaktivní (%s)" msgstr[2] "Neaktivních (%s)" -#: includes/admin/admin-field-group.php:68 -#: includes/admin/admin-field-group.php:69 -#: includes/admin/admin-field-group.php:71 -msgid "Field group updated." -msgstr "Skupina polí aktualizována." +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "V koši nenalezeno žádné pole" -#: includes/admin/admin-field-group.php:70 -msgid "Field group deleted." -msgstr "Skupina polí smazána." +#: acf.php:411 +msgid "No Fields found" +msgstr "Nenalezeno žádné pole" -#: includes/admin/admin-field-group.php:73 -msgid "Field group published." -msgstr "Skupina polí publikována." +#: acf.php:410 +msgid "Search Fields" +msgstr "Vyhledat pole" -#: includes/admin/admin-field-group.php:74 -msgid "Field group saved." -msgstr "Skupina polí uložena." +#: acf.php:409 +msgid "View Field" +msgstr "Zobrazit pole" -#: includes/admin/admin-field-group.php:75 -msgid "Field group submitted." -msgstr "Skupina polí odeslána." +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nové pole" -#: includes/admin/admin-field-group.php:76 -msgid "Field group scheduled for." -msgstr "Skupina polí naplánována." +#: acf.php:407 +msgid "Edit Field" +msgstr "Upravit pole" -#: includes/admin/admin-field-group.php:77 -msgid "Field group draft updated." -msgstr "Koncept skupiny polí aktualizován." +#: acf.php:406 +msgid "Add New Field" +msgstr "Přidat nové pole" -#: includes/admin/admin-field-group.php:153 -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" +#: acf.php:404 +msgid "Field" +msgstr "Pole" -#: includes/admin/admin-field-group.php:154 -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" +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Pole" -#: includes/admin/admin-field-group.php:155 -msgid "Field group title is required" -msgstr "Vyžadován nadpis pro skupinu polí" +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "V koši nebyly nalezeny žádné skupiny polí" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Nebyly nalezeny žádné skupiny polí" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Hledat skupiny polí" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Prohlížet skupinu polí" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nová skupina polí" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Upravit skupinu polí" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Přidat novou skupinu polí" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Přidat nové" + +#: acf.php:370 +msgid "Field Group" +msgstr "Skupina polí" + +#: acf.php:369 includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "Skupiny polí" + +#. Description of the plugin +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:465 includes/admin/admin-field-group.php:384 +#: includes/admin/admin-field-groups.php:567 +msgid "Inactive" +msgstr "Neaktivní" #: includes/admin/admin-field-group.php:156 msgid "Move to trash. Are you sure?" msgstr "Přesunout do koše. Jste si jistí?" -#: includes/admin/admin-field-group.php:157 -msgid "No toggle fields available" -msgstr "Žádné zapínatelné pole není k dispozici" - -#: includes/admin/admin-field-group.php:158 -msgid "Move Custom Field" -msgstr "Přesunout vlastní pole" - -#: includes/admin/admin-field-group.php:159 -msgid "Checked" -msgstr "Zaškrtnuto" - -#: includes/admin/admin-field-group.php:160 includes/api/api-field.php:289 -msgid "(no label)" -msgstr "(bez štítku)" - -#: includes/admin/admin-field-group.php:161 -msgid "(this field)" -msgstr "(toto pole)" - -#: includes/admin/admin-field-group.php:162 -#: includes/api/api-field-group.php:751 -msgid "copy" -msgstr "kopírovat" - -#: includes/admin/admin-field-group.php:163 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:4073 -msgid "or" -msgstr "nebo" - -#: includes/admin/admin-field-group.php:164 -msgid "Null" -msgstr "Nula" - -#: includes/admin/admin-field-group.php:203 -msgid "Location" -msgstr "Umístění" - -#: includes/admin/admin-field-group.php:204 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Nastavení" - -#: includes/admin/admin-field-group.php:354 -msgid "Field Keys" -msgstr "Klíče polí" - -#: includes/admin/admin-field-group.php:384 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Aktivní" - -#: includes/admin/admin-field-group.php:746 -msgid "Move Complete." -msgstr "Přesun hotov." - #: includes/admin/admin-field-group.php:747 #, php-format msgid "The %s field can now be found in the %s field group" msgstr "Pole %s lze nyní najít ve skupině polí %s" -#: includes/admin/admin-field-group.php:748 -msgid "Close Window" -msgstr "Zavřít okno" - -#: includes/admin/admin-field-group.php:789 -msgid "Please select the destination for this field" -msgstr "Prosím zvolte umístění pro toto pole" - -#: includes/admin/admin-field-group.php:796 -msgid "Move Field" -msgstr "Přesunout pole" - -#: includes/admin/admin-field-groups.php:74 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktivní (%s)" -msgstr[1] "Aktivní (%s)" -msgstr[2] "Aktivních (%s)" - #: includes/admin/admin-field-groups.php:142 #, php-format msgid "Field group duplicated. %s" @@ -275,24 +3045,6 @@ msgstr[0] "%s skupina polí synchronizována." msgstr[1] "%s skupiny polí synchronizovány." msgstr[2] "%s skupin polí synchronizováno." -#: includes/admin/admin-field-groups.php:394 -#: includes/admin/admin-field-groups.php:557 -msgid "Sync available" -msgstr "Synchronizace je k dispozici" - -#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 -#: pro/fields/class-acf-field-gallery.php:370 -msgid "Title" -msgstr "Název" - -#: includes/admin/admin-field-groups.php:508 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:397 -msgid "Description" -msgstr "Popis" - #: includes/admin/admin-field-groups.php:509 msgid "Status" msgstr "Stav" @@ -341,37 +3093,10 @@ msgstr "Pro" msgid "Thank you for creating with ACF." msgstr "Děkujeme, že používáte ACF." -#: includes/admin/admin-field-groups.php:667 -msgid "Duplicate this item" -msgstr "Duplikovat tuto položku" - -#: includes/admin/admin-field-groups.php:667 -#: includes/admin/admin-field-groups.php:683 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:571 -msgid "Duplicate" -msgstr "Duplikovat" - -#: includes/admin/admin-field-groups.php:700 -#: includes/fields/class-acf-field-google-map.php:164 -#: includes/fields/class-acf-field-relationship.php:674 -msgid "Search" -msgstr "Hledat" - -#: includes/admin/admin-field-groups.php:759 -#, php-format -msgid "Select %s" -msgstr "Zvolit %s" - #: includes/admin/admin-field-groups.php:767 msgid "Synchronise field group" msgstr "Synchronizujte skupinu polí" -#: includes/admin/admin-field-groups.php:767 -#: includes/admin/admin-field-groups.php:797 -msgid "Sync" -msgstr "Synchronizace" - #: includes/admin/admin-field-groups.php:779 msgid "Apply" msgstr "Použít" @@ -380,27 +3105,6 @@ msgstr "Použít" msgid "Bulk Actions" msgstr "Hromadné akce" -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Nástroje" - -#: includes/admin/admin-upgrade.php:47 includes/admin/admin-upgrade.php:94 -#: includes/admin/admin-upgrade.php:156 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Aktualizovat databázi" - -#: includes/admin/admin-upgrade.php:180 -msgid "Review sites & upgrade" -msgstr "Zkontrolujte stránky a aktualizujte" - -#: includes/admin/admin.php:113 -#: includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "Vlastní pole" - #: includes/admin/settings-addons.php:51 #: includes/admin/views/settings-addons.php:3 msgid "Add-ons" @@ -418,34 +3122,6 @@ msgstr "Informace" msgid "What's New" msgstr "Co je nového" -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Exportovat skupiny polí" - -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "Vytvořit PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Nebyly vybrány žádné skupiny polí" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Exportovaná 1 skupina polí." -msgstr[1] "Exportované %s skupiny polí." -msgstr[2] "Exportovaných %s skupin polí." - -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Zvolit skupiny polí" - #: includes/admin/tools/class-acf-admin-tool-export.php:336 msgid "" "Select the field groups you would like to export and then select your export " @@ -462,32 +3138,6 @@ msgstr "" msgid "Export File" msgstr "Exportovat soubor" -#: includes/admin/tools/class-acf-admin-tool-export.php:414 -msgid "" -"The following code can be used to register a local version of the selected " -"field group(s). A local field group 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." -msgstr "" -"Následující kód lze použít k registraci lokální verze vybrané skupiny polí. " -"Místní skupina polí může poskytnout mnoho výhod, jako jsou rychlejší doby " -"načítání, řízení verzí a dynamická pole / nastavení. Jednoduše zkopírujte a " -"vložte následující kód do souboru functions.php svého motivu nebo jej vložte " -"do externího souboru." - -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Zkopírovat od schránky" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Zkopírováno" - -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Importovat skupiny polí" - #: includes/admin/tools/class-acf-admin-tool-import.php:61 msgid "" "Select the Advanced Custom Fields JSON file you would like to import. When " @@ -496,177 +3146,14 @@ 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:66 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Vybrat soubor" - #: includes/admin/tools/class-acf-admin-tool-import.php:76 msgid "Import File" msgstr "Importovat soubor" -#: includes/admin/tools/class-acf-admin-tool-import.php:100 -#: includes/fields/class-acf-field-file.php:170 -msgid "No file selected" -msgstr "Dokument nevybrán" - -#: includes/admin/tools/class-acf-admin-tool-import.php:113 -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:122 -msgid "Incorrect file type" -msgstr "Nesprávný typ souboru" - -#: includes/admin/tools/class-acf-admin-tool-import.php:139 -msgid "Import file empty" -msgstr "Importovaný soubor je prázdný" - -#: includes/admin/tools/class-acf-admin-tool-import.php:247 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Importovaná 1 skupina polí" -msgstr[1] "Importované %s skupiny polí" -msgstr[2] "Importovaných %s skupin polí" - -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Podmíněná logika" - -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Zobrazit toto pole, pokud" - -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 -msgid "and" -msgstr "a" - -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Přidat skupinu pravidel" - -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:424 -#: pro/fields/class-acf-field-repeater.php:294 -msgid "Drag to reorder" -msgstr "Přetažením změníte pořadí" - -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Upravit pole" - -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:152 -#: includes/fields/class-acf-field-image.php:139 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:357 -msgid "Edit" -msgstr "Upravit" - -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Duplikovat pole" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Přesunout pole do jiné skupiny" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Přesunout" - -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Smazat pole" - -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:570 -msgid "Delete" -msgstr "Smazat" - -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Štítek pole" - -#: includes/admin/views/field-group-field.php:66 -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/field-group-field.php:75 -msgid "Field Name" -msgstr "Jméno pole" - -#: includes/admin/views/field-group-field.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/field-group-field.php:85 -msgid "Field Type" -msgstr "Typ pole" - -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Instrukce" - -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instrukce pro autory. Jsou zobrazeny při zadávání dat" - #: includes/admin/views/field-group-field.php:106 msgid "Required?" msgstr "Požadováno?" -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Atributy obalového pole" - -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "šířka" - -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "třída" - -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "identifikátor" - -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Zavřít pole" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Pořadí" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:428 -#: pro/fields/class-acf-field-flexible-content.php:596 -msgid "Label" -msgstr "Štítek" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:939 -#: pro/fields/class-acf-field-flexible-content.php:610 -msgid "Name" -msgstr "Jméno" - -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Klíč" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Typ" - #: includes/admin/views/field-group-fields.php:14 msgid "" "No fields. Click the + Add Field button to create your " @@ -679,276 +3166,16 @@ msgstr "" msgid "+ Add Field" msgstr "+ Přidat pole" -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Pravidla" - -#: includes/admin/views/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/field-group-options.php:23 -msgid "Style" -msgstr "Styl" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Standardní (WP metabox)" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Bezokrajové (bez metaboxu)" - -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Pozice" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Vysoko (po nadpisu)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normální (po obsahu)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Na straně" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Umístění štítků" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Zarovnat shora" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Zarovnat zleva" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Umístění instrukcí" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Pod štítky" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Pod poli" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Pořadové č." - -#: includes/admin/views/field-group-options.php:86 -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/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Zobrazit v seznamu skupin polí" - -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Trvalý odkaz" - -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Editor obsahu" - -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Stručný výpis" - -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Diskuze" - -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Komentáře" - -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Revize" - -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Adresa" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Formát" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Atributy stránky" - -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:688 -msgid "Featured Image" -msgstr "Uživatelský obrázek" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Kategorie" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Štítky" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Odesílat zpětné linkování odkazů" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Skrýt na obrazovce" - -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "Zvolte položky, které budou na obrazovce úprav skryté." - -#: includes/admin/views/field-group-options.php:129 -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/html-admin-page-upgrade-network.php:26 -#, php-format -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/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Upgradovat stránky" - -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Stránky" - #: includes/admin/views/html-admin-page-upgrade-network.php:74 #, php-format msgid "Site requires database upgrade from %s to %s" msgstr "Stránky vyžadují aktualizaci databáze z %s na %s" -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "Stránky jsou aktuální" - -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -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/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Vyberte alespoň jednu stránku, kterou chcete upgradovat." - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Aktualizace dat na verzi %s" - -#: includes/admin/views/html-admin-page-upgrade-network.php:167 -msgid "Upgrade complete." -msgstr "Aktualizace dokončena." - -#: includes/admin/views/html-admin-page-upgrade-network.php:176 -#: includes/admin/views/html-admin-page-upgrade-network.php:185 -#: includes/admin/views/html-admin-page-upgrade.php:78 -#: includes/admin/views/html-admin-page-upgrade.php:87 -msgid "Upgrade failed." -msgstr "Upgrade se nezdařil." - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Čtení úkolů aktualizace..." - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -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/html-admin-page-upgrade.php:116 -#: includes/ajax/class-acf-ajax-upgrade.php:33 -msgid "No updates available." -msgstr "K dispozici nejsou žádné aktualizace." - -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Zobrazit tuto skupinu polí, pokud" - -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Opakovač" - -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Flexibilní obsah" - -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galerie" - -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:26 -msgid "Options Page" -msgstr "Stránka konfigurace" - -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Vyžadován upgrade databáze" - #: includes/admin/views/html-notice-upgrade.php:22 #, php-format msgid "Thank you for updating to %s v%s!" msgstr "Děkujeme vám za aktualizaci na %s v%s!" -#: includes/admin/views/html-notice-upgrade.php:22 -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/html-notice-upgrade.php:24 #, php-format msgid "" @@ -1126,10 +3353,6 @@ msgstr "" "oEmbed pole umožňuje snadno vkládat videa, obrázky, tweety, audio a další " "obsah." -#: includes/admin/views/settings-info.php:84 -msgid "Clone Field" -msgstr "Klonovat pole" - #: includes/admin/views/settings-info.php:85 msgid "The clone field allows you to select and display existing fields." msgstr "Klonované pole umožňuje vybrat a zobrazit existující pole." @@ -1142,10 +3365,6 @@ msgstr "Více AJAXu" msgid "More fields use AJAX powered search to speed up page loading." msgstr "Více polí využívá vyhledávání pomocí AJAX pro rychlé načítání stránky." -#: includes/admin/views/settings-info.php:94 -msgid "Local JSON" -msgstr "Lokální JSON" - #: includes/admin/views/settings-info.php:95 msgid "" "New auto export to JSON feature improves speed and allows for syncronisation." @@ -1243,1149 +3462,43 @@ msgstr "" msgid "We think you'll love the changes in %s." msgstr "Myslíme si, že změny v %s si zamilujete." -#: includes/api/api-helpers.php:1046 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/api/api-helpers.php:1047 -msgid "Medium" -msgstr "Střední" - -#: includes/api/api-helpers.php:1048 -msgid "Large" -msgstr "Velký" - -#: includes/api/api-helpers.php:1097 -msgid "Full Size" -msgstr "Plná velikost" - -#: includes/api/api-helpers.php:1339 includes/api/api-helpers.php:1912 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(bez názvu)" - -#: includes/api/api-helpers.php:3994 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "Šířka obrázku musí být alespoň %dpx." - -#: includes/api/api-helpers.php:3999 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "Šířka obrázku nesmí přesáhnout %dpx." - -#: includes/api/api-helpers.php:4015 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "Výška obrázku musí být alespoň %dpx." - -#: includes/api/api-helpers.php:4020 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "Výška obrázku nesmí přesáhnout %dpx." - -#: includes/api/api-helpers.php:4038 -#, php-format -msgid "File size must be at least %s." -msgstr "Velikost souboru musí být alespoň %s." - #: includes/api/api-helpers.php:4043 #, php-format msgid "File size must must not exceed %s." msgstr "Velikost souboru nesmí přesáhnout %s." -#: includes/api/api-helpers.php:4077 -#, php-format -msgid "File type must be %s." -msgstr "Typ souboru musí být %s." - -#: includes/assets.php:172 -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/assets.php:175 includes/fields/class-acf-field-select.php:259 -msgctxt "verb" -msgid "Select" -msgstr "Vybrat" - -#: includes/assets.php:176 -msgctxt "verb" -msgid "Edit" -msgstr "Upravit" - -#: includes/assets.php:177 -msgctxt "verb" -msgid "Update" -msgstr "Aktualizace" - -#: includes/assets.php:178 -msgid "Uploaded to this post" -msgstr "Nahrán k tomuto příspěvku" - -#: includes/assets.php:179 -msgid "Expand Details" -msgstr "Rozbalit podrobnosti" - -#: includes/assets.php:180 -msgid "Collapse Details" -msgstr "Sbalit podrobnosti" - -#: includes/assets.php:181 -msgid "Restricted" -msgstr "Omezeno" - -#: includes/assets.php:182 includes/fields/class-acf-field-image.php:67 -msgid "All images" -msgstr "Všechny obrázky" - -#: includes/assets.php:185 -msgid "Validation successful" -msgstr "Ověření úspěšné" - -#: includes/assets.php:186 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Ověření selhalo" - -#: includes/assets.php:187 -msgid "1 field requires attention" -msgstr "1 pole vyžaduje pozornost" - -#: includes/assets.php:188 -#, php-format -msgid "%d fields require attention" -msgstr "Několik polí vyžaduje pozornost (%d)" - -#: includes/assets.php:191 -msgid "Are you sure?" -msgstr "Jste si jistí?" - -#: includes/assets.php:192 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Ano" - -#: includes/assets.php:193 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "Ne" - -#: includes/assets.php:194 includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-image.php:141 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:358 -#: pro/fields/class-acf-field-gallery.php:546 -msgid "Remove" -msgstr "Odstranit" - -#: includes/assets.php:195 -msgid "Cancel" -msgstr "Zrušit" - -#: includes/assets.php:198 -msgid "Has any value" -msgstr "Má libovolnou hodnotu" - -#: includes/assets.php:199 -msgid "Has no value" -msgstr "Nemá hodnotu" - -#: includes/assets.php:200 -msgid "Value is equal to" -msgstr "Hodnota je rovna" - -#: includes/assets.php:201 -msgid "Value is not equal to" -msgstr "Hodnota není rovna" - -#: includes/assets.php:202 -msgid "Value matches pattern" -msgstr "Hodnota odpovídá masce" - -#: includes/assets.php:203 -msgid "Value contains" -msgstr "Hodnota obsahuje" - -#: includes/assets.php:204 -msgid "Value is greater than" -msgstr "Hodnota je větší než" - -#: includes/assets.php:205 -msgid "Value is less than" -msgstr "Hodnota je menší než" - -#: includes/assets.php:206 -msgid "Selection is greater than" -msgstr "Výběr je větší než" - -#: includes/assets.php:207 -msgid "Selection is less than" -msgstr "Výběr je menší než" - -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Typ pole neexistuje" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Neznámý" - -#: includes/fields.php:349 -msgid "Basic" -msgstr "Základní" - -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Obsah" - -#: includes/fields.php:351 -msgid "Choice" -msgstr "Volba" - -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relační" - -#: includes/fields.php:353 -msgid "jQuery" -msgstr "jQuery" - -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:567 -#: pro/fields/class-acf-field-flexible-content.php:616 -#: pro/fields/class-acf-field-repeater.php:443 -msgid "Layout" -msgstr "Typ zobrazení" - -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Akordeon" - -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Otevřít" - -#: includes/fields/class-acf-field-accordion.php:100 -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:109 -msgid "Multi-expand" -msgstr "Vícenásobné rozbalení" - -#: includes/fields/class-acf-field-accordion.php:110 -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:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Koncový bod" - -#: includes/fields/class-acf-field-accordion.php:120 -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-button-group.php:24 -msgid "Button Group" -msgstr "Skupina tlačítek" - -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:359 -msgid "Choices" -msgstr "Možnosti" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:360 -msgid "Enter each choice on a new line." -msgstr "Zadejte každou volbu na nový řádek." - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:360 -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:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:360 -msgid "red : Red" -msgstr "cervena : Červená" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:513 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:377 -#: includes/fields/class-acf-field-taxonomy.php:784 -#: includes/fields/class-acf-field-user.php:409 -msgid "Allow Null?" -msgstr "Povolit prázdné?" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:149 -#: includes/fields/class-acf-field-select.php:368 -#: includes/fields/class-acf-field-text.php:119 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:381 -msgid "Default Value" -msgstr "Výchozí hodnota" - -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:150 -#: includes/fields/class-acf-field-text.php:120 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:382 -msgid "Appears when creating a new post" -msgstr "Objeví se při vytváření nového příspěvku" - -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Horizontální" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Vertikální" - -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-image.php:205 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:829 -msgid "Return Value" -msgstr "Vrátit hodnotu" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:216 -#: includes/fields/class-acf-field-image.php:206 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -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:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:427 -msgid "Value" -msgstr "Hodnota" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:429 -msgid "Both (Array)" -msgstr "Obě (pole)" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Checkbox" -msgstr "Zaškrtávátko" - -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Přepnout vše" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Přidat novou volbu" - #: includes/fields/class-acf-field-checkbox.php:353 msgid "Allow Custom" msgstr "Povolit vlastní" -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Povolit přidání 'vlastních' hodnot" - #: includes/fields/class-acf-field-checkbox.php:364 msgid "Save Custom" msgstr "Uložit vlastní" -#: includes/fields/class-acf-field-checkbox.php:369 -msgid "Save 'custom' values to the field's choices" -msgstr "Uložit 'vlastní' hodnoty do voleb polí" - -#: includes/fields/class-acf-field-checkbox.php:381 -#: includes/fields/class-acf-field-select.php:369 -msgid "Enter each default value on a new line" -msgstr "Zadejte každou výchozí hodnotu na nový řádek" - #: includes/fields/class-acf-field-checkbox.php:403 msgid "Toggle" msgstr "Přepnout" -#: includes/fields/class-acf-field-checkbox.php:404 -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-color_picker.php:25 -msgid "Color Picker" -msgstr "Výběr barvy" - -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Vymazat" - -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Výchozí nastavení" - -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Výběr barvy" - #: includes/fields/class-acf-field-color_picker.php:71 msgid "Current Color" msgstr "Aktuální barva" -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Výběr data" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Hotovo" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Dnes" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Následující" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Předchozí" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Týden" - -#: includes/fields/class-acf-field-date_picker.php:180 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Formát zobrazení" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -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:189 -#: includes/fields/class-acf-field-date_picker.php:220 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Vlastní:" - -#: includes/fields/class-acf-field-date_picker.php:199 -msgid "Save Format" -msgstr "Uložit formát" - -#: includes/fields/class-acf-field-date_picker.php:200 -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:210 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:715 -#: includes/fields/class-acf-field-select.php:422 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:428 -msgid "Return Format" -msgstr "Formát návratové hodnoty" - -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "Formát vrácen pomocí funkcí šablony" - -#: includes/fields/class-acf-field-date_picker.php:229 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "Týden začíná" - -#: 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-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zvolit čas" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Čas" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hodina" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuta" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Vteřina" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunda" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Časové pásmo" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nyní" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hotovo" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -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 amText" -msgid "AM" -msgstr "dop" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "od" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "odp" - -#: includes/fields/class-acf-field-date_time_picker.php:85 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "do" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:128 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Zástupný text" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:129 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Zobrazí se v inputu" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:188 -#: includes/fields/class-acf-field-text.php:137 -msgid "Prepend" -msgstr "Zobrazit před" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:189 -#: includes/fields/class-acf-field-text.php:138 -msgid "Appears before the input" -msgstr "Zobrazí se před inputem" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:197 -#: includes/fields/class-acf-field-text.php:146 -msgid "Append" -msgstr "Zobrazit po" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:198 -#: includes/fields/class-acf-field-text.php:147 -msgid "Appears after the input" -msgstr "Zobrazí se za inputem" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Soubor" - -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Upravit soubor" - -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Aktualizovat soubor" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Jméno souboru" - -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:248 -#: includes/fields/class-acf-field-file.php:259 -#: includes/fields/class-acf-field-image.php:265 -#: includes/fields/class-acf-field-image.php:294 -#: pro/fields/class-acf-field-gallery.php:705 -#: pro/fields/class-acf-field-gallery.php:734 -msgid "File size" -msgstr "Velikost souboru" - -#: includes/fields/class-acf-field-file.php:170 -msgid "Add File" -msgstr "Přidat soubor" - -#: includes/fields/class-acf-field-file.php:221 -msgid "File Array" -msgstr "Pole souboru" - -#: includes/fields/class-acf-field-file.php:222 -msgid "File URL" -msgstr "Adresa souboru" - -#: includes/fields/class-acf-field-file.php:223 -msgid "File ID" -msgstr "ID souboru" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:230 -#: pro/fields/class-acf-field-gallery.php:670 -msgid "Library" -msgstr "Knihovna" - -#: includes/fields/class-acf-field-file.php:231 -#: includes/fields/class-acf-field-image.php:231 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Limit the media library choice" -msgstr "Omezit výběr knihovny médií" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:236 -#: includes/locations/class-acf-location-attachment.php:101 -#: includes/locations/class-acf-location-comment.php:79 -#: includes/locations/class-acf-location-nav-menu.php:102 -#: includes/locations/class-acf-location-taxonomy.php:79 -#: includes/locations/class-acf-location-user-form.php:87 -#: includes/locations/class-acf-location-user-role.php:111 -#: includes/locations/class-acf-location-widget.php:83 -#: pro/fields/class-acf-field-gallery.php:676 -msgid "All" -msgstr "Vše" - -#: includes/fields/class-acf-field-file.php:237 -#: includes/fields/class-acf-field-image.php:237 -#: pro/fields/class-acf-field-gallery.php:677 -msgid "Uploaded to post" -msgstr "Nahráno k příspěvku" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-image.php:244 -#: pro/fields/class-acf-field-gallery.php:684 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:245 -#: includes/fields/class-acf-field-file.php:256 -msgid "Restrict which files can be uploaded" -msgstr "Omezte, které typy souborů lze nahrát" - -#: includes/fields/class-acf-field-file.php:255 -#: includes/fields/class-acf-field-image.php:273 -#: pro/fields/class-acf-field-gallery.php:713 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:302 -#: pro/fields/class-acf-field-gallery.php:742 -msgid "Allowed file types" -msgstr "Povolené typy souborů" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-image.php:303 -#: pro/fields/class-acf-field-gallery.php:743 -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-google-map.php:25 -msgid "Google Map" -msgstr "Mapa Google" - -#: includes/fields/class-acf-field-google-map.php:59 -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:165 -msgid "Clear location" -msgstr "Vymazat polohu" - -#: includes/fields/class-acf-field-google-map.php:166 -msgid "Find current location" -msgstr "Najít aktuální umístění" - -#: includes/fields/class-acf-field-google-map.php:169 -msgid "Search for address..." -msgstr "Vyhledat adresu..." - -#: includes/fields/class-acf-field-google-map.php:199 -#: includes/fields/class-acf-field-google-map.php:210 -msgid "Center" -msgstr "Vycentrovat" - -#: includes/fields/class-acf-field-google-map.php:200 -#: includes/fields/class-acf-field-google-map.php:211 -msgid "Center the initial map" -msgstr "Vycentrovat počáteční zobrazení mapy" - -#: includes/fields/class-acf-field-google-map.php:222 -msgid "Zoom" -msgstr "Přiblížení" - -#: 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:232 -#: includes/fields/class-acf-field-image.php:256 -#: includes/fields/class-acf-field-image.php:285 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:696 -#: pro/fields/class-acf-field-gallery.php:725 -msgid "Height" -msgstr "Výška" - #: includes/fields/class-acf-field-google-map.php:233 msgid "Customise the map height" msgstr "Upravit výšku mapy" -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Skupina" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:379 -msgid "Sub Fields" -msgstr "Podřazená pole" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "Určení stylu použitého pro vykreslení vybraných polí" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:627 -#: pro/fields/class-acf-field-repeater.php:451 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:626 -#: pro/fields/class-acf-field-repeater.php:450 -msgid "Table" -msgstr "Tabulka" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:628 -#: pro/fields/class-acf-field-repeater.php:452 -msgid "Row" -msgstr "Řádek" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Obrázek" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Select Image" -msgstr "Vybrat obrázek" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Edit Image" -msgstr "Upravit obrázek" - -#: includes/fields/class-acf-field-image.php:66 -msgid "Update Image" -msgstr "Aktualizovat obrázek" - -#: includes/fields/class-acf-field-image.php:157 -msgid "No image selected" -msgstr "Není vybrán žádný obrázek" - -#: includes/fields/class-acf-field-image.php:157 -msgid "Add Image" -msgstr "Přidat obrázek" - -#: includes/fields/class-acf-field-image.php:211 -msgid "Image Array" -msgstr "Pole obrázku" - -#: includes/fields/class-acf-field-image.php:212 -msgid "Image URL" -msgstr "Adresa obrázku" - -#: includes/fields/class-acf-field-image.php:213 -msgid "Image ID" -msgstr "ID obrázku" - -#: includes/fields/class-acf-field-image.php:220 -msgid "Preview Size" -msgstr "Velikost náhledu" - #: includes/fields/class-acf-field-image.php:221 msgid "Shown when entering data" msgstr "Zobrazit při zadávání dat" -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: pro/fields/class-acf-field-gallery.php:685 -#: pro/fields/class-acf-field-gallery.php:714 -msgid "Restrict which images can be uploaded" -msgstr "Omezte, které typy obrázků je možné nahrát" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:277 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:688 -#: pro/fields/class-acf-field-gallery.php:717 -msgid "Width" -msgstr "Šířka" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Odkaz" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Vybrat odkaz" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Otevřít v novém okně/záložce" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Pole odkazů" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "URL adresa odkazu" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Zpráva" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Nové řádky" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Řídí, jak se vykreslují nové řádky" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Automaticky přidávat odstavce" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Automaticky přidávat <br>" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Žádné formátování" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escapovat HTML" - -#: 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-number.php:25 -msgid "Number" -msgstr "Číslo" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:158 -msgid "Minimum Value" -msgstr "Minimální hodnota" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:168 -msgid "Maximum Value" -msgstr "Maximální hodnota" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:178 -msgid "Step Size" -msgstr "Velikost kroku" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Hodnota musí být číslo" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Vložte URL" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Velikost pro Embed" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Odkaz stránky" - -#: includes/fields/class-acf-field-page_link.php:177 -msgid "Archives" -msgstr "Archivy" - -#: includes/fields/class-acf-field-page_link.php:269 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:961 -msgid "Parent" -msgstr "Rodič" - -#: includes/fields/class-acf-field-page_link.php:485 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:641 -msgid "Filter by Post Type" -msgstr "Filtrovat dle typu příspěvku" - -#: includes/fields/class-acf-field-page_link.php:493 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:649 -msgid "All post types" -msgstr "Všechny typy příspěvků" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:655 -msgid "Filter by Taxonomy" -msgstr "Filtrovat dle taxonomie" - -#: includes/fields/class-acf-field-page_link.php:507 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:663 -msgid "All taxonomies" -msgstr "Všechny taxonomie" - -#: includes/fields/class-acf-field-page_link.php:523 -msgid "Allow Archives URLs" -msgstr "Umožnit URL adresy archivu" - -#: includes/fields/class-acf-field-page_link.php:533 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:387 -#: includes/fields/class-acf-field-user.php:419 -msgid "Select multiple values?" -msgstr "Vybrat více hodnot?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Heslo" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:720 -msgid "Post Object" -msgstr "Objekt příspěvku" - -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:721 -msgid "Post ID" -msgstr "ID příspěvku" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Přepínač" - #: includes/fields/class-acf-field-radio.php:254 msgid "Other" msgstr "Jiné" -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Přidat volbu 'jiné', která umožňuje vlastní hodnoty" - #: includes/fields/class-acf-field-radio.php:265 msgid "Save Other" msgstr "Uložit Jiné" -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "Uložit 'jiné' hodnoty do voleb polí" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rozmezí" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Vztah" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "Dosaženo maximálního množství hodnot ( {max} hodnot )" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "Načítání" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Nebyly nalezeny žádné výsledky" - -#: includes/fields/class-acf-field-relationship.php:441 -msgid "Select post type" -msgstr "Zvolit typ příspěvku" - -#: includes/fields/class-acf-field-relationship.php:467 -msgid "Select taxonomy" -msgstr "Zvolit taxonomii" - -#: includes/fields/class-acf-field-relationship.php:557 -msgid "Search..." -msgstr "Hledat..." - -#: includes/fields/class-acf-field-relationship.php:669 -msgid "Filters" -msgstr "Filtry" - -#: includes/fields/class-acf-field-relationship.php:675 -#: includes/locations/class-acf-location-post-type.php:27 -msgid "Post Type" -msgstr "Typ příspěvku" - -#: includes/fields/class-acf-field-relationship.php:676 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:754 -#: includes/locations/class-acf-location-taxonomy.php:27 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:683 -msgid "Elements" -msgstr "Prvky" - -#: includes/fields/class-acf-field-relationship.php:684 -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:695 -msgid "Minimum posts" -msgstr "Minimum příspěvků" - -#: includes/fields/class-acf-field-relationship.php:704 -msgid "Maximum posts" -msgstr "Maximum příspěvků" - #: includes/fields/class-acf-field-relationship.php:808 #: pro/fields/class-acf-field-gallery.php:815 #, php-format @@ -2395,102 +3508,11 @@ msgstr[0] "%s vyžaduje alespoň %s volbu" msgstr[1] "%s vyžaduje alespoň %s volby" msgstr[2] "%s vyžaduje alespoň %s voleb" -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:776 -msgctxt "noun" -msgid "Select" -msgstr "Vybrat" - -#: includes/fields/class-acf-field-select.php:111 -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:112 -#, php-format -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:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nebyly nalezeny žádné výsledky" - -#: includes/fields/class-acf-field-select.php:114 -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:115 -#, php-format -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:116 -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:117 -#, php-format -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:118 -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:119 -#, php-format -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:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Načítání dalších výsledků…" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Vyhledávání…" - -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Načítání selhalo" - #: includes/fields/class-acf-field-select.php:397 #: includes/fields/class-acf-field-true_false.php:144 msgid "Stylised UI" msgstr "Stylizované uživatelské rozhraní" -#: includes/fields/class-acf-field-select.php:407 -msgid "Use AJAX to lazy load choices?" -msgstr "K načtení volby použít AJAX lazy load?" - -#: includes/fields/class-acf-field-select.php:423 -msgid "Specify the value returned" -msgstr "Zadat konkrétní návratovou hodnotu" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Oddělovač" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Záložka" - -#: includes/fields/class-acf-field-tab.php:102 -msgid "Placement" -msgstr "Umístění" - #: includes/fields/class-acf-field-tab.php:115 msgid "" "Define an endpoint for the previous tabs to stop. This will start a new " @@ -2505,397 +3527,10 @@ msgctxt "No terms" msgid "No %s" msgstr "Nic pro %s" -#: includes/fields/class-acf-field-taxonomy.php:755 -msgid "Select the taxonomy to be displayed" -msgstr "Zvolit zobrazovanou taxonomii" - -#: includes/fields/class-acf-field-taxonomy.php:764 -msgid "Appearance" -msgstr "Vzhled" - -#: includes/fields/class-acf-field-taxonomy.php:765 -msgid "Select the appearance of this field" -msgstr "Vyberte vzhled tohoto pole" - -#: includes/fields/class-acf-field-taxonomy.php:770 -msgid "Multiple Values" -msgstr "Více hodnot" - -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Multi Select" -msgstr "Vícenásobný výběr" - -#: includes/fields/class-acf-field-taxonomy.php:774 -msgid "Single Value" -msgstr "Jednotlivá hodnota" - -#: includes/fields/class-acf-field-taxonomy.php:775 -msgid "Radio Buttons" -msgstr "Radio přepínače" - -#: includes/fields/class-acf-field-taxonomy.php:799 -msgid "Create Terms" -msgstr "Vytvořit pojmy" - -#: includes/fields/class-acf-field-taxonomy.php:800 -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:809 -msgid "Save Terms" -msgstr "Uložit pojmy" - -#: includes/fields/class-acf-field-taxonomy.php:810 -msgid "Connect selected terms to the post" -msgstr "Připojte vybrané pojmy k příspěvku" - -#: includes/fields/class-acf-field-taxonomy.php:819 -msgid "Load Terms" -msgstr "Nahrát pojmy" - -#: includes/fields/class-acf-field-taxonomy.php:820 -msgid "Load value from posts terms" -msgstr "Nahrát pojmy z příspěvků" - -#: includes/fields/class-acf-field-taxonomy.php:834 -msgid "Term Object" -msgstr "Objekt pojmu" - -#: includes/fields/class-acf-field-taxonomy.php:835 -msgid "Term ID" -msgstr "ID pojmu" - -#: includes/fields/class-acf-field-taxonomy.php:885 -#, php-format -msgid "User unable to add new %s" -msgstr "Uživatel není schopen přidat nové %s" - -#: includes/fields/class-acf-field-taxonomy.php:895 -#, php-format -msgid "%s already exists" -msgstr "%s již existuje" - -#: includes/fields/class-acf-field-taxonomy.php:927 -#, php-format -msgid "%s added" -msgstr "%s přidán" - -#: includes/fields/class-acf-field-taxonomy.php:973 -msgid "Add" -msgstr "Přidat" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-text.php:155 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Limit znaků" - -#: includes/fields/class-acf-field-text.php:156 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Nechte prázdné pro nastavení bez omezení" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Textové pole" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Řádky" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Nastavuje výšku textového pole" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Výběr času" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Pravda / Nepravda" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Zobrazí text vedle zaškrtávacího políčka" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Text (aktivní)" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Text zobrazený při aktivním poli" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Text (neaktivní)" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Text zobrazený při neaktivním poli" - -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "Adresa URL" - -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Hodnota musí být validní adresa URL" - -#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 -msgid "User" -msgstr "Uživatel" - -#: includes/fields/class-acf-field-user.php:394 -msgid "Filter by role" -msgstr "Filtrovat podle role" - -#: includes/fields/class-acf-field-user.php:402 -msgid "All user roles" -msgstr "Všechny uživatelské role" - -#: includes/fields/class-acf-field-user.php:433 -msgid "User Array" -msgstr "Pole uživatelů" - -#: includes/fields/class-acf-field-user.php:434 -msgid "User Object" -msgstr "Objekt uživatele" - -#: includes/fields/class-acf-field-user.php:435 -msgid "User ID" -msgstr "ID uživatele" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "Wysiwyg Editor" - -#: includes/fields/class-acf-field-wysiwyg.php:330 -msgid "Visual" -msgstr "Grafika" - -#: includes/fields/class-acf-field-wysiwyg.php:331 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:337 -msgid "Click to initialize TinyMCE" -msgstr "Klikněte pro inicializaci TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "Tabs" -msgstr "Záložky" - -#: includes/fields/class-acf-field-wysiwyg.php:395 -msgid "Visual & Text" -msgstr "Grafika a text" - -#: includes/fields/class-acf-field-wysiwyg.php:396 -msgid "Visual Only" -msgstr "Pouze grafika" - -#: includes/fields/class-acf-field-wysiwyg.php:397 -msgid "Text Only" -msgstr "Pouze text" - -#: includes/fields/class-acf-field-wysiwyg.php:404 -msgid "Toolbar" -msgstr "Lišta nástrojů" - -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Show Media Upload Buttons?" -msgstr "Zobrazit tlačítka nahrávání médií?" - -#: includes/fields/class-acf-field-wysiwyg.php:429 -msgid "Delay initialization?" -msgstr "Zpoždění inicializace?" - #: includes/fields/class-acf-field-wysiwyg.php:430 msgid "TinyMCE will not be initalized until field is clicked" msgstr "TinyMCE nebude inicializován, dokud nekliknete na pole" -#: includes/forms/form-comment.php:166 includes/forms/form-post.php:301 -#: pro/admin/admin-options-page.php:308 -msgid "Edit field group" -msgstr "Editovat skupinu polí" - -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Ověřit email" - -#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:588 -#: pro/options-page.php:81 -msgid "Update" -msgstr "Aktualizace" - -#: includes/forms/form-front.php:104 -msgid "Post updated" -msgstr "Příspěvek aktualizován" - -#: includes/forms/form-front.php:230 -msgid "Spam Detected" -msgstr "Zjištěn spam" - -#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 -msgid "Post" -msgstr "Příspěvek" - -#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 -msgid "Page" -msgstr "Stránka" - -#: includes/locations.php:96 -msgid "Forms" -msgstr "Formuláře" - -#: includes/locations.php:243 -msgid "is equal to" -msgstr "je rovno" - -#: includes/locations.php:244 -msgid "is not equal to" -msgstr "není rovno" - -#: includes/locations/class-acf-location-attachment.php:27 -msgid "Attachment" -msgstr "Příloha" - -#: includes/locations/class-acf-location-attachment.php:109 -#, php-format -msgid "All %s formats" -msgstr "Všechny formáty %s" - -#: includes/locations/class-acf-location-comment.php:27 -msgid "Comment" -msgstr "Komentář" - -#: includes/locations/class-acf-location-current-user-role.php:27 -msgid "Current User Role" -msgstr "Aktuální uživatelská role" - -#: includes/locations/class-acf-location-current-user-role.php:110 -msgid "Super Admin" -msgstr "Super Admin" - -#: includes/locations/class-acf-location-current-user.php:27 -msgid "Current User" -msgstr "Aktuální uživatel" - -#: includes/locations/class-acf-location-current-user.php:97 -msgid "Logged in" -msgstr "Přihlášen" - -#: includes/locations/class-acf-location-current-user.php:98 -msgid "Viewing front end" -msgstr "Prohlížíte frontend" - -#: includes/locations/class-acf-location-current-user.php:99 -msgid "Viewing back end" -msgstr "Prohlížíte backend" - -#: includes/locations/class-acf-location-nav-menu-item.php:27 -msgid "Menu Item" -msgstr "Položka nabídky" - -#: includes/locations/class-acf-location-nav-menu.php:27 -msgid "Menu" -msgstr "Nabídka" - -#: includes/locations/class-acf-location-nav-menu.php:109 -msgid "Menu Locations" -msgstr "Umístění nabídky" - -#: includes/locations/class-acf-location-nav-menu.php:119 -msgid "Menus" -msgstr "Nabídky" - -#: includes/locations/class-acf-location-page-parent.php:27 -msgid "Page Parent" -msgstr "Rodičovská stránka" - -#: includes/locations/class-acf-location-page-template.php:27 -msgid "Page Template" -msgstr "Šablona stránky" - -#: includes/locations/class-acf-location-page-template.php:98 -#: includes/locations/class-acf-location-post-template.php:151 -msgid "Default Template" -msgstr "Výchozí šablona" - -#: includes/locations/class-acf-location-page-type.php:27 -msgid "Page Type" -msgstr "Typ stránky" - -#: includes/locations/class-acf-location-page-type.php:146 -msgid "Front Page" -msgstr "Hlavní stránka" - -#: includes/locations/class-acf-location-page-type.php:147 -msgid "Posts Page" -msgstr "Stránka příspěvku" - -#: includes/locations/class-acf-location-page-type.php:148 -msgid "Top Level Page (no parent)" -msgstr "Stránka nejvyšší úrovně (žádný nadřazený)" - -#: includes/locations/class-acf-location-page-type.php:149 -msgid "Parent Page (has children)" -msgstr "Rodičovská stránka (má potomky)" - -#: includes/locations/class-acf-location-page-type.php:150 -msgid "Child Page (has parent)" -msgstr "Podřazená stránka (má rodiče)" - -#: includes/locations/class-acf-location-post-category.php:27 -msgid "Post Category" -msgstr "Rubrika příspěvku" - -#: includes/locations/class-acf-location-post-format.php:27 -msgid "Post Format" -msgstr "Formát příspěvku" - -#: includes/locations/class-acf-location-post-status.php:27 -msgid "Post Status" -msgstr "Stav příspěvku" - -#: includes/locations/class-acf-location-post-taxonomy.php:27 -msgid "Post Taxonomy" -msgstr "Taxonomie příspěvku" - -#: includes/locations/class-acf-location-post-template.php:27 -msgid "Post Template" -msgstr "Šablona příspěvku" - -#: includes/locations/class-acf-location-user-form.php:27 -msgid "User Form" -msgstr "Uživatelský formulář" - -#: includes/locations/class-acf-location-user-form.php:88 -msgid "Add / Edit" -msgstr "Přidat / Editovat" - -#: includes/locations/class-acf-location-user-form.php:89 -msgid "Register" -msgstr "Registrovat" - -#: includes/locations/class-acf-location-user-role.php:27 -msgid "User Role" -msgstr "Uživatelská role" - -#: includes/locations/class-acf-location-widget.php:27 -msgid "Widget" -msgstr "Widget" - -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "%s hodnota je vyžadována" - #. Plugin Name of the plugin/theme #: pro/acf-pro.php:28 msgid "Advanced Custom Fields PRO" @@ -2918,11 +3553,6 @@ msgstr "" msgid "Error. Could not connect to update server" msgstr "Chyba. Nelze se připojit k serveru a aktualizovat" -#: pro/admin/admin-settings-updates.php:162 -#: pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "Aktualizace" - #: pro/admin/views/html-settings-updates.php:7 msgid "Deactivate License" msgstr "Deaktivujte licenci" @@ -3247,10 +3877,6 @@ msgstr "Maximum řádků" msgid "No options pages exist" msgstr "Neexistuje stránka nastavení" -#: pro/options-page.php:51 -msgid "Options" -msgstr "Konfigurace" - #: pro/options-page.php:82 msgid "Options Updated" msgstr "Nastavení aktualizováno" @@ -3280,6 +3906,21 @@ msgstr "Elliot Condon" msgid "http://www.elliotcondon.com/" msgstr "http://www.elliotcondon.com/" +#~ msgid "Gallery Field" +#~ msgstr "Pole galerie" + +#~ msgid "Flexible Content Field" +#~ msgstr "Pole flexibilního obsahu" + +#~ msgid "Repeater Field" +#~ msgstr "Opakovací pole" + +#~ msgid "Deactivate" +#~ msgstr "Deaktivovat" + +#~ msgid "Activate" +#~ msgstr "Aktivovat" + #~ msgid "Disabled" #~ msgstr "Zakázáno" @@ -3646,21 +4287,6 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Activation Code" #~ msgstr "Aktivační kód" -#~ msgid "Repeater Field" -#~ msgstr "Opakovací pole" - -#~ msgid "Deactivate" -#~ msgstr "Deaktivovat" - -#~ msgid "Activate" -#~ msgstr "Aktivovat" - -#~ msgid "Flexible Content Field" -#~ msgstr "Pole flexibilního obsahu" - -#~ msgid "Gallery Field" -#~ msgstr "Pole galerie" - #~ msgid "Export Field Groups to XML" #~ msgstr "Exportovat skupiny polí do XML" diff --git a/lang/acf-de_CH.mo b/lang/acf-de_CH.mo old mode 100755 new mode 100644 index 65bf921..2542b52 Binary files a/lang/acf-de_CH.mo and b/lang/acf-de_CH.mo differ diff --git a/lang/acf-de_CH.po b/lang/acf-de_CH.po index b7a0def..3edda8f 100644 --- a/lang/acf-de_CH.po +++ b/lang/acf-de_CH.po @@ -1,26 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.7.10\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2019-01-15 11:15+1000\n" -"PO-Revision-Date: 2019-02-06 15:35+0100\n" -"Last-Translator: Werbelinie AG \n" -"Language-Team: Raphael Hüni \n" "Language: de_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" # @ acf #: acf.php:80 diff --git a/lang/acf-de_DE.mo b/lang/acf-de_DE.mo old mode 100755 new mode 100644 index d1d116c..40dfbc7 Binary files a/lang/acf-de_DE.mo and b/lang/acf-de_DE.mo differ diff --git a/lang/acf-de_DE.po b/lang/acf-de_DE.po index eee4213..7569bb1 100644 --- a/lang/acf-de_DE.po +++ b/lang/acf-de_DE.po @@ -1,701 +1,1136 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.9.0\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2020-08-13 16:34+0200\n" -"PO-Revision-Date: 2020-08-17 12:32+0200\n" -"Last-Translator: Ralf Koller \n" -"Language-Team: Ralf Koller \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -# @ acf -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -# @ acf -#: acf.php:348 includes/admin/admin.php:49 -msgid "Field Groups" -msgstr "Feldgruppen" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -# @ acf -#: acf.php:349 -msgid "Field Group" -msgstr "Feldgruppe" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -# @ acf -#: acf.php:350 acf.php:382 includes/admin/admin.php:50 -#: pro/fields/class-acf-field-flexible-content.php:559 -msgid "Add New" -msgstr "Erstellen" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -# @ acf -#: acf.php:351 -msgid "Add New Field Group" -msgstr "Neue Feldgruppe erstellen" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -# @ acf -#: acf.php:352 -msgid "Edit Field Group" -msgstr "Feldgruppe bearbeiten" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -# @ acf -#: acf.php:353 -msgid "New Field Group" -msgstr "Neue Feldgruppe" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" -# @ acf -#: acf.php:354 -msgid "View Field Group" -msgstr "Feldgruppe anzeigen" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" -# @ acf -#: acf.php:355 -msgid "Search Field Groups" -msgstr "Feldgruppen durchsuchen" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -# @ acf -#: acf.php:356 -msgid "No Field Groups found" -msgstr "Keine Feldgruppen gefunden" +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Aktualisierungen" -# @ acf -#: acf.php:357 -msgid "No Field Groups found in Trash" -msgstr "Keine Feldgruppen im Papierkorb gefunden" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" -# @ acf -#: acf.php:380 includes/admin/admin-field-group.php:232 -#: includes/admin/admin-field-groups.php:262 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Felder" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Änderungen speichern" -# @ acf -#: acf.php:381 -msgid "Field" -msgstr "Feld" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Feldgruppen-Titel" -# @ acf -#: acf.php:383 -msgid "Add New Field" -msgstr "Feld hinzufügen" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Titel hinzufügen" -# @ acf -#: acf.php:384 -msgid "Edit Field" -msgstr "Feld bearbeiten" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -# @ acf -#: acf.php:385 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Neues Feld" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" -# @ acf -#: acf.php:386 -msgid "View Field" -msgstr "Feld anzeigen" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -# @ acf -#: acf.php:387 -msgid "Search Fields" -msgstr "Felder suchen" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" -# @ acf -#: acf.php:388 -msgid "No Fields found" -msgstr "Keine Felder gefunden" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" -# @ acf -#: acf.php:389 -msgid "No Fields found in Trash" -msgstr "Keine Felder im Papierkorb gefunden" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" -#: acf.php:424 includes/admin/admin-field-groups.php:226 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 msgctxt "post status" -msgid "Disabled" -msgstr "Deaktiviert" +msgid "Inactive" +msgstr "" -#: acf.php:429 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "Deaktiviert (%s)" -msgstr[1] "Deaktiviert (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "" -# @ acf -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:178 -msgid "(no label)" -msgstr "(keine Beschriftung)" +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" -# @ acf -#: includes/acf-field-group-functions.php:820 -#: includes/admin/admin-field-group.php:180 -msgid "copy" -msgstr "Kopie" +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" -# @ acf -#: includes/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Beiträge" +#: 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 - Wir haben einen oder mehrere Versuche festgestellt, " +"ACF-Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht " +"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. Erfahre, wie du das beheben kannst." -# @ acf -#: includes/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taxonomien" +#: includes/fields/class-acf-field-user.php:537 +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" -# @ acf -#: includes/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Anhänge" +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s muss eine gültige Benutzer-ID haben." -# @ acf -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Kommentare" +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -# @ acf -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Widgets" +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "%1$s ist nicht eins von %2$s" -#: includes/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:87 -msgid "Menus" -msgstr "Menüs" +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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 den Inhaltstyp %2$s haben." +msgstr[1] "%1$s muss einen der folgenden Inhaltstypen haben: %2$s" + +#: includes/fields/class-acf-field-post_object.php:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s erfordert eine gültige Anhangs-ID." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "In REST API anzeigen" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Transparenz aktivieren" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA-Array" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA-Zeichenfolge" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex-Zeichenfolge" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galerie (nur Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Klon (nur Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexibler Inhalt (nur Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Wiederholung (nur Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Aktiv" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Farbwert" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Standardfarbe auswählen" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Farbe entfernen" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blöcke" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Optionen" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Benutzer" #: includes/acf-wp-functions.php:75 msgid "Menu items" msgstr "Menüelemente" -# @ acf -#: includes/acf-wp-functions.php:79 -msgid "Users" -msgstr "Benutzer" +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" -# @ acf -#: includes/acf-wp-functions.php:83 pro/options-page.php:51 -msgid "Options" -msgstr "Optionen" +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Anhänge" -# @ acf -#: includes/acf-wp-functions.php:87 -msgid "Blocks" -msgstr "Blöcke" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomien" -# @ acf -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "Feldgruppe aktualisiert." +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Beiträge" -# @ acf -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "Feldgruppe gelöscht." +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON-Feldgruppe (neuer)" -# @ acf -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "Feldgruppe veröffentlicht." +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Ursprüngliche Feldgruppe" -# @ acf -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "Feldgruppe gespeichert." +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Zuletzt aktualisiert: %s" -# @ acf -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "Feldgruppe übertragen." - -# @ acf -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "Feldgruppe geplant für." - -# @ acf -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "Entwurf der Feldgruppe aktualisiert." - -# @ acf -#: includes/admin/admin-field-group.php:171 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Der Feldname darf nicht mit \"field_\" beginnen" - -# @ acf -#: includes/admin/admin-field-group.php:172 -msgid "This field cannot be moved until its changes have been saved" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." msgstr "" -"Diese Feld kann erst verschoben werden, wenn die Änderungen gespeichert " -"wurden" +"Verzeihung, diese Feldgruppe steht für einen Diff-Vergleich nicht zur " +"Verfügung." -# @ acf -#: includes/admin/admin-field-group.php:173 -msgid "Field group title is required" -msgstr "Es ist ein Titel für die Feldgruppe erforderlich" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Ungültige Feldgruppen-ID." -# @ acf -#: includes/admin/admin-field-group.php:174 -msgid "Move to trash. Are you sure?" -msgstr "Wirklich in den Papierkorb verschieben?" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Ungültige(r) Feldgruppen-Parameter." -# @ acf -#: includes/admin/admin-field-group.php:175 -msgid "No toggle fields available" -msgstr "Es liegen keine Auswahl-Feldtypen vor" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Warten auf Speichern" -# @ acf -#: includes/admin/admin-field-group.php:176 -msgid "Move Custom Field" -msgstr "Individuelles Feld verschieben" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Gespeichert" -# @ acf -#: includes/admin/admin-field-group.php:177 -msgid "Checked" -msgstr "Ausgewählt" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importieren" -# @ acf -#: includes/admin/admin-field-group.php:179 -msgid "(this field)" -msgstr "(dieses Feld)" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Änderungen überprüfen" -# @ acf -#: includes/admin/admin-field-group.php:181 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3675 -msgid "or" -msgstr "oder" +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Befindet sich in: %s" -# @ acf -#: includes/admin/admin-field-group.php:182 -msgid "Null" -msgstr "Null" +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Befindet sich in Plugin: %s" -#: includes/admin/admin-field-group.php:185 -msgid "Has any value" -msgstr "Hat einen Wert" - -#: includes/admin/admin-field-group.php:186 -msgid "Has no value" -msgstr "Hat keinen Wert" - -# @ acf -#: includes/admin/admin-field-group.php:187 -msgid "Value is equal to" -msgstr "Wert ist gleich" - -# @ acf -#: includes/admin/admin-field-group.php:188 -msgid "Value is not equal to" -msgstr "Wert ist ungleich" - -# @ acf -#: includes/admin/admin-field-group.php:189 -msgid "Value matches pattern" -msgstr "Wert entspricht regulärem Ausdruck" - -#: includes/admin/admin-field-group.php:190 -msgid "Value contains" -msgstr "Wert enthält" - -# @ acf -#: includes/admin/admin-field-group.php:191 -msgid "Value is greater than" -msgstr "Wert ist größer als" - -# @ acf -#: includes/admin/admin-field-group.php:192 -msgid "Value is less than" -msgstr "Wert ist kleiner als" - -#: includes/admin/admin-field-group.php:193 -msgid "Selection is greater than" -msgstr "Auswahl ist größer als" - -# @ acf -#: includes/admin/admin-field-group.php:194 -msgid "Selection is less than" -msgstr "Auswahl ist kleiner als" - -# @ acf -#: includes/admin/admin-field-group.php:233 -#: includes/admin/admin-field-groups.php:261 -msgid "Location" -msgstr "Position" - -#: includes/admin/admin-field-group.php:234 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Einstellungen" - -#: includes/admin/admin-field-group.php:384 -msgid "Field Keys" -msgstr "Feldschlüssel" - -#: includes/admin/admin-field-group.php:414 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Aktiviert" - -#: includes/admin/admin-field-group.php:414 -msgid "Inactive" -msgstr "Inaktiv" - -# @ acf -#: includes/admin/admin-field-group.php:775 -msgid "Move Complete." -msgstr "Verschieben erfolgreich abgeschlossen." - -# @ acf -#: includes/admin/admin-field-group.php:776 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "Das Feld \"%s\" wurde in die %s Feldgruppe verschoben" - -# @ acf -#: includes/admin/admin-field-group.php:777 -msgid "Close Window" -msgstr "Schließen" - -# @ acf -#: includes/admin/admin-field-group.php:818 -msgid "Please select the destination for this field" -msgstr "In welche Feldgruppe solle dieses Feld verschoben werden" - -# @ acf -#: includes/admin/admin-field-group.php:825 -msgid "Move Field" -msgstr "Feld verschieben" - -#: includes/admin/admin-field-groups.php:114 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Veröffentlicht (%s)" -msgstr[1] "Veröffentlicht (%s)" - -#: includes/admin/admin-field-groups.php:193 -msgid "Review local JSON changes" -msgstr "Lokale JSON-Änderungen überprüfen" - -# @ acf -#: includes/admin/admin-field-groups.php:194 -msgid "Loading diff" -msgstr "Diff laden" - -# @ acf -#: includes/admin/admin-field-groups.php:195 -#: includes/admin/admin-field-groups.php:529 -msgid "Sync changes" -msgstr "Änderungen synchronisieren" - -# @ acf -#: includes/admin/admin-field-groups.php:259 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Description" -msgstr "Beschreibung" - -#: includes/admin/admin-field-groups.php:260 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Schlüssel" - -# @ acf -#: includes/admin/admin-field-groups.php:265 -msgid "Local JSON" -msgstr "Lokales JSON" - -#: includes/admin/admin-field-groups.php:415 -msgid "Various" -msgstr "Verschiedene" - -#: includes/admin/admin-field-groups.php:437 -#, php-format +#: includes/admin/admin-field-groups.php:463 msgid "Located in theme: %s" msgstr "Befindet sich in Theme: %s" #: includes/admin/admin-field-groups.php:441 -#, php-format -msgid "Located in plugin: %s" -msgstr "Befindet sich in Plugin: %s" +msgid "Various" +msgstr "Verschiedene" -# @ acf -#: includes/admin/admin-field-groups.php:445 -#, php-format -msgid "Located in: %s" -msgstr "Befindet sich in: %s" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Änderungen synchronisieren" -# @ acf -#: includes/admin/admin-field-groups.php:465 -#: includes/admin/admin-field-groups.php:683 -msgid "Sync available" -msgstr "Synchronisierung verfügbar" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Diff laden" -# @ acf -#: includes/admin/admin-field-groups.php:468 -msgid "Sync" -msgstr "Synchronisieren" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Lokale JSON-Änderungen überprüfen" -#: includes/admin/admin-field-groups.php:469 -msgid "Review changes" -msgstr "Änderungen überprüfen" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Website besuchen" -# @ acf -#: includes/admin/admin-field-groups.php:473 -msgid "Import" -msgstr "Importieren" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Details anzeigen" -#: includes/admin/admin-field-groups.php:477 -msgid "Saved" -msgstr "Gespeichert" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Version %s" -#: includes/admin/admin-field-groups.php:480 -msgid "Awaiting save" -msgstr "Warten auf Speichern" +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Information" -# @ acf -#: includes/admin/admin-field-groups.php:501 -msgid "Duplicate this item" -msgstr "Dieses Element duplizieren" - -# @ acf -#: includes/admin/admin-field-groups.php:501 -#: includes/admin/admin-field-groups.php:521 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Duplicate" -msgstr "Duplizieren" - -# @ acf -#: includes/admin/admin-field-groups.php:551 -#, php-format -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Feldgruppe dupliziert." -msgstr[1] "%s Feldgruppen dupliziert." - -# @ acf -#: includes/admin/admin-field-groups.php:608 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Field group synchronised." -msgstr[1] "%s Feldgruppen synchronisiert." - -# @ acf -#: includes/admin/admin-field-groups.php:790 -#, php-format -msgid "Select %s" -msgstr "%s auswählen" - -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Werkzeuge" - -# @ acf -#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 -#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Datenbank upgraden" - -# @ acf -#: includes/admin/admin-upgrade.php:199 -msgid "Review sites & upgrade" -msgstr "Übersicht Websites & Upgrades" - -# @ acf -#: includes/admin/admin.php:48 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "Individuelle Felder" - -#: includes/admin/admin.php:128 includes/admin/admin.php:130 -msgid "Overview" -msgstr "Übersicht" - -#: includes/admin/admin.php:131 +#: includes/admin/admin.php:160 msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra content fields, and an intuitive " -"API to display custom field values in any theme template file." +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." msgstr "" -"Das Advanced Custom Fields-Plugin stellt einen visuellen Baukasten für " -"Formulare zur Verfügung mit dessen Hilfe die Seiten der zu bearbeitenden " -"Inhalte um extra Inhalts-Felder erweitert werden können. Es bietet zudem ein " -"API um die Inhalte individueller Felder in den Template-Dateien von Themes " -"darzustellen." +"Helpdesk. Der professionelle Support " +"unseres Helpdesks wird dich bei tieferen technischen Herausforderungen " +"unterstützen." -#: includes/admin/admin.php:133 -#, php-format -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, empfehlen wir Dir zuerst einmal " -"unser Erste Schritte Handbuch " -"durchzulesen um Dich mit der Philosophie hinter dem Plugin und den " -"bewährtesten Praktiken vertraut zu machen." - -#: includes/admin/admin.php:136 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Bitte nutze das Hilfe & Support-Tab um Dich mit uns in Verbindung zu setzen " -"für den Fall, dass Du Hilfe benötigst." - -#: includes/admin/admin.php:145 includes/admin/admin.php:147 -msgid "Help & Support" -msgstr "Hilfe & Support" - -#: includes/admin/admin.php:148 -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 sind geradezu fanatisch im Bezug auf Support und wollen, dass Du das " -"beste aus deiner Website mit ACF herausholst. Solltest Du auf Probleme " -"stossen gibt es mehrere Stellen an denen Du Hilfe finden kannst:" - -#: includes/admin/admin.php:151 -#, php-format -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Dokumentation. Unsere umfangreiche " -"Dokumentation enthält Referenzen und Anleitungen zu den meisten Situation in " -"die Du geraten könntest." - -#: includes/admin/admin.php:155 -#, php-format +#: includes/admin/admin.php:156 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 in unseren " -"Foren eine aktive und freundliche Community, die Dir vielleicht behilflich " -"sein kann dich in der ACF-Welt zurechtzufinden." +"Diskussionen. Wir haben eine aktive und " +"freundliche Community in unseren Community-Foren, die dir möglicherweise " +"dabei helfen kann, die „How-tos“ in der ACF-Welt näher zu bringen." -#: includes/admin/admin.php:159 -#, php-format +#: includes/admin/admin.php:152 msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." msgstr "" -"Help Desk. Die Support-Experten unseres " -"Help Desks werden Dir bei tiefer gehenden technischen Herausforderungen " -"helfend zur Seite stehen." +"Dokumentation. Unsere umfassende " +"Dokumentation beinhaltet Referenzen und Leitfäden für die meisten " +"Situationen, die dir begegnen." -# @ acf -#: includes/admin/admin.php:168 -msgid "Information" -msgstr "Information" +#: includes/admin/admin.php:149 +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:" -# @ acf -#: includes/admin/admin.php:169 -#, php-format -msgid "Version %s" -msgstr "Version %s" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Hilfe und Support" -# @ acf -#: includes/admin/admin.php:170 -msgid "View details" -msgstr "Details anzeigen" +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" +"Bitte benutze den Tab „Hilfe und Support“, um uns zu kontaktieren, wenn du " +"Hilfe benötigst." -#: includes/admin/admin.php:171 -msgid "Visit website" -msgstr "Website besuchen" +#: includes/admin/admin.php:134 +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, empfehlen wir dir, unseren " +"Leitfaden Erste Schritte zu lesen, um " +"dich mit der Philosophie des Plugins und seinen Best Practices vertraut zu " +"machen. " -# @ acf -#: includes/admin/admin.php:200 -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 +#: includes/admin/admin.php:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Fehler beim Laden des Felds." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +msgid "Location not found: %s" +msgstr "Position 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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s Wert ist erforderlich" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Dieses Feld anzeigen, falls" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Bedingte Logik" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "und" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Feldgruppen exportieren" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Lokales JSON" -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "PHP erstellen" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Klon-Feld" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Keine Feldgruppen ausgewählt" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Eine Feldgruppe wurde exportiert." -msgstr[1] "%s Feldgruppen wurden exportiert." - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Feldgruppen auswählen" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:336 +#: includes/admin/views/html-notice-upgrade.php:31 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Please also check all premium add-ons (%s) are updated to the latest version." msgstr "" -"Entscheide welche Feldgruppen Du exportieren möchtest und wähle dann das " -"Exportformat. Benutze den \"Datei exportieren\"-Button, um eine JSON-Datei " -"zu generieren, welche Du im Anschluss in eine andere ACF-Installation " -"importieren kannst. Verwende den \"PHP erstellen“-Button, um den " -"resultierenden PHP-Code in dein Theme einfügen zu können." +"Stelle bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) auf die " +"neueste Version aktualisiert wurden." -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "Datei exportieren" +#: includes/admin/views/html-notice-upgrade.php:29 +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." -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:414 +#: includes/admin/views/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Ein Upgrade der Datenbank ist erforderlich" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Optionen-Seite" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galerie" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexible Content" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Wiederholung" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Zurück zur Werkzeugübersicht" + +#: includes/admin/views/field-group-options.php:161 +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 Nummer in " +"der Reihe)" + +#: includes/admin/views/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Wähle die Elemente, welche in der Bearbeitungsansicht verborgen werden sollen." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Auf dem Bildschirm ausblenden" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Trackbacks senden" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Schlagwörter" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Kategorien" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Seiten-Attribute" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Titelform" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisionen" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Kommentare" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Diskussion" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Textauszug" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Inhalts-Editor" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "In der Feldgruppen-Liste angezeigt" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Feldgruppen niedrigerer Ordnung werden zuerst angezeigt" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Sortierungs-Nr." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Unterhalb der Felder" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Unterhalb der Beschriftungen" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Platzierung der Anweisungen" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Platzierung der Beschriftung" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Seite" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (nach Inhalt)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Nach dem Titel vor dem Inhalt" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Position" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Nahtlos (keine Metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (WP-Metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Stil" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Typ" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Schlüssel" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Reihenfolge" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Feld schließen" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "ID" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "Klasse" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "Breite" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Wrapper-Attribute" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "" +"Anweisungen für Autoren. Sie werden angezeigt, wenn Daten übermittelt werden" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Anweisungen" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Feldtyp" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "" +"Einzelnes Wort ohne Leerzeichen. Es sind nur Unter- und Bindestriche als " +"Sonderzeichen erlaubt" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Feldname" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Feldbeschriftung" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Löschen" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Feld löschen" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Verschieben" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Feld in eine andere Gruppe verschieben" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Feld duplizieren" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Feld bearbeiten" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Ziehen zum Sortieren" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Diese Feldgruppe anzeigen, falls" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Keine Aktualisierungen verfügbar." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "" +"Datenbank-Upgrade abgeschlossen. Schau nach was es Neues " +"gibt" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Aufgaben für das Upgrade einlesen…" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Upgrade fehlgeschlagen." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Upgrade abgeschlossen." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Upgrade der Daten auf Version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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, deine Datenbank vor dem Fortfahren zu sichern. " +"Bist du sicher, dass du jetzt die Aktualisierung starten möchtest?" + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Bitte zumindest eine Website zum Upgrade auswählen." + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Upgrade der Datenbank fertiggestellt. Zurück zum Netzwerk-" +"Dashboard" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Die Website ist aktuell" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "Website erfordert ein Upgrade der Datenbank von %1$s to %2$s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Website" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Upgrade von Websites" + +#: includes/admin/views/html-admin-page-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. Wähle die aus, die du " +"aktualisieren willst und klicke dann auf %s." + +#: includes/admin/views/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Regelgruppe hinzufügen" + +#: includes/admin/views/field-group-locations.php:10 +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Erstelle Regelsätze, um zu bestimmen, welche Bearbeitungs-Bildschirme diese " +"„advanced custom fields“ benutzen werden" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Regeln" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Kopiert" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "In die Zwischenablage kopieren" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -705,2527 +1140,2005 @@ msgid "" msgstr "" "Der nachfolgende Code kann dazu verwendet werden eine lokale Version der " "ausgewählten Feldgruppe(n) zu registrieren. Eine lokale Feldgruppe bietet " -"viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische " -"Felder und Einstellungen. Kopiere einfach folgenden Code und füge ihn in die " -"functions.php oder eine externe Datei in Deinem Theme ein." +"viele Vorteile: schnellere Ladezeiten, Versionskontrolle sowie dynamische " +"Felder und Einstellungen. Kopiere einfach den folgenden Code und füge ihn in " +"die functions.php deines Themes oder eine externe Datei ein." -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "In die Zwischenablage kopieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Kopiert" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Feldgruppen importieren" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:47 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." +"Select the field groups 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 die Advanced Custom Fields JSON-Datei aus, welche Du importieren " -"möchtest. Nach dem Klicken des „Datei importieren“-Buttons wird ACF die " -"Feldgruppen hinzufügen." -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Datei auswählen" +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Feldgruppen auswählen" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:62 -msgid "Import File" -msgstr "Datei importieren" +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Eine Feldgruppe wurde exportiert." +msgstr[1] "%s Feldgruppen wurden exportiert." -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:169 -msgid "No file selected" -msgstr "Keine Datei ausgewählt" +#: 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 "Keine Feldgruppen ausgewählt" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -msgid "Error uploading file. Please try again" -msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen" +#: includes/admin/tools/class-acf-admin-tool-export.php:39 +#: includes/admin/tools/class-acf-admin-tool-export.php:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "PHP erstellen" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "Falscher Dateityp" +#: includes/admin/tools/class-acf-admin-tool-export.php:35 +msgid "Export Field Groups" +msgstr "Feldgruppen exportieren" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:107 -msgid "Import file empty" -msgstr "Die importierte Datei ist leer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format +#: includes/admin/tools/class-acf-admin-tool-import.php:147 msgid "Imported 1 field group" msgid_plural "Imported %s field groups" msgstr[0] "Eine Feldgruppe importiert" msgstr[1] "%s Feldgruppen importiert" -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Bedingungen für die Anzeige" +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Die importierte Datei ist leer" -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Zeige dieses Feld, wenn" +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Dateityp inkorrekt" -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Regelgruppe hinzufügen" +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen" -# @ acf -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "Ziehen zum Sortieren" +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" -# @ acf -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Feld bearbeiten" +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Feldgruppen importieren" -# @ acf -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:151 -#: includes/fields/class-acf-field-image.php:131 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:337 -msgid "Edit" -msgstr "Bearbeiten" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Synchronisieren" -# @ acf -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Feld duplizieren" +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "%s auswählen" -# @ acf -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Feld in eine andere Gruppe verschieben" - -# @ acf -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Verschieben" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Feld löschen" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Delete" -msgstr "Löschen" - -# @ acf -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Feldbeschriftung" - -# @ acf +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 #: includes/admin/views/field-group-field.php:66 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dieser Name wird in der Bearbeitungsansicht eines Beitrags angezeigt" +msgid "Duplicate" +msgstr "Duplizieren" -# @ acf -#: includes/admin/views/field-group-field.php:75 -msgid "Field Name" -msgstr "Feldname" +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Dieses Element duplizieren" -# @ acf -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" -"Einzelnes Wort ohne Leerzeichen. Es sind nur Unter- und Bindestriche als " -"Sonderzeichen erlaubt" +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Beschreibung" -# @ acf -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Feldtyp" +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synchronisierung verfügbar" -# @ acf -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Anweisungen" +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Feldgruppe synchronisiert." +msgstr[1] "%s Feldgruppen synchronisiert." -# @ acf -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Anweisungen für die Autoren. Sie werden in der Bearbeitungsansicht angezeigt" +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Feldgruppe dupliziert." +msgstr[1] "%s Feldgruppen dupliziert." -# @ acf -#: includes/admin/views/field-group-field.php:106 -msgid "Required?" -msgstr "Erforderlich?" +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktiv (%s)" +msgstr[1] "Aktiv (%s)" -# @ acf -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Wrapper-Attribute" +#: includes/admin/admin-upgrade.php:237 +msgid "Review sites & upgrade" +msgstr "Websites prüfen und Upgrade" -# @ acf -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "Breite" +#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 +#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Upgrade der Datenbank" -# @ acf -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "Klasse" +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Individuelle Felder" -# @ acf -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "ID" +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Feld verschieben" -# @ acf -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Feld schließen" +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Bitte das Ziel für dieses Feld auswählen" -# @ acf -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Reihenfolge" +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Fenster schließen" -# @ acf -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:583 -msgid "Label" -msgstr "Beschriftung" +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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" -# @ acf -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:936 -#: pro/fields/class-acf-field-flexible-content.php:597 -msgid "Name" -msgstr "Name" +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Verschieben erfolgreich abgeschlossen." -# @ acf -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Typ" +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Aktiv" -# @ acf -#: includes/admin/views/field-group-fields.php:14 -msgid "" -"No fields. Click the + Add Field button to create your " -"first field." -msgstr "" -"Es sind noch keine Felder angelegt. Klicke den + Feld hinzufügen-" -"Button und erstelle Dein erstes Feld." +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Feldschlüssel" -# @ acf -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Feld hinzufügen" +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Einstellungen" -# @ acf -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Regeln" - -# @ acf -#: includes/admin/views/field-group-locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Erstelle ein Regelwerk das festlegt welche Bearbeitungsansichten diese " -"Advanced Custom Fields nutzen" - -# @ acf -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Stil" - -# @ acf -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "WP-Metabox (Standard)" - -# @ acf -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Übergangslos ohne Metabox" - -# @ acf -#: includes/admin/views/field-group-options.php:38 -msgid "Position" +#: includes/admin/admin-field-groups.php:286 +msgid "Location" msgstr "Position" -# @ acf -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Nach dem Titel vor dem Inhalt" +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" -# @ acf -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Nach dem Inhalt" +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "Kopie" -# @ acf -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Seitlich neben dem Inhalt" +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(dieses Feld)" -# @ acf -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Platzierung der Beschriftung" +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Ausgewählt" -# @ acf -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Über dem Feld" +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Individuelles Feld verschieben" -# @ acf -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Links neben dem Feld" +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Es liegen keine Auswahl-Feldtypen vor" -# @ acf -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Platzierung der Anweisungen" +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Feldgruppen-Titel ist erforderlich" -# @ acf -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Unterhalb der Beschriftungen" - -# @ acf -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Unterhalb der Felder" - -# @ acf -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Reihenfolge" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "Feldgruppen mit einem niedrigeren Wert werden zuerst angezeigt" - -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "In der Feldgruppen-Liste anzeigen" - -# @ acf -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Permalink" - -# @ acf -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Inhalts-Editor" - -# @ acf -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Textauszug" - -# @ acf -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Diskussion" - -# @ acf -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Revisionen" - -# @ acf -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Titelform" - -# @ acf -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Autor" - -# @ acf -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Format" - -# @ acf -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Seiten-Attribute" - -# @ acf -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Featured Image" -msgstr "Beitragsbild" - -# @ acf -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Kategorien" - -# @ acf -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Schlagwörter" - -# @ acf -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Sende Trackbacks" - -# @ acf -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Verstecken" - -# @ acf -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" msgstr "" -"Wähle die Elemente, welche in der Bearbeitungsansicht " -"verborgen werden sollen." +"Diese Feld kann erst verschoben werden, wenn die Änderungen gespeichert " +"wurden" -# @ acf -#: includes/admin/views/field-group-options.php:129 -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 Nummer in " -"der Reihe)" +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "Der Feldname darf nicht mit „field_“ beginnen" -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#, php-format -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 willst und klicke dann %s." +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Entwurf der Feldgruppe aktualisiert." -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Websites upgraden" +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Feldgruppe geplant." -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Website" +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Feldgruppe übertragen." -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:74 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s" +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Feldgruppe gespeichert." -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "Die Website ist aktuell" +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Feldgruppe veröffentlicht." -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Upgrade der Datenbank fertiggestellt. Zum Netzwerk Dashboard" +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Feldgruppe gelöscht." -#: includes/admin/views/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Bitte zumindest eine Website zum Upgrade auswählen." - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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 jetzt die Aktualisierung durchführen " -"willst?" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Daten auf Version %s upgraden" - -# @ default -#: includes/admin/views/html-admin-page-upgrade-network.php:158 -msgid "Upgrade complete." -msgstr "Upgrade abgeschlossen." - -#: includes/admin/views/html-admin-page-upgrade-network.php:161 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade fehlgeschlagen." - -# @ acf -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Aufgaben für das Upgrade einlesen…" - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "" -"Datenbank-Upgrade abgeschlossen. Schau nach was es Neues " -"gibt" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "Keine Aktualisierungen verfügbar." +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Feldgruppe aktualisiert." +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 #: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Zurück zur Werkzeugübersicht" +msgid "Tools" +msgstr "Werkzeuge" -# @ acf -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Zeige diese Felder, wenn" +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "ist ungleich" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Wiederholung" +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "ist gleich" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Flexible Inhalte" +#: includes/locations.php:102 +msgid "Forms" +msgstr "Formulare" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galerie" +#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Seite" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:20 -msgid "Options Page" -msgstr "Options-Seite" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Beitrag" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Es ist ein Upgrade der Datenbank erforderlich" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:22 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Danke für die Aktualisierung auf %s v%s!" - -#: includes/admin/views/html-notice-upgrade.php:22 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Die vorliegende Version enthält Verbesserungen für deine Datenbank und " -"erfordert ein Upgrade." - -#: includes/admin/views/html-notice-upgrade.php:24 -#, php-format -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." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:34 -msgid "Invalid field group parameter(s)." -msgstr "Ungültige(r) Feldgruppen-Parameter." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:41 -msgid "Invalid field group ID." -msgstr "Ungültige Feldgruppen-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:51 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "" -"Verzeihung, diese Feldgruppe steht für einen Diff-Vergleich nicht zur " -"Verfügung." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:57 -#, php-format -msgid "Last updated: %s" -msgstr "Zuletzt aktualisiert: %s" - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:62 -msgid "Original field group" -msgstr "Ursprüngliche Feldgruppe" - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:66 -msgid "JSON field group (newer)" -msgstr "JSON-Feldgruppe (neuer)" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ungültiger Nonce." - -# @ acf -#: includes/api/api-helpers.php:844 -msgid "Thumbnail" -msgstr "Vorschaubild" - -# @ acf -#: includes/api/api-helpers.php:845 -msgid "Medium" -msgstr "Mittel" - -# @ acf -#: includes/api/api-helpers.php:846 -msgid "Large" -msgstr "Groß" - -# @ acf -#: includes/api/api-helpers.php:895 -msgid "Full Size" -msgstr "Volle Größe" - -# @ acf -#: includes/api/api-helpers.php:1632 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(ohne Titel)" - -# @ acf -#: includes/api/api-helpers.php:3596 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "Die Breite des Bildes muss mindestens %dpx sein." - -# @ acf -#: includes/api/api-helpers.php:3601 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." - -# @ acf -#: includes/api/api-helpers.php:3617 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "Die Höhe des Bildes muss mindestens %dpx sein." - -# @ acf -#: includes/api/api-helpers.php:3622 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." - -# @ acf -#: includes/api/api-helpers.php:3640 -#, php-format -msgid "File size must be at least %s." -msgstr "Die Dateigröße muss mindestens %s sein." - -# @ acf -#: includes/api/api-helpers.php:3645 -#, php-format -msgid "File size must not exceed %s." -msgstr "Die Dateigröße darf nicht größer als %s sein." - -# @ acf -#: includes/api/api-helpers.php:3679 -#, php-format -msgid "File type must be %s." -msgstr "Der Dateityp muss %s sein." - -# @ acf -#: includes/assets.php:343 -msgid "Are you sure?" -msgstr "Wirklich entfernen?" - -# @ acf -#: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Ja" - -# @ acf -#: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "Nein" - -# @ acf -#: includes/assets.php:346 includes/fields/class-acf-field-file.php:153 -#: includes/fields/class-acf-field-image.php:133 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:338 -#: pro/fields/class-acf-field-gallery.php:478 -msgid "Remove" -msgstr "Entfernen" - -#: includes/assets.php:347 -msgid "Cancel" -msgstr "Abbrechen" - -# @ acf -#: includes/assets.php:355 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen wird" - -# @ acf -#: includes/assets.php:358 -msgid "Validation successful" -msgstr "Überprüfung erfolgreich" - -# @ acf -#: includes/assets.php:359 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Überprüfung fehlgeschlagen" - -# @ acf -#: includes/assets.php:360 -msgid "1 field requires attention" -msgstr "Für 1 Feld ist eine Aktualisierung notwendig" - -# @ acf -#: includes/assets.php:361 -#, php-format -msgid "%d fields require attention" -msgstr "Für %d Felder ist eine Aktualisierung notwendig" - -# @ acf -#: includes/assets.php:364 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Feldgruppe bearbeiten" - -# @ acf -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Feldtyp existiert nicht" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Unbekannt" - -# @ acf -#: includes/fields.php:349 -msgid "Basic" -msgstr "Grundlage" - -# @ acf -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Inhalt" - -# @ acf -#: includes/fields.php:351 -msgid "Choice" -msgstr "Auswahl" - -# @ acf -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relational" - -# @ acf -#: includes/fields.php:353 +#: includes/fields.php:358 msgid "jQuery" msgstr "jQuery" -# @ acf -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:554 -#: pro/fields/class-acf-field-flexible-content.php:603 -#: pro/fields/class-acf-field-repeater.php:449 -msgid "Layout" -msgstr "Layout" +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relational" -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Akkordeon" +#: includes/fields.php:356 +msgid "Choice" +msgstr "Auswahl" -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Geöffnet" +#: includes/fields.php:354 +msgid "Basic" +msgstr "Allgemein" -#: includes/fields/class-acf-field-accordion.php:100 -msgid "Display this accordion as open on page load." -msgstr "Dieses Akkordeon beim Laden der Seite als geöffnet anzeigen." +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Unbekannt" -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "Gleichzeitig geöffnet" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Feldtyp existiert nicht" -#: includes/fields/class-acf-field-accordion.php:110 -msgid "Allow this accordion to open without closing others." -msgstr "Erlaubt dieses Akkordeon zu öffnen ohne andere zu schließen." +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Spam entdeckt" -#: includes/fields/class-acf-field-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Endpunkt" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Beitrag aktualisiert" -#: includes/fields/class-acf-field-accordion.php:120 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." +#: includes/forms/form-front.php:106 +msgid "Update" +msgstr "Aktualisieren" + +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "E-Mail bestätigen" + +#: includes/fields.php:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Inhalt" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Titel" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Feldgruppe bearbeiten" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Auswahl ist kleiner als" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Auswahl ist größer als" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Wert ist kleiner als" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Wert ist größer als" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Wert enthält" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Wert entspricht regulärem Ausdruck" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "Wert ist gleich" + +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Hat keinen Wert" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Hat einen Wert" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Abbrechen" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Bist du sicher?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d Felder erfordern Aufmerksamkeit" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 Feld erfordert Aufmerksamkeit" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Überprüfung fehlgeschlagen" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Überprüfung erfolgreich" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Eingeschränkt" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Details ausblenden" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Details einblenden" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Zu diesem Beitrag hochgeladen" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Aktualisieren" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Bearbeiten" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +msgid "The changes you made will be lost if you navigate away from this page" msgstr "" -"Definiert einen Endpunkt an dem das vorangegangene Akkordeon endet. Dieses " -"abschließende Akkordeon wird nicht sichtbar sein." +"Die vorgenommenen Änderungen gehen verloren, wenn diese Seite verlassen wird" -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button-Gruppe" +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "Der Dateityp muss %s sein." -# @ acf -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Auswahlmöglichkeiten" +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "oder" -# @ acf -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Jede Auswahlmöglichkeit in eine neue Zeile eingeben." +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Die Dateigröße darf nicht größer als %s sein." -# @ acf -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "For more control, you may specify both a value and label like this:" +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "Die Dateigröße muss mindestens %s sein." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Die Höhe des Bildes muss mindestens %dpx sein." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Die Breite des Bildes muss mindestens %dpx sein." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(ohne Titel)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Volle Größe" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Groß" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mittel" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Vorschaubild" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(keine Beschriftung)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Einstellung der Höhe des Textbereichs" + +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "Zeilen" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Textfeld" + +#: includes/fields/class-acf-field-checkbox.php:447 +msgid "Prepend an extra checkbox to toggle all choices" msgstr "" -"Für mehr Kontrolle, kannst Du sowohl einen Wert als auch eine Beschriftung " -"wie folgt angeben:" +"Hängt ein zusätzliches Auswahlkästchen an, mit der alle Auswahlmöglichkeiten " +"umgeschaltet werden können" -# @ acf -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "rot : Rot" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:506 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:781 -#: includes/fields/class-acf-field-user.php:63 -msgid "Allow Null?" -msgstr "NULL-Werte zulassen?" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:155 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:366 -msgid "Default Value" -msgstr "Standardwert" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:156 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:367 -msgid "Appears when creating a new post" -msgstr "Erscheint bei der Erstellung eines neuen Beitrags" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Horizontal" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Vertikal" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:214 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:826 -msgid "Return Value" -msgstr "Rückgabewert" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -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:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Wert" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "Beide (Array)" - -# @ acf -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:768 -msgid "Checkbox" -msgstr "Checkbox" - -# @ acf -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Alle auswählen" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Neue Auswahlmöglichkeit hinzufügen" - -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Individuelle Werte erlauben" - -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Erlaubt das Hinzufügen individueller Werte" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Individuelle Werte speichern" - -#: includes/fields/class-acf-field-checkbox.php:369 +#: includes/fields/class-acf-field-checkbox.php:409 msgid "Save 'custom' values to the field's choices" msgstr "Individuelle Werte unter den Auswahlmöglichkeiten des Feldes speichern" -# @ acf -#: includes/fields/class-acf-field-checkbox.php:381 -#: includes/fields/class-acf-field-select.php:374 -msgid "Enter each default value on a new line" -msgstr "Jeden Standardwert in einer neuen Zeile eingeben" +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "Das Hinzufügen individueller Werte erlauben" -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" -msgstr "Alle Auswählen" +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Neue Auswahlmöglichkeit hinzufügen" -#: includes/fields/class-acf-field-checkbox.php:404 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Hängt eine zusätzliche Checkbox an mit der alle Optionen ausgewählt werden " -"können" +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Alle umschalten" -# @ acf -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Farbauswahl" +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Archiv-URLs erlauben" -# @ acf -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Leeren" +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Archive" -# @ acf -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Standard" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Farbe auswählen" - -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Current Color" -msgstr "Aktuelle Farbe" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumsauswahl" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Heute" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Nächstes" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorheriges" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "W" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Darstellungsformat" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -msgid "The format displayed when editing a post" -msgstr "Das Format für die Anzeige in der Bearbeitungsansicht" - -#: includes/fields/class-acf-field-date_picker.php:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Individuelles Format:" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "Speicherformat" - -#: includes/fields/class-acf-field-date_picker.php:198 -msgid "The format used when saving a value" -msgstr "Das Format das beim Speichern eines Wertes verwendet wird" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:194 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:628 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:79 -#: pro/fields/class-acf-field-gallery.php:557 -msgid "Return Format" -msgstr "Rückgabeformat" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "Das Format für die Ausgabe in den Template-Funktionen" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "Die Woche beginnt am" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datums- und Zeitauswahl" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zeit auswählen" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Zeit" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Stunde" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zeitzone" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Jetzt" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -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 amText" -msgid "AM" -msgstr "Vorm." - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "Vorm." - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "Nachm." - -#: includes/fields/class-acf-field-date_time_picker.php:85 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "Nachm." - -# @ acf -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-Mail" - -# @ acf -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Platzhaltertext" - -# @ acf -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Platzhaltertext solange keine Eingabe im Feld vorgenommen wurde" - -# @ acf -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Voranstellen" - -# @ acf -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Wird dem Eingabefeld vorangestellt" - -# @ acf -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:203 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Anhängen" - -# @ acf -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:204 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Wird dem Eingabefeld hinten angestellt" - -# @ acf -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Datei" - -# @ acf -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Datei bearbeiten" - -# @ acf -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Datei aktualisieren" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Dateiname" - -# @ acf -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:247 -#: includes/fields/class-acf-field-file.php:258 -#: includes/fields/class-acf-field-image.php:254 -#: includes/fields/class-acf-field-image.php:283 -#: pro/fields/class-acf-field-gallery.php:642 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "File size" -msgstr "Dateigröße" - -# @ acf -#: includes/fields/class-acf-field-file.php:169 -msgid "Add File" -msgstr "Datei hinzufügen" - -# @ acf -#: includes/fields/class-acf-field-file.php:220 -msgid "File Array" -msgstr "Datei-Array" - -# @ acf -#: includes/fields/class-acf-field-file.php:221 -msgid "File URL" -msgstr "Datei-URL" - -# @ acf -#: includes/fields/class-acf-field-file.php:222 -msgid "File ID" -msgstr "Datei-ID" - -# @ acf -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:592 -msgid "Library" -msgstr "Mediathek" - -# @ acf -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:593 -msgid "Limit the media library choice" -msgstr "Beschränkt die Auswahl in der Mediathek" - -# @ acf -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:225 -#: includes/locations/class-acf-location-attachment.php:71 -#: includes/locations/class-acf-location-comment.php:59 -#: includes/locations/class-acf-location-nav-menu.php:72 -#: includes/locations/class-acf-location-taxonomy.php:61 -#: includes/locations/class-acf-location-user-form.php:65 -#: includes/locations/class-acf-location-user-role.php:76 -#: includes/locations/class-acf-location-widget.php:63 -#: pro/fields/class-acf-field-gallery.php:598 -#: pro/locations/class-acf-location-block.php:64 -msgid "All" -msgstr "Alle" - -# @ acf -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:226 -#: pro/fields/class-acf-field-gallery.php:599 -msgid "Uploaded to post" -msgstr "Für den Beitrag hochgeladen" - -# @ acf -#: includes/fields/class-acf-field-file.php:243 -#: includes/fields/class-acf-field-image.php:233 -#: pro/fields/class-acf-field-gallery.php:621 -msgid "Minimum" -msgstr "Minimum" - -# @ acf -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "Beschränkt welche Dateien hochgeladen werden können" - -# @ acf -#: includes/fields/class-acf-field-file.php:254 -#: includes/fields/class-acf-field-image.php:262 -#: pro/fields/class-acf-field-gallery.php:650 -msgid "Maximum" -msgstr "Maximum" - -# @ acf -#: includes/fields/class-acf-field-file.php:265 -#: includes/fields/class-acf-field-image.php:291 -#: pro/fields/class-acf-field-gallery.php:678 -msgid "Allowed file types" -msgstr "Erlaubte Dateiformate" - -# @ acf -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:292 -#: pro/fields/class-acf-field-gallery.php:679 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Eine durch Komma getrennte Liste. Leer lassen um alle Dateiformate zu " -"erlauben" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Maps" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:59 -msgid "Sorry, this browser does not support geolocation" -msgstr "Dieser Browser unterstützt keine Geo-Lokation" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:146 -#: includes/fields/class-acf-field-relationship.php:587 -msgid "Search" -msgstr "Suchen" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Position löschen" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Aktuelle Position finden" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Nach der Adresse suchen..." - -# @ acf -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Mittelpunkt" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Mittelpunkt der Ausgangskarte" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Zoom" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Legt die anfängliche Zoomstufe der Karte fest" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:633 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Height" -msgstr "Höhe" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Passt die Höhe der Karte an" - -# @ acf -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Gruppe" - -# @ acf -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:385 -msgid "Sub Fields" -msgstr "Unterfelder" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "Gibt die Art an wie die ausgewählten Felder ausgegeben werden sollen" - -# @ acf -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:615 -#: pro/fields/class-acf-field-repeater.php:457 -#: pro/locations/class-acf-location-block.php:20 -msgid "Block" -msgstr "Block" - -# @ acf -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:456 -msgid "Table" -msgstr "Tabelle" - -# @ acf -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:616 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Row" -msgstr "Reihe" - -# @ acf -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Bild" - -# @ acf -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Bild auswählen" - -# @ acf -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Bild bearbeiten" - -# @ acf -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Bild aktualisieren" - -# @ acf -#: includes/fields/class-acf-field-image.php:66 includes/media.php:61 -msgid "All images" -msgstr "Alle Bilder" - -# @ acf -#: includes/fields/class-acf-field-image.php:148 -msgid "No image selected" -msgstr "Kein Bild ausgewählt" - -# @ acf -#: includes/fields/class-acf-field-image.php:148 -msgid "Add Image" -msgstr "Bild hinzufügen" - -# @ acf -#: includes/fields/class-acf-field-image.php:200 -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image Array" -msgstr "Bild-Array" - -# @ acf -#: includes/fields/class-acf-field-image.php:201 -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image URL" -msgstr "Bild-URL" - -# @ acf -#: includes/fields/class-acf-field-image.php:202 -#: pro/fields/class-acf-field-gallery.php:565 -msgid "Image ID" -msgstr "Bild-ID" - -# @ acf -#: includes/fields/class-acf-field-image.php:209 -#: pro/fields/class-acf-field-gallery.php:571 -msgid "Preview Size" -msgstr "Maße der Vorschau" - -# @ acf -#: includes/fields/class-acf-field-image.php:234 -#: includes/fields/class-acf-field-image.php:263 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Restrict which images can be uploaded" -msgstr "Beschränkt welche Bilder hochgeladen werden können" - -# @ acf -#: includes/fields/class-acf-field-image.php:237 -#: includes/fields/class-acf-field-image.php:266 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:625 -#: pro/fields/class-acf-field-gallery.php:654 -msgid "Width" -msgstr "Breite" - -# @ acf -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -# @ acf -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Link auswählen" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "In einem neuen Fenster/Tab öffnen" - -# @ acf -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Link-Array" - -# @ acf -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "Link-URL" - -# @ acf -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Mitteilung" - -# @ acf -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Neue Zeilen" - -# @ acf -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Legt fest wie Zeilenumbrüche gerendert werden" - -# @ acf -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Automatisches hinzufügen von Absätzen" - -# @ acf -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Automatisches hinzufügen von <br>" - -# @ acf -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Keine Formatierung" - -# @ acf -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -# @ acf -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Erlaubt HTML-Markup als sichtbaren Text anzuzeigen anstelle diesen zu rendern" - -# @ acf -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Numerisch" - -# @ acf -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:164 -msgid "Minimum Value" -msgstr "Mindestwert" - -# @ acf -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:174 -msgid "Maximum Value" -msgstr "Maximalwert" - -# @ acf -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:184 -msgid "Step Size" -msgstr "Schrittweite" - -# @ acf -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Wert muss eine Zahl sein" - -# @ acf -#: includes/fields/class-acf-field-number.php:237 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "Wert muss größer oder gleich %d sein" - -# @ acf -#: includes/fields/class-acf-field-number.php:245 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "Wert muss kleiner oder gleich %d sein" - -# @ acf -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -# @ acf -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "URL eingeben" - -# @ acf -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Maße" - -# @ acf #: includes/fields/class-acf-field-page_link.php:25 msgid "Page Link" msgstr "Seiten-Link" -# @ acf -#: includes/fields/class-acf-field-page_link.php:170 -msgid "Archives" -msgstr "Archive" +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Hinzufügen" -#: includes/fields/class-acf-field-page_link.php:262 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:958 -msgid "Parent" -msgstr "Übergeordnet" +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Name" -# @ acf -#: includes/fields/class-acf-field-page_link.php:478 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:554 -msgid "Filter by Post Type" -msgstr "Nach Inhaltstyp filtern" +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s hinzugefügt" -# @ acf -#: includes/fields/class-acf-field-page_link.php:486 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:562 -msgid "All post types" -msgstr "Alle Inhaltstypen" +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ist bereits vorhanden" -# @ acf -#: includes/fields/class-acf-field-page_link.php:492 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "Filter by Taxonomy" -msgstr "Nach Taxonomien filtern" +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Der Benutzer kann keine neue %s hinzufügen" -# @ acf -#: includes/fields/class-acf-field-page_link.php:500 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:576 -msgid "All taxonomies" -msgstr "Alle Taxonomien" +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Begriffs-ID" -#: includes/fields/class-acf-field-page_link.php:516 -msgid "Allow Archives URLs" -msgstr "Archiv-URL's zulassen" +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Begriffs-Objekt" -# @ acf -#: includes/fields/class-acf-field-page_link.php:526 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:71 -msgid "Select multiple values?" -msgstr "Mehrere Werte auswählbar?" +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Den Wert aus den Begriffen des Beitrags laden" -# @ acf -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Passwort" +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Begriffe laden" -# @ acf -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:633 -msgid "Post Object" -msgstr "Beitrags-Objekt" +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Verbindet die ausgewählten Begriffe mit dem Beitrag" -# @ acf -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:634 -msgid "Post ID" -msgstr "Beitrags-ID" +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Begriffe speichern" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Begriffe erstellen" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radiobuttons" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Einzelwert" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Mehrfachauswahl" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Auswahlkästchen" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Mehrere Werte" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Wähle die Darstellung für dieses Feld" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Design" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Wähle die Taxonomie, welche angezeigt werden soll" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +msgid "Value must be equal to or lower than %d" +msgstr "Wert muss kleiner oder gleich %d sein" + +#: includes/fields/class-acf-field-number.php:256 +msgid "Value must be equal to or higher than %d" +msgstr "Wert muss größer oder gleich %d sein" + +#: includes/fields/class-acf-field-number.php:241 +msgid "Value must be a number" +msgstr "Wert muss eine Zahl sein" + +#: includes/fields/class-acf-field-number.php:25 +msgid "Number" +msgstr "Numerisch" + +#: includes/fields/class-acf-field-radio.php:261 +msgid "Save 'other' values to the field's choices" +msgstr "‚Weitere‘ Werte bei den Auswahlmöglichkeiten des Feldes speichern" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "" +"Das Hinzufügen der Auswahlmöglichkeit ‚Weitere‘ erlaubt individuelle Werte" -# @ acf #: includes/fields/class-acf-field-radio.php:25 msgid "Radio Button" msgstr "Radio-Button" -# @ acf -#: includes/fields/class-acf-field-radio.php:254 -msgid "Other" -msgstr "Weitere" - -# @ acf -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" +#: includes/fields/class-acf-field-accordion.php:105 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." msgstr "" -"Das Hinzufügen der Auswahlmöglichkeit 'Weitere‘ erlaubt benutzerdefinierte " -"Werte" +"Definiert einen Endpunkt, an dem das vorangegangene Akkordeon endet. Dieses " +"abschließende Akkordeon wird nicht sichtbar sein." -# @ acf -#: includes/fields/class-acf-field-radio.php:265 -msgid "Save Other" -msgstr "Weitere speichern" +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "Erlaubt, dieses Akkordeon zu öffnen, ohne andere zu schließen." -# @ acf -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "Weitere Werte unter den Auswahlmöglichkeiten des Feldes speichern" +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Gleichzeitig geöffnet" -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Numerischer Bereich" +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "Dieses Akkordeon beim Laden der Seite als geöffnet anzeigen." -# @ acf -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Beziehung" +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Geöffnet" -# @ acf -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximum der Einträge mit ({max} Einträge) erreicht" +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Akkordeon" -# @ acf -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "Lade" +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Beschränkt, welche Dateien hochgeladen werden können" -# @ acf -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Keine Übereinstimmung gefunden" +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "Datei-ID" -# @ acf -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Inhaltstyp auswählen" +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "Datei-URL" -# @ acf -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Taxonomie auswählen" +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Datei-Array" -# @ acf -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Suchen..." +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Datei hinzufügen" -# @ acf -#: includes/fields/class-acf-field-relationship.php:582 -msgid "Filters" -msgstr "Filter" +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Keine Datei ausgewählt" -# @ acf -#: includes/fields/class-acf-field-relationship.php:588 -#: includes/locations/class-acf-location-post-type.php:20 -msgid "Post Type" -msgstr "Inhaltstyp" +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Dateiname" -# @ acf -#: includes/fields/class-acf-field-relationship.php:589 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:751 -#: includes/locations/class-acf-location-taxonomy.php:20 -msgid "Taxonomy" -msgstr "Taxonomie" +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Datei aktualisieren" -# @ acf -#: includes/fields/class-acf-field-relationship.php:596 -msgid "Elements" -msgstr "Elemente" +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Datei bearbeiten" -# @ acf -#: includes/fields/class-acf-field-relationship.php:597 -msgid "Selected elements will be displayed in each result" -msgstr "Die ausgewählten Elemente werden in jedem Ergebnis angezeigt" +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +msgid "Select File" +msgstr "Datei auswählen" -# @ acf -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Minimum posts" -msgstr "Mindestzahl an Beiträgen" +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Datei" -# @ acf -#: includes/fields/class-acf-field-relationship.php:617 -msgid "Maximum posts" -msgstr "Höchstzahl an Beiträgen" +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Passwort" -# @ acf -#: includes/fields/class-acf-field-relationship.php:721 -#: pro/fields/class-acf-field-gallery.php:779 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s benötigt mindestens %s Selektion" -msgstr[1] "%s benötigt mindestens %s Selektionen" +#: includes/fields/class-acf-field-select.php:387 +msgid "Specify the value returned" +msgstr "Lege den Rückgabewert fest" -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:773 -msgctxt "noun" +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "AJAX benutzen, um Auswahlen verzögert zu laden?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Jeden Standardwert in einer neuen Zeile eingeben" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" msgid "Select" -msgstr "Auswahl" +msgstr "Auswählen" -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" -"Es ist ein Ergebnis verfügbar, drücke die Eingabetaste um es auszuwählen." +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Laden fehlgeschlagen" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Suchen…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Mehr Ergebnisse laden…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 -#, php-format +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Keine Übereinstimmungen gefunden" + +#: includes/fields/class-acf-field-select.php:108 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:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Keine Übereinstimmungen gefunden" +#: includes/fields/class-acf-field-select.php:107 +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:114 -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:115 -#, php-format -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:116 -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:117 -#, php-format -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:118 -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:119 -#, php-format -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:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Mehr Ergebnisse laden…" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Suchen…" - -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Laden fehlgeschlagen" - -#: includes/fields/class-acf-field-select.php:259 includes/media.php:54 -msgctxt "verb" +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:777 +msgctxt "noun" msgid "Select" -msgstr "Auswählen" +msgstr "Auswahl" -# @ acf -#: includes/fields/class-acf-field-select.php:402 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "Select2-Library aktivieren" +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "Benutzer-ID" -# @ acf -#: includes/fields/class-acf-field-select.php:412 -msgid "Use AJAX to lazy load choices?" -msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu laden?" +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Benutzer-Objekt" -#: includes/fields/class-acf-field-select.php:428 -msgid "Specify the value returned" -msgstr "Lege den Rückgabewert fest" +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Benutzer-Array" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Alle Benutzerrollen" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Nach Rolle filtern" + +#: includes/fields/class-acf-field-user.php:20 includes/locations.php:101 +msgid "User" +msgstr "Benutzer" #: includes/fields/class-acf-field-separator.php:25 msgid "Separator" -msgstr "Trennelement" +msgstr "Trennzeichen" -# @ acf -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Tab" +#: includes/fields/class-acf-field-color_picker.php:73 +msgid "Select Color" +msgstr "Farbe auswählen" -# @ acf -#: includes/fields/class-acf-field-tab.php:102 +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Standard" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Leeren" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Farbauswahl" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "Nachm." + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "Nachm." + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "Vorm." + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "Vorm." + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Auswählen" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Fertig" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Jetzt" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zeitzone" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekunde" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisekunde" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Sekunde" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Stunde" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Zeit" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Endpunkt" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Linksbündig" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Oben ausgerichtet" + +#: includes/fields/class-acf-field-tab.php:107 msgid "Placement" msgstr "Platzierung" -#: includes/fields/class-acf-field-tab.php:115 -msgid "" -"Define an endpoint for the previous tabs to stop. This will start a new " -"group of tabs." +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Tab" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Wert muss eine gültige URL sein" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Link-URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Link-Array" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "In einem neuen Fenster/Tab öffnen" + +#: includes/fields/class-acf-field-link.php:137 +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" + +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Schrittweite" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximalwert" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Beide (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Beschriftung" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Wert" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertikal" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rot : Rot" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" msgstr "" -"Definiert einen Endpunkt an dem die vorangegangenen Tabs enden. Das ist der " -"Startpunkt für eine neue Gruppe an Tabs." +"Für mehr Kontrolle kannst du sowohl einen Wert als auch eine Beschriftung " +"wie folgt angeben:" -#: includes/fields/class-acf-field-taxonomy.php:711 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "Keine %s" +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Jede Auswahlmöglichkeit in einer neuen Zeile eingeben." -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the taxonomy to be displayed" -msgstr "Wähle die Taxonomie, welche angezeigt werden soll" +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Auswahlmöglichkeiten" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Appearance" -msgstr "Anzeige" +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Button-Gruppe" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Select the appearance of this field" -msgstr "Wähle das Aussehen für dieses Feld" +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Mehrere Werte auswählbar?" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:767 -msgid "Multiple Values" -msgstr "Mehrere Werte" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:769 -msgid "Multi Select" -msgstr "Auswahlmenü" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Single Value" -msgstr "Einzelne Werte" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Radio Buttons" -msgstr "Radio Button" - -# @ acf +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 #: includes/fields/class-acf-field-taxonomy.php:796 -msgid "Create Terms" -msgstr "Begriffe erstellen" +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "NULL-Werte zulassen?" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:797 -msgid "Allow new terms to be created whilst editing" -msgstr "Erlaubt das Erstellen neuer Begriffe während des Bearbeitens" +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Übergeordnet" -#: includes/fields/class-acf-field-taxonomy.php:806 -msgid "Save Terms" -msgstr "Begriffe speichern" +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Connect selected terms to the post" -msgstr "Verbindet die ausgewählten Begriffe mit dem Beitrag" +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "Initialisierung verzögern?" -#: includes/fields/class-acf-field-taxonomy.php:816 -msgid "Load Terms" -msgstr "Begriffe laden" +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Buttons zum Hochladen von Medien anzeigen?" -#: includes/fields/class-acf-field-taxonomy.php:817 -msgid "Load value from posts terms" -msgstr "Den Wert aus den Begriffen des Beitrags laden" +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Werkzeugleiste" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:831 -msgid "Term Object" -msgstr "Begriffs-Objekt" +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Nur Text" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:832 -msgid "Term ID" -msgstr "Begriffs-ID" +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Nur Visuell" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:882 -#, php-format -msgid "User unable to add new %s" -msgstr "Der Benutzer kann keine neue %s hinzufügen" +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visuell und Text" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:892 -#, php-format -msgid "%s already exists" -msgstr "%s ist bereits vorhanden" +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Tabs" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:924 -#, php-format -msgid "%s added" -msgstr "%s hinzugefügt" +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Klicken, um TinyMCE zu initialisieren" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:970 -#: includes/locations/class-acf-location-user-form.php:66 -msgid "Add" -msgstr "Hinzufügen" - -# @ acf -#: includes/fields/class-acf-field-text.php:25 +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" msgid "Text" -msgstr "Text einzeilig" +msgstr "Text" -# @ acf -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Zeichenbegrenzung" +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visuell" -# @ acf -#: includes/fields/class-acf-field-text.php:132 +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "WYSIWYG-Editor" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Wert darf %d Zeichen nicht überschreiten" + +#: includes/fields/class-acf-field-text.php:115 #: includes/fields/class-acf-field-textarea.php:121 msgid "Leave blank for no limit" msgstr "Leer lassen für keine Begrenzung" -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:213 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "Wert darf %d Zeichen nicht überschreiten" +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Zeichenbegrenzung" -# @ acf -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Text mehrzeilig" +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Erscheint nach dem Eingabefeld" -# @ acf -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Zeilenanzahl" +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Anhängen" -# @ acf -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Definiert die Höhe des Textfelds" +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Erscheint vor dem Eingabefeld" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Voranstellen" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Erscheint im Eingabefeld" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Platzhaltertext" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +msgid "Appears when creating a new post" +msgstr "Erscheint bei der Erstellung eines neuen Beitrags" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-relationship.php:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Beitrags-ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Beitrags-Objekt" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Höchstzahl an Beiträgen" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Mindestzahl an Beiträgen" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Beitragsbild" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elemente" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomie" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Inhaltstyp" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filter" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Alle Taxonomien" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Nach Taxonomie filtern" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Alle Inhaltstypen" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Nach Inhaltstyp filtern" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Suchen..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Taxonomie auswählen" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Inhaltstyp auswählen" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Keine Übereinstimmung gefunden" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Wird geladen" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximale Werte erreicht ({max} Werte)" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Beziehung" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Eine durch Komma getrennte Liste. Leer lassen, um alle Dateiformate zu " +"erlauben" + +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Erlaubte Dateiformate" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Dateigröße" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Beschränkt, welche Bilder hochgeladen werden können" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Zu Beitrag hochgeladen" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Beschränkt die Auswahl in der Mediathek" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Mediathek" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Vorschau-Größe" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Bild-ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Bild-URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Bild-Array" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +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:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Rückgabewert" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Bild hinzufügen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Kein Bild ausgewählt" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Entfernen" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Bearbeiten" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Alle Bilder" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Bild aktualisieren" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Bild bearbeiten" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" +"Erlaubt HTML-Markup als sichtbaren Text anzuzeigen, anstelle diesen zu " +"rendern" + +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "HTML maskieren" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Keine Formatierung" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Automatisch <br> hinzufügen" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Absätze automatisch hinzufügen" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Legt fest, wie Zeilenumbrüche gerendert werden" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Zeilenumbrüche" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Die Woche beginnt am" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Speicherformat" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "W" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Vorheriges" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Nächstes" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Heute" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Fertig" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Datumsauswahl" + +#: includes/fields/class-acf-field-image.php:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Breite" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Einbettungs-Größe" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Angezeigter Text wenn inaktiv" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Wenn inaktiv" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Angezeigter Text wenn aktiv" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Wenn aktiv" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Standardwert" + +#: includes/fields/class-acf-field-true_false.php:135 +msgid "Displays text alongside the checkbox" +msgstr "Zeigt den Text neben der Checkbox an" + +#: includes/fields/class-acf-field-message.php:26 +#: includes/fields/class-acf-field-message.php:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mitteilung" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Nein" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Reihe" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabelle" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Block" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Gibt die Art an, wie die ausgewählten Felder ausgegeben werden sollen" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "Unterfelder" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Gruppe" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "Kartenhöhe anpassen" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Höhe" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Start-Zoom-Wert einstellen" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Ausgangskarte zentrieren" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Zentriert" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Nach der Adresse suchen..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Aktuelle Position finden" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Position löschen" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Suchen" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Das Format für die Ausgabe in den Template-Funktionen" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Rückgabeformat" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Individuell:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "Das Format für die Anzeige in der Bearbeitungsansicht" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +msgid "Display Format" +msgstr "Darstellungsformat" #: includes/fields/class-acf-field-time_picker.php:25 msgid "Time Picker" msgstr "Zeitauswahl" -# @ acf -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Wahr / Falsch" +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Keine Felder im Papierkorb gefunden" -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Zeigt den Text neben der Checkbox an" +#: acf.php:411 +msgid "No Fields found" +msgstr "Keine Felder gefunden" -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Wenn aktiv" +#: acf.php:410 +msgid "Search Fields" +msgstr "Felder suchen" -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Der Text der im aktiven Zustand angezeigt wird" +#: acf.php:409 +msgid "View Field" +msgstr "Feld anzeigen" -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Wenn inaktiv" +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Neues Feld" -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Der Text der im inaktiven Zustand angezeigt wird" +#: acf.php:407 +msgid "Edit Field" +msgstr "Feld bearbeiten" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Neues Feld hinzufügen" + +#: acf.php:404 +msgid "Field" +msgstr "Feld" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Felder" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Keine Feldgruppen im Papierkorb gefunden" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Keine Feldgruppen gefunden" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Feldgruppen durchsuchen" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Feldgruppe anzeigen" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Neue Feldgruppe" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Feldgruppe bearbeiten" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Neue Feldgruppe hinzufügen" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Neu hinzufügen" + +#: acf.php:370 +msgid "Field Group" +msgstr "Feldgruppe" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" # @ acf -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "URL" - -# @ acf -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Bitte eine gültige URL eingeben" - -# @ acf -#: includes/fields/class-acf-field-user.php:20 includes/locations.php:99 -msgid "User" -msgstr "Benutzer" - -# @ acf -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by role" -msgstr "Nach Rolle filtern" - -# @ acf -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle Benutzerrollen" - -# @ acf -#: includes/fields/class-acf-field-user.php:84 -msgid "User Array" -msgstr "Benutzer-Array" - -# @ acf -#: includes/fields/class-acf-field-user.php:85 -msgid "User Object" -msgstr "Benutzer-Objekt" - -# @ acf -#: includes/fields/class-acf-field-user.php:86 -msgid "User ID" -msgstr "Benutzer-ID" - -#: includes/fields/class-acf-field-user.php:334 -msgid "Error loading field." -msgstr "Fehler beim Laden des Feldes." - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "WYSIWYG-Editor" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:315 -msgid "Visual" -msgstr "Visuell" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:316 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:322 -msgid "Click to initialize TinyMCE" -msgstr "Klicke um TinyMCE zu initialisieren" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:375 -msgid "Tabs" -msgstr "Tabs" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:380 -msgid "Visual & Text" -msgstr "Visuell & Text" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:381 -msgid "Visual Only" -msgstr "Nur Visuell" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:382 -msgid "Text Only" -msgstr "Nur Text" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Toolbar" -msgstr "Werkzeugleiste" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:404 -msgid "Show Media Upload Buttons?" -msgstr "Button zum Hochladen von Medien anzeigen?" - -#: includes/fields/class-acf-field-wysiwyg.php:414 -msgid "Delay initialization?" -msgstr "Initialisierung verzögern?" - -#: includes/fields/class-acf-field-wysiwyg.php:415 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" - -# @ acf -#: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353 -msgid "Title" -msgstr "Titel" - -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "E-Mail bestätigen" - -# @ acf -#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 -#: pro/options-page.php:81 -msgid "Update" -msgstr "Aktualisieren" - -# @ acf -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "Beitrag aktualisiert" - -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "Spam entdeckt" - -#: includes/forms/form-user.php:336 -#, php-format -msgid "ERROR: %s" -msgstr "FEHLER: %s" - -# @ acf -#: includes/locations.php:23 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "Die Klasse „%s“ existiert nicht." - -#: includes/locations.php:34 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "Positions-Typ „%s“ ist bereits registriert." - -# @ acf -#: includes/locations.php:97 includes/locations/class-acf-location-post.php:20 -msgid "Post" -msgstr "Beitrag" - -# @ acf -#: includes/locations.php:98 includes/locations/class-acf-location-page.php:20 -msgid "Page" -msgstr "Seite" - -# @ acf -#: includes/locations.php:100 -msgid "Forms" -msgstr "Formulare" - -# @ acf -#: includes/locations/abstract-acf-location.php:103 -msgid "is equal to" -msgstr "ist gleich" - -# @ acf -#: includes/locations/abstract-acf-location.php:104 -msgid "is not equal to" -msgstr "ist ungleich" - -# @ acf -#: includes/locations/class-acf-location-attachment.php:20 -msgid "Attachment" -msgstr "Anhang" - -#: includes/locations/class-acf-location-attachment.php:82 -#, php-format -msgid "All %s formats" -msgstr "Alle %s Formate" - -# @ acf -#: includes/locations/class-acf-location-comment.php:20 -msgid "Comment" -msgstr "Kommentar" - -# @ acf -#: includes/locations/class-acf-location-current-user-role.php:20 -msgid "Current User Role" -msgstr "Aktuelle Benutzerrolle" - -# @ acf -#: includes/locations/class-acf-location-current-user-role.php:75 -msgid "Super Admin" -msgstr "Super-Administrator" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:20 -msgid "Current User" -msgstr "Aktueller Benutzer" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:69 -msgid "Logged in" -msgstr "Angemeldet" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:70 -msgid "Viewing front end" -msgstr "Frontend anzeigen" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Viewing back end" -msgstr "Backend anzeigen" - -#: includes/locations/class-acf-location-nav-menu-item.php:20 -msgid "Menu Item" -msgstr "Menüelement" - -#: includes/locations/class-acf-location-nav-menu.php:20 -msgid "Menu" -msgstr "Menü" - -# @ acf -#: includes/locations/class-acf-location-nav-menu.php:78 -msgid "Menu Locations" -msgstr "Menüpositionen" - -# @ acf -#: includes/locations/class-acf-location-page-parent.php:20 -msgid "Page Parent" -msgstr "Übergeordnete Seite" - -# @ acf -#: includes/locations/class-acf-location-page-template.php:20 -msgid "Page Template" -msgstr "Seiten-Template" - -# @ acf -#: includes/locations/class-acf-location-page-template.php:71 -#: includes/locations/class-acf-location-post-template.php:83 -msgid "Default Template" -msgstr "Standard-Template" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:20 -msgid "Page Type" -msgstr "Seitentyp" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:105 -msgid "Front Page" -msgstr "Startseite" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:106 -msgid "Posts Page" -msgstr "Beitrags-Seite" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:107 -msgid "Top Level Page (no parent)" -msgstr "Seite ohne übergeordnete Seiten" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:108 -msgid "Parent Page (has children)" -msgstr "Übergeordnete Seite (mit Unterseiten)" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:109 -msgid "Child Page (has parent)" -msgstr "Unterseite (mit übergeordneter Seite)" - -# @ acf -#: includes/locations/class-acf-location-post-category.php:20 -msgid "Post Category" -msgstr "Beitragskategorie" - -# @ acf -#: includes/locations/class-acf-location-post-format.php:20 -msgid "Post Format" -msgstr "Beitragsformat" - -# @ acf -#: includes/locations/class-acf-location-post-status.php:20 -msgid "Post Status" -msgstr "Beitragsstatus" - -# @ acf -#: includes/locations/class-acf-location-post-taxonomy.php:20 -msgid "Post Taxonomy" -msgstr "Beitrags-Taxonomie" - -# @ acf -#: includes/locations/class-acf-location-post-template.php:20 -msgid "Post Template" -msgstr "Beitrags-Template" - -# @ acf -#: includes/locations/class-acf-location-user-form.php:20 -msgid "User Form" -msgstr "Benutzerformular" - -# @ acf -#: includes/locations/class-acf-location-user-form.php:67 -msgid "Add / Edit" -msgstr "Hinzufügen / Bearbeiten" - -# @ acf -#: includes/locations/class-acf-location-user-form.php:68 -msgid "Register" -msgstr "Registrieren" - -# @ acf -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Benutzerrolle" - -# @ acf -#: includes/locations/class-acf-location-widget.php:20 -msgid "Widget" -msgstr "Widget" - -#: includes/media.php:55 -msgctxt "verb" -msgid "Edit" -msgstr "Bearbeiten" - -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Aktualisieren" - -# @ acf -#: includes/media.php:57 -msgid "Uploaded to this post" -msgstr "Zu diesem Beitrag hochgeladen" - -# @ acf -#: includes/media.php:58 -msgid "Expand Details" -msgstr "Details einblenden" - -# @ acf -#: includes/media.php:59 -msgid "Collapse Details" -msgstr "Details ausblenden" - -#: includes/media.php:60 -msgid "Restricted" -msgstr "Eingeschränkt" - -# @ acf -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "%s Wert ist erforderlich" - -# @ acf -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" # @ acf -#: pro/admin/admin-options-page.php:198 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Name des Block-Typs wird benötigt." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Block-Typ „%s“ ist bereits registriert." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Zum Bearbeiten wechseln" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Zur Vorschau wechseln" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Ausrichtung des Inhalts ändern" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s Einstellungen" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +# @ acf +#: 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 "" + +# @ acf +#: pro/updates.php:279, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Erneut suchen" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "" + +# @ acf +#: pro/admin/admin-options-page.php:195 msgid "Publish" msgstr "Veröffentlichen" # @ acf -#: pro/admin/admin-options-page.php:204 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -3234,18 +3147,13 @@ msgstr "" "Feldgruppe erstellen" # @ acf -#: pro/admin/admin-updates.php:49 +#: pro/admin/admin-updates.php:52 msgid "Error. Could not connect to update server" msgstr "" "Fehler. Es konnte keine Verbindung zum Aktualisierungsserver " "hergestellt werden" -# @ acf -#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "Aktualisierungen" - -#: pro/admin/admin-updates.php:191 +#: pro/admin/admin-updates.php:209 msgid "" "Error. Could not authenticate update package. Please check again or " "deactivate and reactivate your ACF PRO license." @@ -3254,221 +3162,118 @@ msgstr "" "Bitte probiere es nochmal oder deaktiviere und reaktiviere deine ACF PRO-" "Lizenz." -# @ acf -#: pro/admin/views/html-settings-updates.php:7 -msgid "Deactivate License" -msgstr "Lizenz deaktivieren" - -# @ acf -#: pro/admin/views/html-settings-updates.php:7 -msgid "Activate License" -msgstr "Lizenz aktivieren" - -#: pro/admin/views/html-settings-updates.php:17 -msgid "License Information" -msgstr "Lizenzinformation" - -#: pro/admin/views/html-settings-updates.php:20 -#, php-format +#: pro/admin/admin-updates.php:196 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." 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." - -# @ acf -#: pro/admin/views/html-settings-updates.php:29 -msgid "License Key" -msgstr "Lizenzschlüssel" - -# @ acf -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Aktualisierungsinformationen" - -# @ acf -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Installierte Version" - -# @ acf -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Aktuellste Version" - -# @ acf -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Aktualisierung verfügbar" - -# @ acf -#: pro/admin/views/html-settings-updates.php:92 -msgid "Update Plugin" -msgstr "Plugin aktualisieren" - -# @ acf -#: pro/admin/views/html-settings-updates.php:94 -msgid "Please enter your license key above to unlock updates" -msgstr "" -"Bitte gib oben Deinen Lizenzschlüssel ein um die Aktualisierungsfähigkeit " -"freizuschalten" - -# @ acf -#: pro/admin/views/html-settings-updates.php:100 -msgid "Check Again" -msgstr "Erneut suchen" - -# @ acf -#: pro/admin/views/html-settings-updates.php:107 -msgid "Changelog" -msgstr "Änderungsprotokoll" - -# @ acf -#: pro/admin/views/html-settings-updates.php:117 -msgid "Upgrade Notice" -msgstr "Hinweis zum Upgrade" - -# @ acf -#: pro/blocks.php:36 -msgid "Block type name is required." -msgstr "Name des Block-Typs wird benötigt." - -#: pro/blocks.php:43 -#, php-format -msgid "Block type \"%s\" is already registered." -msgstr "Block-Typ „%s“ ist bereits registriert." - -#: pro/blocks.php:418 -msgid "Switch to Edit" -msgstr "Zum Bearbeiten wechseln" - -#: pro/blocks.php:419 -msgid "Switch to Preview" -msgstr "Zur Vorschau wechseln" - -#: pro/blocks.php:420 -msgid "Change content alignment" -msgstr "Ausrichtung des Inhalts ändern" - -#: pro/blocks.php:423 -#, php-format -msgid "%s settings" -msgstr "%s Einstellungen" #: pro/fields/class-acf-field-clone.php:25 msgctxt "noun" msgid "Clone" msgstr "Klon" -#: pro/fields/class-acf-field-clone.php:812 +#: pro/fields/class-acf-field-clone.php:815 msgid "Select one or more fields you wish to clone" msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest" # @ acf -#: pro/fields/class-acf-field-clone.php:829 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "Anzeige" -#: pro/fields/class-acf-field-clone.php:830 +#: pro/fields/class-acf-field-clone.php:835 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:835 +#: pro/fields/class-acf-field-clone.php:840 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:836 +#: pro/fields/class-acf-field-clone.php:841 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:857 -#, php-format +#: pro/fields/class-acf-field-clone.php:864 msgid "Labels will be displayed as %s" msgstr "Beschriftungen werden als %s angezeigt" -#: pro/fields/class-acf-field-clone.php:860 +#: pro/fields/class-acf-field-clone.php:869 msgid "Prefix Field Labels" msgstr "Präfix für Feldbeschriftungen" -#: pro/fields/class-acf-field-clone.php:871 -#, php-format +#: pro/fields/class-acf-field-clone.php:880 msgid "Values will be saved as %s" msgstr "Werte werden als %s gespeichert" -#: pro/fields/class-acf-field-clone.php:874 +#: pro/fields/class-acf-field-clone.php:885 msgid "Prefix Field Names" msgstr "Präfix für Feldnamen" -#: pro/fields/class-acf-field-clone.php:992 +#: pro/fields/class-acf-field-clone.php:1001 msgid "Unknown field" msgstr "Unbekanntes Feld" -#: pro/fields/class-acf-field-clone.php:1031 +#: pro/fields/class-acf-field-clone.php:1038 msgid "Unknown field group" msgstr "Unbekannte Feldgruppe" -#: pro/fields/class-acf-field-clone.php:1035 -#, php-format +#: pro/fields/class-acf-field-clone.php:1042 msgid "All fields from %s field group" msgstr "Alle Felder der Feldgruppe %s" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:193 -#: pro/fields/class-acf-field-repeater.php:469 +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "Eintrag hinzufügen" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:73 -#: pro/fields/class-acf-field-flexible-content.php:926 -#: pro/fields/class-acf-field-flexible-content.php:1008 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" msgstr[0] "Layout" msgstr[1] "Layouts" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:74 +#: pro/fields/class-acf-field-flexible-content.php:72 msgid "layouts" msgstr "Einträge" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:77 -#: pro/fields/class-acf-field-flexible-content.php:925 -#: pro/fields/class-acf-field-flexible-content.php:1007 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 msgid "This field requires at least {min} {label} {identifier}" msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:78 +#: pro/fields/class-acf-field-flexible-content.php:76 msgid "This field has a limit of {max} {label} {identifier}" msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:81 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{available} {label} {identifier} available (max {max})" msgstr "{available} {label} {identifier} möglich (max {max})" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:82 +#: pro/fields/class-acf-field-flexible-content.php:80 msgid "{required} {label} {identifier} required (min {min})" msgstr "{required} {label} {identifier} erforderlich (min {min})" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:83 msgid "Flexible Content requires at least 1 layout" msgstr "Flexibler Inhalt benötigt mindestens ein Layout" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:287 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:276 msgid "Click the \"%s\" button below to start creating your layout" msgstr "Klicke \"%s\" zum Erstellen des Layouts" @@ -3487,62 +3292,79 @@ msgstr "Layout duplizieren" msgid "Remove layout" msgstr "Layout entfernen" -#: pro/fields/class-acf-field-flexible-content.php:416 -#: pro/fields/class-acf-field-repeater.php:301 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" msgstr "Zum Auswählen anklicken" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder Layout" msgstr "Layout sortieren" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder" msgstr "Sortieren" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:557 +#: pro/fields/class-acf-field-flexible-content.php:552 msgid "Delete Layout" msgstr "Layout löschen" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:558 +#: pro/fields/class-acf-field-flexible-content.php:553 msgid "Duplicate Layout" msgstr "Layout duplizieren" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:559 +#: pro/fields/class-acf-field-flexible-content.php:554 msgid "Add New Layout" msgstr "Neues Layout hinzufügen" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:631 +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "Min" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:644 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "Max" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:671 -#: pro/fields/class-acf-field-repeater.php:465 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "Button-Beschriftung" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:680 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "Mindestzahl an Layouts" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:689 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "Höchstzahl an Layouts" +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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] "" + # @ acf #: pro/fields/class-acf-field-gallery.php:73 msgid "Add Image to Gallery" @@ -3554,183 +3376,272 @@ msgid "Maximum selection reached" msgstr "Maximale Auswahl erreicht" # @ acf -#: pro/fields/class-acf-field-gallery.php:322 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "Länge" -#: pro/fields/class-acf-field-gallery.php:362 +#: pro/fields/class-acf-field-gallery.php:364 msgid "Caption" msgstr "Bildunterschrift" -#: pro/fields/class-acf-field-gallery.php:371 +#: pro/fields/class-acf-field-gallery.php:376 msgid "Alt Text" msgstr "Alt Text" # @ acf -#: pro/fields/class-acf-field-gallery.php:487 +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "Zur Galerie hinzufügen" # @ acf -#: pro/fields/class-acf-field-gallery.php:491 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "Massenverarbeitung" # @ acf -#: pro/fields/class-acf-field-gallery.php:492 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "Sortiere nach Upload-Datum" # @ acf -#: pro/fields/class-acf-field-gallery.php:493 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "Sortiere nach Änderungs-Datum" # @ acf -#: pro/fields/class-acf-field-gallery.php:494 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "Sortiere nach Titel" # @ acf -#: pro/fields/class-acf-field-gallery.php:495 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "Aktuelle Sortierung umkehren" # @ acf -#: pro/fields/class-acf-field-gallery.php:507 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "Schließen" -#: pro/fields/class-acf-field-gallery.php:580 +#: pro/fields/class-acf-field-gallery.php:602 msgid "Insert" msgstr "Einfügen" -#: pro/fields/class-acf-field-gallery.php:581 +#: pro/fields/class-acf-field-gallery.php:603 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:585 +#: pro/fields/class-acf-field-gallery.php:607 msgid "Append to the end" msgstr "Anhängen" -#: pro/fields/class-acf-field-gallery.php:586 +#: pro/fields/class-acf-field-gallery.php:608 msgid "Prepend to the beginning" msgstr "Voranstellen" # @ acf -#: pro/fields/class-acf-field-gallery.php:605 +#: pro/fields/class-acf-field-gallery.php:633 msgid "Minimum Selection" msgstr "Minimale Auswahl" # @ acf -#: pro/fields/class-acf-field-gallery.php:613 +#: pro/fields/class-acf-field-gallery.php:644 msgid "Maximum Selection" msgstr "Maximale Auswahl" # @ acf -#: pro/fields/class-acf-field-repeater.php:65 -#: pro/fields/class-acf-field-repeater.php:662 +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "Mindestzahl der Einträge hat ({min} Reihen) erreicht" # @ acf -#: pro/fields/class-acf-field-repeater.php:66 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "Höchstzahl der Einträge hat ({max} Reihen) erreicht" -# @ acf -#: pro/fields/class-acf-field-repeater.php:338 -msgid "Add row" -msgstr "Eintrag hinzufügen" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" -# @ acf -#: pro/fields/class-acf-field-repeater.php:339 -msgid "Duplicate row" -msgstr "Zeile duplizieren" - -# @ acf -#: pro/fields/class-acf-field-repeater.php:340 -msgid "Remove row" -msgstr "Eintrag entfernen" - -#: pro/fields/class-acf-field-repeater.php:418 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" msgstr "Zugeklappt" -#: pro/fields/class-acf-field-repeater.php:419 +#: pro/fields/class-acf-field-repeater.php:175 msgid "Select a sub field to show when row is collapsed" msgstr "" "Wähle ein Unterfelder welches im zugeklappten Zustand angezeigt werden soll" # @ acf -#: pro/fields/class-acf-field-repeater.php:429 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "Mindestzahl der Einträge" # @ acf -#: pro/fields/class-acf-field-repeater.php:439 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "Höchstzahl der Einträge" +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + # @ acf -#: pro/locations/class-acf-location-block.php:69 +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Zeile duplizieren" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Eintrag entfernen" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +# @ acf +#: pro/locations/class-acf-location-block.php:71 msgid "No block types exist" msgstr "Keine Blocktypen vorhanden" # @ acf -#: pro/locations/class-acf-location-options-page.php:68 +#: pro/locations/class-acf-location-options-page.php:70 msgid "No options pages exist" msgstr "Keine Options-Seiten vorhanden" # @ acf -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "Optionen aktualisiert" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "Lizenz deaktivieren" -#: pro/updates.php:97 -#, php-format +# @ acf +#: 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 enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." +"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 Deinen " -"Lizenzschlüssel auf der Aktualisierungen Seite ein. Falls " -"Du keinen besitzt informiere Dich bitte hier hinsichtlich der Preise und Einzelheiten." +"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." # @ acf -#: tests/basic/test-blocks.php:158 -msgid "Normal" -msgstr "Normal" +#: pro/admin/views/html-settings-updates.php:41 +msgid "License Key" +msgstr "Lizenzschlüssel" -#: tests/basic/test-blocks.php:159 -msgid "Fancy" -msgstr "Schick" +#: pro/admin/views/html-settings-updates.php:22 +msgid "Your license key is defined in wp-config.php." +msgstr "" -#: tests/basic/test-blocks.php:306 -msgid "Hero" -msgstr "Hero" - -#: tests/basic/test-blocks.php:307 -msgid "Display a random hero image." -msgstr "Ein zufälliges Hero-Bild anzeigen." - -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "" # @ acf -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"WordPress durch leistungsfähige, professionelle und zugleich intuitive " -"Felder erweitern." +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Aktualisierungsinformationen" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +# @ acf +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Installierte Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Aktuellste Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Aktualisierung verfügbar" + +# @ acf +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Bitte gib oben Deinen Lizenzschlüssel ein um die Aktualisierungsfähigkeit " +"freizuschalten" + +# @ acf +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Plugin aktualisieren" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +# @ acf +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Änderungsprotokoll" + +# @ acf +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Hinweis zum Upgrade" #, php-format #~ msgid "Inactive (%s)" @@ -3738,6 +3649,169 @@ msgstr "Elliot Condon" #~ msgstr[0] "Inaktiv (%s)" #~ msgstr[1] "Inaktiv (%s)" +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Deaktiviert (%s)" +#~ msgstr[1] "Deaktiviert (%s)" + +# @ acf +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Wirklich in den Papierkorb verschieben?" + +#~ msgid "Inactive" +#~ msgstr "Inaktiv" + +# @ acf +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Das Feld \"%s\" wurde in die %s Feldgruppe verschoben" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin provides a visual form builder to " +#~ "customize WordPress edit screens with extra content fields, and an " +#~ "intuitive API to display custom field values in any theme template file." +#~ msgstr "" +#~ "Das Advanced Custom Fields-Plugin stellt einen visuellen Baukasten für " +#~ "Formulare zur Verfügung mit dessen Hilfe die Seiten der zu bearbeitenden " +#~ "Inhalte um extra Inhalts-Felder erweitert werden können. Es bietet zudem " +#~ "ein API um die Inhalte individueller Felder in den Template-Dateien von " +#~ "Themes darzustellen." + +# @ acf +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Entscheide welche Feldgruppen Du exportieren möchtest und wähle dann das " +#~ "Exportformat. Benutze den \"Datei exportieren\"-Button, um eine JSON-" +#~ "Datei zu generieren, welche Du im Anschluss in eine andere ACF-" +#~ "Installation importieren kannst. Verwende den \"PHP erstellen“-Button, um " +#~ "den resultierenden PHP-Code in dein Theme einfügen zu können." + +# @ acf +#~ msgid "Export File" +#~ msgstr "Datei exportieren" + +# @ acf +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Wähle die Advanced Custom Fields JSON-Datei aus, welche Du importieren " +#~ "möchtest. Nach dem Klicken des „Datei importieren“-Buttons wird ACF die " +#~ "Feldgruppen hinzufügen." + +# @ acf +#~ msgid "Import File" +#~ msgstr "Datei importieren" + +# @ acf +#~ msgid "Required?" +#~ msgstr "Erforderlich?" + +# @ acf +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Es sind noch keine Felder angelegt. Klicke den + Feld hinzufügen-" +#~ "Button und erstelle Dein erstes Feld." + +# @ acf +#~ msgid "+ Add Field" +#~ msgstr "+ Feld hinzufügen" + +# @ acf +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s" + +# @ acf +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Danke für die Aktualisierung auf %s v%s!" + +#~ msgid "Allow Custom" +#~ msgstr "Individuelle Werte erlauben" + +#~ msgid "Save Custom" +#~ msgstr "Individuelle Werte speichern" + +#~ msgid "Toggle" +#~ msgstr "Alle Auswählen" + +#~ msgid "Current Color" +#~ msgstr "Aktuelle Farbe" + +# @ acf +#~ msgid "Other" +#~ msgstr "Weitere" + +# @ acf +#~ msgid "Save Other" +#~ msgstr "Weitere speichern" + +# @ acf +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s benötigt mindestens %s Selektion" +#~ msgstr[1] "%s benötigt mindestens %s Selektionen" + +# @ acf +#~ msgid "Stylised UI" +#~ msgstr "Select2-Library aktivieren" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definiert einen Endpunkt an dem die vorangegangenen Tabs enden. Das ist " +#~ "der Startpunkt für eine neue Gruppe an Tabs." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Keine %s" + +#, php-format +#~ msgid "ERROR: %s" +#~ msgstr "FEHLER: %s" + +#, php-format +#~ 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 "" +#~ "Um die Aktualisierungsfähigkeit freizuschalten gib bitte Deinen " +#~ "Lizenzschlüssel auf der Aktualisierungen Seite ein. " +#~ "Falls Du keinen besitzt informiere Dich bitte hier hinsichtlich der Preise und Einzelheiten." + +# @ acf +#~ msgid "Normal" +#~ msgstr "Normal" + +#~ msgid "Fancy" +#~ msgstr "Schick" + +#~ msgid "Hero" +#~ msgstr "Hero" + +#~ msgid "Display a random hero image." +#~ msgstr "Ein zufälliges Hero-Bild anzeigen." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + #~ msgid "Status" #~ msgstr "Status" @@ -3942,10 +4016,6 @@ msgstr "Elliot Condon" #~ "Das oEmbed-Feld erlaubt auf eine einfache Weise Videos, Bilder, Tweets, " #~ "Audio und weitere Inhalte einzubetten." -# @ acf -#~ msgid "Clone Field" -#~ msgstr "Klon-Feld" - #~ msgid "The clone field allows you to select and display existing fields." #~ msgstr "" #~ "Das Klon-Feld erlaubt es dir bestehende Felder auszuwählen und anzuzeigen." diff --git a/lang/acf-de_DE_formal.mo b/lang/acf-de_DE_formal.mo old mode 100755 new mode 100644 index e539258..ab85338 Binary files a/lang/acf-de_DE_formal.mo and b/lang/acf-de_DE_formal.mo differ diff --git a/lang/acf-de_DE_formal.po b/lang/acf-de_DE_formal.po index 53f062d..1ff4bdf 100644 --- a/lang/acf-de_DE_formal.po +++ b/lang/acf-de_DE_formal.po @@ -1,3232 +1,128 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.9.0 Formal\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2020-08-13 16:34+0200\n" -"PO-Revision-Date: 2020-08-17 12:33+0200\n" -"Last-Translator: Ralf Koller \n" -"Language-Team: Ralf Koller \n" -"Language: de_DE\n" +"Language: de_DE_formal\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" # @ acf -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" - -# @ acf -#: acf.php:348 includes/admin/admin.php:49 -msgid "Field Groups" -msgstr "Feldgruppen" - -# @ acf -#: acf.php:349 -msgid "Field Group" -msgstr "Feldgruppe" - -# @ acf -#: acf.php:350 acf.php:382 includes/admin/admin.php:50 -#: pro/fields/class-acf-field-flexible-content.php:559 -msgid "Add New" -msgstr "Erstellen" - -# @ acf -#: acf.php:351 -msgid "Add New Field Group" -msgstr "Neue Feldgruppe erstellen" - -# @ acf -#: acf.php:352 -msgid "Edit Field Group" -msgstr "Feldgruppe bearbeiten" - -# @ acf -#: acf.php:353 -msgid "New Field Group" -msgstr "Neue Feldgruppe" - -# @ acf -#: acf.php:354 -msgid "View Field Group" -msgstr "Feldgruppe anzeigen" - -# @ acf -#: acf.php:355 -msgid "Search Field Groups" -msgstr "Feldgruppen durchsuchen" - -# @ acf -#: acf.php:356 -msgid "No Field Groups found" -msgstr "Keine Feldgruppen gefunden" - -# @ acf -#: acf.php:357 -msgid "No Field Groups found in Trash" -msgstr "Keine Feldgruppen im Papierkorb gefunden" - -# @ acf -#: acf.php:380 includes/admin/admin-field-group.php:232 -#: includes/admin/admin-field-groups.php:262 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Felder" - -# @ acf -#: acf.php:381 -msgid "Field" -msgstr "Feld" - -# @ acf -#: acf.php:383 -msgid "Add New Field" -msgstr "Feld hinzufügen" - -# @ acf -#: acf.php:384 -msgid "Edit Field" -msgstr "Feld bearbeiten" - -# @ acf -#: acf.php:385 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Neues Feld" - -# @ acf -#: acf.php:386 -msgid "View Field" -msgstr "Feld anzeigen" - -# @ acf -#: acf.php:387 -msgid "Search Fields" -msgstr "Felder suchen" - -# @ acf -#: acf.php:388 -msgid "No Fields found" -msgstr "Keine Felder gefunden" - -# @ acf -#: acf.php:389 -msgid "No Fields found in Trash" -msgstr "Keine Felder im Papierkorb gefunden" - -#: acf.php:424 includes/admin/admin-field-groups.php:226 -msgctxt "post status" -msgid "Disabled" -msgstr "Deaktiviert" - -#: acf.php:429 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "Deaktiviert (%s)" -msgstr[1] "Deaktiviert (%s)" - -# @ acf -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:178 -msgid "(no label)" -msgstr "(keine Beschriftung)" - -# @ acf -#: includes/acf-field-group-functions.php:820 -#: includes/admin/admin-field-group.php:180 -msgid "copy" -msgstr "Kopie" - -# @ acf -#: includes/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Beiträge" - -# @ acf -#: includes/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taxonomien" - -# @ acf -#: includes/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Anhänge" - -# @ acf -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Kommentare" - -# @ acf -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:87 -msgid "Menus" -msgstr "Menüs" - -#: includes/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "Menüelemente" - -# @ acf -#: includes/acf-wp-functions.php:79 -msgid "Users" -msgstr "Benutzer" - -# @ acf -#: includes/acf-wp-functions.php:83 pro/options-page.php:51 -msgid "Options" -msgstr "Optionen" - -# @ acf -#: includes/acf-wp-functions.php:87 -msgid "Blocks" -msgstr "Blöcke" - -# @ acf -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "Feldgruppe aktualisiert." - -# @ acf -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "Feldgruppe gelöscht." - -# @ acf -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "Feldgruppe veröffentlicht." - -# @ acf -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "Feldgruppe gespeichert." - -# @ acf -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "Feldgruppe übertragen." - -# @ acf -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "Feldgruppe geplant für." - -# @ acf -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "Entwurf der Feldgruppe aktualisiert." - -# @ acf -#: includes/admin/admin-field-group.php:171 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Der Feldname darf nicht mit \"field_\" beginnen" - -# @ acf -#: includes/admin/admin-field-group.php:172 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" -"Diese Feld kann erst verschoben werden, wenn die Änderungen gespeichert " -"wurden" - -# @ acf -#: includes/admin/admin-field-group.php:173 -msgid "Field group title is required" -msgstr "Es ist ein Titel für die Feldgruppe erforderlich" - -# @ acf -#: includes/admin/admin-field-group.php:174 -msgid "Move to trash. Are you sure?" -msgstr "Wirklich in den Papierkorb verschieben?" - -# @ acf -#: includes/admin/admin-field-group.php:175 -msgid "No toggle fields available" -msgstr "Es liegen keine Auswahl-Feldtypen vor" - -# @ acf -#: includes/admin/admin-field-group.php:176 -msgid "Move Custom Field" -msgstr "Individuelles Feld verschieben" - -# @ acf -#: includes/admin/admin-field-group.php:177 -msgid "Checked" -msgstr "Ausgewählt" - -# @ acf -#: includes/admin/admin-field-group.php:179 -msgid "(this field)" -msgstr "(dieses Feld)" - -# @ acf -#: includes/admin/admin-field-group.php:181 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3675 -msgid "or" -msgstr "oder" - -# @ acf -#: includes/admin/admin-field-group.php:182 -msgid "Null" -msgstr "Null" - -#: includes/admin/admin-field-group.php:185 -msgid "Has any value" -msgstr "Hat einen Wert" - -#: includes/admin/admin-field-group.php:186 -msgid "Has no value" -msgstr "Hat keinen Wert" - -# @ acf -#: includes/admin/admin-field-group.php:187 -msgid "Value is equal to" -msgstr "Wert ist gleich" - -# @ acf -#: includes/admin/admin-field-group.php:188 -msgid "Value is not equal to" -msgstr "Wert ist ungleich" - -# @ acf -#: includes/admin/admin-field-group.php:189 -msgid "Value matches pattern" -msgstr "Wert entspricht regulärem Ausdruck" - -#: includes/admin/admin-field-group.php:190 -msgid "Value contains" -msgstr "Wert enthält" - -# @ acf -#: includes/admin/admin-field-group.php:191 -msgid "Value is greater than" -msgstr "Wert ist größer als" - -# @ acf -#: includes/admin/admin-field-group.php:192 -msgid "Value is less than" -msgstr "Wert ist kleiner als" - -#: includes/admin/admin-field-group.php:193 -msgid "Selection is greater than" -msgstr "Auswahl ist größer als" - -# @ acf -#: includes/admin/admin-field-group.php:194 -msgid "Selection is less than" -msgstr "Auswahl ist kleiner als" - -# @ acf -#: includes/admin/admin-field-group.php:233 -#: includes/admin/admin-field-groups.php:261 -msgid "Location" -msgstr "Position" - -#: includes/admin/admin-field-group.php:234 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Einstellungen" - -#: includes/admin/admin-field-group.php:384 -msgid "Field Keys" -msgstr "Feldschlüssel" - -#: includes/admin/admin-field-group.php:414 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Aktiviert" - -#: includes/admin/admin-field-group.php:414 -msgid "Inactive" -msgstr "Inaktiv" - -# @ acf -#: includes/admin/admin-field-group.php:775 -msgid "Move Complete." -msgstr "Verschieben erfolgreich abgeschlossen." - -# @ acf -#: includes/admin/admin-field-group.php:776 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "Das Feld \"%s\" wurde in die %s Feldgruppe verschoben" - -# @ acf -#: includes/admin/admin-field-group.php:777 -msgid "Close Window" -msgstr "Schließen" - -# @ acf -#: includes/admin/admin-field-group.php:818 -msgid "Please select the destination for this field" -msgstr "In welche Feldgruppe solle dieses Feld verschoben werden" - -# @ acf -#: includes/admin/admin-field-group.php:825 -msgid "Move Field" -msgstr "Feld verschieben" - -#: includes/admin/admin-field-groups.php:114 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Veröffentlicht (%s)" -msgstr[1] "Veröffentlicht (%s)" - -#: includes/admin/admin-field-groups.php:193 -msgid "Review local JSON changes" -msgstr "Lokale JSON-Änderungen überprüfen" - -# @ acf -#: includes/admin/admin-field-groups.php:194 -msgid "Loading diff" -msgstr "Diff laden" - -# @ acf -#: includes/admin/admin-field-groups.php:195 -#: includes/admin/admin-field-groups.php:529 -msgid "Sync changes" -msgstr "Änderungen synchronisieren" - -# @ acf -#: includes/admin/admin-field-groups.php:259 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Description" -msgstr "Beschreibung" - -#: includes/admin/admin-field-groups.php:260 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Schlüssel" - -# @ acf -#: includes/admin/admin-field-groups.php:265 -msgid "Local JSON" -msgstr "Lokales JSON" - -#: includes/admin/admin-field-groups.php:415 -msgid "Various" -msgstr "Verschiedene" - -#: includes/admin/admin-field-groups.php:437 -#, php-format -msgid "Located in theme: %s" -msgstr "Befindet sich in Theme: %s" - -#: includes/admin/admin-field-groups.php:441 -#, php-format -msgid "Located in plugin: %s" -msgstr "Befindet sich in Plugin: %s" - -# @ acf -#: includes/admin/admin-field-groups.php:445 -#, php-format -msgid "Located in: %s" -msgstr "Befindet sich in: %s" - -# @ acf -#: includes/admin/admin-field-groups.php:465 -#: includes/admin/admin-field-groups.php:683 -msgid "Sync available" -msgstr "Synchronisierung verfügbar" - -# @ acf -#: includes/admin/admin-field-groups.php:468 -msgid "Sync" -msgstr "Synchronisieren" - -#: includes/admin/admin-field-groups.php:469 -msgid "Review changes" -msgstr "Änderungen überprüfen" - -# @ acf -#: includes/admin/admin-field-groups.php:473 -msgid "Import" -msgstr "Importieren" - -#: includes/admin/admin-field-groups.php:477 -msgid "Saved" -msgstr "Gespeichert" - -#: includes/admin/admin-field-groups.php:480 -msgid "Awaiting save" -msgstr "Warten auf Speichern" - -# @ acf -#: includes/admin/admin-field-groups.php:501 -msgid "Duplicate this item" -msgstr "Dieses Element duplizieren" - -# @ acf -#: includes/admin/admin-field-groups.php:501 -#: includes/admin/admin-field-groups.php:521 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Duplicate" -msgstr "Duplizieren" - -# @ acf -#: includes/admin/admin-field-groups.php:551 -#, php-format -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Feldgruppe dupliziert." -msgstr[1] "%s Feldgruppen dupliziert." - -# @ acf -#: includes/admin/admin-field-groups.php:608 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Feldgruppe synchronisiert." -msgstr[1] "%s Feldgruppen synchronisiert." - -# @ acf -#: includes/admin/admin-field-groups.php:790 -#, php-format -msgid "Select %s" -msgstr "%s auswählen" - -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Werkzeuge" - -# @ acf -#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 -#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Datenbank upgraden" - -# @ acf -#: includes/admin/admin-upgrade.php:199 -msgid "Review sites & upgrade" -msgstr "Übersicht Websites & Upgrades" - -# @ acf -#: includes/admin/admin.php:48 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "Individuelle Felder" - -#: includes/admin/admin.php:128 includes/admin/admin.php:130 -msgid "Overview" -msgstr "Übersicht" - -#: includes/admin/admin.php:131 -msgid "" -"The Advanced Custom Fields plugin provides a visual form builder to " -"customize WordPress edit screens with extra content fields, and an intuitive " -"API to display custom field values in any theme template file." -msgstr "" -"Das Advanced Custom Fields-Plugin stellt einen visuellen Baukasten für " -"Formulare zur Verfügung mit dessen Hilfe die Seiten der zu bearbeitenden " -"Inhalte um extra Inhalts-Felder erweitert werden können. Es bietet zudem ein " -"API um die Inhalte individueller Felder in den Template-Dateien von Themes " -"darzustellen." - -#: includes/admin/admin.php:133 -#, php-format -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 Sie ihre erste Feldgruppe erstellen, empfehlen wir Ihnen zuerst einmal " -"unser Erste Schritte Handbuch durchzulesen " -"um sich mit der Philosophie hinter dem Plugin und den bewährtesten Praktiken " -"vertraut zu machen." - -#: includes/admin/admin.php:136 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Bitte nutzen Sie das Hilfe & Support-Tab um sich mit uns in Verbindung zu " -"setzen für den Fall, dass Sie Hilfe benötigen." - -#: includes/admin/admin.php:145 includes/admin/admin.php:147 -msgid "Help & Support" -msgstr "Hilfe & Support" - -#: includes/admin/admin.php:148 -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 sind geradezu fanatisch im Bezug auf Support und wollen, dass Sie das " -"beste aus ihrer Website mit ACF herausholen. Sollten Sie auf Probleme " -"stossen gibt es mehrere Stellen an denen Sie Hilfe finden können:" - -#: includes/admin/admin.php:151 -#, php-format -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Dokumentation. Unsere umfangreiche " -"Dokumentation enthält Referenzen und Anleitungen zu den meisten Situation in " -"die Sie geraten könnten." - -#: includes/admin/admin.php:155 -#, php-format -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 in unseren " -"Foren eine aktive und freundliche Community, die Ihnen vielleicht behilflich " -"sein kann sich in der ACF-Welt zurechtzufinden." - -#: includes/admin/admin.php:159 -#, php-format -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 Ihnen bei tiefer gehenden technischen Herausforderungen " -"helfend zur Seite stehen." - -# @ acf -#: includes/admin/admin.php:168 -msgid "Information" -msgstr "Information" - -# @ acf -#: includes/admin/admin.php:169 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -# @ acf -#: includes/admin/admin.php:170 -msgid "View details" -msgstr "Details anzeigen" - -#: includes/admin/admin.php:171 -msgid "Visit website" -msgstr "Website besuchen" - -# @ acf -#: includes/admin/admin.php:200 -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 -msgid "and" -msgstr "und" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Feldgruppen exportieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "PHP erstellen" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Keine Feldgruppen ausgewählt" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Eine Feldgruppe wurde exportiert." -msgstr[1] "%s Feldgruppen wurden exportiert." - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Feldgruppen auswählen" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:336 -msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." -msgstr "" -"Entscheiden Sie welche Feldgruppen Sie exportieren möchten und wählen dann " -"das Exportformat. Benutzen Sie den „Datei exportieren“-Button, um eine JSON-" -"Datei zu generieren, welche Sie im Anschluss in eine andere ACF-Installation " -"importieren können. Verwenden Sie den „PHP erstellen“-Button, um den " -"resultierenden PHP-Code in ihr Theme einfügen zu können." - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "Datei exportieren" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:414 -msgid "" -"The following code can be used to register a local version of the selected " -"field group(s). A local field group 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." -msgstr "" -"Der nachfolgende Code kann dazu verwendet werden eine lokale Version der " -"ausgewählten Feldgruppe(n) zu registrieren. Eine lokale Feldgruppe bietet " -"viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische " -"Felder und Einstellungen. Kopieren Sie einfach folgenden Code und füge ihn " -"in die functions.php oder eine externe Datei in Ihrem Theme ein." - -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "In die Zwischenablage kopieren" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Kopiert" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Feldgruppen importieren" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:47 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." -msgstr "" -"Wählen Sie die Advanced Custom Fields JSON-Datei aus, welche Sie importieren " -"möchten. Nach dem Klicken des „Datei importieren“-Buttons wird ACF die " -"Feldgruppen hinzufügen." - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Datei auswählen" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:62 -msgid "Import File" -msgstr "Datei importieren" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:169 -msgid "No file selected" -msgstr "Keine Datei ausgewählt" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -msgid "Error uploading file. Please try again" -msgstr "Fehler beim Upload der Datei. Bitte versuchen Sie es erneut" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "Falscher Dateityp" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:107 -msgid "Import file empty" -msgstr "Die importierte Datei ist leer" - -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Eine Feldgruppe importiert" -msgstr[1] "%s Feldgruppen importiert" - -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Bedingungen für die Anzeige" - -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Zeige dieses Feld, wenn" - -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Regelgruppe hinzufügen" - -# @ acf -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "Ziehen zum Sortieren" - -# @ acf -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Feld bearbeiten" - -# @ acf -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:151 -#: includes/fields/class-acf-field-image.php:131 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:337 -msgid "Edit" -msgstr "Bearbeiten" - -# @ acf -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Feld duplizieren" - -# @ acf -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Feld in eine andere Gruppe verschieben" - -# @ acf -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Verschieben" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Feld löschen" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Delete" -msgstr "Löschen" - -# @ acf -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Feldbeschriftung" - -# @ acf -#: includes/admin/views/field-group-field.php:66 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dieser Name wird in der Bearbeitungsansicht eines Beitrags angezeigt" - -# @ acf -#: includes/admin/views/field-group-field.php:75 -msgid "Field Name" -msgstr "Feldname" - -# @ acf -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" -"Einzelnes Wort ohne Leerzeichen. Es sind nur Unter- und Bindestriche als " -"Sonderzeichen erlaubt" - -# @ acf -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Feldtyp" - -# @ acf -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Anweisungen" - -# @ acf -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Anweisungen für die Autoren. Sie werden in der Bearbeitungsansicht angezeigt" - -# @ acf -#: includes/admin/views/field-group-field.php:106 -msgid "Required?" -msgstr "Erforderlich?" - -# @ acf -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Wrapper-Attribute" - -# @ acf -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "Breite" - -# @ acf -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "Klasse" - -# @ acf -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "ID" - -# @ acf -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Feld schließen" - -# @ acf -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Reihenfolge" - -# @ acf -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:583 -msgid "Label" -msgstr "Beschriftung" - -# @ acf -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:936 -#: pro/fields/class-acf-field-flexible-content.php:597 -msgid "Name" -msgstr "Name" - -# @ acf -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Typ" - -# @ acf -#: includes/admin/views/field-group-fields.php:14 -msgid "" -"No fields. Click the + Add Field button to create your " -"first field." -msgstr "" -"Es sind noch keine Felder angelegt. Klicken Sie den + Feld " -"hinzufügen-Button und erstellen Sie Ihr erstes Feld." - -# @ acf -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Feld hinzufügen" - -# @ acf -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Regeln" - -# @ acf -#: includes/admin/views/field-group-locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Erstellen Sie ein Regelwerk das festlegt welche Bearbeitungs-Ansichten diese " -"Advanced Custom Fields nutzen" - -# @ acf -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Stil" - -# @ acf -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "WP-Metabox (Standard)" - -# @ acf -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Übergangslos ohne Metabox" - -# @ acf -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Position" - -# @ acf -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Nach dem Titel vor dem Inhalt" - -# @ acf -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Nach dem Inhalt" - -# @ acf -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Seitlich neben dem Inhalt" - -# @ acf -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Platzierung der Beschriftung" - -# @ acf -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Über dem Feld" - -# @ acf -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Links neben dem Feld" - -# @ acf -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Platzierung der Anweisungen" - -# @ acf -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Unterhalb der Beschriftungen" - -# @ acf -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Unterhalb der Felder" - -# @ acf -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Reihenfolge" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "Feldgruppen mit einem niedrigeren Wert werden zuerst angezeigt" - -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "In der Feldgruppen-Liste anzeigen" - -# @ acf -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Permalink" - -# @ acf -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Inhalts-Editor" - -# @ acf -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Textauszug" - -# @ acf -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Diskussion" - -# @ acf -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Revisionen" - -# @ acf -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Titelform" - -# @ acf -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Autor" - -# @ acf -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Format" - -# @ acf -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Seiten-Attribute" - -# @ acf -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Featured Image" -msgstr "Beitragsbild" - -# @ acf -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Kategorien" - -# @ acf -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Schlagworte" - -# @ acf -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Sende Trackbacks" - -# @ acf -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Verstecken" - -# @ acf -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Wählen Sie die Elemente, welche in der Bearbeitungsansicht " -"verborgen werden sollen." - -# @ acf -#: includes/admin/views/field-group-options.php:129 -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 Nummer in " -"der Reihe)" - -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#, php-format -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. Markieren Sie die " -"gewünschten Seiten und klicken Sie dann %s." - -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Websites upgraden" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Website" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:74 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "Die Website ist aktuell" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Upgrade der Datenbank fertiggestellt. Zum Netzwerk Dashboard" - -#: includes/admin/views/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Bitte zumindest eine Website zum Upgrade auswählen." - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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 Sie ihre Datenbank sichern, bevor Sie " -"fortfahren. Sind sie sicher, dass Sie jetzt die Aktualisierung durchführen " -"wollen?" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Daten auf Version %s upgraden" - -# @ default -#: includes/admin/views/html-admin-page-upgrade-network.php:158 -msgid "Upgrade complete." -msgstr "Upgrade abgeschlossen." - -#: includes/admin/views/html-admin-page-upgrade-network.php:161 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Upgrade fehlgeschlagen." - -# @ acf -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Aufgaben für das Upgrade einlesen…" - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "" -"Datenbank-Upgrade abgeschlossen. Schauen Sie nach was es " -"Neues gibt" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "Keine Aktualisierungen verfügbar." - -#: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Zurück zur Werkzeugübersicht" - -# @ acf -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Zeige diese Felder, wenn" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Wiederholung" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Flexible Inhalte" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galerie" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:20 -msgid "Options Page" -msgstr "Options-Seite" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Es ist ein Upgrade der Datenbank erforderlich" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:22 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Danke für die Aktualisierung auf %s v%s!" - -#: includes/admin/views/html-notice-upgrade.php:22 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Die vorliegende Version enthält Verbesserungen für deine Datenbank und " -"erfordert ein Upgrade." - -#: includes/admin/views/html-notice-upgrade.php:24 -#, php-format -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Stellen Sie bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) auf die " -"neueste Version aktualisiert wurden." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:34 -msgid "Invalid field group parameter(s)." -msgstr "Ungültige(r) Feldgruppen-Parameter." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:41 -msgid "Invalid field group ID." -msgstr "Ungültige Feldgruppen-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:51 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "" -"Verzeihung, diese Feldgruppe steht für einen Diff-Vergleich nicht zur " -"Verfügung." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:57 -#, php-format -msgid "Last updated: %s" -msgstr "Zuletzt aktualisiert: %s" - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:62 -msgid "Original field group" -msgstr "Ursprüngliche Feldgruppe" - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:66 -msgid "JSON field group (newer)" -msgstr "JSON-Feldgruppe (neuer)" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Ungültiger Nonce." - -# @ acf -#: includes/api/api-helpers.php:844 -msgid "Thumbnail" -msgstr "Vorschaubild" - -# @ acf -#: includes/api/api-helpers.php:845 -msgid "Medium" -msgstr "Mittel" - -# @ acf -#: includes/api/api-helpers.php:846 -msgid "Large" -msgstr "Groß" - -# @ acf -#: includes/api/api-helpers.php:895 -msgid "Full Size" -msgstr "Volle Größe" - -# @ acf -#: includes/api/api-helpers.php:1632 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(ohne Titel)" - -# @ acf -#: includes/api/api-helpers.php:3596 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "Die Breite des Bildes muss mindestens %dpx sein." - -# @ acf -#: includes/api/api-helpers.php:3601 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." - -# @ acf -#: includes/api/api-helpers.php:3617 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "Die Höhe des Bildes muss mindestens %dpx sein." - -# @ acf -#: includes/api/api-helpers.php:3622 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." - -# @ acf -#: includes/api/api-helpers.php:3640 -#, php-format -msgid "File size must be at least %s." -msgstr "Die Dateigröße muss mindestens %s sein." - -# @ acf -#: includes/api/api-helpers.php:3645 -#, php-format -msgid "File size must not exceed %s." -msgstr "Die Dateigröße darf nicht größer als %s sein." - -# @ acf -#: includes/api/api-helpers.php:3679 -#, php-format -msgid "File type must be %s." -msgstr "Der Dateityp muss %s sein." - -# @ acf -#: includes/assets.php:343 -msgid "Are you sure?" -msgstr "Wirklich entfernen?" - -# @ acf -#: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Ja" - -# @ acf -#: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "Nein" - -# @ acf -#: includes/assets.php:346 includes/fields/class-acf-field-file.php:153 -#: includes/fields/class-acf-field-image.php:133 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:338 -#: pro/fields/class-acf-field-gallery.php:478 -msgid "Remove" -msgstr "Entfernen" - -#: includes/assets.php:347 -msgid "Cancel" -msgstr "Abbrechen" - -# @ acf -#: includes/assets.php:355 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen wird" - -# @ acf -#: includes/assets.php:358 -msgid "Validation successful" -msgstr "Überprüfung erfolgreich" - -# @ acf -#: includes/assets.php:359 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Überprüfung fehlgeschlagen" - -# @ acf -#: includes/assets.php:360 -msgid "1 field requires attention" -msgstr "Für 1 Feld ist eine Aktualisierung notwendig" - -# @ acf -#: includes/assets.php:361 -#, php-format -msgid "%d fields require attention" -msgstr "Für %d Felder ist eine Aktualisierung notwendig" - -# @ acf -#: includes/assets.php:364 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Feldgruppe bearbeiten" - -# @ acf -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Feldtyp existiert nicht" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Unbekannt" - -# @ acf -#: includes/fields.php:349 -msgid "Basic" -msgstr "Grundlage" - -# @ acf -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Inhalt" - -# @ acf -#: includes/fields.php:351 -msgid "Choice" -msgstr "Auswahl" - -# @ acf -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relational" - -# @ acf -#: includes/fields.php:353 -msgid "jQuery" -msgstr "jQuery" - -# @ acf -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:554 -#: pro/fields/class-acf-field-flexible-content.php:603 -#: pro/fields/class-acf-field-repeater.php:449 -msgid "Layout" -msgstr "Layout" - -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Akkordeon" - -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Geöffnet" - -#: includes/fields/class-acf-field-accordion.php:100 -msgid "Display this accordion as open on page load." -msgstr "Dieses Akkordeon beim Laden der Seite als geöffnet anzeigen." - -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "Gleichzeitig geöffnet" - -#: includes/fields/class-acf-field-accordion.php:110 -msgid "Allow this accordion to open without closing others." -msgstr "Erlaubt dieses Akkordeon zu öffnen ohne andere zu schließen." - -#: includes/fields/class-acf-field-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Endpunkt" - -#: includes/fields/class-acf-field-accordion.php:120 -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 " -"abschließende Akkordeon wird nicht sichtbar sein." - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button-Gruppe" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Auswahlmöglichkeiten" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Jede Auswahlmöglichkeit in eine neue Zeile eingeben." - -# @ acf -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Für mehr Kontrolle, können Sie sowohl einen Wert als auch eine Beschriftung " -"wie folgt angeben:" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "rot : Rot" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:506 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:781 -#: includes/fields/class-acf-field-user.php:63 -msgid "Allow Null?" -msgstr "NULL-Werte zulassen?" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:155 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:366 -msgid "Default Value" -msgstr "Standardwert" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:156 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:367 -msgid "Appears when creating a new post" -msgstr "Erscheint bei der Erstellung eines neuen Beitrags" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Horizontal" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Vertikal" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:214 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:826 -msgid "Return Value" -msgstr "Rückgabewert" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -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:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Wert" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "Beide (Array)" - -# @ acf -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:768 -msgid "Checkbox" -msgstr "Checkbox" - -# @ acf -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Alle auswählen" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Neue Auswahlmöglichkeit hinzufügen" - -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Individuelle Werte erlauben" - -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Erlaubt das Hinzufügen individueller Werte" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Individuelle Werte speichern" - -#: includes/fields/class-acf-field-checkbox.php:369 -msgid "Save 'custom' values to the field's choices" -msgstr "Individuelle Werte unter den Auswahlmöglichkeiten des Feldes speichern" - -# @ acf -#: includes/fields/class-acf-field-checkbox.php:381 -#: includes/fields/class-acf-field-select.php:374 -msgid "Enter each default value on a new line" -msgstr "Jeden Standardwert in einer neuen Zeile eingeben" - -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" -msgstr "Alle Auswählen" - -#: includes/fields/class-acf-field-checkbox.php:404 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Hängt eine zusätzliche Checkbox an mit der alle Optionen ausgewählt werden " -"können" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Farbauswahl" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Leeren" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Standard" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Farbe auswählen" - -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Current Color" -msgstr "Aktuelle Farbe" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumsauswahl" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Heute" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Nächstes" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorheriges" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "W" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Darstellungsformat" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -msgid "The format displayed when editing a post" -msgstr "Das Format für die Anzeige in der Bearbeitungsansicht" - -#: includes/fields/class-acf-field-date_picker.php:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Individuelles Format:" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "Speicherformat" - -#: includes/fields/class-acf-field-date_picker.php:198 -msgid "The format used when saving a value" -msgstr "Das Format das beim Speichern eines Wertes verwendet wird" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:194 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:628 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:79 -#: pro/fields/class-acf-field-gallery.php:557 -msgid "Return Format" -msgstr "Rückgabeformat" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "Das Format für die Ausgabe in den Template-Funktionen" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "Die Woche beginnt am" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datums- und Zeitauswahl" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zeit auswählen" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Zeit" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Stunde" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekunde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zeitzone" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Jetzt" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fertig" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -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 amText" -msgid "AM" -msgstr "Vorm." - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "Vorm." - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "Nachm." - -#: includes/fields/class-acf-field-date_time_picker.php:85 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "Nachm." - -# @ acf -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-Mail" - -# @ acf -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Platzhaltertext" - -# @ acf -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Platzhaltertext solange keine Eingabe im Feld vorgenommen wurde" - -# @ acf -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Voranstellen" - -# @ acf -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Wird dem Eingabefeld vorangestellt" - -# @ acf -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:203 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Anhängen" - -# @ acf -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:204 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Wird dem Eingabefeld hinten angestellt" - -# @ acf -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Datei" - -# @ acf -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Datei bearbeiten" - -# @ acf -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Datei aktualisieren" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Dateiname" - -# @ acf -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:247 -#: includes/fields/class-acf-field-file.php:258 -#: includes/fields/class-acf-field-image.php:254 -#: includes/fields/class-acf-field-image.php:283 -#: pro/fields/class-acf-field-gallery.php:642 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "File size" -msgstr "Dateigröße" - -# @ acf -#: includes/fields/class-acf-field-file.php:169 -msgid "Add File" -msgstr "Datei hinzufügen" - -# @ acf -#: includes/fields/class-acf-field-file.php:220 -msgid "File Array" -msgstr "Datei-Array" - -# @ acf -#: includes/fields/class-acf-field-file.php:221 -msgid "File URL" -msgstr "Datei-URL" - -# @ acf -#: includes/fields/class-acf-field-file.php:222 -msgid "File ID" -msgstr "Datei-ID" - -# @ acf -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:592 -msgid "Library" -msgstr "Mediathek" - -# @ acf -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:593 -msgid "Limit the media library choice" -msgstr "Beschränkt die Auswahl in der Mediathek" - -# @ acf -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:225 -#: includes/locations/class-acf-location-attachment.php:71 -#: includes/locations/class-acf-location-comment.php:59 -#: includes/locations/class-acf-location-nav-menu.php:72 -#: includes/locations/class-acf-location-taxonomy.php:61 -#: includes/locations/class-acf-location-user-form.php:65 -#: includes/locations/class-acf-location-user-role.php:76 -#: includes/locations/class-acf-location-widget.php:63 -#: pro/fields/class-acf-field-gallery.php:598 -#: pro/locations/class-acf-location-block.php:64 -msgid "All" -msgstr "Alle" - -# @ acf -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:226 -#: pro/fields/class-acf-field-gallery.php:599 -msgid "Uploaded to post" -msgstr "Für den Beitrag hochgeladen" - -# @ acf -#: includes/fields/class-acf-field-file.php:243 -#: includes/fields/class-acf-field-image.php:233 -#: pro/fields/class-acf-field-gallery.php:621 -msgid "Minimum" -msgstr "Minimum" - -# @ acf -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "Beschränkt welche Dateien hochgeladen werden können" - -# @ acf -#: includes/fields/class-acf-field-file.php:254 -#: includes/fields/class-acf-field-image.php:262 -#: pro/fields/class-acf-field-gallery.php:650 -msgid "Maximum" -msgstr "Maximum" - -# @ acf -#: includes/fields/class-acf-field-file.php:265 -#: includes/fields/class-acf-field-image.php:291 -#: pro/fields/class-acf-field-gallery.php:678 -msgid "Allowed file types" -msgstr "Erlaubte Dateiformate" - -# @ acf -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:292 -#: pro/fields/class-acf-field-gallery.php:679 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Eine durch Komma getrennte Liste. Leer lassen um alle Dateiformate zu " -"erlauben" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Maps" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:59 -msgid "Sorry, this browser does not support geolocation" -msgstr "Dieser Browser unterstützt keine Geo-Lokation" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:146 -#: includes/fields/class-acf-field-relationship.php:587 -msgid "Search" -msgstr "Suchen" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Position löschen" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Aktuelle Position finden" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Nach der Adresse suchen..." - -# @ acf -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Mittelpunkt" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Mittelpunkt der Ausgangskarte" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Zoom" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Legt die anfängliche Zoomstufe der Karte fest" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:633 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Height" -msgstr "Höhe" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Passt die Höhe der Karte an" - -# @ acf -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Gruppe" - -# @ acf -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:385 -msgid "Sub Fields" -msgstr "Unterfelder" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "Gibt die Art an wie die ausgewählten Felder ausgegeben werden sollen" - -# @ acf -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:615 -#: pro/fields/class-acf-field-repeater.php:457 -#: pro/locations/class-acf-location-block.php:20 -msgid "Block" -msgstr "Block" - -# @ acf -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:456 -msgid "Table" -msgstr "Tabelle" - -# @ acf -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:616 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Row" -msgstr "Reihe" - -# @ acf -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Bild" - -# @ acf -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Bild auswählen" - -# @ acf -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Bild bearbeiten" - -# @ acf -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Bild aktualisieren" - -# @ acf -#: includes/fields/class-acf-field-image.php:66 includes/media.php:61 -msgid "All images" -msgstr "Alle Bilder" - -# @ acf -#: includes/fields/class-acf-field-image.php:148 -msgid "No image selected" -msgstr "Kein Bild ausgewählt" - -# @ acf -#: includes/fields/class-acf-field-image.php:148 -msgid "Add Image" -msgstr "Bild hinzufügen" - -# @ acf -#: includes/fields/class-acf-field-image.php:200 -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image Array" -msgstr "Bild-Array" - -# @ acf -#: includes/fields/class-acf-field-image.php:201 -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image URL" -msgstr "Bild-URL" - -# @ acf -#: includes/fields/class-acf-field-image.php:202 -#: pro/fields/class-acf-field-gallery.php:565 -msgid "Image ID" -msgstr "Bild-ID" - -# @ acf -#: includes/fields/class-acf-field-image.php:209 -#: pro/fields/class-acf-field-gallery.php:571 -msgid "Preview Size" -msgstr "Maße der Vorschau" - -# @ acf -#: includes/fields/class-acf-field-image.php:234 -#: includes/fields/class-acf-field-image.php:263 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Restrict which images can be uploaded" -msgstr "Beschränkt welche Bilder hochgeladen werden können" - -# @ acf -#: includes/fields/class-acf-field-image.php:237 -#: includes/fields/class-acf-field-image.php:266 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:625 -#: pro/fields/class-acf-field-gallery.php:654 -msgid "Width" -msgstr "Breite" - -# @ acf -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -# @ acf -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Link auswählen" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "In einem neuen Fenster/Tab öffnen" - -# @ acf -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Link-Array" - -# @ acf -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "Link-URL" - -# @ acf -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Mitteilung" - -# @ acf -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Neue Zeilen" - -# @ acf -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Legt fest wie Zeilenumbrüche gerendert werden" - -# @ acf -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Automatisches hinzufügen von Absätzen" - -# @ acf -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Automatisches hinzufügen von <br>" - -# @ acf -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Keine Formatierung" - -# @ acf -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -# @ acf -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" -"Erlaubt HTML-Markup als sichtbaren Text anzuzeigen anstelle diesen zu rendern" - -# @ acf -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Numerisch" - -# @ acf -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:164 -msgid "Minimum Value" -msgstr "Mindestwert" - -# @ acf -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:174 -msgid "Maximum Value" -msgstr "Maximalwert" - -# @ acf -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:184 -msgid "Step Size" -msgstr "Schrittweite" - -# @ acf -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Wert muss eine Zahl sein" - -# @ acf -#: includes/fields/class-acf-field-number.php:237 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "Wert muss größer oder gleich %d sein" - -# @ acf -#: includes/fields/class-acf-field-number.php:245 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "Wert muss kleiner oder gleich %d sein" - -# @ acf -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -# @ acf -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "URL eingeben" - -# @ acf -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Maße" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Seiten-Link" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:170 -msgid "Archives" -msgstr "Archive" - -#: includes/fields/class-acf-field-page_link.php:262 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:958 -msgid "Parent" -msgstr "Übergeordnet" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:478 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:554 -msgid "Filter by Post Type" -msgstr "Nach Inhaltstyp filtern" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:486 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:562 -msgid "All post types" -msgstr "Alle Inhaltstypen" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:492 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "Filter by Taxonomy" -msgstr "Nach Taxonomien filtern" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:500 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:576 -msgid "All taxonomies" -msgstr "Alle Taxonomien" - -#: includes/fields/class-acf-field-page_link.php:516 -msgid "Allow Archives URLs" -msgstr "Archiv-URL's zulassen" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:526 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:71 -msgid "Select multiple values?" -msgstr "Mehrere Werte auswählbar?" - -# @ acf -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Passwort" - -# @ acf -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:633 -msgid "Post Object" -msgstr "Beitrags-Objekt" - -# @ acf -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:634 -msgid "Post ID" -msgstr "Beitrags-ID" - -# @ acf -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio-Button" - -# @ acf -#: includes/fields/class-acf-field-radio.php:254 -msgid "Other" -msgstr "Weitere" - -# @ acf -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "" -"Das Hinzufügen der Auswahlmöglichkeit ‚Weitere‘ erlaubt benutzerdefinierte " -"Werte" - -# @ acf -#: includes/fields/class-acf-field-radio.php:265 -msgid "Save Other" -msgstr "Weitere speichern" - -# @ acf -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "Weitere Werte unter den Auswahlmöglichkeiten des Feldes speichern" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Numerischer Bereich" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Beziehung" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximum der Einträge mit ({max} Einträge) erreicht" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "Lade" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Keine Übereinstimmung gefunden" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Inhaltstyp auswählen" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Taxonomie auswählen" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Suchen..." - -# @ acf -#: includes/fields/class-acf-field-relationship.php:582 -msgid "Filters" -msgstr "Filter" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:588 -#: includes/locations/class-acf-location-post-type.php:20 -msgid "Post Type" -msgstr "Inhaltstyp" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:589 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:751 -#: includes/locations/class-acf-location-taxonomy.php:20 -msgid "Taxonomy" -msgstr "Taxonomie" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:596 -msgid "Elements" -msgstr "Elemente" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:597 -msgid "Selected elements will be displayed in each result" -msgstr "Die ausgewählten Elemente werden in jedem Ergebnis angezeigt" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Minimum posts" -msgstr "Mindestzahl an Beiträgen" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:617 -msgid "Maximum posts" -msgstr "Höchstzahl an Beiträgen" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:721 -#: pro/fields/class-acf-field-gallery.php:779 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s benötigt mindestens %s Selektion" -msgstr[1] "%s benötigt mindestens %s Selektionen" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:773 -msgctxt "noun" -msgid "Select" -msgstr "Auswahl" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" -"Es ist ein Ergebnis verfügbar, drücken Sie die Eingabetaste um es " -"auszuwählen." - -#: includes/fields/class-acf-field-select.php:112 -#, php-format -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, benutzen Sie die Pfeiltasten um nach oben " -"und unten zu navigieren." - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Keine Übereinstimmungen gefunden" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Geben Sie bitte ein oder mehr Zeichen ein" - -#: includes/fields/class-acf-field-select.php:115 -#, php-format -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Geben Sie bitte %d oder mehr Zeichen ein" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Löschen Sie bitte ein Zeichen" - -#: includes/fields/class-acf-field-select.php:117 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Löschen Sie bitte %d Zeichen" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Sie können nur ein Element auswählen" - -#: includes/fields/class-acf-field-select.php:119 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Sie können nur %d Elemente auswählen" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Mehr Ergebnisse laden…" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Suchen…" - -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Laden fehlgeschlagen" - -#: includes/fields/class-acf-field-select.php:259 includes/media.php:54 -msgctxt "verb" -msgid "Select" -msgstr "Auswählen" - -# @ acf -#: includes/fields/class-acf-field-select.php:402 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "Select2-Library aktivieren" - -# @ acf -#: includes/fields/class-acf-field-select.php:412 -msgid "Use AJAX to lazy load choices?" -msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu laden?" - -#: includes/fields/class-acf-field-select.php:428 -msgid "Specify the value returned" -msgstr "Legen Sie den Rückgabewert fest" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Trennelement" - -# @ acf -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Tab" - -# @ acf -#: includes/fields/class-acf-field-tab.php:102 -msgid "Placement" -msgstr "Platzierung" - -#: includes/fields/class-acf-field-tab.php:115 -msgid "" -"Define an endpoint for the previous tabs to stop. This will start a new " -"group of tabs." -msgstr "" -"Definiert einen Endpunkt an dem die vorangegangenen Tabs enden. Das ist der " -"Startpunkt für eine neue Gruppe an Tabs." - -#: includes/fields/class-acf-field-taxonomy.php:711 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "Keine %s" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the taxonomy to be displayed" -msgstr "Wählen Sie die Taxonomie, welche angezeigt werden soll" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Appearance" -msgstr "Anzeige" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Select the appearance of this field" -msgstr "Wählen Sie das Aussehen für dieses Feld" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:767 -msgid "Multiple Values" -msgstr "Mehrere Werte" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:769 -msgid "Multi Select" -msgstr "Auswahlmenü" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Single Value" -msgstr "Einzelne Werte" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Radio Buttons" -msgstr "Radio Button" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:796 -msgid "Create Terms" -msgstr "Begriffe erstellen" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:797 -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:806 -msgid "Save Terms" -msgstr "Begriffe speichern" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Connect selected terms to the post" -msgstr "Verbindet die ausgewählten Begriffe mit dem Beitrag" - -#: includes/fields/class-acf-field-taxonomy.php:816 -msgid "Load Terms" -msgstr "Begriffe laden" - -#: includes/fields/class-acf-field-taxonomy.php:817 -msgid "Load value from posts terms" -msgstr "Den Wert aus den Begriffen des Beitrags laden" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:831 -msgid "Term Object" -msgstr "Begriffs-Objekt" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:832 -msgid "Term ID" -msgstr "Begriffs-ID" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:882 -#, php-format -msgid "User unable to add new %s" -msgstr "Der Benutzer kann keine neue %s hinzufügen" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:892 -#, php-format -msgid "%s already exists" -msgstr "%s ist bereits vorhanden" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:924 -#, php-format -msgid "%s added" -msgstr "%s hinzugefügt" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:970 -#: includes/locations/class-acf-location-user-form.php:66 -msgid "Add" -msgstr "Hinzufügen" - -# @ acf -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text einzeilig" - -# @ acf -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Zeichenbegrenzung" - -# @ acf -#: includes/fields/class-acf-field-text.php:132 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Leer lassen für keine Begrenzung" - -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:213 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "Wert darf %d Zeichen nicht überschreiten" - -# @ acf -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Text mehrzeilig" - -# @ acf -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Zeilenanzahl" - -# @ acf -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Definiert die Höhe des Textfelds" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Zeitauswahl" - -# @ acf -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Wahr / Falsch" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Zeigt den Text neben der Checkbox an" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Wenn aktiv" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Der Text der im aktiven Zustand angezeigt wird" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Wenn inaktiv" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Der Text der im inaktiven Zustand angezeigt wird" - -# @ acf -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "URL" - -# @ acf -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Bitte eine gültige URL eingeben" - -# @ acf -#: includes/fields/class-acf-field-user.php:20 includes/locations.php:99 -msgid "User" -msgstr "Benutzer" - -# @ acf -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by role" -msgstr "Nach Rolle filtern" - -# @ acf -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alle Benutzerrollen" - -# @ acf -#: includes/fields/class-acf-field-user.php:84 -msgid "User Array" -msgstr "Benutzer-Array" - -# @ acf -#: includes/fields/class-acf-field-user.php:85 -msgid "User Object" -msgstr "Benutzer-Objekt" - -# @ acf -#: includes/fields/class-acf-field-user.php:86 -msgid "User ID" -msgstr "Benutzer-ID" - -#: includes/fields/class-acf-field-user.php:334 -msgid "Error loading field." -msgstr "Fehler beim Laden des Feldes." - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "WYSIWYG-Editor" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:315 -msgid "Visual" -msgstr "Visuell" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:316 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-wysiwyg.php:322 -msgid "Click to initialize TinyMCE" -msgstr "Klicken um TinyMCE zu initialisieren" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:375 -msgid "Tabs" -msgstr "Tabs" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:380 -msgid "Visual & Text" -msgstr "Visuell & Text" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:381 -msgid "Visual Only" -msgstr "Nur Visuell" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:382 -msgid "Text Only" -msgstr "Nur Text" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:389 -msgid "Toolbar" -msgstr "Werkzeugleiste" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:404 -msgid "Show Media Upload Buttons?" -msgstr "Button zum Hochladen von Medien anzeigen?" - -#: includes/fields/class-acf-field-wysiwyg.php:414 -msgid "Delay initialization?" -msgstr "Initialisierung verzögern?" - -#: includes/fields/class-acf-field-wysiwyg.php:415 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" - -# @ acf -#: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353 -msgid "Title" -msgstr "Titel" - -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "E-Mail bestätigen" - -# @ acf -#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 -#: pro/options-page.php:81 -msgid "Update" -msgstr "Aktualisieren" - -# @ acf -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "Beitrag aktualisiert" - -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "Spam entdeckt" - -#: includes/forms/form-user.php:336 -#, php-format -msgid "ERROR: %s" -msgstr "FEHLER: %s" - -# @ acf -#: includes/locations.php:23 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "Die Klasse „%s“ existiert nicht." - -#: includes/locations.php:34 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "Positions-Typ „%s“ ist bereits registriert." - -# @ acf -#: includes/locations.php:97 includes/locations/class-acf-location-post.php:20 -msgid "Post" -msgstr "Beitrag" - -# @ acf -#: includes/locations.php:98 includes/locations/class-acf-location-page.php:20 -msgid "Page" -msgstr "Seite" - -# @ acf -#: includes/locations.php:100 -msgid "Forms" -msgstr "Formulare" - -# @ acf -#: includes/locations/abstract-acf-location.php:103 -msgid "is equal to" -msgstr "ist gleich" - -# @ acf -#: includes/locations/abstract-acf-location.php:104 -msgid "is not equal to" -msgstr "ist ungleich" - -# @ acf -#: includes/locations/class-acf-location-attachment.php:20 -msgid "Attachment" -msgstr "Anhang" - -#: includes/locations/class-acf-location-attachment.php:82 -#, php-format -msgid "All %s formats" -msgstr "Alle %s Formate" - -# @ acf -#: includes/locations/class-acf-location-comment.php:20 -msgid "Comment" -msgstr "Kommentar" - -# @ acf -#: includes/locations/class-acf-location-current-user-role.php:20 -msgid "Current User Role" -msgstr "Aktuelle Benutzerrolle" - -# @ acf -#: includes/locations/class-acf-location-current-user-role.php:75 -msgid "Super Admin" -msgstr "Super-Administrator" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:20 -msgid "Current User" -msgstr "Aktueller Benutzer" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:69 -msgid "Logged in" -msgstr "Angemeldet" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:70 -msgid "Viewing front end" -msgstr "Frontend anzeigen" - -# @ acf -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Viewing back end" -msgstr "Backend anzeigen" - -#: includes/locations/class-acf-location-nav-menu-item.php:20 -msgid "Menu Item" -msgstr "Menüelement" - -#: includes/locations/class-acf-location-nav-menu.php:20 -msgid "Menu" -msgstr "Menü" - -# @ acf -#: includes/locations/class-acf-location-nav-menu.php:78 -msgid "Menu Locations" -msgstr "Menüpositionen" - -# @ acf -#: includes/locations/class-acf-location-page-parent.php:20 -msgid "Page Parent" -msgstr "Übergeordnete Seite" - -# @ acf -#: includes/locations/class-acf-location-page-template.php:20 -msgid "Page Template" -msgstr "Seiten-Template" - -# @ acf -#: includes/locations/class-acf-location-page-template.php:71 -#: includes/locations/class-acf-location-post-template.php:83 -msgid "Default Template" -msgstr "Standard-Template" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:20 -msgid "Page Type" -msgstr "Seitentyp" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:105 -msgid "Front Page" -msgstr "Startseite" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:106 -msgid "Posts Page" -msgstr "Beitrags-Seite" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:107 -msgid "Top Level Page (no parent)" -msgstr "Seite ohne übergeordnete Seiten" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:108 -msgid "Parent Page (has children)" -msgstr "Übergeordnete Seite (mit Unterseiten)" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:109 -msgid "Child Page (has parent)" -msgstr "Unterseite (mit übergeordneter Seite)" - -# @ acf -#: includes/locations/class-acf-location-post-category.php:20 -msgid "Post Category" -msgstr "Beitragskategorie" - -# @ acf -#: includes/locations/class-acf-location-post-format.php:20 -msgid "Post Format" -msgstr "Beitragsformat" - -# @ acf -#: includes/locations/class-acf-location-post-status.php:20 -msgid "Post Status" -msgstr "Beitragsstatus" - -# @ acf -#: includes/locations/class-acf-location-post-taxonomy.php:20 -msgid "Post Taxonomy" -msgstr "Beitrags-Taxonomie" - -# @ acf -#: includes/locations/class-acf-location-post-template.php:20 -msgid "Post Template" -msgstr "Beitrags-Template" - -# @ acf -#: includes/locations/class-acf-location-user-form.php:20 -msgid "User Form" -msgstr "Benutzerformular" - -# @ acf -#: includes/locations/class-acf-location-user-form.php:67 -msgid "Add / Edit" -msgstr "Hinzufügen / Bearbeiten" - -# @ acf -#: includes/locations/class-acf-location-user-form.php:68 -msgid "Register" -msgstr "Registrieren" - -# @ acf -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Benutzerrolle" - -# @ acf -#: includes/locations/class-acf-location-widget.php:20 -msgid "Widget" -msgstr "Widget" - -#: includes/media.php:55 -msgctxt "verb" -msgid "Edit" -msgstr "Bearbeiten" - -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Aktualisieren" - -# @ acf -#: includes/media.php:57 -msgid "Uploaded to this post" -msgstr "Zu diesem Beitrag hochgeladen" - -# @ acf -#: includes/media.php:58 -msgid "Expand Details" -msgstr "Details einblenden" - -# @ acf -#: includes/media.php:59 -msgid "Collapse Details" -msgstr "Details ausblenden" - -#: includes/media.php:60 -msgid "Restricted" -msgstr "Eingeschränkt" - -# @ acf -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "%s Wert ist erforderlich" - -# @ acf -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" # @ acf -#: pro/admin/admin-options-page.php:198 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Name des Block-Typs wird benötigt." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Block-Typ „%s“ ist bereits registriert." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Zum Bearbeiten wechseln" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Zur Vorschau wechseln" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Ausrichtung des Inhalts ändern" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s Einstellungen" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +# @ acf +#: pro/options-page.php:47 +msgid "Options" +msgstr "Optionen" + +# @ acf +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Aktualisieren" + +# @ acf +#: 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 "" + +# @ acf +#: pro/updates.php:279, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Erneut suchen" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "" + +# @ acf +#: pro/admin/admin-options-page.php:195 msgid "Publish" msgstr "Veröffentlichen" # @ acf -#: pro/admin/admin-options-page.php:204 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -3235,18 +131,24 @@ msgstr "" "Feldgruppe erstellen" # @ acf -#: pro/admin/admin-updates.php:49 +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Feldgruppe bearbeiten" + +# @ acf +#: pro/admin/admin-updates.php:52 msgid "Error. Could not connect to update server" msgstr "" "Fehler. Es konnte keine Verbindung zum Aktualisierungsserver " "hergestellt werden" # @ acf -#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 msgid "Updates" msgstr "Aktualisierungen" -#: pro/admin/admin-updates.php:191 +#: pro/admin/admin-updates.php:209 msgid "" "Error. Could not authenticate update package. Please check again or " "deactivate and reactivate your ACF PRO license." @@ -3255,224 +157,176 @@ msgstr "" "Bitte probieren Sie es nochmal oder deaktivieren und reaktivieren Sie ihre " "ACF PRO-Lizenz." -# @ acf -#: pro/admin/views/html-settings-updates.php:7 -msgid "Deactivate License" -msgstr "Lizenz deaktivieren" - -# @ acf -#: pro/admin/views/html-settings-updates.php:7 -msgid "Activate License" -msgstr "Lizenz aktivieren" - -#: pro/admin/views/html-settings-updates.php:17 -msgid "License Information" -msgstr "Lizenzinformation" - -#: pro/admin/views/html-settings-updates.php:20 -#, php-format +#: pro/admin/admin-updates.php:196 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." 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." - -# @ acf -#: pro/admin/views/html-settings-updates.php:29 -msgid "License Key" -msgstr "Lizenzschlüssel" - -# @ acf -#: pro/admin/views/html-settings-updates.php:61 -msgid "Update Information" -msgstr "Aktualisierungsinformationen" - -# @ acf -#: pro/admin/views/html-settings-updates.php:68 -msgid "Current Version" -msgstr "Installierte Version" - -# @ acf -#: pro/admin/views/html-settings-updates.php:76 -msgid "Latest Version" -msgstr "Aktuellste Version" - -# @ acf -#: pro/admin/views/html-settings-updates.php:84 -msgid "Update Available" -msgstr "Aktualisierung verfügbar" - -# @ acf -#: pro/admin/views/html-settings-updates.php:92 -msgid "Update Plugin" -msgstr "Plugin aktualisieren" - -# @ acf -#: pro/admin/views/html-settings-updates.php:94 -msgid "Please enter your license key above to unlock updates" -msgstr "" -"Bitte geben Sie oben Ihren Lizenzschlüssel ein um die " -"Aktualisierungsfähigkeit freizuschalten" - -# @ acf -#: pro/admin/views/html-settings-updates.php:100 -msgid "Check Again" -msgstr "Erneut suchen" - -# @ acf -#: pro/admin/views/html-settings-updates.php:107 -msgid "Changelog" -msgstr "Änderungsprotokoll" - -# @ acf -#: pro/admin/views/html-settings-updates.php:117 -msgid "Upgrade Notice" -msgstr "Hinweis zum Upgrade" - -# @ acf -#: pro/blocks.php:36 -msgid "Block type name is required." -msgstr "Name des Block-Typs wird benötigt." - -#: pro/blocks.php:43 -#, php-format -msgid "Block type \"%s\" is already registered." -msgstr "Block-Typ „%s“ ist bereits registriert." - -#: pro/blocks.php:418 -msgid "Switch to Edit" -msgstr "Zum Bearbeiten wechseln" - -#: pro/blocks.php:419 -msgid "Switch to Preview" -msgstr "Zur Vorschau wechseln" - -#: pro/blocks.php:420 -msgid "Change content alignment" -msgstr "Ausrichtung des Inhalts ändern" - -#: pro/blocks.php:423 -#, php-format -msgid "%s settings" -msgstr "%s Einstellungen" #: pro/fields/class-acf-field-clone.php:25 msgctxt "noun" msgid "Clone" msgstr "Klon" -#: pro/fields/class-acf-field-clone.php:812 +# @ acf +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Felder" + +#: pro/fields/class-acf-field-clone.php:815 msgid "Select one or more fields you wish to clone" msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten" # @ acf -#: pro/fields/class-acf-field-clone.php:829 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "Anzeige" -#: pro/fields/class-acf-field-clone.php:830 +#: pro/fields/class-acf-field-clone.php:835 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:835 +#: pro/fields/class-acf-field-clone.php:840 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:836 +#: pro/fields/class-acf-field-clone.php:841 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:857 -#, php-format +# @ acf +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Gibt die Art an wie die ausgewählten Felder ausgegeben werden sollen" + +# @ acf +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Block" + +# @ acf +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabelle" + +# @ acf +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Reihe" + +#: pro/fields/class-acf-field-clone.php:864 msgid "Labels will be displayed as %s" msgstr "Beschriftungen werden als %s angezeigt" -#: pro/fields/class-acf-field-clone.php:860 +#: pro/fields/class-acf-field-clone.php:869 msgid "Prefix Field Labels" msgstr "Präfix für Feldbeschriftungen" -#: pro/fields/class-acf-field-clone.php:871 -#, php-format +#: pro/fields/class-acf-field-clone.php:880 msgid "Values will be saved as %s" msgstr "Werte werden als %s gespeichert" -#: pro/fields/class-acf-field-clone.php:874 +#: pro/fields/class-acf-field-clone.php:885 msgid "Prefix Field Names" msgstr "Präfix für Feldnamen" -#: pro/fields/class-acf-field-clone.php:992 +#: pro/fields/class-acf-field-clone.php:1001 msgid "Unknown field" msgstr "Unbekanntes Feld" -#: pro/fields/class-acf-field-clone.php:1031 +# @ acf +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(ohne Titel)" + +#: pro/fields/class-acf-field-clone.php:1038 msgid "Unknown field group" msgstr "Unbekannte Feldgruppe" -#: pro/fields/class-acf-field-clone.php:1035 -#, php-format +#: pro/fields/class-acf-field-clone.php:1042 msgid "All fields from %s field group" msgstr "Alle Felder der Feldgruppe %s" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:193 -#: pro/fields/class-acf-field-repeater.php:469 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexible Inhalte" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "Eintrag hinzufügen" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:73 -#: pro/fields/class-acf-field-flexible-content.php:926 -#: pro/fields/class-acf-field-flexible-content.php:1008 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" msgstr[0] "Layout" msgstr[1] "Layouts" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:74 +#: pro/fields/class-acf-field-flexible-content.php:72 msgid "layouts" msgstr "Einträge" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:77 -#: pro/fields/class-acf-field-flexible-content.php:925 -#: pro/fields/class-acf-field-flexible-content.php:1007 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 msgid "This field requires at least {min} {label} {identifier}" msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:78 +#: pro/fields/class-acf-field-flexible-content.php:76 msgid "This field has a limit of {max} {label} {identifier}" msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:81 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{available} {label} {identifier} available (max {max})" msgstr "{available} {label} {identifier} möglich (max {max})" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:82 +#: pro/fields/class-acf-field-flexible-content.php:80 msgid "{required} {label} {identifier} required (min {min})" msgstr "{required} {label} {identifier} erforderlich (min {min})" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:83 msgid "Flexible Content requires at least 1 layout" msgstr "Flexibler Inhalt benötigt mindestens ein Layout" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:287 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:276 msgid "Click the \"%s\" button below to start creating your layout" msgstr "Klicke \"%s\" zum Erstellen des Layouts" +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Ziehen zum Sortieren" + # @ acf #: pro/fields/class-acf-field-flexible-content.php:413 msgid "Add layout" @@ -3488,62 +342,109 @@ msgstr "Layout duplizieren" msgid "Remove layout" msgstr "Layout entfernen" -#: pro/fields/class-acf-field-flexible-content.php:416 -#: pro/fields/class-acf-field-repeater.php:301 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" msgstr "Zum Auswählen anklicken" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder Layout" msgstr "Layout sortieren" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder" msgstr "Sortieren" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:557 +#: pro/fields/class-acf-field-flexible-content.php:552 msgid "Delete Layout" msgstr "Layout löschen" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:558 +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Löschen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:553 msgid "Duplicate Layout" msgstr "Layout duplizieren" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:559 +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:554 msgid "Add New Layout" msgstr "Neues Layout hinzufügen" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:631 +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Erstellen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Beschriftung" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Name" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "Min" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:644 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "Max" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:671 -#: pro/fields/class-acf-field-repeater.php:465 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "Button-Beschriftung" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:680 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "Mindestzahl an Layouts" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:689 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "Höchstzahl an Layouts" +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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] "" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + # @ acf #: pro/fields/class-acf-field-gallery.php:73 msgid "Add Image to Gallery" @@ -3555,183 +456,2621 @@ msgid "Maximum selection reached" msgstr "Maximale Auswahl erreicht" # @ acf -#: pro/fields/class-acf-field-gallery.php:322 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "Länge" -#: pro/fields/class-acf-field-gallery.php:362 +# @ acf +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Bearbeiten" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Entfernen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Titel" + +#: pro/fields/class-acf-field-gallery.php:364 msgid "Caption" msgstr "Bildunterschrift" -#: pro/fields/class-acf-field-gallery.php:371 +#: pro/fields/class-acf-field-gallery.php:376 msgid "Alt Text" msgstr "Alt Text" # @ acf -#: pro/fields/class-acf-field-gallery.php:487 +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Beschreibung" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "Zur Galerie hinzufügen" # @ acf -#: pro/fields/class-acf-field-gallery.php:491 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "Massenverarbeitung" # @ acf -#: pro/fields/class-acf-field-gallery.php:492 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "Sortiere nach Upload-Datum" # @ acf -#: pro/fields/class-acf-field-gallery.php:493 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "Sortiere nach Änderungs-Datum" # @ acf -#: pro/fields/class-acf-field-gallery.php:494 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "Sortiere nach Titel" # @ acf -#: pro/fields/class-acf-field-gallery.php:495 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "Aktuelle Sortierung umkehren" # @ acf -#: pro/fields/class-acf-field-gallery.php:507 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "Schließen" +# @ acf +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Rückgabeformat" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Bild-Array" + +# @ acf #: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Bild-URL" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Bild-ID" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Maße der Vorschau" + +#: pro/fields/class-acf-field-gallery.php:602 msgid "Insert" msgstr "Einfügen" -#: pro/fields/class-acf-field-gallery.php:581 +#: pro/fields/class-acf-field-gallery.php:603 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:585 +#: pro/fields/class-acf-field-gallery.php:607 msgid "Append to the end" msgstr "Anhängen" -#: pro/fields/class-acf-field-gallery.php:586 +#: pro/fields/class-acf-field-gallery.php:608 msgid "Prepend to the beginning" msgstr "Voranstellen" # @ acf -#: pro/fields/class-acf-field-gallery.php:605 +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Mediathek" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Beschränkt die Auswahl in der Mediathek" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Alle" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Für den Beitrag hochgeladen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:633 msgid "Minimum Selection" msgstr "Minimale Auswahl" # @ acf -#: pro/fields/class-acf-field-gallery.php:613 +#: pro/fields/class-acf-field-gallery.php:644 msgid "Maximum Selection" msgstr "Maximale Auswahl" # @ acf -#: pro/fields/class-acf-field-repeater.php:65 -#: pro/fields/class-acf-field-repeater.php:662 +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Beschränkt welche Bilder hochgeladen werden können" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Breite" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Höhe" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Dateigröße" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maximum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Erlaubte Dateiformate" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Eine durch Komma getrennte Liste. Leer lassen um alle Dateiformate zu " +"erlauben" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Wiederholung" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "Mindestzahl der Einträge hat ({min} Reihen) erreicht" # @ acf -#: pro/fields/class-acf-field-repeater.php:66 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "Höchstzahl der Einträge hat ({max} Reihen) erreicht" -# @ acf -#: pro/fields/class-acf-field-repeater.php:338 -msgid "Add row" -msgstr "Eintrag hinzufügen" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" # @ acf -#: pro/fields/class-acf-field-repeater.php:339 -msgid "Duplicate row" -msgstr "Zeile duplizieren" +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Unterfelder" -# @ acf -#: pro/fields/class-acf-field-repeater.php:340 -msgid "Remove row" -msgstr "Eintrag löschen" - -#: pro/fields/class-acf-field-repeater.php:418 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" msgstr "Zugeklappt" -#: pro/fields/class-acf-field-repeater.php:419 +#: pro/fields/class-acf-field-repeater.php:175 msgid "Select a sub field to show when row is collapsed" msgstr "" "Wähle ein Unterfelder welches im zugeklappten Zustand angezeigt werden soll" # @ acf -#: pro/fields/class-acf-field-repeater.php:429 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "Mindestzahl der Einträge" # @ acf -#: pro/fields/class-acf-field-repeater.php:439 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "Höchstzahl der Einträge" +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "Ungültiger Nonce." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + # @ acf -#: pro/locations/class-acf-location-block.php:69 +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Zeile duplizieren" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Eintrag löschen" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +# @ acf +#: pro/locations/class-acf-location-block.php:71 msgid "No block types exist" msgstr "Keine Blocktypen vorhanden" # @ acf -#: pro/locations/class-acf-location-options-page.php:68 +#: pro/locations/class-acf-location-options-page.php:22 +msgid "Options Page" +msgstr "Options-Seite" + +# @ acf +#: pro/locations/class-acf-location-options-page.php:70 msgid "No options pages exist" msgstr "Keine Options-Seiten vorhanden" # @ acf -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "Optionen aktualisiert" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "Lizenz deaktivieren" -#: pro/updates.php:97 -#, php-format +# @ acf +#: 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 enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." +"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 Ihren " -"Lizenzschlüssel auf der Aktualisierungen Seite ein. Falls " -"Sie keinen besitzen informieren Sie sich bitte hier hinsichtlich der Preise und Einzelheiten." +"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." # @ acf -#: tests/basic/test-blocks.php:158 -msgid "Normal" -msgstr "Normal" +#: pro/admin/views/html-settings-updates.php:41 +msgid "License Key" +msgstr "Lizenzschlüssel" -#: tests/basic/test-blocks.php:159 -msgid "Fancy" -msgstr "Schick" +#: pro/admin/views/html-settings-updates.php:22 +msgid "Your license key is defined in wp-config.php." +msgstr "" -#: tests/basic/test-blocks.php:306 -msgid "Hero" -msgstr "Hero" - -#: tests/basic/test-blocks.php:307 -msgid "Display a random hero image." -msgstr "Ein zufälliges Hero-Bild anzeigen." - -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "" # @ acf -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"WordPress durch leistungsfähige, professionelle und zugleich intuitive " -"Felder erweitern." +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Aktualisierungsinformationen" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +# @ acf +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Installierte Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Aktuellste Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Aktualisierung verfügbar" + +# @ acf +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nein" + +# @ acf +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Ja" + +# @ acf +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Bitte geben Sie oben Ihren Lizenzschlüssel ein um die " +"Aktualisierungsfähigkeit freizuschalten" + +# @ acf +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Plugin aktualisieren" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +# @ acf +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Änderungsprotokoll" + +# @ acf +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Hinweis zum Upgrade" + +# @ acf +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +# @ acf +#~ msgid "Field Groups" +#~ msgstr "Feldgruppen" + +# @ acf +#~ msgid "Field Group" +#~ msgstr "Feldgruppe" + +# @ acf +#~ msgid "Add New Field Group" +#~ msgstr "Neue Feldgruppe erstellen" + +# @ acf +#~ msgid "Edit Field Group" +#~ msgstr "Feldgruppe bearbeiten" + +# @ acf +#~ msgid "New Field Group" +#~ msgstr "Neue Feldgruppe" + +# @ acf +#~ msgid "View Field Group" +#~ msgstr "Feldgruppe anzeigen" + +# @ acf +#~ msgid "Search Field Groups" +#~ msgstr "Feldgruppen durchsuchen" + +# @ acf +#~ msgid "No Field Groups found" +#~ msgstr "Keine Feldgruppen gefunden" + +# @ acf +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Keine Feldgruppen im Papierkorb gefunden" + +# @ acf +#~ msgid "Field" +#~ msgstr "Feld" + +# @ acf +#~ msgid "Add New Field" +#~ msgstr "Feld hinzufügen" + +# @ acf +#~ msgid "Edit Field" +#~ msgstr "Feld bearbeiten" + +# @ acf +#~ msgid "New Field" +#~ msgstr "Neues Feld" + +# @ acf +#~ msgid "View Field" +#~ msgstr "Feld anzeigen" + +# @ acf +#~ msgid "Search Fields" +#~ msgstr "Felder suchen" + +# @ acf +#~ msgid "No Fields found" +#~ msgstr "Keine Felder gefunden" + +# @ acf +#~ msgid "No Fields found in Trash" +#~ msgstr "Keine Felder im Papierkorb gefunden" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Deaktiviert (%s)" +#~ msgstr[1] "Deaktiviert (%s)" + +# @ acf +#~ msgid "(no label)" +#~ msgstr "(keine Beschriftung)" + +# @ acf +#~ msgid "copy" +#~ msgstr "Kopie" + +# @ acf +#~ msgid "Posts" +#~ msgstr "Beiträge" + +# @ acf +#~ msgid "Taxonomies" +#~ msgstr "Taxonomien" + +# @ acf +#~ msgid "Attachments" +#~ msgstr "Anhänge" + +# @ acf +#~ msgid "Comments" +#~ msgstr "Kommentare" + +# @ acf +#~ msgid "Widgets" +#~ msgstr "Widgets" + +#~ msgid "Menus" +#~ msgstr "Menüs" + +#~ msgid "Menu items" +#~ msgstr "Menüelemente" + +# @ acf +#~ msgid "Users" +#~ msgstr "Benutzer" + +# @ acf +#~ msgid "Blocks" +#~ msgstr "Blöcke" + +# @ acf +#~ msgid "Field group updated." +#~ msgstr "Feldgruppe aktualisiert." + +# @ acf +#~ msgid "Field group deleted." +#~ msgstr "Feldgruppe gelöscht." + +# @ acf +#~ msgid "Field group published." +#~ msgstr "Feldgruppe veröffentlicht." + +# @ acf +#~ msgid "Field group saved." +#~ msgstr "Feldgruppe gespeichert." + +# @ acf +#~ msgid "Field group submitted." +#~ msgstr "Feldgruppe übertragen." + +# @ acf +#~ msgid "Field group scheduled for." +#~ msgstr "Feldgruppe geplant für." + +# @ acf +#~ msgid "Field group draft updated." +#~ msgstr "Entwurf der Feldgruppe aktualisiert." + +# @ acf +#~ msgid "The string \"field_\" may not be used at the start of a field name" +#~ msgstr "Der Feldname darf nicht mit \"field_\" beginnen" + +# @ acf +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "" +#~ "Diese Feld kann erst verschoben werden, wenn die Änderungen gespeichert " +#~ "wurden" + +# @ acf +#~ msgid "Field group title is required" +#~ msgstr "Es ist ein Titel für die Feldgruppe erforderlich" + +# @ acf +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Wirklich in den Papierkorb verschieben?" + +# @ acf +#~ msgid "No toggle fields available" +#~ msgstr "Es liegen keine Auswahl-Feldtypen vor" + +# @ acf +#~ msgid "Move Custom Field" +#~ msgstr "Individuelles Feld verschieben" + +# @ acf +#~ msgid "Checked" +#~ msgstr "Ausgewählt" + +# @ acf +#~ msgid "(this field)" +#~ msgstr "(dieses Feld)" + +# @ acf +#~ msgid "or" +#~ msgstr "oder" + +# @ acf +#~ msgid "Null" +#~ msgstr "Null" + +#~ msgid "Has any value" +#~ msgstr "Hat einen Wert" + +#~ msgid "Has no value" +#~ msgstr "Hat keinen Wert" + +# @ acf +#~ msgid "Value is equal to" +#~ msgstr "Wert ist gleich" + +# @ acf +#~ msgid "Value is not equal to" +#~ msgstr "Wert ist ungleich" + +# @ acf +#~ msgid "Value matches pattern" +#~ msgstr "Wert entspricht regulärem Ausdruck" + +#~ msgid "Value contains" +#~ msgstr "Wert enthält" + +# @ acf +#~ msgid "Value is greater than" +#~ msgstr "Wert ist größer als" + +# @ acf +#~ msgid "Value is less than" +#~ msgstr "Wert ist kleiner als" + +#~ msgid "Selection is greater than" +#~ msgstr "Auswahl ist größer als" + +# @ acf +#~ msgid "Selection is less than" +#~ msgstr "Auswahl ist kleiner als" + +# @ acf +#~ msgid "Location" +#~ msgstr "Position" + +#~ msgid "Settings" +#~ msgstr "Einstellungen" + +#~ msgid "Field Keys" +#~ msgstr "Feldschlüssel" + +#~ msgid "Active" +#~ msgstr "Aktiviert" + +#~ msgid "Inactive" +#~ msgstr "Inaktiv" + +# @ acf +#~ msgid "Move Complete." +#~ msgstr "Verschieben erfolgreich abgeschlossen." + +# @ acf +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Das Feld \"%s\" wurde in die %s Feldgruppe verschoben" + +# @ acf +#~ msgid "Close Window" +#~ msgstr "Schließen" + +# @ acf +#~ msgid "Please select the destination for this field" +#~ msgstr "In welche Feldgruppe solle dieses Feld verschoben werden" + +# @ acf +#~ msgid "Move Field" +#~ msgstr "Feld verschieben" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Veröffentlicht (%s)" +#~ msgstr[1] "Veröffentlicht (%s)" + +#~ msgid "Review local JSON changes" +#~ msgstr "Lokale JSON-Änderungen überprüfen" + +# @ acf +#~ msgid "Loading diff" +#~ msgstr "Diff laden" + +# @ acf +#~ msgid "Sync changes" +#~ msgstr "Änderungen synchronisieren" + +#~ msgid "Key" +#~ msgstr "Schlüssel" + +# @ acf +#~ msgid "Local JSON" +#~ msgstr "Lokales JSON" + +#~ msgid "Various" +#~ msgstr "Verschiedene" + +#, php-format +#~ msgid "Located in theme: %s" +#~ msgstr "Befindet sich in Theme: %s" + +#, php-format +#~ msgid "Located in plugin: %s" +#~ msgstr "Befindet sich in Plugin: %s" + +# @ acf +#, php-format +#~ msgid "Located in: %s" +#~ msgstr "Befindet sich in: %s" + +# @ acf +#~ msgid "Sync available" +#~ msgstr "Synchronisierung verfügbar" + +# @ acf +#~ msgid "Sync" +#~ msgstr "Synchronisieren" + +#~ msgid "Review changes" +#~ msgstr "Änderungen überprüfen" + +# @ acf +#~ msgid "Import" +#~ msgstr "Importieren" + +#~ msgid "Saved" +#~ msgstr "Gespeichert" + +#~ msgid "Awaiting save" +#~ msgstr "Warten auf Speichern" + +# @ acf +#~ msgid "Duplicate this item" +#~ msgstr "Dieses Element duplizieren" + +# @ acf +#, php-format +#~ msgid "Field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "Feldgruppe dupliziert." +#~ msgstr[1] "%s Feldgruppen dupliziert." + +# @ acf +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Feldgruppe synchronisiert." +#~ msgstr[1] "%s Feldgruppen synchronisiert." + +# @ acf +#, php-format +#~ msgid "Select %s" +#~ msgstr "%s auswählen" + +#~ msgid "Tools" +#~ msgstr "Werkzeuge" + +# @ acf +#~ msgid "Upgrade Database" +#~ msgstr "Datenbank upgraden" + +# @ acf +#~ msgid "Review sites & upgrade" +#~ msgstr "Übersicht Websites & Upgrades" + +# @ acf +#~ msgid "Custom Fields" +#~ msgstr "Individuelle Felder" + +#~ msgid "Overview" +#~ msgstr "Übersicht" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin provides a visual form builder to " +#~ "customize WordPress edit screens with extra content fields, and an " +#~ "intuitive API to display custom field values in any theme template file." +#~ msgstr "" +#~ "Das Advanced Custom Fields-Plugin stellt einen visuellen Baukasten für " +#~ "Formulare zur Verfügung mit dessen Hilfe die Seiten der zu bearbeitenden " +#~ "Inhalte um extra Inhalts-Felder erweitert werden können. Es bietet zudem " +#~ "ein API um die Inhalte individueller Felder in den Template-Dateien von " +#~ "Themes darzustellen." + +#, php-format +#~ 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 Sie ihre erste Feldgruppe erstellen, empfehlen wir Ihnen zuerst " +#~ "einmal unser Erste Schritte Handbuch " +#~ "durchzulesen um sich mit der Philosophie hinter dem Plugin und den " +#~ "bewährtesten Praktiken vertraut zu machen." + +#~ msgid "" +#~ "Please use the Help & Support tab to get in touch should you find " +#~ "yourself requiring assistance." +#~ msgstr "" +#~ "Bitte nutzen Sie das Hilfe & Support-Tab um sich mit uns in Verbindung zu " +#~ "setzen für den Fall, dass Sie Hilfe benötigen." + +#~ msgid "Help & Support" +#~ msgstr "Hilfe & Support" + +#~ 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 sind geradezu fanatisch im Bezug auf Support und wollen, dass Sie das " +#~ "beste aus ihrer Website mit ACF herausholen. Sollten Sie auf Probleme " +#~ "stossen gibt es mehrere Stellen an denen Sie Hilfe finden können:" + +#, php-format +#~ msgid "" +#~ "Documentation. Our extensive " +#~ "documentation contains references and guides for most situations you may " +#~ "encounter." +#~ msgstr "" +#~ "Dokumentation. Unsere umfangreiche " +#~ "Dokumentation enthält Referenzen und Anleitungen zu den meisten Situation " +#~ "in die Sie geraten könnten." + +#, php-format +#~ 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 in unseren " +#~ "Foren eine aktive und freundliche Community, die Ihnen vielleicht " +#~ "behilflich sein kann sich in der ACF-Welt zurechtzufinden." + +#, php-format +#~ 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 Ihnen bei tiefer gehenden technischen " +#~ "Herausforderungen helfend zur Seite stehen." + +# @ acf +#~ msgid "Information" +#~ msgstr "Information" + +# @ acf +#, php-format +#~ msgid "Version %s" +#~ msgstr "Version %s" + +# @ acf +#~ msgid "View details" +#~ msgstr "Details anzeigen" + +#~ msgid "Visit website" +#~ msgstr "Website besuchen" + +# @ acf +#~ msgid "and" +#~ msgstr "und" + +# @ acf +#~ msgid "Export Field Groups" +#~ msgstr "Feldgruppen exportieren" + +#~ msgid "Generate PHP" +#~ msgstr "PHP erstellen" + +# @ acf +#~ msgid "No field groups selected" +#~ msgstr "Keine Feldgruppen ausgewählt" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "Eine Feldgruppe wurde exportiert." +#~ msgstr[1] "%s Feldgruppen wurden exportiert." + +# @ acf +#~ msgid "Select Field Groups" +#~ msgstr "Feldgruppen auswählen" + +# @ acf +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Entscheiden Sie welche Feldgruppen Sie exportieren möchten und wählen " +#~ "dann das Exportformat. Benutzen Sie den „Datei exportieren“-Button, um " +#~ "eine JSON-Datei zu generieren, welche Sie im Anschluss in eine andere ACF-" +#~ "Installation importieren können. Verwenden Sie den „PHP erstellen“-" +#~ "Button, um den resultierenden PHP-Code in ihr Theme einfügen zu können." + +# @ acf +#~ msgid "Export File" +#~ msgstr "Datei exportieren" + +# @ acf +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Der nachfolgende Code kann dazu verwendet werden eine lokale Version der " +#~ "ausgewählten Feldgruppe(n) zu registrieren. Eine lokale Feldgruppe bietet " +#~ "viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische " +#~ "Felder und Einstellungen. Kopieren Sie einfach folgenden Code und füge " +#~ "ihn in die functions.php oder eine externe Datei in Ihrem Theme ein." + +#~ msgid "Copy to clipboard" +#~ msgstr "In die Zwischenablage kopieren" + +#~ msgid "Copied" +#~ msgstr "Kopiert" + +# @ acf +#~ msgid "Import Field Groups" +#~ msgstr "Feldgruppen importieren" + +# @ acf +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Wählen Sie die Advanced Custom Fields JSON-Datei aus, welche Sie " +#~ "importieren möchten. Nach dem Klicken des „Datei importieren“-Buttons " +#~ "wird ACF die Feldgruppen hinzufügen." + +# @ acf +#~ msgid "Select File" +#~ msgstr "Datei auswählen" + +# @ acf +#~ msgid "Import File" +#~ msgstr "Datei importieren" + +# @ acf +#~ msgid "No file selected" +#~ msgstr "Keine Datei ausgewählt" + +# @ acf +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Fehler beim Upload der Datei. Bitte versuchen Sie es erneut" + +# @ acf +#~ msgid "Incorrect file type" +#~ msgstr "Falscher Dateityp" + +# @ acf +#~ msgid "Import file empty" +#~ msgstr "Die importierte Datei ist leer" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "Eine Feldgruppe importiert" +#~ msgstr[1] "%s Feldgruppen importiert" + +# @ acf +#~ msgid "Conditional Logic" +#~ msgstr "Bedingungen für die Anzeige" + +# @ acf +#~ msgid "Show this field if" +#~ msgstr "Zeige dieses Feld, wenn" + +# @ acf +#~ msgid "Add rule group" +#~ msgstr "Regelgruppe hinzufügen" + +# @ acf +#~ msgid "Edit field" +#~ msgstr "Feld bearbeiten" + +# @ acf +#~ msgid "Duplicate field" +#~ msgstr "Feld duplizieren" + +# @ acf +#~ msgid "Move field to another group" +#~ msgstr "Feld in eine andere Gruppe verschieben" + +# @ acf +#~ msgid "Move" +#~ msgstr "Verschieben" + +# @ acf +#~ msgid "Delete field" +#~ msgstr "Feld löschen" + +# @ acf +#~ msgid "Field Label" +#~ msgstr "Feldbeschriftung" + +# @ acf +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "" +#~ "Dieser Name wird in der Bearbeitungsansicht eines Beitrags angezeigt" + +# @ acf +#~ msgid "Field Name" +#~ msgstr "Feldname" + +# @ acf +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "" +#~ "Einzelnes Wort ohne Leerzeichen. Es sind nur Unter- und Bindestriche als " +#~ "Sonderzeichen erlaubt" + +# @ acf +#~ msgid "Field Type" +#~ msgstr "Feldtyp" + +# @ acf +#~ msgid "Instructions" +#~ msgstr "Anweisungen" + +# @ acf +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Anweisungen für die Autoren. Sie werden in der Bearbeitungsansicht " +#~ "angezeigt" + +# @ acf +#~ msgid "Required?" +#~ msgstr "Erforderlich?" + +# @ acf +#~ msgid "Wrapper Attributes" +#~ msgstr "Wrapper-Attribute" + +# @ acf +#~ msgid "width" +#~ msgstr "Breite" + +# @ acf +#~ msgid "class" +#~ msgstr "Klasse" + +# @ acf +#~ msgid "id" +#~ msgstr "ID" + +# @ acf +#~ msgid "Close Field" +#~ msgstr "Feld schließen" + +# @ acf +#~ msgid "Order" +#~ msgstr "Reihenfolge" + +# @ acf +#~ msgid "Type" +#~ msgstr "Typ" + +# @ acf +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Es sind noch keine Felder angelegt. Klicken Sie den + Feld " +#~ "hinzufügen-Button und erstellen Sie Ihr erstes Feld." + +# @ acf +#~ msgid "+ Add Field" +#~ msgstr "+ Feld hinzufügen" + +# @ acf +#~ msgid "Rules" +#~ msgstr "Regeln" + +# @ acf +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "Erstellen Sie ein Regelwerk das festlegt welche Bearbeitungs-Ansichten " +#~ "diese Advanced Custom Fields nutzen" + +# @ acf +#~ msgid "Style" +#~ msgstr "Stil" + +# @ acf +#~ msgid "Standard (WP metabox)" +#~ msgstr "WP-Metabox (Standard)" + +# @ acf +#~ msgid "Seamless (no metabox)" +#~ msgstr "Übergangslos ohne Metabox" + +# @ acf +#~ msgid "Position" +#~ msgstr "Position" + +# @ acf +#~ msgid "High (after title)" +#~ msgstr "Nach dem Titel vor dem Inhalt" + +# @ acf +#~ msgid "Normal (after content)" +#~ msgstr "Nach dem Inhalt" + +# @ acf +#~ msgid "Side" +#~ msgstr "Seitlich neben dem Inhalt" + +# @ acf +#~ msgid "Label placement" +#~ msgstr "Platzierung der Beschriftung" + +# @ acf +#~ msgid "Top aligned" +#~ msgstr "Über dem Feld" + +# @ acf +#~ msgid "Left aligned" +#~ msgstr "Links neben dem Feld" + +# @ acf +#~ msgid "Instruction placement" +#~ msgstr "Platzierung der Anweisungen" + +# @ acf +#~ msgid "Below labels" +#~ msgstr "Unterhalb der Beschriftungen" + +# @ acf +#~ msgid "Below fields" +#~ msgstr "Unterhalb der Felder" + +# @ acf +#~ msgid "Order No." +#~ msgstr "Reihenfolge" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "Feldgruppen mit einem niedrigeren Wert werden zuerst angezeigt" + +#~ msgid "Shown in field group list" +#~ msgstr "In der Feldgruppen-Liste anzeigen" + +# @ acf +#~ msgid "Permalink" +#~ msgstr "Permalink" + +# @ acf +#~ msgid "Content Editor" +#~ msgstr "Inhalts-Editor" + +# @ acf +#~ msgid "Excerpt" +#~ msgstr "Textauszug" + +# @ acf +#~ msgid "Discussion" +#~ msgstr "Diskussion" + +# @ acf +#~ msgid "Revisions" +#~ msgstr "Revisionen" + +# @ acf +#~ msgid "Slug" +#~ msgstr "Titelform" + +# @ acf +#~ msgid "Author" +#~ msgstr "Autor" + +# @ acf +#~ msgid "Format" +#~ msgstr "Format" + +# @ acf +#~ msgid "Page Attributes" +#~ msgstr "Seiten-Attribute" + +# @ acf +#~ msgid "Featured Image" +#~ msgstr "Beitragsbild" + +# @ acf +#~ msgid "Categories" +#~ msgstr "Kategorien" + +# @ acf +#~ msgid "Tags" +#~ msgstr "Schlagworte" + +# @ acf +#~ msgid "Send Trackbacks" +#~ msgstr "Sende Trackbacks" + +# @ acf +#~ msgid "Hide on screen" +#~ msgstr "Verstecken" + +# @ acf +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Wählen Sie die Elemente, welche in der " +#~ "Bearbeitungsansicht verborgen werden sollen." + +# @ acf +#~ 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 " +#~ "Nummer in der Reihe)" + +#, php-format +#~ 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. Markieren Sie die " +#~ "gewünschten Seiten und klicken Sie dann %s." + +#~ msgid "Upgrade Sites" +#~ msgstr "Websites upgraden" + +# @ acf +#~ msgid "Site" +#~ msgstr "Website" + +# @ acf +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s" + +# @ acf +#~ msgid "Site is up to date" +#~ msgstr "Die Website ist aktuell" + +# @ acf +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Upgrade der Datenbank fertiggestellt. Zum Netzwerk " +#~ "Dashboard" + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "Bitte zumindest eine Website zum Upgrade auswählen." + +# @ acf +#~ 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 Sie ihre Datenbank sichern, bevor Sie " +#~ "fortfahren. Sind sie sicher, dass Sie jetzt die Aktualisierung " +#~ "durchführen wollen?" + +# @ acf +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Daten auf Version %s upgraden" + +# @ default +#~ msgid "Upgrade complete." +#~ msgstr "Upgrade abgeschlossen." + +#~ msgid "Upgrade failed." +#~ msgstr "Upgrade fehlgeschlagen." + +# @ acf +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Aufgaben für das Upgrade einlesen…" + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "Datenbank-Upgrade abgeschlossen. Schauen Sie nach was es " +#~ "Neues gibt" + +# @ acf +#~ msgid "No updates available." +#~ msgstr "Keine Aktualisierungen verfügbar." + +#~ msgid "Back to all tools" +#~ msgstr "Zurück zur Werkzeugübersicht" + +# @ acf +#~ msgid "Show this field group if" +#~ msgstr "Zeige diese Felder, wenn" + +# @ acf +#~ msgid "Database Upgrade Required" +#~ msgstr "Es ist ein Upgrade der Datenbank erforderlich" + +# @ acf +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Danke für die Aktualisierung auf %s v%s!" + +#~ msgid "" +#~ "This version contains improvements to your database and requires an " +#~ "upgrade." +#~ msgstr "" +#~ "Die vorliegende Version enthält Verbesserungen für deine Datenbank und " +#~ "erfordert ein Upgrade." + +#, php-format +#~ msgid "" +#~ "Please also check all premium add-ons (%s) are updated to the latest " +#~ "version." +#~ msgstr "" +#~ "Stellen Sie bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) auf " +#~ "die neueste Version aktualisiert wurden." + +# @ acf +#~ msgid "Invalid field group parameter(s)." +#~ msgstr "Ungültige(r) Feldgruppen-Parameter." + +# @ acf +#~ msgid "Invalid field group ID." +#~ msgstr "Ungültige Feldgruppen-ID." + +#~ msgid "Sorry, this field group is unavailable for diff comparison." +#~ msgstr "" +#~ "Verzeihung, diese Feldgruppe steht für einen Diff-Vergleich nicht zur " +#~ "Verfügung." + +# @ acf +#, php-format +#~ msgid "Last updated: %s" +#~ msgstr "Zuletzt aktualisiert: %s" + +# @ acf +#~ msgid "Original field group" +#~ msgstr "Ursprüngliche Feldgruppe" + +# @ acf +#~ msgid "JSON field group (newer)" +#~ msgstr "JSON-Feldgruppe (neuer)" + +# @ acf +#~ msgid "Thumbnail" +#~ msgstr "Vorschaubild" + +# @ acf +#~ msgid "Medium" +#~ msgstr "Mittel" + +# @ acf +#~ msgid "Large" +#~ msgstr "Groß" + +# @ acf +#~ msgid "Full Size" +#~ msgstr "Volle Größe" + +# @ acf +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Die Breite des Bildes muss mindestens %dpx sein." + +# @ acf +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." + +# @ acf +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Die Höhe des Bildes muss mindestens %dpx sein." + +# @ acf +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." + +# @ acf +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Die Dateigröße muss mindestens %s sein." + +# @ acf +#, php-format +#~ msgid "File size must not exceed %s." +#~ msgstr "Die Dateigröße darf nicht größer als %s sein." + +# @ acf +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Der Dateityp muss %s sein." + +# @ acf +#~ msgid "Are you sure?" +#~ msgstr "Wirklich entfernen?" + +#~ msgid "Cancel" +#~ msgstr "Abbrechen" + +# @ acf +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "" +#~ "Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen " +#~ "wird" + +# @ acf +#~ msgid "Validation successful" +#~ msgstr "Überprüfung erfolgreich" + +# @ acf +#~ msgid "Validation failed" +#~ msgstr "Überprüfung fehlgeschlagen" + +# @ acf +#~ msgid "1 field requires attention" +#~ msgstr "Für 1 Feld ist eine Aktualisierung notwendig" + +# @ acf +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "Für %d Felder ist eine Aktualisierung notwendig" + +# @ acf +#~ msgid "Field type does not exist" +#~ msgstr "Feldtyp existiert nicht" + +#~ msgid "Unknown" +#~ msgstr "Unbekannt" + +# @ acf +#~ msgid "Basic" +#~ msgstr "Grundlage" + +# @ acf +#~ msgid "Content" +#~ msgstr "Inhalt" + +# @ acf +#~ msgid "Choice" +#~ msgstr "Auswahl" + +# @ acf +#~ msgid "Relational" +#~ msgstr "Relational" + +# @ acf +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Accordion" +#~ msgstr "Akkordeon" + +#~ msgid "Open" +#~ msgstr "Geöffnet" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "Dieses Akkordeon beim Laden der Seite als geöffnet anzeigen." + +#~ msgid "Multi-expand" +#~ msgstr "Gleichzeitig geöffnet" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Erlaubt dieses Akkordeon zu öffnen ohne andere zu schließen." + +#~ msgid "Endpoint" +#~ msgstr "Endpunkt" + +#~ 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 abschließende Akkordeon wird nicht sichtbar sein." + +#~ msgid "Button Group" +#~ msgstr "Button-Gruppe" + +# @ acf +#~ msgid "Choices" +#~ msgstr "Auswahlmöglichkeiten" + +# @ acf +#~ msgid "Enter each choice on a new line." +#~ msgstr "Jede Auswahlmöglichkeit in eine neue Zeile eingeben." + +# @ acf +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "" +#~ "Für mehr Kontrolle, können Sie sowohl einen Wert als auch eine " +#~ "Beschriftung wie folgt angeben:" + +# @ acf +#~ msgid "red : Red" +#~ msgstr "rot : Rot" + +# @ acf +#~ msgid "Allow Null?" +#~ msgstr "NULL-Werte zulassen?" + +# @ acf +#~ msgid "Default Value" +#~ msgstr "Standardwert" + +# @ acf +#~ msgid "Appears when creating a new post" +#~ msgstr "Erscheint bei der Erstellung eines neuen Beitrags" + +# @ acf +#~ msgid "Horizontal" +#~ msgstr "Horizontal" + +# @ acf +#~ msgid "Vertical" +#~ msgstr "Vertikal" + +# @ acf +#~ msgid "Return Value" +#~ msgstr "Rückgabewert" + +# @ acf +#~ msgid "Specify the returned value on front end" +#~ msgstr "Legt den Rückgabewert für das Frontend fest" + +#~ msgid "Value" +#~ msgstr "Wert" + +#~ msgid "Both (Array)" +#~ msgstr "Beide (Array)" + +# @ acf +#~ msgid "Checkbox" +#~ msgstr "Checkbox" + +# @ acf +#~ msgid "Toggle All" +#~ msgstr "Alle auswählen" + +#~ msgid "Add new choice" +#~ msgstr "Neue Auswahlmöglichkeit hinzufügen" + +#~ msgid "Allow Custom" +#~ msgstr "Individuelle Werte erlauben" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Erlaubt das Hinzufügen individueller Werte" + +#~ msgid "Save Custom" +#~ msgstr "Individuelle Werte speichern" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "" +#~ "Individuelle Werte unter den Auswahlmöglichkeiten des Feldes speichern" + +# @ acf +#~ msgid "Enter each default value on a new line" +#~ msgstr "Jeden Standardwert in einer neuen Zeile eingeben" + +#~ msgid "Toggle" +#~ msgstr "Alle Auswählen" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "" +#~ "Hängt eine zusätzliche Checkbox an mit der alle Optionen ausgewählt " +#~ "werden können" + +# @ acf +#~ msgid "Color Picker" +#~ msgstr "Farbauswahl" + +# @ acf +#~ msgid "Clear" +#~ msgstr "Leeren" + +# @ acf +#~ msgid "Default" +#~ msgstr "Standard" + +# @ acf +#~ msgid "Select Color" +#~ msgstr "Farbe auswählen" + +#~ msgid "Current Color" +#~ msgstr "Aktuelle Farbe" + +# @ acf +#~ msgid "Date Picker" +#~ msgstr "Datumsauswahl" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fertig" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Heute" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Nächstes" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Vorheriges" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "W" + +# @ acf +#~ msgid "Display Format" +#~ msgstr "Darstellungsformat" + +# @ acf +#~ msgid "The format displayed when editing a post" +#~ msgstr "Das Format für die Anzeige in der Bearbeitungsansicht" + +#~ msgid "Custom:" +#~ msgstr "Individuelles Format:" + +#~ msgid "Save Format" +#~ msgstr "Speicherformat" + +#~ msgid "The format used when saving a value" +#~ msgstr "Das Format das beim Speichern eines Wertes verwendet wird" + +# @ acf +#~ msgid "The format returned via template functions" +#~ msgstr "Das Format für die Ausgabe in den Template-Funktionen" + +# @ acf +#~ msgid "Week Starts On" +#~ msgstr "Die Woche beginnt am" + +#~ msgid "Date Time Picker" +#~ msgstr "Datums- und Zeitauswahl" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Zeit auswählen" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Zeit" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Stunde" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minute" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Sekunde" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Millisekunde" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Mikrosekunde" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Zeitzone" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Jetzt" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fertig" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Auswählen" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "Vorm." + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "Vorm." + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "Nachm." + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "Nachm." + +# @ acf +#~ msgid "Email" +#~ msgstr "E-Mail" + +# @ acf +#~ msgid "Placeholder Text" +#~ msgstr "Platzhaltertext" + +# @ acf +#~ msgid "Appears within the input" +#~ msgstr "Platzhaltertext solange keine Eingabe im Feld vorgenommen wurde" + +# @ acf +#~ msgid "Prepend" +#~ msgstr "Voranstellen" + +# @ acf +#~ msgid "Appears before the input" +#~ msgstr "Wird dem Eingabefeld vorangestellt" + +# @ acf +#~ msgid "Append" +#~ msgstr "Anhängen" + +# @ acf +#~ msgid "Appears after the input" +#~ msgstr "Wird dem Eingabefeld hinten angestellt" + +# @ acf +#~ msgid "File" +#~ msgstr "Datei" + +# @ acf +#~ msgid "Edit File" +#~ msgstr "Datei bearbeiten" + +# @ acf +#~ msgid "Update File" +#~ msgstr "Datei aktualisieren" + +#~ msgid "File name" +#~ msgstr "Dateiname" + +# @ acf +#~ msgid "Add File" +#~ msgstr "Datei hinzufügen" + +# @ acf +#~ msgid "File Array" +#~ msgstr "Datei-Array" + +# @ acf +#~ msgid "File URL" +#~ msgstr "Datei-URL" + +# @ acf +#~ msgid "File ID" +#~ msgstr "Datei-ID" + +# @ acf +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Beschränkt welche Dateien hochgeladen werden können" + +# @ acf +#~ msgid "Google Map" +#~ msgstr "Google Maps" + +# @ acf +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Dieser Browser unterstützt keine Geo-Lokation" + +# @ acf +#~ msgid "Search" +#~ msgstr "Suchen" + +# @ acf +#~ msgid "Clear location" +#~ msgstr "Position löschen" + +# @ acf +#~ msgid "Find current location" +#~ msgstr "Aktuelle Position finden" + +# @ acf +#~ msgid "Search for address..." +#~ msgstr "Nach der Adresse suchen..." + +# @ acf +#~ msgid "Center" +#~ msgstr "Mittelpunkt" + +# @ acf +#~ msgid "Center the initial map" +#~ msgstr "Mittelpunkt der Ausgangskarte" + +# @ acf +#~ msgid "Zoom" +#~ msgstr "Zoom" + +# @ acf +#~ msgid "Set the initial zoom level" +#~ msgstr "Legt die anfängliche Zoomstufe der Karte fest" + +# @ acf +#~ msgid "Customize the map height" +#~ msgstr "Passt die Höhe der Karte an" + +# @ acf +#~ msgid "Group" +#~ msgstr "Gruppe" + +# @ acf +#~ msgid "Image" +#~ msgstr "Bild" + +# @ acf +#~ msgid "Select Image" +#~ msgstr "Bild auswählen" + +# @ acf +#~ msgid "Edit Image" +#~ msgstr "Bild bearbeiten" + +# @ acf +#~ msgid "Update Image" +#~ msgstr "Bild aktualisieren" + +# @ acf +#~ msgid "All images" +#~ msgstr "Alle Bilder" + +# @ acf +#~ msgid "No image selected" +#~ msgstr "Kein Bild ausgewählt" + +# @ acf +#~ msgid "Add Image" +#~ msgstr "Bild hinzufügen" + +# @ acf +#~ msgid "Link" +#~ msgstr "Link" + +# @ acf +#~ msgid "Select Link" +#~ msgstr "Link auswählen" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "In einem neuen Fenster/Tab öffnen" + +# @ acf +#~ msgid "Link Array" +#~ msgstr "Link-Array" + +# @ acf +#~ msgid "Link URL" +#~ msgstr "Link-URL" + +# @ acf +#~ msgid "Message" +#~ msgstr "Mitteilung" + +# @ acf +#~ msgid "New Lines" +#~ msgstr "Neue Zeilen" + +# @ acf +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Legt fest wie Zeilenumbrüche gerendert werden" + +# @ acf +#~ msgid "Automatically add paragraphs" +#~ msgstr "Automatisches hinzufügen von Absätzen" + +# @ acf +#~ msgid "Automatically add <br>" +#~ msgstr "Automatisches hinzufügen von <br>" + +# @ acf +#~ msgid "No Formatting" +#~ msgstr "Keine Formatierung" + +# @ acf +#~ msgid "Escape HTML" +#~ msgstr "Escape HTML" + +# @ acf +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "" +#~ "Erlaubt HTML-Markup als sichtbaren Text anzuzeigen anstelle diesen zu " +#~ "rendern" + +# @ acf +#~ msgid "Number" +#~ msgstr "Numerisch" + +# @ acf +#~ msgid "Minimum Value" +#~ msgstr "Mindestwert" + +# @ acf +#~ msgid "Maximum Value" +#~ msgstr "Maximalwert" + +# @ acf +#~ msgid "Step Size" +#~ msgstr "Schrittweite" + +# @ acf +#~ msgid "Value must be a number" +#~ msgstr "Wert muss eine Zahl sein" + +# @ acf +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Wert muss größer oder gleich %d sein" + +# @ acf +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Wert muss kleiner oder gleich %d sein" + +# @ acf +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +# @ acf +#~ msgid "Enter URL" +#~ msgstr "URL eingeben" + +# @ acf +#~ msgid "Embed Size" +#~ msgstr "Maße" + +# @ acf +#~ msgid "Page Link" +#~ msgstr "Seiten-Link" + +# @ acf +#~ msgid "Archives" +#~ msgstr "Archive" + +#~ msgid "Parent" +#~ msgstr "Übergeordnet" + +# @ acf +#~ msgid "Filter by Post Type" +#~ msgstr "Nach Inhaltstyp filtern" + +# @ acf +#~ msgid "All post types" +#~ msgstr "Alle Inhaltstypen" + +# @ acf +#~ msgid "Filter by Taxonomy" +#~ msgstr "Nach Taxonomien filtern" + +# @ acf +#~ msgid "All taxonomies" +#~ msgstr "Alle Taxonomien" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Archiv-URL's zulassen" + +# @ acf +#~ msgid "Select multiple values?" +#~ msgstr "Mehrere Werte auswählbar?" + +# @ acf +#~ msgid "Password" +#~ msgstr "Passwort" + +# @ acf +#~ msgid "Post Object" +#~ msgstr "Beitrags-Objekt" + +# @ acf +#~ msgid "Post ID" +#~ msgstr "Beitrags-ID" + +# @ acf +#~ msgid "Radio Button" +#~ msgstr "Radio-Button" + +# @ acf +#~ msgid "Other" +#~ msgstr "Weitere" + +# @ acf +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "" +#~ "Das Hinzufügen der Auswahlmöglichkeit ‚Weitere‘ erlaubt " +#~ "benutzerdefinierte Werte" + +# @ acf +#~ msgid "Save Other" +#~ msgstr "Weitere speichern" + +# @ acf +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Weitere Werte unter den Auswahlmöglichkeiten des Feldes speichern" + +#~ msgid "Range" +#~ msgstr "Numerischer Bereich" + +# @ acf +#~ msgid "Relationship" +#~ msgstr "Beziehung" + +# @ acf +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Maximum der Einträge mit ({max} Einträge) erreicht" + +# @ acf +#~ msgid "Loading" +#~ msgstr "Lade" + +# @ acf +#~ msgid "No matches found" +#~ msgstr "Keine Übereinstimmung gefunden" + +# @ acf +#~ msgid "Select post type" +#~ msgstr "Inhaltstyp auswählen" + +# @ acf +#~ msgid "Select taxonomy" +#~ msgstr "Taxonomie auswählen" + +# @ acf +#~ msgid "Search..." +#~ msgstr "Suchen..." + +# @ acf +#~ msgid "Filters" +#~ msgstr "Filter" + +# @ acf +#~ msgid "Post Type" +#~ msgstr "Inhaltstyp" + +# @ acf +#~ msgid "Taxonomy" +#~ msgstr "Taxonomie" + +# @ acf +#~ msgid "Elements" +#~ msgstr "Elemente" + +# @ acf +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Die ausgewählten Elemente werden in jedem Ergebnis angezeigt" + +# @ acf +#~ msgid "Minimum posts" +#~ msgstr "Mindestzahl an Beiträgen" + +# @ acf +#~ msgid "Maximum posts" +#~ msgstr "Höchstzahl an Beiträgen" + +# @ acf +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s benötigt mindestens %s Selektion" +#~ msgstr[1] "%s benötigt mindestens %s Selektionen" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Auswahl" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "" +#~ "Es ist ein Ergebnis verfügbar, drücken Sie die Eingabetaste um es " +#~ "auszuwählen." + +#, php-format +#~ 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, benutzen Sie die Pfeiltasten um nach " +#~ "oben und unten zu navigieren." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Keine Übereinstimmungen gefunden" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Geben Sie bitte ein oder mehr Zeichen ein" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Geben Sie bitte %d oder mehr Zeichen ein" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Löschen Sie bitte ein Zeichen" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Löschen Sie bitte %d Zeichen" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Sie können nur ein Element auswählen" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Sie können nur %d Elemente auswählen" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Mehr Ergebnisse laden…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Suchen…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Laden fehlgeschlagen" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Auswählen" + +# @ acf +#~ msgid "Stylised UI" +#~ msgstr "Select2-Library aktivieren" + +# @ acf +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu laden?" + +#~ msgid "Specify the value returned" +#~ msgstr "Legen Sie den Rückgabewert fest" + +#~ msgid "Separator" +#~ msgstr "Trennelement" + +# @ acf +#~ msgid "Tab" +#~ msgstr "Tab" + +# @ acf +#~ msgid "Placement" +#~ msgstr "Platzierung" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definiert einen Endpunkt an dem die vorangegangenen Tabs enden. Das ist " +#~ "der Startpunkt für eine neue Gruppe an Tabs." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Keine %s" + +# @ acf +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Wählen Sie die Taxonomie, welche angezeigt werden soll" + +# @ acf +#~ msgid "Appearance" +#~ msgstr "Anzeige" + +# @ acf +#~ msgid "Select the appearance of this field" +#~ msgstr "Wählen Sie das Aussehen für dieses Feld" + +# @ acf +#~ msgid "Multiple Values" +#~ msgstr "Mehrere Werte" + +# @ acf +#~ msgid "Multi Select" +#~ msgstr "Auswahlmenü" + +# @ acf +#~ msgid "Single Value" +#~ msgstr "Einzelne Werte" + +# @ acf +#~ msgid "Radio Buttons" +#~ msgstr "Radio Button" + +# @ acf +#~ msgid "Create Terms" +#~ msgstr "Begriffe erstellen" + +# @ acf +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Erlaubt das Erstellen neuer Begriffe während des Bearbeitens" + +#~ msgid "Save Terms" +#~ msgstr "Begriffe speichern" + +# @ acf +#~ msgid "Connect selected terms to the post" +#~ msgstr "Verbindet die ausgewählten Begriffe mit dem Beitrag" + +#~ msgid "Load Terms" +#~ msgstr "Begriffe laden" + +#~ msgid "Load value from posts terms" +#~ msgstr "Den Wert aus den Begriffen des Beitrags laden" + +# @ acf +#~ msgid "Term Object" +#~ msgstr "Begriffs-Objekt" + +# @ acf +#~ msgid "Term ID" +#~ msgstr "Begriffs-ID" + +# @ acf +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Der Benutzer kann keine neue %s hinzufügen" + +# @ acf +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s ist bereits vorhanden" + +# @ acf +#, php-format +#~ msgid "%s added" +#~ msgstr "%s hinzugefügt" + +# @ acf +#~ msgid "Add" +#~ msgstr "Hinzufügen" + +# @ acf +#~ msgid "Text" +#~ msgstr "Text einzeilig" + +# @ acf +#~ msgid "Character Limit" +#~ msgstr "Zeichenbegrenzung" + +# @ acf +#~ msgid "Leave blank for no limit" +#~ msgstr "Leer lassen für keine Begrenzung" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "Wert darf %d Zeichen nicht überschreiten" + +# @ acf +#~ msgid "Text Area" +#~ msgstr "Text mehrzeilig" + +# @ acf +#~ msgid "Rows" +#~ msgstr "Zeilenanzahl" + +# @ acf +#~ msgid "Sets the textarea height" +#~ msgstr "Definiert die Höhe des Textfelds" + +#~ msgid "Time Picker" +#~ msgstr "Zeitauswahl" + +# @ acf +#~ msgid "True / False" +#~ msgstr "Wahr / Falsch" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Zeigt den Text neben der Checkbox an" + +#~ msgid "On Text" +#~ msgstr "Wenn aktiv" + +#~ msgid "Text shown when active" +#~ msgstr "Der Text der im aktiven Zustand angezeigt wird" + +#~ msgid "Off Text" +#~ msgstr "Wenn inaktiv" + +#~ msgid "Text shown when inactive" +#~ msgstr "Der Text der im inaktiven Zustand angezeigt wird" + +# @ acf +#~ msgid "Url" +#~ msgstr "URL" + +# @ acf +#~ msgid "Value must be a valid URL" +#~ msgstr "Bitte eine gültige URL eingeben" + +# @ acf +#~ msgid "User" +#~ msgstr "Benutzer" + +# @ acf +#~ msgid "Filter by role" +#~ msgstr "Nach Rolle filtern" + +# @ acf +#~ msgid "All user roles" +#~ msgstr "Alle Benutzerrollen" + +# @ acf +#~ msgid "User Array" +#~ msgstr "Benutzer-Array" + +# @ acf +#~ msgid "User Object" +#~ msgstr "Benutzer-Objekt" + +# @ acf +#~ msgid "User ID" +#~ msgstr "Benutzer-ID" + +#~ msgid "Error loading field." +#~ msgstr "Fehler beim Laden des Feldes." + +# @ acf +#~ msgid "Wysiwyg Editor" +#~ msgstr "WYSIWYG-Editor" + +# @ acf +#~ msgid "Visual" +#~ msgstr "Visuell" + +# @ acf +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Klicken um TinyMCE zu initialisieren" + +# @ acf +#~ msgid "Tabs" +#~ msgstr "Tabs" + +# @ acf +#~ msgid "Visual & Text" +#~ msgstr "Visuell & Text" + +# @ acf +#~ msgid "Visual Only" +#~ msgstr "Nur Visuell" + +# @ acf +#~ msgid "Text Only" +#~ msgstr "Nur Text" + +# @ acf +#~ msgid "Toolbar" +#~ msgstr "Werkzeugleiste" + +# @ acf +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Button zum Hochladen von Medien anzeigen?" + +#~ msgid "Delay initialization?" +#~ msgstr "Initialisierung verzögern?" + +#~ msgid "TinyMCE will not be initialized until field is clicked" +#~ msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" + +#~ msgid "Validate Email" +#~ msgstr "E-Mail bestätigen" + +# @ acf +#~ msgid "Post updated" +#~ msgstr "Beitrag aktualisiert" + +#~ msgid "Spam Detected" +#~ msgstr "Spam entdeckt" + +#, php-format +#~ msgid "ERROR: %s" +#~ msgstr "FEHLER: %s" + +# @ acf +#, php-format +#~ msgid "Class \"%s\" does not exist." +#~ msgstr "Die Klasse „%s“ existiert nicht." + +#, php-format +#~ msgid "Location type \"%s\" is already registered." +#~ msgstr "Positions-Typ „%s“ ist bereits registriert." + +# @ acf +#~ msgid "Post" +#~ msgstr "Beitrag" + +# @ acf +#~ msgid "Page" +#~ msgstr "Seite" + +# @ acf +#~ msgid "Forms" +#~ msgstr "Formulare" + +# @ acf +#~ msgid "is equal to" +#~ msgstr "ist gleich" + +# @ acf +#~ msgid "is not equal to" +#~ msgstr "ist ungleich" + +# @ acf +#~ msgid "Attachment" +#~ msgstr "Anhang" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Alle %s Formate" + +# @ acf +#~ msgid "Comment" +#~ msgstr "Kommentar" + +# @ acf +#~ msgid "Current User Role" +#~ msgstr "Aktuelle Benutzerrolle" + +# @ acf +#~ msgid "Super Admin" +#~ msgstr "Super-Administrator" + +# @ acf +#~ msgid "Current User" +#~ msgstr "Aktueller Benutzer" + +# @ acf +#~ msgid "Logged in" +#~ msgstr "Angemeldet" + +# @ acf +#~ msgid "Viewing front end" +#~ msgstr "Frontend anzeigen" + +# @ acf +#~ msgid "Viewing back end" +#~ msgstr "Backend anzeigen" + +#~ msgid "Menu Item" +#~ msgstr "Menüelement" + +#~ msgid "Menu" +#~ msgstr "Menü" + +# @ acf +#~ msgid "Menu Locations" +#~ msgstr "Menüpositionen" + +# @ acf +#~ msgid "Page Parent" +#~ msgstr "Übergeordnete Seite" + +# @ acf +#~ msgid "Page Template" +#~ msgstr "Seiten-Template" + +# @ acf +#~ msgid "Default Template" +#~ msgstr "Standard-Template" + +# @ acf +#~ msgid "Page Type" +#~ msgstr "Seitentyp" + +# @ acf +#~ msgid "Front Page" +#~ msgstr "Startseite" + +# @ acf +#~ msgid "Posts Page" +#~ msgstr "Beitrags-Seite" + +# @ acf +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Seite ohne übergeordnete Seiten" + +# @ acf +#~ msgid "Parent Page (has children)" +#~ msgstr "Übergeordnete Seite (mit Unterseiten)" + +# @ acf +#~ msgid "Child Page (has parent)" +#~ msgstr "Unterseite (mit übergeordneter Seite)" + +# @ acf +#~ msgid "Post Category" +#~ msgstr "Beitragskategorie" + +# @ acf +#~ msgid "Post Format" +#~ msgstr "Beitragsformat" + +# @ acf +#~ msgid "Post Status" +#~ msgstr "Beitragsstatus" + +# @ acf +#~ msgid "Post Taxonomy" +#~ msgstr "Beitrags-Taxonomie" + +# @ acf +#~ msgid "Post Template" +#~ msgstr "Beitrags-Template" + +# @ acf +#~ msgid "User Form" +#~ msgstr "Benutzerformular" + +# @ acf +#~ msgid "Add / Edit" +#~ msgstr "Hinzufügen / Bearbeiten" + +# @ acf +#~ msgid "Register" +#~ msgstr "Registrieren" + +# @ acf +#~ msgid "User Role" +#~ msgstr "Benutzerrolle" + +# @ acf +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Bearbeiten" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Aktualisieren" + +# @ acf +#~ msgid "Uploaded to this post" +#~ msgstr "Zu diesem Beitrag hochgeladen" + +# @ acf +#~ msgid "Expand Details" +#~ msgstr "Details einblenden" + +# @ acf +#~ msgid "Collapse Details" +#~ msgstr "Details ausblenden" + +#~ msgid "Restricted" +#~ msgstr "Eingeschränkt" + +# @ acf +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s Wert ist erforderlich" + +#, php-format +#~ 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 "" +#~ "Um die Aktualisierungsfähigkeit freizuschalten geben Sie bitte Ihren " +#~ "Lizenzschlüssel auf der Aktualisierungen Seite ein. " +#~ "Falls Sie keinen besitzen informieren Sie sich bitte hier hinsichtlich " +#~ "der Preise und Einzelheiten." + +# @ acf +#~ msgid "Normal" +#~ msgstr "Normal" + +#~ msgid "Fancy" +#~ msgstr "Schick" + +#~ msgid "Hero" +#~ msgstr "Hero" + +#~ msgid "Display a random hero image." +#~ msgstr "Ein zufälliges Hero-Bild anzeigen." + +#~ msgid "https://www.advancedcustomfields.com" +#~ msgstr "https://www.advancedcustomfields.com" + +# @ acf +#~ msgid "" +#~ "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "WordPress durch leistungsfähige, professionelle und zugleich intuitive " +#~ "Felder erweitern." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" #, php-format #~ msgid "Inactive (%s)" diff --git a/lang/acf-el.mo b/lang/acf-el.mo new file mode 100644 index 0000000..5149acf Binary files /dev/null and b/lang/acf-el.mo differ diff --git a/lang/acf-el.po b/lang/acf-el.po new file mode 100644 index 0000000..9bd06b2 --- /dev/null +++ b/lang/acf-el.po @@ -0,0 +1,3045 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "Το %1$s πρέπει να έχει ένα έγκυρο ID χρήστη." + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Μη έγκυρο αίτημα." + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "Το %1$s δεν είναι ένα από τα %2$s." + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "Το %1$s πρέπει να έχει ένα έγκυρο post ID." + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "Το %s απαιτεί ένα έγκυρο attachment ID." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Να εμφανίζεται στο REST API" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Ενεργοποίηση Διαφάνειας" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA Array" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA String" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex String" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Gallery (Μόνο στην Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clone (Μόνο στην Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexible Content (Μόνο στην Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repeater (Μόνο στην Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Ενεργό" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "Το '%s' δεν είναι έγκυρη διεύθυνση email." + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Τιμή χρώματος" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Επιλέξτε το προεπιλεγμένο χρώμα" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Εκκαθάριση χρώματος" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Μπλοκ" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Επιλογές" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Χρήστες" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Στοιχεία μενού" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Μικροεφαρμογές" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Συνημμένα" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Ταξινομίες" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Άρθρα" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON field group (νεότερο)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Αρχικό field group" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Τελευταία ενημέρωση: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Λυπούμαστε, αυτή η ομάδα πεδίων δεν είναι διαθέσιμη για σύγκριση διαφορών." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Μη έγκυρο field group ID." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Μη έγκυρες παράμετροι field group." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Αναμονή αποθήκευσης" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Αποθηκεύτηκε" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Εισαγωγή" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Ανασκόπηση αλλαγών" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Βρίσκεται στο: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Βρίσκεται στο πρόσθετο: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Βρίσκεται στο θέμα: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Διάφορα" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Συγχρονισμός αλλαγών" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Φόρτωση διαφορών" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Ανασκόπηση τοπικών αλλαγών στο JSON" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Επισκεφθείτε τον ιστότοπο" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Προβολή λεπτομερειών" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Έκδοση %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Πληροφορία" + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" +"Υποστήριξη. Οι επαγγελματίες στην " +"Υποστήριξή μας θα σας βοηθήσουν με τις πιο προχωρημένες τεχνικές δυσκολίες " +"σας." + +#: includes/admin/admin.php:156 +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 "" +"Συζητήσεις. Διαθέτουμε μια ενεργή και " +"φιλική κοινότητα στα Community Forums μας, που πιθανόν να μπορέσει να σας " +"βοηθήσει στα \"πώς και τι\" του κόσμου του ACF." + +#: includes/admin/admin.php:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" +"Τεκμηρίωση. Η εκτεταμένη μας τεκμηρίωσή " +"περιέχει αναφορές και οδηγούς για τις περισσότερες από τις περιπτώσεις που " +"τυχόν συναντήσετε. " + +#: includes/admin/admin.php:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Βοήθεια & Υποστήριξη" + +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" +"Χρησιμοποιήστε την καρτέλα Βοήθεια & Υποστήριξη για να επικοινωνήστε μαζί " +"μας στην περίπτωση που χρειαστείτε βοήθεια. " + +#: includes/admin/admin.php:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Σφάλμα κατά τη φόρτωση του πεδίου." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "Η τιμή του %s είναι υποχρεωτική" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Εμφάνιση αυτού του πεδίου αν" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Λογική Υπό Συνθήκες" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "και" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Τοπικό JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Πεδίο Κλώνου" + +#: includes/admin/views/html-notice-upgrade.php:31 +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "" +"Επιβεβαιώστε επίσης ότι όλα τα επί πληρωμή πρόσθετα (%s) είναι ενημερωμένα " +"στην τελευταία τους έκδοση." + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "" +"Αυτή η έκδοση περιέχει βελτιώσεις στη βάση δεδομένων σας κι απαιτεί μια " +"αναβάθμιση." + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Ευχαριστούμε που αναβαθμίσατε στο %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Απαιτείται Αναβάθμιση Βάσης Δεδομένων" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Σελίδα Επιλογών" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Συλλογή" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Ευέλικτο Περιεχόμενο" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Επαναλήπτης" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Πίσω σε όλα τα εργαλεία" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Επιλέξτε στοιχεία για να τα αποκρύψετε από την οθόνη " +"τροποποίησης." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Απόκρυψη σε οθόνη" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Αποστολή Παραπομπών" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Ετικέτες" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Κατηγορίες" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Χαρακτηριστικά Σελίδας" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Μορφή" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Συντάκτης" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Σύντομο όνομα" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Αναθεωρήσεις" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Σχόλια" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Συζήτηση" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Απόσπασμα" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Επεξεργαστής Περιεχομένου" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Μόνιμος σύνδεσμος" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Εμφανίζεται στη λίστα ομάδας πεδίων" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Ομάδες πεδίων με χαμηλότερη σειρά θα εμφανιστούν πρώτες" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Αρ. Παραγγελίας" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Παρακάτω πεδία" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Παρακάτω ετικέτες" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Τοποθέτηση οδηγιών" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Τοποθέτηση ετικέτας" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Πλάι" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Κανονικό (μετά το περιεχόμενο)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Ψηλά (μετά τον τίτλο)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Τοποθεσία" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Ενοποιημένη (χωρίς metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Κλασική (με WP metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Στυλ" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Τύπος" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Κλειδί" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Σειρά" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Κλείσιμο Πεδίου" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "κλάση" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "πλάτος" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Ιδιότητες Πλαισίου" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Οδηγίες προς τους συγγραφείς. Ορατό όταν υποβάλλοντα τα δεδομένα" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Οδηγίες" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Τύπος Πεδίου" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Μια λέξη, χωρίς κενά. Επιτρέπονται κάτω παύλες και παύλες" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Όνομα Πεδίου" + +#: includes/admin/views/field-group-field.php:122 +msgid "This is the name which will appear on the EDIT page" +msgstr "Αυτό είναι το όνομα που θα εμφανιστεί στην σελίδα ΤΡΟΠΟΠΟΙΗΣΗΣ." + +#: includes/admin/views/field-group-field.php:121 +msgid "Field Label" +msgstr "Επιγραφή Πεδίου" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Διαγραφή" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Διαγραφή πεδίου" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Μετακίνηση" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Μετακίνηση του πεδίου σε άλλο group" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Δημιουργία αντιγράφου του πεδίου" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Τροποποίηση πεδίου" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Σύρετε για αναδιάταξη" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Εμφάνιση αυτής της ομάδας πεδίου αν" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Δεν υπάρχουν διαθέσιμες ενημερώσεις." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "" +"Η αναβάθμιση της βάσης δεδομένων ολοκληρώθηκε. Δείτε τι νέο " +"υπάρχει" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Πραγματοποιείται ανάγνωση εργασιών αναβάθμισης..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Η αναβάθμιση απέτυχε." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Η αναβάθμιση ολοκληρώθηκε." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Πραγματοποιείται αναβάθμιση δεδομένων στην έκδοση %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Παρακαλούμε επιλέξτε τουλάχιστον έναν ιστότοπο για αναβάθμιση." + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Η Αναβάθμιση της Βάσης Δεδομένων ολοκληρώθηκε. Επιστροφή στον " +"πίνακα ελέγχου του δικτύου" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Ο ιστότοπος είναι ενημερωμένος" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "Ο ιστότοπος απαιτεί αναβάθμιση της βάσης δεδομένων από %1$s σε%2$s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Ιστότοπος" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Αναβάθμιση Ιστοτόπων" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Προσθήκη ομάδας κανόνων" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Κανόνες" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Αντιγράφηκε" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Αντιγραφή στο πρόχειρο" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Ο παρακάτω κώδικας μπορεί να χρησιμοποιηθεί για να δηλώσετε μια τοπική " +"έκδοση των επιλεγμένων field group. Ένα τοπικό local field group μπορεί να " +"δώσει πολλά οφέλη, όπως ταχύτεροι χρόνοι φόρτωσης, version control & " +"δυναμικά πεδία/ρυθμίσεις. Απλώς αντιγράψτε και επικολλήστε τον παρακάτω " +"κώδικά στο αρχείο functions.php του θέματός σας ή κάντε το include σε ένα " +"εξωτερικό αρχείο." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Επιλογή ομάδων πεδίων" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Έγινε εξαγωγή 1 ομάδας πεδίων." +msgstr[1] "Έγινε εξαγωγή %s ομάδων πεδίων." + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Έγινε εισαγωγή 1 ομάδας πεδίων" +msgstr[1] "Έγινε εισαγωγή %s ομάδας πεδίων" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Εισαγωγή κενού αρχείου" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Εσφαλμένος τύπος αρχείου" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Σφάλμα μεταφόρτωσης αρχείου. Παρακαλούμε δοκιμάστε πάλι" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Εισαγωγή Ομάδων Πεδίων" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Συγχρονισμός" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Επιλογή %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Δημιουργία αντιγράφου" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Δημιουργία αντιγράφου αυτού του στοιχείου" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Περιγραφή" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Διαθέσιμος συγχρονισμός" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Η ομάδα πεδίων συγχρονίστηκε." +msgstr[1] "%s ομάδες πεδίων συγχρονίστηκαν." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Δημιουργήθηκε αντίγραφο της ομάδας πεδίων." +msgstr[1] "Δημιουργήθηκαν αντίγραφα %s ομάδων πεδίων." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Ενεργό (%s)" +msgstr[1] "Ενεργά (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Αναβάθμιση Βάσης Δεδομένων" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Μετακίνηση Πεδίου" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Παρακαλούμε επιλέξτε τον προορισμό γι' αυτό το πεδίο" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Κλείσιμο Παραθύρου" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "Το πεδίο %1$s μπορεί πλέον να βρεθεί στην ομάδα πεδίων %2$s" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Η Μετακίνηση Ολοκληρώθηκε." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Ενεργό" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Field Keys" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ρυθμίσεις" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Τοποθεσία" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "αντιγραφή" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(αυτό το πεδίο)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Επιλεγμένο" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Μετακίνηση Προσαρμοσμένου Πεδίου" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Δεν υπάρχουν διαθέσιμα πεδία εναλλαγής" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Ο τίτλος του field group είναι απαραίτητος" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" +msgstr "" +"Αυτό το πεδίο δεν μπορεί να μετακινηθεί μέχρι να αποθηκευτούν οι αλλαγές του" + +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "" +"Το αλφαριθμητικό \"field_\" δεν μπορεί να χρησιμοποιηθεί στην αρχή ενός " +"ονόματος πεδίου" + +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Το πρόχειρο field group ενημερώθηκε" + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Το field group προγραμματίστηκε." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Το field group καταχωρήθηκε." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Το field group αποθηκεύτηκε. " + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Το field group δημοσιεύθηκε." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Το field group διαγράφηκε." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Το field group ενημερώθηκε." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Σελίδα" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Άρθρο" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Υπό Συνθήκες" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Επιλογή" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Βασικό" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Άγνωστο" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Περιεχόμενο" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Τίτλος" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Επεξεργασία field group" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Η επιλογή να είναι μικρότερη από" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Η επιλογή να είναι μεγαλύτερη από" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Η τιμή να είναι μικρότερη από" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Η τιμή να είναι μεγαλύτερη από" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Η τιμη να περιέχει" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Η τιμή να ικανοποιεί το μοτίβο" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 assets/build/js/acf-input.js:903 +#: assets/build/js/acf-input.js:1116 +msgid "Value is not equal to" +msgstr "Η τιμή να μην είναι ίση με" + +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "Η τιμή να είναι ίση με" + +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Να μην έχει καμία τιμή" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Να έχει οποιαδήποτε τιμή" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Ακύρωση" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Είστε σίγουροι;" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d πεδία χρήζουν προσοχής" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 πεδίο χρήζει προσοχής" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Ο έλεγχος απέτυχε" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Ο έλεγχος πέτυχε" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Περιορισμένος" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Σύμπτυξη Λεπτομερειών" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ανάπτυξη Λεπτομερειών" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Να έχουν μεταφορτωθεί σε αυτή την ανάρτηση" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Ενημέρωση" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Επεξεργασία" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "Οι αλλαγές που έχετε κάνει θα χαθούν αν φύγετε από αυτή τη σελίδα." + +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "Ο τύπος του πεδίου πρέπει να είναι %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "ή" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Το μέγεθος του αρχείου πρέπει να το πολύ %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "Το μέγεθος το αρχείου πρέπει να είναι τουλάχιστον %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Το ύψος της εικόνας πρέπει να είναι το πολύ %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Το ύψος της εικόνας πρέπει να είναι τουλάχιστον %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Το πλάτος της εικόνας πρέπει να είναι το πολύ %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Το πλάτος της εικόνας πρέπει να είναι τουλάχιστον %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(χωρίς τίτλο)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Πλήρες μέγεθος" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Μεγάλο" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Μεσαίο" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Μικρογραφία" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(χωρίς ετικέτα)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Θέτει το ύψος του πεδίου κειμένου" + +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "Γραμμές" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Πεδίο κειμένου πολλών γραμμών" + +#: includes/fields/class-acf-field-checkbox.php:447 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Εμφάνιση επιπλέον πεδίου checkbox που εναλλάσσει όλες τις επιλογές" + +#: includes/fields/class-acf-field-checkbox.php:409 +msgid "Save 'custom' values to the field's choices" +msgstr "Αποθήκευση των 'custom' τιμών στις επιλογές του πεδίου" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "Να επιτρέπεται η προσθήκη 'custom' τιμών" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Προσθήκη νέας τιμής" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Εναλλαγή Όλων" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Να Επιτρέπονται τα URL των Archive" + +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Archive" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Σύνδεσμος Σελίδας" + +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Προσθήκη" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Όνομα" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s προστέθηκε" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s υπάρχει ήδη" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Ο Χρήστης δεν ήταν δυνατό να προσθέσει νέο %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID όρου" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Object όρου" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Φόρτωση τιμής από τους όρους της ανάρτησης" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Φόρτωση Όρων" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Σύνδεση επιλεγμένων όρων στο άρθρο" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Αποθήκευση Όρων" + +#: includes/fields/class-acf-field-taxonomy.php:718 +msgid "Allow new terms to be created whilst editing" +msgstr "Να επιτρέπεται η δημιουργία νέων όρων κατά την επεξεργασία" + +#: includes/fields/class-acf-field-taxonomy.php:717 +msgid "Create Terms" +msgstr "Δημιουργία Όρων" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radio Button" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Μοναδική Τιμή" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Πολλαπλή Επιλογή" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Checkbox" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Πολλαπλές Τιμές" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Επιλέξτε την εμφάνιση αυτού του πεδίου" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Εμφάνιση" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Επιλέξτε την ταξινομία οπυ θέλετε να εμφανιστεί" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +msgid "Value must be equal to or lower than %d" +msgstr "Η τιμή πρέπι να είναι ίση ή μικρότερη από %d" + +#: includes/fields/class-acf-field-number.php:256 +msgid "Value must be equal to or higher than %d" +msgstr "Η τιμή πρέπει να είναι ίση ή μεγαλύτερη από %d" + +#: includes/fields/class-acf-field-number.php:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "Αποθήκευση των \"άλλων\" τιμών στις επιλογές του πεδίου" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Προσθήκη επιλογής \"άλλο\" ώστε να επιτρέπονται προσαρμοσμένες τιμές" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radio Button" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +msgid "Allow this accordion to open without closing others." +msgstr "Επιτρέψτε σε αυτό το accordion να ανοίγει χωρίς να κλείνουν τα άλλα." + +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Πολλαπλό Άνοιγμα" + +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "Αυτό το accordion να είναι ανοιχτό κατά τη φόρτωση της σελίδας." + +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Άνοιγμα" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Ακορντεόν" + +#: 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:217 +msgid "File ID" +msgstr "ID Αρχείου" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL Αρχείου" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array Αρχείων" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Προσθήκη Αρχείου" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Δεν επιλέχθηκε αρχείο" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Όνομα αρχείου" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Ενημέρωση Αρχείου" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Επεξεργασία Αρχείου" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Προσδιορίστε την επιστρεφόμενη τιμή" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Χρήση AJAX για τη φόρτωση των τιμών με καθυστέρηση;" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Εισαγάγετε την κάθε προεπιλεγμένη τιμή σε μια νέα γραμμή" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Επιλέξτε" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Η φόρτωση απέτυχε" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Αναζήτηση…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Φόρτωση περισσότερων αποτελεσμάτων…" + +#: includes/fields/class-acf-field-select.php:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Μπορείτε να επιλέξετε μόνο %d αντικείμενα" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Μπορείτε να επιλέξετε μόνο 1 αντικείμενο" + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Παρακαλούμε διαγράψτε %d χαρακτήρες" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Παρακαλούμε διαγράψτε 1 χαρακτήρα" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "Παρακαλούμε εισαγάγετε %d ή περισσότερους χαρακτήρες" + +#: includes/fields/class-acf-field-select.php:110 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "Παρακαλούμε εισαγάγετε 1 ή περισσότερους χαρακτήρες" + +#: includes/fields/class-acf-field-select.php:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Δε βρέθηκαν αποτελέσματα που να ταιριάζουν" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Επιλογή" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID Χρήστη" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Object Χρήστη" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Array Χρήστη" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Όλοι οι ρόλοι χρηστών" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Φιλτράρισμα κατά ρόλο" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Επιλογή Χρώματος" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Προεπιλογή" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "ΜΜ" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "ΜΜ" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "ΠΜ" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "ΠΜ" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Επιλογή" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Ολοκληρώθηκε" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Τώρα" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Ζώνη Ώρας" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Μικροδευτερόλεπτο" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Χιλιοστό του δευτερολέπτου" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Δευτερόλεπτο" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Λεπτό" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Ώρα" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Ώρα" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Καρτέλα" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Η τιμή πρέπει να είναι ένα έγκυρο URL " + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Σύνδεσμος URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Ανοίγει σε νέο παράθυρο/καρτέλα" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Ετικέτα" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Τιμή" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "κόκκινο : Κόκκινο" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Ομάδα Κουμπιών" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Επιλογή πολλαπλών τιμών;" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Γονέας" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "Καθυστέρηση αρχικοποίησης;" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Εμφάνιση Κουμπιών Μεταφόρτωσης Πολυμέσων;" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Γραμμή εργαλείων" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Μόνο Κείμενο" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Καρτέλες" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Επιλεγμένη Εικόνα" + +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Ταξινομία" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Τύπος Άρθρου" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Φίλτρα" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Όλες οι Ταξινομίες" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Φιλτράρισμα κατά Ταξινομία" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Όλοι οι τύποι άρθρων" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Φιλτράρισμα κατά Τύπο Άρθρου" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Αναζήτηση..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Επιλογή ταξινομίας" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Επιλογή τύπου άρθρου" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Δεν βρέθηκαν αντιστοιχίες" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Φόρτωση" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "Λίστα διαχωρισμένη με κόμμα. Αφήστε κενό για όλους τους τύπους" + +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Επιτρεπόμενοι τύποι αρχείων" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Μέγιστο" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Μέγεθος αρχείου" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Περιορίστε ποιες εικόνες μπορούν να μεταφορτωθούν" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Ελάχιστο" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Μεταφορτώθηκε στο άρθρο" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Περιορισμός της επιλογής βιβλιοθήκης πολυμέσων" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Βιβλιοθήκη" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Μέγεθος Προεπισκόπησης" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL Εικόνας" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Προσθήκη Εικόνας" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Δεν επιλέχθηκε εικόνα" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Αφαίρεση" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Επεξεργασία" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Όλες οι εικόνες" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Ενημέρωση Εικόνας" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Επεξεργασία Εικόνας" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "Επιλογή Εικόνας" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Εικόνα" + +#: includes/fields/class-acf-field-message.php:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" + +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Χωρίς Μορφοποίηση" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Αυτόματη προσθήκη <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Αυτόματη προσθήκη παραγράφων" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Η Εβδομάδα Αρχίζει Την" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "Η μορφή που χρησιμοποιείται στην αποθήκευση μιας τιμής" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Μορφή Αποθήκευσης" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "ΣΚ" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Προηγούμενο" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Επόμενο" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Σήμερα" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Πλάτος" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "" + +#: includes/fields/class-acf-field-oembed.php:219 +msgid "Enter URL" +msgstr "Εισάγετε URL" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:181 +msgid "Text shown when inactive" +msgstr "Κείμενο που εμφανίζεται όταν είναι ανενεργό" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Ανενεργό Κείμενο" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Κείμενο που εμφανίζεται όταν είναι ενεργό" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Ενεργό Κείμενο" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Προεπιλεγμένη Τιμή" + +#: 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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Μήνυμα" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Όχι" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "Ναι" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "" + +#: includes/fields/class-acf-field-group.php:471 +msgid "Row" +msgstr "Γραμμή" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Πίνακας" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Μπλοκ" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Επιλογή του στυλ που θα χρησιμοποιηθεί για την εμφάνιση των επιλεγμένων " +"πεδίων" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Διάταξη" + +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "Υποπεδία" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Ομάδα" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "Τροποποίηση ύψους χάρτη" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Ύψος" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Ορισμός αρχικού επιπέδου μεγέθυνσης" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Μεγέθυνση" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Κεντράρισμα αρχικού χάρτη" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Κεντράρισμα" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Αναζήτηση διεύθυνσης..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Εύρεση τρέχουσας τοποθεσίας" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Καθαρισμός τοποθεσίας" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Αναζήτηση" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Προσαρμοσμένο:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Δεν βρέθηκαν Πεδία στα Διεγραμμένα" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Δεν βρέθηκαν Πεδία" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Αναζήτηση Πεδίων" + +#: acf.php:409 +msgid "View Field" +msgstr "Προβολή Πεδίων" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Νέο Πεδίο" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Επεξεργασία Πεδίου" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Προσθήκη Νέου Πεδίου" + +#: acf.php:404 +msgid "Field" +msgstr "Πεδίο" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Πεδία" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Δεν βρέθηκαν Ομάδες Πεδίων στα Διεγραμμένα" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Δεν βρέθηκαν Ομάδες Πεδίων" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Αναζήτηση Ομάδων Πεδίων " + +#: acf.php:375 +msgid "View Field Group" +msgstr "Προβολή Ομάδας Πεδίων" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Νέα Ομάδα Πεδίων" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Επεξεργασίας Ομάδας Πεδίων" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Προσθήκη Νέας Ομάδας Πεδίων" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Προσθήκη Νέου" + +#: acf.php:370 +msgid "Field Group" +msgstr "Ομάδα Πεδίου" + +#: acf.php:369 includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "Ομάδες Πεδίων" + +#. Description of the plugin +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "Προσαρμόστε το WordPress με ισχυρά, επαγγελματικά και εύχρηστα πεδία." + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-en_CA.mo b/lang/acf-en_CA.mo new file mode 100644 index 0000000..62e3cbc Binary files /dev/null and b/lang/acf-en_CA.mo differ diff --git a/lang/acf-en_CA.po b/lang/acf-en_CA.po new file mode 100644 index 0000000..bd145dd --- /dev/null +++ b/lang/acf-en_CA.po @@ -0,0 +1,3019 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' is not a valid email address" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Colour value" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Select default colour" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Clear colour" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blocks" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Options" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Users" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menu items" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Attachments" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomies" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Posts" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON field group (newer)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Original field group" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Last updated: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Sorry, this field group is unavailable for diff comparison." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Invalid field group ID." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Invalid field group parameter(s)." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Awaiting save" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Saved" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Import" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Review changes" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Located in: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Located in plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Located in theme: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Various" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sync changes" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Loading diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Review local JSON changes" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visit website" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "View details" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Information" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Help & Support" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error loading field." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s value is required" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Show this field if" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Conditional Logic" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "and" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Local JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Clone Field" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Database Upgrade Required" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Options Page" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Gallery" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexible Content" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repeater" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Back to all tools" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "Select items to hide them from the edit screen." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Hide on screen" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Send Trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categories" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Page Attributes" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Author" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisions" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comments" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussion" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Excerpt" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Content Editor" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Shown in field group list" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Field groups with a lower order will appear first" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Order No." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Below fields" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Below labels" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Instruction placement" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Label placement" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Side" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (after content)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "High (after title)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Position" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Seamless (no metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (WP metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Style" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Type" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Key" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Order" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Close Field" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "width" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Wrapper Attributes" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instructions for authors. Shown when submitting data" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instructions" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Field Type" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Single word, no spaces. Underscores and dashes allowed" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Field Name" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Field Label" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Delete" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Delete field" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Move" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Move field to another group" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicate field" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Edit field" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Drag to reorder" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Show this field group if" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No updates available." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Database upgrade complete. See what's new" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Reading upgrade tasks…" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Upgrade failed." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Upgrade complete." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Upgrading data to version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Database Upgrade complete. Return to network dashboard" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Site is up to date" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Upgrade Sites" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Add rule group" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Rules" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copied" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copy to clipboard" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Select Field Groups" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exported 1 field group." +msgstr[1] "Exported %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Imported 1 field group" +msgstr[1] "Imported %s field groups" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Import file empty" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Incorrect file type" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Error uploading file. Please try again" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Import Field Groups" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sync" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Select %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicate" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicate this item" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Description" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sync available" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Field group synchronized." +msgstr[1] "%s field groups synchronized." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Field group duplicated." +msgstr[1] "%s field groups duplicated." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Active (%s)" +msgstr[1] "Active (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Upgrade Database" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Move Field" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Please select the destination for this field" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Close Window" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Move Complete." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Active" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Field Keys" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Settings" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Location" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copy" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(this field)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Checked" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Move Custom Field" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No toggle fields available" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Field group title is required" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Field group draft updated." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Field group scheduled for." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Field group submitted." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Field group saved." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Field group published." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Field group deleted." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Field group updated." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Page" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Post" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relational" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Choice" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Basic" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Unknown" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Content" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Title" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Edit field group" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Selection is less than" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Selection is greater than" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Value is less than" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Value is greater than" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Value contains" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Value matches pattern" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Has no value" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Has any value" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancel" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Are you sure?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d fields require attention" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 field requires attention" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validation failed" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validation successful" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restricted" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Collapse Details" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Expand Details" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Uploaded to this post" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Update" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Edit" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "File type must be %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "or" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "File size must not exceed %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "File size must be at least %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Image height must not exceed %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Image height must be at least %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Image width must not exceed %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Image width must be at least %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(no title)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Full Size" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Large" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Medium" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Thumbnail" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(no label)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Sets the textarea height" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Allow 'custom' values to be added" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Add new choice" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Toggle All" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Allow Archives URLs" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Add" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Name" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s added" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s already exists" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "User unable to add new %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Term ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Term Object" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Load value from posts terms" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Load Terms" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Connect selected terms to the post" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Save Terms" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Create Terms" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radio Buttons" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Single Value" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Multi Select" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Checkbox" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Multiple Values" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Select the appearance of this field" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Appearance" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Select the taxonomy to be displayed" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Add 'other' choice to allow for custom values" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radio Button" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expand" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Open" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Accordion" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restrict which files can be uploaded" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "File ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "File URL" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "File Array" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Add File" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "No file selected" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "File name" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Update File" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Edit File" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Specify the value returned" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Use AJAX to lazy load choices?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Loading failed" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Searching…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Loading more results…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Please delete %d characters" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Please delete 1 character" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No matches found" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "User ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "User Object" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "User Array" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "All user roles" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filter by role" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Select Colour" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Default" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Done" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Now" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Time Zone" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsecond" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisecond" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Second" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hour" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Time" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Endpoint" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Left aligned" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Top aligned" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Placement" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Tab" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Value must be a valid URL" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Link URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Link Array" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Opens in a new window/tab" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Step Size" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximum Value" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Both (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Label" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Value" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : Red" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Enter each choice on a new line." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Choices" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Button Group" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Select multiple values?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Allow Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Parent" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Delay initialization?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Show Media Upload Buttons?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Toolbar" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Text Only" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Visual Only" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual & Text" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Tabs" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Click to initialize TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg Editor" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Value must not exceed %d characters" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Leave blank for no limit" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Character Limit" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Appears after the input" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Append" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Appears before the input" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Prepend" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Appears within the input" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Placeholder Text" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Post ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Post Object" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum posts" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum posts" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Featured Image" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elements" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomy" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Post Type" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filters" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "All taxonomies" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filter by Taxonomy" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "All post types" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filter by Post Type" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Search…" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Select taxonomy" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Select post type" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No matches found" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Loading" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximum values reached ( {max} values )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relationship" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Allowed file types" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "File size" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restrict which images can be uploaded" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Uploaded to post" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limit the media library choice" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Library" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Preview Size" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Image ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Image URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Image Array" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Specify the returned value on front end" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Return Value" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Add Image" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No image selected" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Remove" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Edit" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "All images" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Update Image" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Edit Image" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escape HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "No Formatting" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Automatically add <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Automatically add paragraphs" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Controls how new lines are rendered" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "New Lines" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "The format used when saving a value" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Save Format" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Wk" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Prev" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Next" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Today" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Width" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Embed Size" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Text shown when inactive" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Off Text" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Text shown when active" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "On Text" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Default Value" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Message" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Row" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Table" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Block" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Specify the style used to render the selected fields" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Customize the map height" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Height" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Set the initial zoom level" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centre the initial map" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centre" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Search for address…" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Find current location" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Clear location" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Search" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "The format returned via template functions" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Return Format" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Custom:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "The format displayed when editing a post" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No Fields found in Trash" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No Fields found" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Search Fields" + +#: acf.php:409 +msgid "View Field" +msgstr "View Field" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "New Field" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Edit Field" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Add New Field" + +#: acf.php:404 +msgid "Field" +msgstr "Field" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Fields" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No Field Groups found in Trash" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No Field Groups found" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Search Field Groups" + +#: acf.php:375 +msgid "View Field Group" +msgstr "View Field Group" + +#: acf.php:374 +msgid "New Field Group" +msgstr "New Field Group" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Edit Field Group" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Add New Field Group" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Add New" + +#: acf.php:370 +msgid "Field Group" +msgstr "Field Group" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-en_GB.mo b/lang/acf-en_GB.mo new file mode 100644 index 0000000..5a9aa78 Binary files /dev/null and b/lang/acf-en_GB.mo differ diff --git a/lang/acf-en_GB.po b/lang/acf-en_GB.po new file mode 100644 index 0000000..b029001 --- /dev/null +++ b/lang/acf-en_GB.po @@ -0,0 +1,3585 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +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:121 +msgid "New Tab Group" +msgstr "New Tab Group" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "Use a stylised checkbox using select2" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "Save Other Choice" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "Allow Other Choice" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "Add Toggle All" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Save Custom Values" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Allow Custom Values" + +#: includes/fields/class-acf-field-checkbox.php:144 +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/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Updates" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "Advanced Custom Fields logo" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Save Changes" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Field Group Title" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Add title" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +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/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "Add Field Group" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Add Your First Field Group" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Upgrade Now" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Options Pages" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "ACF Blocks" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Gallery Field" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Flexible Content Field" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Repeater Field" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "Unlock Extra Features with ACF PRO" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Delete Field Group" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Created on %1$s at %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "Group Settings" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "Location Rules" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" +"Choose from over 30 field types. Learn " +"more." + +#: includes/admin/views/field-group-fields.php:54 +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/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "#" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "Add Field" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Presentation" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validation" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Export Field Groups - Generate PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Export As JSON" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "Field group deactivated." +msgstr[1] "%s field groups deactivated." + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "Field group activated." +msgstr[1] "%s field groups activated." + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Deactivate" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Deactivate this item" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Activate" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Activate this item" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "Move field group to trash?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "Inactive" + +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Invalid request." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s requires a valid attachment ID." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Show in REST API" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Enable Transparency" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA Array" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA String" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex String" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Gallery (Pro only)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clone (Pro only)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexible Content (Pro only)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repeater (Pro only)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Active" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' is not a valid email address" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Colour value" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Select default colour" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Clear colour" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blocks" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Options" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Users" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menu items" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Attachments" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomies" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Posts" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON field group (newer)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Original field group" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Last updated: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Sorry, this field group is unavailable for diff comparison." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Invalid field group ID." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Invalid field group parameter(s)." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Awaiting save" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Saved" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Import" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Review changes" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Located in: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Located in plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Located in theme: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Various" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sync changes" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Loading diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Review local JSON changes" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visit website" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "View details" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Information" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Help & Support" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error loading field." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s value is required" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Show this field if" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Conditional Logic" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "and" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Local JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Clone Field" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Database Upgrade Required" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Options Page" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Gallery" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexible Content" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repeater" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Back to all tools" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "Select items to hide them from the edit screen." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Hide on screen" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Send Trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categories" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Page Attributes" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Author" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisions" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comments" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussion" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Excerpt" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Content Editor" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Shown in field group list" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Field groups with a lower order will appear first" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Order No." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Below fields" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Below labels" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Instruction placement" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Label placement" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Side" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (after content)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "High (after title)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Position" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Seamless (no metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (WP metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Style" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Type" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Key" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Order" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Close Field" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "width" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Wrapper Attributes" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Required" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instructions for authors. Shown when submitting data" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instructions" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Field Type" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Single word, no spaces. Underscores and dashes allowed" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Field Name" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Field Label" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Delete" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Delete field" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Move" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Move field to another group" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicate field" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Edit field" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Drag to reorder" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Show this field group if" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No updates available." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Database upgrade complete. See what's new" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Reading upgrade tasks..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Upgrade failed." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Upgrade complete." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Upgrading data to version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Database Upgrade complete. Return to network dashboard" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Site is up to date" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Upgrade Sites" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Add rule group" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Rules" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copied" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copy to clipboard" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Select Field Groups" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exported 1 field group." +msgstr[1] "Exported %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Imported 1 field group" +msgstr[1] "Imported %s field groups" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Import file empty" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Incorrect file type" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Error uploading file. Please try again" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Import Field Groups" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sync" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Select %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicate" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicate this item" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Description" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sync available" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Field group synchronised." +msgstr[1] "%s field groups synchronised." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Field group duplicated." +msgstr[1] "%s field groups duplicated." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Active (%s)" +msgstr[1] "Active (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Upgrade Database" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Move Field" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Please select the destination for this field" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Close Window" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Move Complete." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Active" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Field Keys" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Settings" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Location" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copy" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(this field)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Checked" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Move Custom Field" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No toggle fields available" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Field group title is required" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Field group draft updated." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Field group scheduled for." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Field group submitted." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Field group saved." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Field group published." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Field group deleted." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Field group updated." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Page" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Post" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relational" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Choice" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Basic" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Unknown" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Content" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Title" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Edit field group" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Selection is less than" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Selection is greater than" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Value is less than" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Value is greater than" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Value contains" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Value matches pattern" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Has no value" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Has any value" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancel" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Are you sure?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d fields require attention" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 field requires attention" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validation failed" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validation successful" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restricted" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Collapse Details" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Expand Details" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Uploaded to this post" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Update" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Edit" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "File type must be %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "or" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "File size must not exceed %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "File size must be at least %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Image height must not exceed %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Image height must be at least %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Image width must not exceed %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Image width must be at least %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(no title)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Full Size" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Large" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Medium" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Thumbnail" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(no label)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Sets the textarea height" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Allow 'custom' values to be added" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Add new choice" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Toggle All" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Allow Archive URLs" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Add" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Name" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s added" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s already exists" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "User unable to add new %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Term ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Term Object" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Load value from posts terms" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Load Terms" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Connect selected terms to the post" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Save Terms" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Create Terms" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radio Buttons" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Single Value" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Multi Select" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Checkbox" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Multiple Values" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Select the appearance of this field" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Appearance" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Select the taxonomy to be displayed" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "No %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Add 'other' choice to allow for custom values" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radio Button" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expand" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Open" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Accordion" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restrict which files can be uploaded" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "File ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "File URL" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "File Array" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Add File" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "No file selected" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "File name" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Update File" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Edit File" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Specify the value returned" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Use AJAX to lazy load choices?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Loading failed" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Searching…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Loading more results…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Please delete %d characters" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Please delete 1 character" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No matches found" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "User ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "User Object" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "User Array" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "All user roles" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filter by role" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Select Colour" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Default" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Done" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Now" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Time Zone" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsecond" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisecond" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Second" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hour" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Time" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Endpoint" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Left aligned" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Top aligned" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Placement" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Tab" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Value must be a valid URL" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Link URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Link Array" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Opens in a new window/tab" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Step Size" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximum Value" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Both (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Label" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Value" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : Red" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Enter each choice on a new line." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Choices" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Button Group" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Select multiple values?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Allow Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Parent" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Delay initialisation?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Show Media Upload Buttons?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Toolbar" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Text Only" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Visual Only" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual and Text" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Tabs" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Click to initialise TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "WYSIWYG Editor" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Value must not exceed %d characters" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Leave blank for no limit" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Character Limit" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Appears after the input" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Append" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Appears before the input" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Prepend" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Appears within the input" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Placeholder Text" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Post ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Post Object" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum posts" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum posts" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Featured Image" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elements" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomy" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Post Type" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filters" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "All taxonomies" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filter by Taxonomy" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "All post types" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filter by Post Type" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Search..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Select taxonomy" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Select post type" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No matches found" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Loading" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximum values reached ( {max} values )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relationship" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Allowed file types" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "File size" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restrict which images can be uploaded" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Uploaded to post" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limit the media library choice" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Library" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Preview Size" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Image ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Image URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Image Array" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Specify the returned value on front end" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Return Value" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Add Image" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No image selected" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Remove" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Edit" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "All images" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Update Image" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Edit Image" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escape HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "No Formatting" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Automatically add <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Automatically add paragraphs" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Controls how new lines are rendered" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "New Lines" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "The format used when saving a value" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Save Format" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Wk" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Prev" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Next" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Today" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Width" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Embed Size" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Text shown when inactive" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Off Text" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Text shown when active" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "On Text" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Stylised UI" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Default Value" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Message" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Row" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Table" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Block" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Specify the style used to render the selected fields" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Customise the map height" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Height" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Set the initial zoom level" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centre the initial map" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centre" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Search for address..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Find current location" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Clear location" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Search" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "The format returned via template functions" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Return Format" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Custom:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "The format displayed when editing a post" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactive (%s)" +msgstr[1] "Inactive (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No Fields found in bin" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No Fields found" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Search Fields" + +#: acf.php:409 +msgid "View Field" +msgstr "View Field" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "New Field" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Edit Field" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Add New Field" + +#: acf.php:404 +msgid "Field" +msgstr "Field" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Fields" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No Field Groups found in bin" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No Field Groups found" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Search Field Groups" + +#: acf.php:375 +msgid "View Field Group" +msgstr "View Field Group" + +#: acf.php:374 +msgid "New Field Group" +msgstr "New Field Group" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Edit Field Group" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Add New Field Group" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Add New" + +#: acf.php:370 +msgid "Field Group" +msgstr "Field Group" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "" + +#: pro/blocks.php:168 +msgid "Block type name is required." +msgstr "" + +#. translators: The name of the block type +#: pro/blocks.php:176 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:719 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:720 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:721 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:724 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:929 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:935 +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 "" +"ACF Activation Error. Your defined licence key has changed, but an " +"error occurred when deactivating your old 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 "" +"ACF Activation Error. Your defined licence key has changed, but an " +"error occurred when connecting to activation server" + +#: 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:561 +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:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 license." + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:879 +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:884 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:999 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1036 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1040 +msgid "All fields from %s field group" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:80, +#: pro/fields/class-acf-field-repeater.php:272 +msgid "Add Row" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:931, +#: pro/fields/class-acf-field-flexible-content.php:1010 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:930, +#: pro/fields/class-acf-field-flexible-content.php:1009 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:370 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:693 +msgid "Minimum Layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:704 +msgid "Maximum Layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:715, +#: pro/fields/class-acf-field-repeater.php:268 +msgid "Button Label" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1699, +#: pro/fields/class-acf-field-repeater.php:888 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1710 +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:1726 +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:73 +msgid "Add Image to Gallery" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:611 +msgid "Minimum Selection" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Maximum Selection" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:723 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:724 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:728 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:432 +msgid "Minimum rows reached ({min} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:56 +msgid "Order will be assigned upon save" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:172 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:173 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:184 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:185 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:215 +msgid "Minimum Rows" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:226 +msgid "Maximum Rows" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:256 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:257 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:986 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:995 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:357 +msgid "Click to reorder" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Add row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:392 +msgid "Remove row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:436, +#: pro/fields/class-acf-repeater-table.php:453, +#: pro/fields/class-acf-repeater-table.php:454 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444, +#: pro/fields/class-acf-repeater-table.php:445 +msgid "First Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448, +#: pro/fields/class-acf-repeater-table.php:449 +msgid "Previous Page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:458 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465, +#: pro/fields/class-acf-repeater-table.php:466 +msgid "Next Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469, +#: pro/fields/class-acf-repeater-table.php:470 +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 "Deactivate Licence" + +#: pro/admin/views/html-settings-updates.php:6 +msgid "Activate License" +msgstr "Activate Licence" + +#: pro/admin/views/html-settings-updates.php:16 +msgid "License Information" +msgstr "Licence Information" + +#: 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 "" +"To unlock updates, please enter your licence key below. If you don't have a " +"licence key, please see details & pricing." + +#: pro/admin/views/html-settings-updates.php:37 +msgid "License Key" +msgstr "Licence Key" + +#: pro/admin/views/html-settings-updates.php:22 +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: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 +msgid "Enter your license key to unlock updates" +msgstr "Enter your licence key to unlock updates" + +#: 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 "Please reactivate your licence to unlock updates" + +#~ msgid "Please enter your license key above to unlock updates" +#~ msgstr "Please enter your licence key above to unlock updates" diff --git a/lang/acf-en_ZA.mo b/lang/acf-en_ZA.mo new file mode 100644 index 0000000..44fab75 Binary files /dev/null and b/lang/acf-en_ZA.mo differ diff --git a/lang/acf-en_ZA.po b/lang/acf-en_ZA.po new file mode 100644 index 0000000..f7326be --- /dev/null +++ b/lang/acf-en_ZA.po @@ -0,0 +1,3019 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Enable Transparency" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA Array" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA String" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex String" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Gallery (Pro only)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clone (Pro only)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexible Content (Pro only)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repeater (Pro only)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Active" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' is not a valid email address" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Colour value" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Select default colour" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Clear colour" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blocks" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Options" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Users" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menu items" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Attachments" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomies" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Posts" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON field group (newer)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Original field group" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Last Updated: %s ago" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Sorry, this field group is unavailable for diff comparison." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Invalid field group ID." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Invalid field group parameter(s)." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Awaiting save" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Saved" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Import" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Review changes" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Located in: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Located in plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Located in theme: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Various" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sync changes" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Loading diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Review local JSON changes" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visit website" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "View details" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Information" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Help & Support" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error loading field." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s value is required" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Show this field if" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Conditional Logic" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "and" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Local JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Database Upgrade Required" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Options Page" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Gallery" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexible Content" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repeater" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Back to all tools" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "Select items to hide them from the edit screen." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Hide on screen" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Send Trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categories" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Page Attributes" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Author" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisions" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comments" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussion" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Excerpt" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Content Editor" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Shown in field group list" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Field groups with a lower order will appear first" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Order No." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Below fields" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Below labels" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Instruction placement" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Label placement" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Side" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (after content)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "High (after title)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Position" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Seamless (no metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (WP metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Style" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Type" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Key" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Order" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Close Field" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "width" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Wrapper Attributes" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instructions for authors. Shown when submitting data" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instructions" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Field Type" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Single word, no spaces. Underscores and dashes allowed" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Field Name" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Field Label" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Delete" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Delete field" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Move" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Move field to another group" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicate field" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Edit field" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Drag to reorder" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Show this field group if" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No updates available." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Database upgrade complete. See what's new" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Reading upgrade tasks..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Upgrade failed." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Upgrade complete." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Upgrading data to version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Database Upgrade complete. Return to network dashboard" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Site is up to date" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Upgrade Sites" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Add rule group" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Rules" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copied" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copy to clipboard" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Select Field Groups" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exported 1 field group." +msgstr[1] "Exported %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Imported 1 field group" +msgstr[1] "Imported %s field groups" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Import file empty" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Incorrect file type" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Error uploading file. Please try again" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Import Field Groups" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sync" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Select %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicate" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicate this item" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Description" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sync available" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Field group synchronised." +msgstr[1] "%s field groups synchronised." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Field group duplicated." +msgstr[1] "%s field groups duplicated." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Active (%s)" +msgstr[1] "Active (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Upgrade Database" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Move Field" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Please select the destination for this field" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Close Window" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Move Complete." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Active" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Field Keys" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Settings" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Location" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copy" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(this field)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Checked" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Move Custom Field" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No toggle fields available" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Field group title is required" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Field group draft updated." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Field group scheduled for." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Field group submitted." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Field group saved." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Field group published." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Field group deleted." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Field group updated." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Page" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Post" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relational" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Choice" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Basic" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Unknown" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Content" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Title" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Edit field group" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Selection is less than" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Selection is greater than" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Value is less than" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Value is greater than" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Value contains" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Value matches pattern" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Has no value" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Has any value" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancel" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Are you sure?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d fields require attention" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 field requires attention" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validation failed" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validation successful" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restricted" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Collapse Details" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Expand Details" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Uploaded to this post" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Update" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Edit" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "File type must be %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "or" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "File size must not exceed %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "File size must be at least %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Image height must not exceed %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Image height must be at least %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Image width must not exceed %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Image width must be at least %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(no title)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Full Size" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Large" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Medium" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Thumbnail" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(no label)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Sets the textarea height" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Allow 'custom' values to be added" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Add new choice" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Toggle All" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Allow Archives URLs" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Add" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Name" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s added" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s already exists" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "User unable to add new %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Term ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Term Object" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Load value from posts terms" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Load Terms" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Connect selected terms to the post" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Save Terms" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Create Terms" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radio Buttons" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Single Value" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Multi Select" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Checkbox" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Multiple Values" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Select the appearance of this field" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Appearance" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Select the taxonomy to be displayed" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Add 'other' choice to allow for custom values" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radio Button" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expand" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Open" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Accordion" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restrict which files can be uploaded" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "File ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "File URL" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "File Array" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Add File" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "No file selected" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "File name" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Update File" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Edit File" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Specify the value returned" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Use AJAX to lazy load choices?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Loading failed" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Searching…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Loading more results…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Please delete %d characters" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Please delete 1 character" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No matches found" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "User ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "User Object" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "User Array" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "All user roles" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filter by role" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Select Colour" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Default" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Select" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Done" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Now" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Time Zone" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsecond" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisecond" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Second" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hour" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Time" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Endpoint" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Left aligned" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Top aligned" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Placement" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Tab" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Value must be a valid URL" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Link URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Link Array" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Opens in a new window/tab" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Step Size" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximum Value" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Both (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Label" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Value" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : Red" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Enter each choice on a new line." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Choices" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Button Group" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Select multiple values?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Allow Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Parent" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Delay initialisation?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Show Media Upload Buttons?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Toolbar" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Text Only" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Visual Only" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual & Text" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Tabs" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Click to initialise TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg Editor" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Value must not exceed %d characters" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Leave blank for no limit" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Character Limit" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Appears after the input" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Append" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Appears before the input" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Prepend" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Appears within the input" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Placeholder Text" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Post ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Post Object" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum posts" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum posts" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Featured image" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elements" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomy" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Post Type" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filters" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "All taxonomies" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filter by Taxonomy" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "All post types" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filter by Post Type" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Search..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Select taxonomy" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Select post type" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No matches found" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Loading" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximum values reached ( {max} values )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relationship" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Allowed file types" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "File size" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restrict which images can be uploaded" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Uploaded to post" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limit the media library choice" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Library" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Preview Size" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Image ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Image URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Image Array" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Specify the returned value on front end" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Return Value" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Add Image" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No image selected" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Remove" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Edit" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "All images" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Update Image" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Edit Image" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escape HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "No Formatting" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Automatically add <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Automatically add paragraphs" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Controls how new lines are rendered" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "New Lines" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "The format used when saving a value" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Save Format" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Wk" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Prev" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Next" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Today" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Width" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Embed Size" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Text shown when inactive" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Off Text" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Text shown when active" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "On Text" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Default Value" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Message" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Row" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Table" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Block" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Specify the style used to render the selected fields" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Customise the map height" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Height" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Set the initial zoom level" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centre the initial map" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centre" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Search for address..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Find current location" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Clear location" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Search" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "The format returned via template functions" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Return Format" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Custom:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "The format displayed when editing a post" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No Fields found in Bin" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No Fields found" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Search Fields" + +#: acf.php:409 +msgid "View Field" +msgstr "View Field" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "New Field" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Edit Field" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Add New Field" + +#: acf.php:404 +msgid "Field" +msgstr "Field" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Fields" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No Field Groups found in Bin" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No Field Groups found" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Search Field Groups" + +#: acf.php:375 +msgid "View Field Group" +msgstr "View Field Group" + +#: acf.php:374 +msgid "New Field Group" +msgstr "New Field Group" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Edit Field Group" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Add New Field Group" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Add New" + +#: acf.php:370 +msgid "Field Group" +msgstr "Field Group" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_CO.mo b/lang/acf-es_CO.mo new file mode 100644 index 0000000..75ea14d Binary files /dev/null and b/lang/acf-es_CO.mo differ diff --git a/lang/acf-es_CO.po b/lang/acf-es_CO.po new file mode 100644 index 0000000..851e54a --- /dev/null +++ b/lang/acf-es_CO.po @@ -0,0 +1,3041 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Petición no válida." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s necesita un ID de adjunto válido." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostrar en la API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar la transparencia" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadena RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadena hexadecimal" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galería (solo Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clon (solo Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contenido flexible (solo Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetidor (solo Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor del color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar el color por defecto" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Vaciar el color" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloques" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opciones" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos del menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjuntos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (más nuevo)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualización: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Lo siento, este grupo de campos no está disponible para la comparacion diff." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de grupo de campos no válido." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetro(s) de grupo de campos no válido(s)" + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Esperando el guardado" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Guardado" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisar cambios" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Localizado en: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Localizado en el plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Localizado en el tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varios" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar cambios" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Cargando diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisar cambios de JSON local" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ayuda y soporte" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error al cargar el campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "Se requiere el valor %s" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostrar este campo si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lógica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "y" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "¡Gracias por actualizar a %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Es necesario actualizar la base de datos" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opciones" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas las herramientas" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos de página" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisiones" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentarios" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discusión" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contenido" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Los grupos de campos con menor orden aparecerán primero" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Número de orden" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Debajo de los campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Debajo de las etiquetas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Ubicación de la instrucción" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Ubicación de la etiqueta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (después del contenido)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (después del título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Directo (sin caja meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estándar (caja meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Orden" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos del contenedor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +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/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrucciones" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nombre del campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta del campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo a otro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hay actualizaciones disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leyendo tareas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Fallo al actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos a la versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El sitio está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar los sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Añadir grupo de reglas" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Reglas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El siguiente código puede ser utilizado para registrar una versión local del " +"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " +"beneficios como tiempos de carga más cortos, 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 como un archivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Se ha importado un grupo de campos" +msgstr[1] "Se han importado %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Archivo de imporación vacío" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripción" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronización disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona el destino para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Cerrar ventana" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movimiento completo." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claves de campo" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ajustes" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No hay campos de conmutación disponibles" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "El título del grupo de campos es obligatorio" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Borrador del grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos guardado." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relación" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconocido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selección es menor que" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selección es mayor que" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor es menor que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor es mayor que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor contiene" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincide con el patrón" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No tiene ningún valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "No tiene algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requieren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo requiere atención" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restringido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Colapsar detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Subido a esta entrada" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "El tipo de archivo debe ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "El tamaño del archivo no debe ser mayor de %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "El tamaño de archivo debe ser al menos %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "La altura de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "La altura de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "El ancho de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "El ancho de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sin título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sin etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Establece la altura del área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite añadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Añadir nueva opción" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir las URLs de los archivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Añadir" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nombre" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s añadido/s" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ya existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "El usuario no puede añadir nuevos %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID de término" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objeto de término" + +#: includes/fields/class-acf-field-taxonomy.php:740 +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:739 +msgid "Load Terms" +msgstr "Cargar términos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Conectar los términos seleccionados con la publicación" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Guardar términos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crear términos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botones de radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecciona la apariencia de este campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apariencia" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona la taxonomía a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Añade la opción 'otros' para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botón de radio" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeón" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringen los archivos que se pueden subir" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID del archivo" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array del archivo" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Añadir archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún archivo seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nombre del archivo" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar archivo" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Especifica el valor devuelto" + +#: includes/fields/class-acf-field-select.php:456 +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:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Error al cargar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando más resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selección" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID del usuario" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Grupo de objetos" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos los roles de usuario" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por defecto" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hecho" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ahora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Variable" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alineada a la izquierda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alineada arriba" + +#: includes/fields/class-acf-field-tab.php:107 +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:159 +msgid "Value must be a valid URL" +msgstr "El valor debe ser una URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL del enlace" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array de enlaces" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abrir en una nueva ventana/pestaña" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Tamaño de paso" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rojo : Rojo" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "¿Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "¿Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "¿Retrasar el inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "¿Mostrar botones de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de herramientas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Sólo texto" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Sólo visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual y Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestañas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Haz clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "El valor no debe exceder los %d caracteres" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Déjalo en blanco para ilimitado" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Aparece después del campo" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Anexar" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Aparece antes del campo" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Anteponer" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Aparece en el campo" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Marcador de posición" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objeto de publicación" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Publicaciones máximas" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Publicaciones mínimas" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imagen destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas las taxonomías" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos los tipos de contenido" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de archivos permitidos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Tamaño del archivo" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringir que las imágenes se pueden subir" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Subidos al contenido" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitar las opciones de la biblioteca de medios" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamaño de vista previa" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de imagen" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de imagen" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array de imágenes" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especificar el valor devuelto en la web" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Añadir imagen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No hay ninguna imagen seleccionada" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas las imágenes" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagen" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagen" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sin formato" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Añadir <br> automáticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Añadir párrafos automáticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +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:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nuevas líneas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semana comienza el" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Guardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Siguiente" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoy" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamaño de incrustación" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado cuando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado cuando está activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por defecto" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensaje" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabla" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Especifica el estilo utilizado para representar los campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Estructura" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar la altura del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer el nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar inicialmente el mapa" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar dirección..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Buscar" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +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:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No se han encontrado campos en la papelera" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No se han encontrado campos" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nuevo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Añadir nuevo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No se han encontrado grupos de campos en la papelera" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No se han encontrado grupos de campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nuevo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Añadir nuevo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Añadir nuevo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_CR.mo b/lang/acf-es_CR.mo new file mode 100644 index 0000000..758061b Binary files /dev/null and b/lang/acf-es_CR.mo differ diff --git a/lang/acf-es_CR.po b/lang/acf-es_CR.po new file mode 100644 index 0000000..5e425d9 --- /dev/null +++ b/lang/acf-es_CR.po @@ -0,0 +1,3037 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor del color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar el color por defecto" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Vaciar el color" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloques" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opciones" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos del menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjuntos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (reciente)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Actualizado por última vez: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Lo sentimos, este grupo de campos no esta disponible para comparación de dif." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de grupo de campos inválido" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetros del grupo de campos inválido." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Esperando guardado" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Guardado" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisar cambios" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Ubicado en: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Ubicado en plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Ubicado en el tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varios" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar cambios" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Cargando diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisar cambios de JSON local" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión: %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" + +#: includes/admin/admin.php:160 +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:156 +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 ayudarle a descubrir " +"cómo hacer todo en el mundo de ACF." + +#: includes/admin/admin.php:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ayuda y soporte" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error al cargar el campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "El valor de %s es obligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostrar este campo si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lógica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "y" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Clonar campo" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Es necesario actualizar la base de datos" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opciones" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas las herramientas" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos de página" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisiones" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentarios" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discusión" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contenido" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Los grupos de campos con menor orden aparecerán primero" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Número de orden" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Debajo de los campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Debajo de las etiquetas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Ubicación de la instrucción" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Ubicación de la etiqueta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (después del contenido)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (después del título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Directo (sin caja meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estándar (caja meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Orden" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos del contenedor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +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/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrucciones" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nombre del campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta del campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo a otro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hay actualizaciones disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leyendo tareas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Fallo al actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos a la versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El sitio está actualizado" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar los sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Añadir grupo de reglas" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Reglas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El siguiente código puede ser utilizado para registrar una versión local del " +"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " +"beneficios como tiempos de carga más cortos, 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 como un archivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Se ha importado un grupo de campos" +msgstr[1] "Se han importado %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Archivo de imporación vacío" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripción" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronización disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona el destino para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Cerrar ventana" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movimiento completo." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claves de campo" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ajustes" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No hay campos de conmutación disponibles" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "El título del grupo de campos es obligatorio" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Borrador del grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos guardado." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relación" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconocido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selección es menor que" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selección es mayor que" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor es menor que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor es mayor que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor contiene" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincide con el patrón" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No tiene ningún valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "No tiene algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requieren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo requiere atención" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restringido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Contraer detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Subido a esta publicación" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "El tipo de archivo debe ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "El tamaño del archivo no debe sobrepasar %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "El tamaño de archivo debe ser al menos %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "La altura de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "La altura de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "El ancho de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "El ancho de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sin título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sin etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Establece la altura del área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite añadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Añadir nueva opción" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir las URLs de los archivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Añadir" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nombre" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s añadido/s" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ya existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "El usuario no puede añadir nuevos %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID de término" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objeto de término" + +#: includes/fields/class-acf-field-taxonomy.php:740 +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:739 +msgid "Load Terms" +msgstr "Cargar términos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Conectar los términos seleccionados con la publicación" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Guardar términos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crear términos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botones de radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecciona la apariencia de este campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apariencia" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona la taxonomía a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Añade la opción 'otros' para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botón de radio" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeón" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringir qué archivos que se pueden subir" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID del archivo" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array del archivo" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Añadir archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún archivo seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nombre del archivo" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar archivo" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Especifica el valor devuelto" + +#: includes/fields/class-acf-field-select.php:456 +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:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Error al cargar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando más resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selección" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID del usuario" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Grupo de objetos" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos los roles de usuario" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por defecto" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hecho" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ahora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Variable" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alineada a la izquierda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alineada arriba" + +#: includes/fields/class-acf-field-tab.php:107 +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:159 +msgid "Value must be a valid URL" +msgstr "El valor debe ser una URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL del enlace" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array de enlaces" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abrir en una nueva ventana/pestaña" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Tamaño de paso" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rojo : Rojo" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "¿Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "¿Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "¿Retrasar el inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "¿Mostrar botones de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de herramientas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Sólo texto" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Sólo visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual y Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestañas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Haz clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "El valor no debe exceder los %d caracteres" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Déjalo en blanco para ilimitado" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Aparece después del campo" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Anexar" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Aparece antes del campo" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Anteponer" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Aparece en el campo" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Marcador de posición" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objeto de publicación" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Publicaciones máximas" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Publicaciones mínimas" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imagen destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas las taxonomías" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos los tipos de contenido" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de archivos permitidos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Tamaño del archivo" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringir qué imágenes se pueden subir" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Subidos al contenido" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitar las opciones de la biblioteca de medios" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamaño de vista previa" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de imagen" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de imagen" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array de imágenes" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especificar el valor devuelto en la web" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Añadir imagen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No hay ninguna imagen seleccionada" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas las imágenes" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagen" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagen" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sin formato" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Añadir <br> automáticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Añadir párrafos automáticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +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:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nuevas líneas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semana comienza el" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Guardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Siguiente" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoy" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamaño de incrustación" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado cuando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado cuando está activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por defecto" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensaje" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabla" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Especifica el estilo utilizado para representar los campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Estructura" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar la altura del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer el nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar inicialmente el mapa" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar dirección..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Buscar" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +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:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No se han encontrado campos en la papelera" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No se han encontrado campos" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nuevo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Añadir nuevo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No se han encontrado grupos de campos en la papelera" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No se han encontrado grupos de campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nuevo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Añadir nuevo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Añadir nuevo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_EC.mo b/lang/acf-es_EC.mo new file mode 100644 index 0000000..c95d2cb Binary files /dev/null and b/lang/acf-es_EC.mo differ diff --git a/lang/acf-es_EC.po b/lang/acf-es_EC.po new file mode 100644 index 0000000..0005087 --- /dev/null +++ b/lang/acf-es_EC.po @@ -0,0 +1,3041 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Petición no válida." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s necesita un ID de adjunto válido." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostrar en la API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar la transparencia" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadena RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadena hexadecimal" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galería (solo Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clon (solo Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contenido flexible (solo Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetidor (solo Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor del color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar el color predeterminado" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Vaciar el color" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloques" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opciones" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos del menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjuntos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (más nuevo)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualización: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Lo siento, este grupo de campos no está disponible para la comparacion diff." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de campo de grupo no válido." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetro(s) de grupo de campos no válido(s)." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Esperando el guardado" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Guardado" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisar cambios" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Localizado en: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Localizado en el plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Localizado en el tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varios" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar cambios" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Cargando diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisar cambios de JSON local" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ayuda y soporte" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error al cargar el campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "El valor de %s es obligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostrar este campo si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lógica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "y" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "¡Gracias por actualizar a %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Es necesario actualizar la base de datos" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opciones" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas las herramientas" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos de página" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisiones" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentarios" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discusión" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contenido" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Los grupos de campos con menor orden aparecerán primero" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Número de orden" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Debajo de los campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Debajo de las etiquetas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Ubicación de la instrucción" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Ubicación de la etiqueta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (después del contenido)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (después del título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Directo (sin caja meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estándar (caja meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Orden" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "ID" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos del contenedor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +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/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrucciones" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nombre del campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta del campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo a otro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hay actualizaciones disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leyendo tareas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Fallo al actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos a la versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El sitio está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar los sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Añadir grupo de reglas" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Reglas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El siguiente código puede ser utilizado para registrar una versión local del " +"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " +"beneficios como tiempos de carga más cortos, 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 como un archivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Se ha importado un grupo de campos" +msgstr[1] "Se han importado %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Archivo de imporación vacío" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripción" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronización disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona el destino para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Cerrar ventana" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movimiento completo." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claves de campo" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ajustes" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No hay campos de conmutación disponibles" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "El título del grupo de campos es obligatorio" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Borrador del grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos guardado." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relación" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconocido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selección es menor que" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selección es mayor que" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor es menor que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor es mayor que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor contiene" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincide con el patrón" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No tiene ningún valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "No tiene algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requieren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo requiere atención" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restringido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Contraer detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Subido a esta publicación" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "El tipo de archivo debe ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "El tamaño del archivo no debe ser mayor de %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "El tamaño de archivo debe ser al menos %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "La altura de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "La altura de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "El ancho de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "El ancho de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sin título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sin etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Establece la altura del área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite añadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Añadir nueva opción" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir las URLs de los archivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Añadir" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nombre" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s añadido/s" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ya existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "El usuario no puede añadir nuevos %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID de término" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objeto de término" + +#: includes/fields/class-acf-field-taxonomy.php:740 +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:739 +msgid "Load Terms" +msgstr "Cargar términos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Conectar los términos seleccionados con la publicación" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Guardar términos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crear términos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botones de radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecciona la apariencia de este campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apariencia" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona la taxonomía a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Añade la opción 'otros' para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botón de radio" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeón" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringen los archivos que se pueden subir" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID del archivo" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array del archivo" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Añadir archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún archivo seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nombre del archivo" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar archivo" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Especifica el valor devuelto" + +#: includes/fields/class-acf-field-select.php:456 +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:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Error al cargar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando más resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selección" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID del usuario" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Grupo de objetos" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos los roles de usuario" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por defecto" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hecho" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ahora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Variable" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alineada a la izquierda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alineada arriba" + +#: includes/fields/class-acf-field-tab.php:107 +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:159 +msgid "Value must be a valid URL" +msgstr "El valor debe ser una URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL del enlace" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array de enlaces" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abrir en una nueva ventana/pestaña" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Tamaño de paso" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rojo : Rojo" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "¿Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "¿Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "¿Retrasar el inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "¿Mostrar botones de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de herramientas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Sólo texto" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Sólo visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual y Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestañas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Haz clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "El valor no debe exceder los %d caracteres" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Déjalo en blanco para ilimitado" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Aparece después del campo" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Anexar" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Aparece antes del campo" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Anteponer" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Aparece en el campo" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Marcador de posición" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objeto de publicación" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Publicaciones máximas" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Publicaciones mínimas" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imagen destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas las taxonomías" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos los tipos de contenido" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de archivos permitidos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Tamaño del archivo" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringir que las imágenes se pueden subir" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Subidos al contenido" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitar las opciones de la biblioteca de medios" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamaño de vista previa" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de imagen" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de imagen" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array de imágenes" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especificar el valor devuelto en la web" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Añadir imagen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No hay ninguna imagen seleccionada" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas las imágenes" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagen" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagen" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sin formato" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Añadir <br> automáticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Añadir párrafos automáticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +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:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nuevas líneas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semana comienza el" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Guardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Siguiente" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoy" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamaño de incrustación" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado cuando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado cuando está activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por defecto" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensaje" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabla" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Especifica el estilo utilizado para representar los campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Estructura" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar la altura del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer el nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar inicialmente el mapa" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar dirección..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Buscar" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +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:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No se han encontrado campos en la papelera" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No se han encontrado campos" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nuevo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Añadir nuevo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No se han encontrado grupos de campos en la papelera" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No se han encontrado grupos de campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nuevo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Añadir nuevo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Añadir nuevo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_ES.mo b/lang/acf-es_ES.mo index 2535cb9..65ca4e0 100644 Binary files a/lang/acf-es_ES.mo and b/lang/acf-es_ES.mo differ diff --git a/lang/acf-es_ES.po b/lang/acf-es_ES.po index 753cf09..b9cd480 100644 --- a/lang/acf-es_ES.po +++ b/lang/acf-es_ES.po @@ -1,551 +1,543 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2022-03-10 11:28+0000\n" -"PO-Revision-Date: 2022-03-10 11:54+0000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Héctor Garrofé \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: Poedit 2.3.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:71 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "Empieza un nuevo grupo de pestañas en esta pestaña" -#: acf.php:360 includes/admin/admin.php:50 -msgid "Field Groups" -msgstr "Grupos de Campos" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "Nuevo grupo de pestañas" -#: acf.php:361 -msgid "Field Group" -msgstr "Grupo de Campos" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "Usa una casilla de verificación estilizada utilizando select2" -#: acf.php:362 acf.php:396 includes/admin/admin.php:51 -#: pro/fields/class-acf-field-flexible-content.php:554 -msgid "Add New" -msgstr "Añadir nuevo" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "Guardar la opción «Otro»" -#: acf.php:363 -msgid "Add New Field Group" -msgstr "Añadir nuevo Field Group" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "Permitir la opción «Otro»" -#: acf.php:364 -msgid "Edit Field Group" -msgstr "Editar Grupo de Campos" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "Añade un «Alternar todos»" -#: acf.php:365 -msgid "New Field Group" -msgstr "Nuevo Grupo de Campos" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Guardar los valores personalizados" -#: acf.php:366 -msgid "View Field Group" -msgstr "Ver Grupo de Campos" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Permitir valores personalizados" -#: acf.php:367 -msgid "Search Field Groups" -msgstr "Buscar Grupo de Campos" +#: includes/fields/class-acf-field-checkbox.php:144 +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." -#: acf.php:368 -msgid "No Field Groups found" -msgstr "No se han encontrado Grupos de Campos" +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Actualizaciones" -#: acf.php:369 -msgid "No Field Groups found in Trash" -msgstr "No se han encontrado Grupos de Campos en la Papelera" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "Logo de Advanced Custom Fields" -#: acf.php:394 includes/admin/admin-field-group.php:233 -#: includes/admin/admin-field-groups.php:266 -#: pro/fields/class-acf-field-clone.php:814 -msgid "Fields" -msgstr "Campos" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Guardar cambios" -#: acf.php:395 -msgid "Field" -msgstr "Campo" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Título del grupo de campos" -#: acf.php:397 -msgid "Add New Field" -msgstr "Agregar Nuevo Campo" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Añadir título" -#: acf.php:398 -msgid "Edit Field" -msgstr "Editar Campo" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +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." -#: acf.php:399 includes/admin/views/field-group-fields.php:56 -msgid "New Field" -msgstr "Nuevo Campo" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "Añadir grupo de campos" -#: acf.php:400 -msgid "View Field" -msgstr "Ver Campo" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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." -#: acf.php:401 -msgid "Search Fields" -msgstr "Buscar Campos" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Añade tu primer grupo de campos" -#: acf.php:402 -msgid "No Fields found" -msgstr "No se encontraron campos" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Actualiza ahora" -#: acf.php:403 -msgid "No Fields found in Trash" -msgstr "No se encontraron Campos en Papelera" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Páginas de opciones" -#: acf.php:441 includes/admin/admin-field-group.php:385 -#: includes/admin/admin-field-groups.php:230 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "ACF Blocks" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Campo galería" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Campo de contenido flexible" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Campo repetidor" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "Desbloquea las características extra con ACF PRO" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Borrar grupo de campos" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Creado el %1$s a las %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "Ajustes de grupo" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "Reglas de ubicación" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +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/field-group-fields.php:54 +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/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "#" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "Añadir campo" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Presentación" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validación" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Exportar grupos de campos - Generar PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Exportar como JSON" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "Grupo de campos desactivado." +msgstr[1] "%s grupos de campos desactivados" + +#: includes/admin/admin-field-groups.php:585 +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-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Desactivar" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Desactiva este elemento" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Activar" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Activa este elemento" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "¿Mover este grupo de campos a la papelera?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 msgctxt "post status" -msgid "Disabled" -msgstr "Desactivado" +msgid "Inactive" +msgstr "Inactivo" -#: acf.php:446 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "Deshabilitado (%s)" -msgstr[1] "Deshabilitados (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" -#: acf.php:496 +#: acf.php:505 msgid "" -"Advanced Custom Fields and Advanced Custom Fields PRO should not be active " -"at the same time. We've automatically deactivated Advanced Custom Fields." +"Advanced Custom Fields and Advanced Custom Fields 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 deben estar activos " -"al mismo tiempo. Hemos desactivado automáticamente los campos personalizados " -"avanzados." +"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:498 +#: acf.php:503 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." +"Advanced Custom Fields and Advanced Custom Fields 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 deben estar activos " -"al mismo tiempo. Hemos desactivado automáticamente Advanced Custom Fields " -"PRO." +"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-field-functions.php:841 -#: includes/admin/admin-field-group.php:171 -msgid "(no label)" -msgstr "(sin etiqueta)" - -#: includes/acf-field-group-functions.php:846 -#: includes/admin/admin-field-group.php:173 -msgid "copy" -msgstr "copiar" - -#: includes/acf-value-functions.php:353 -#, php-format +#: 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 recuperar " -"los valores de campo ACF antes de que se haya inicializado ACF. Esto no es " -"compatible y puede dar lugar a datos mal formados o faltantes. Obtén información sobre cómo solucionarlo." +"%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/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Entradas" +#: includes/fields/class-acf-field-user.php:537 +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/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taxonomías" +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s debe tener un ID de usuario válido." -#: includes/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Adjuntos" +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Petición no válida." -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:144 -msgid "Comments" -msgstr "Comentarios" +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "%1$s no es ninguna de las siguientes %2$s" -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Widgets" +#: includes/fields/class-acf-field-post_object.php:669 +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/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "Menús" +#: includes/fields/class-acf-field-post_object.php:653 +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/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "Elementos del menú" +#: includes/fields/class-acf-field-post_object.php:644 +msgid "%1$s must have a valid post ID." +msgstr "%1$s debe tener un ID de entrada válido." -#: includes/acf-wp-functions.php:79 -msgid "Users" -msgstr "Usuarios" +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "%s necesita un ID de adjunto válido." -#: includes/acf-wp-functions.php:83 pro/options-page.php:47 -msgid "Options" -msgstr "Opciones" +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostrar en la API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar la transparencia" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadena RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadena hexadecimal" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galería (solo Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clon (solo Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contenido flexible (solo Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetidor (solo Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor del color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar el color por defecto" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Vaciar el color" #: includes/acf-wp-functions.php:87 msgid "Blocks" msgstr "Bloques" -#: includes/admin/admin-field-group.php:84 -#: includes/admin/admin-field-group.php:85 -#: includes/admin/admin-field-group.php:87 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opciones" -#: includes/admin/admin-field-group.php:86 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" -#: includes/admin/admin-field-group.php:89 -msgid "Field group published." -msgstr "Grupo de campos publicado." +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos del menú" -#: includes/admin/admin-field-group.php:90 -msgid "Field group saved." -msgstr "Grupo de campos guardado." +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" -#: includes/admin/admin-field-group.php:91 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjuntos" -#: includes/admin/admin-field-group.php:92 -msgid "Field group scheduled for." -msgstr "Grupo de Campos programado." +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" -#: includes/admin/admin-field-group.php:93 -msgid "Field group draft updated." -msgstr "Borrador del Grupo de Campos actualizado." +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" -#: includes/admin/admin-field-group.php:164 -msgid "The string \"field_\" may not be used at the start of a field name" +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (más nuevo)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualización: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." msgstr "" -"La cadena \"_field\" no se debe utilizar al comienzo de un nombre de campo" +"Lo siento, este grupo de campos no está disponible para la comparacion diff." -#: includes/admin/admin-field-group.php:165 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Este campo no puede ser movido hasta que sus cambios se hayan guardado" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de grupo de campos no válido." -#: includes/admin/admin-field-group.php:166 -msgid "Field group title is required" -msgstr "El título del grupo de campos es requerido" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetro(s) de grupo de campos no válido(s)" -#: includes/admin/admin-field-group.php:167 -msgid "Move to trash. Are you sure?" -msgstr "Mover a papelera. Estás seguro?" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Esperando el guardado" -#: includes/admin/admin-field-group.php:168 -msgid "No toggle fields available" -msgstr "No hay campos de conmutación disponibles" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Guardado" -#: includes/admin/admin-field-group.php:169 -msgid "Move Custom Field" -msgstr "Mover Campo Personalizado" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" -#: includes/admin/admin-field-group.php:170 -msgid "Checked" -msgstr "Marcado" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisar los cambios" -#: includes/admin/admin-field-group.php:172 -msgid "(this field)" -msgstr "(este campo)" +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Localizado en: %s" -#: includes/admin/admin-field-group.php:174 -#: includes/admin/views/field-group-field-conditional-logic.php:60 -#: includes/admin/views/field-group-field-conditional-logic.php:170 -#: includes/admin/views/field-group-locations.php:36 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3409 -msgid "or" -msgstr "o" +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Localizado en el plugin: %s" -#: includes/admin/admin-field-group.php:175 -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos si" +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Localizado en el tema: %s" -#: includes/admin/admin-field-group.php:176 -msgid "Null" -msgstr "Vacío" +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varios" -#: includes/admin/admin-field-group.php:179 -msgid "Has any value" -msgstr "Tiene algún valor" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar cambios" -#: includes/admin/admin-field-group.php:180 -msgid "Has no value" -msgstr "No tiene ningún valor" - -#: includes/admin/admin-field-group.php:181 -msgid "Value is equal to" -msgstr "El valor es igual a" - -#: includes/admin/admin-field-group.php:182 -msgid "Value is not equal to" -msgstr "El valor no es igual a" - -#: includes/admin/admin-field-group.php:183 -msgid "Value matches pattern" -msgstr "El valor coincide con el patrón" - -#: includes/admin/admin-field-group.php:184 -msgid "Value contains" -msgstr "El valor contiene" - -#: includes/admin/admin-field-group.php:185 -msgid "Value is greater than" -msgstr "El valor es mayor que" - -#: includes/admin/admin-field-group.php:186 -msgid "Value is less than" -msgstr "El valor es menor que" - -#: includes/admin/admin-field-group.php:187 -msgid "Selection is greater than" -msgstr "La selección es mayor que" - -#: includes/admin/admin-field-group.php:188 -msgid "Selection is less than" -msgstr "La selección es menor que" - -#: includes/admin/admin-field-group.php:191 -msgid "Repeater (Pro only)" -msgstr "Repetidor (sólo Pro)" - -#: includes/admin/admin-field-group.php:192 -msgid "Flexible Content (Pro only)" -msgstr "Contenido flexible (solo Pro)" - -#: includes/admin/admin-field-group.php:193 -msgid "Clone (Pro only)" -msgstr "Clonar (solo Pro)" - -#: includes/admin/admin-field-group.php:194 -msgid "Gallery (Pro only)" -msgstr "Galería (solo Pro)" - -#: includes/admin/admin-field-group.php:234 -#: includes/admin/admin-field-groups.php:265 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/admin-field-group.php:235 -#: includes/admin/tools/class-acf-admin-tool-export.php:288 -msgid "Settings" -msgstr "Ajustes" - -#: includes/admin/admin-field-group.php:361 -msgid "Field Keys" -msgstr "Claves de Campo" - -#: includes/admin/admin-field-group.php:385 -msgctxt "post status" -msgid "Active" -msgstr "Activo" - -#: includes/admin/admin-field-group.php:752 -msgid "Move Complete." -msgstr "Movimiento Completo." - -#: includes/admin/admin-field-group.php:754 -#, php-format -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/admin-field-group.php:758 -msgid "Close Window" -msgstr "Cerrar Ventana" - -#: includes/admin/admin-field-group.php:797 -msgid "Please select the destination for this field" -msgstr "Por favor selecciona el destino para este campo" - -#: includes/admin/admin-field-group.php:804 -msgid "Move Field" -msgstr "Mover Campo" - -#: includes/admin/admin-field-groups.php:116 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-field-groups.php:196 -msgid "Review local JSON changes" -msgstr "Revisar los cambios locales de JSON" - -#: includes/admin/admin-field-groups.php:197 +#: includes/admin/admin-field-groups.php:199 msgid "Loading diff" msgstr "Cargando diff" #: includes/admin/admin-field-groups.php:198 -#: includes/admin/admin-field-groups.php:533 -msgid "Sync changes" -msgstr "Sincronizando cambios" +msgid "Review local JSON changes" +msgstr "Revisar cambios de JSON local" -#: includes/admin/admin-field-groups.php:263 -#: includes/admin/views/field-group-options.php:127 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:388 -msgid "Description" -msgstr "Descripción" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar web" -#: includes/admin/admin-field-groups.php:264 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Clave" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" -#: includes/admin/admin-field-groups.php:269 -msgid "Local JSON" -msgstr "JSON Local" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión %s" -#: includes/admin/admin-field-groups.php:419 -msgid "Various" -msgstr "Varios" +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" -#: includes/admin/admin-field-groups.php:441 -#, php-format -msgid "Located in theme: %s" -msgstr "Ubicado en el tema: %s" - -#: includes/admin/admin-field-groups.php:445 -#, php-format -msgid "Located in plugin: %s" -msgstr "Ubicado en plugin: %s" - -#: includes/admin/admin-field-groups.php:449 -#, php-format -msgid "Located in: %s" -msgstr "Ubicado en: %s" - -#: includes/admin/admin-field-groups.php:469 -#: includes/admin/admin-field-groups.php:687 -msgid "Sync available" -msgstr "Sincronización disponible" - -#: includes/admin/admin-field-groups.php:472 -msgid "Sync" -msgstr "Sincronizar" - -#: includes/admin/admin-field-groups.php:473 -msgid "Review changes" -msgstr "Revisar cambios" - -#: includes/admin/admin-field-groups.php:477 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-field-groups.php:481 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-field-groups.php:484 -msgid "Awaiting save" -msgstr "A la espera de guardar" - -#: includes/admin/admin-field-groups.php:505 -msgid "Duplicate this item" -msgstr "Duplicar este ítem" - -#: includes/admin/admin-field-groups.php:505 -#: includes/admin/admin-field-groups.php:525 -#: includes/admin/views/field-group-field.php:57 -#: pro/fields/class-acf-field-flexible-content.php:553 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-field-groups.php:555 -#, php-format -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-field-groups.php:612 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Grupo de campos sincronizado." -msgstr[1] "%s grupos de campos sincronizados." - -#: includes/admin/admin-field-groups.php:800 -#, php-format -msgid "Select %s" -msgstr "Selecciona %s" - -#: includes/admin/admin-tools.php:119 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Herramientas" - -#: includes/admin/admin-upgrade.php:51 includes/admin/admin-upgrade.php:113 -#: includes/admin/admin-upgrade.php:114 includes/admin/admin-upgrade.php:177 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar Base de datos" - -#: includes/admin/admin-upgrade.php:201 -msgid "Review sites & upgrade" -msgstr "Revisar sitios y actualizar" - -#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:142 -msgid "Custom Fields" -msgstr "Campos Personalizados" - -#: includes/admin/admin.php:129 includes/admin/admin.php:131 -msgid "Overview" -msgstr "Resumen" - -#: includes/admin/admin.php:132 +#: includes/admin/admin.php:160 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." +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." msgstr "" -"El plugin Advanced Custom Fields proporciona un constructor de formularios " -"visuales para personalizar las pantallas de edición de WordPress con campos " -"adicionales, y una API intuitiva para mostrar los valores de los campos " -"personalizados en cualquier archivo de plantilla de tema." +"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:134 -#, php-format +#: includes/admin/admin.php:156 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." +"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 "" -"Antes de crear su primer grupo de campo, le recomendamos que lea primero " -"nuestra guía de introducción para " -"familiarizarse con la filosofía y las mejores prácticas del Plugin." +"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:137 +#: includes/admin/admin.php:152 msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." msgstr "" -"Utilice la pestaña Ayuda y Apoyo para ponerse en contacto en caso de que " -"necesite ayuda." - -#: includes/admin/admin.php:146 includes/admin/admin.php:148 -msgid "Help & Support" -msgstr "Ayuda y Soporte" +"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:149 msgid "" @@ -553,322 +545,582 @@ msgid "" "website with ACF. If you run into any difficulties, there are several places " "you can find help:" msgstr "" -"Somos fanáticos del apoyo y queremos que obtenga lo mejor de su sitio web " -"con ACF. Si te encuentras con alguna dificultad, hay varios lugares en los " -"que puedes encontrar ayuda:" +"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:152 -#, php-format +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ayuda y soporte" + +#: includes/admin/admin.php:137 msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." msgstr "" -"Documentación. Nuestra extensa " -"documentación contiene referencias y guías para la mayoría de las " -"situaciones que pueda encontrar." +"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que " +"necesitas ayuda." -#: includes/admin/admin.php:156 -#, php-format +#: includes/admin/admin.php:134 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." +"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 "" -"Discusiones. Tenemos una comunidad " -"activa y amistosa en nuestros foros de la comunidad que puede ayudarle a " -"averiguar los \"cómo hacerlo\" del mundo de ACF." +"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:160 -#, php-format +#: includes/admin/admin.php:132 msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." +"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 "" -"Mesa de ayuda. Los profesionales de " -"apoyo en nuestro servicio de asistencia le ayudarán con sus desafíos " -"técnicos más profundos." +"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:169 -msgid "Information" -msgstr "Información" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Resumen" -#: includes/admin/admin.php:170 -#, php-format -msgid "Version %s" -msgstr "Versión %s" +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "El tipo de ubicación «%s» ya está registrado." -#: includes/admin/admin.php:171 -msgid "View details" -msgstr "Ver detalles" +#: includes/locations.php:25 +msgid "Class \"%s\" does not exist." +msgstr "La clase «%s» no existe." -#: includes/admin/admin.php:172 -msgid "Visit website" -msgstr "Sitio web" +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Nonce no válido." -#: includes/admin/admin.php:201 -#: includes/admin/views/field-group-field-conditional-logic.php:157 +#: includes/fields/class-acf-field-user.php:361 +msgid "Error loading field." +msgstr "Error al cargar el campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "El valor de %s es obligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostrar este campo si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lógica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 #: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "y" -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "Exportar Grupos de Campos" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" -#: includes/admin/tools/class-acf-admin-tool-export.php:39 -#: includes/admin/tools/class-acf-admin-tool-export.php:335 -#: includes/admin/tools/class-acf-admin-tool-export.php:364 -msgid "Generate PHP" -msgstr "Generar PHP" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Campo clonar" -#: 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 se seleccionaron grupos de campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:167 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Exportado 1 grupo de campos." -msgstr[1] "Exportados %s grupos de campos." - -#: includes/admin/tools/class-acf-admin-tool-export.php:233 -#: includes/admin/tools/class-acf-admin-tool-export.php:262 -msgid "Select Field Groups" -msgstr "Selleciona Grupos de Campos" - -#: includes/admin/tools/class-acf-admin-tool-export.php:329 +#: includes/admin/views/html-notice-upgrade.php:31 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Please also check all premium add-ons (%s) are updated to the latest version." msgstr "" -"Selecciona los grupos de campos que te gustaría exportar y luego elige tu " -"método de exportación. Utiliza el boton de descarga para exportar a un " -"archivo .json el cual luego puedes importar en otra instalación de ACF. " -"Utiliza el botón de generación para exportar a código PHP que puedes incluir " -"en tu tema." +"Por favor, comprueba también que todas las extensiones premium (%s) estén " +"actualizados a la última versión." -#: includes/admin/tools/class-acf-admin-tool-export.php:334 -msgid "Export File" -msgstr "Exportar archivo" - -#: includes/admin/tools/class-acf-admin-tool-export.php:405 +#: includes/admin/views/html-notice-upgrade.php:29 msgid "" -"The following code can be used to register a local version of the selected " -"field group(s). A local field group 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." +"This version contains improvements to your database and requires an upgrade." msgstr "" -"El siguiente código puede ser utilizado para registrar una versión local del " -"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " -"beneficios como tiempos de carga más cortos, control por 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 como un archivo externo." +"Esta versión contiene mejoras en su base de datos y requiere una " +"actualización." -#: includes/admin/tools/class-acf-admin-tool-export.php:435 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "¡Gracias por actualizar a %1$s v%2$s!" -#: includes/admin/tools/class-acf-admin-tool-export.php:472 -msgid "Copied" -msgstr "Copiado" +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Es necesario actualizar la base de datos" -#: includes/admin/tools/class-acf-admin-tool-import.php:28 -msgid "Import Field Groups" -msgstr "Importar Field Group" +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opciones" -#: includes/admin/tools/class-acf-admin-tool-import.php:49 +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas las herramientas" + +#: includes/admin/views/field-group-options.php:161 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." +"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 "" -"Selecciona el archivo JSON de Advanced Custom Fields que te gustaría " -"importar. Cuando hagas click en el botón importar debajo, ACF importará los " -"grupos de campos." +"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/tools/class-acf-admin-tool-import.php:55 -#: includes/fields/class-acf-field-file.php:58 -msgid "Select File" -msgstr "Seleccionar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:66 -msgid "Import File" -msgstr "Importar archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:89 -#: includes/fields/class-acf-field-file.php:182 -msgid "No file selected" -msgstr "No se seleccionó archivo" - -#: includes/admin/tools/class-acf-admin-tool-import.php:97 -msgid "Error uploading file. Please try again" -msgstr "Error subiendo archivo. Por favor intente nuevamente" - -#: includes/admin/tools/class-acf-admin-tool-import.php:102 -msgid "Incorrect file type" -msgstr "Tipo de campo incorrecto" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -msgid "Import file empty" -msgstr "Archivo de imporación vacío" - -#: includes/admin/tools/class-acf-admin-tool-import.php:142 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Importar un grupo de campos" -msgstr[1] "Importar %s grupos de campos" - -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Lógica Condicional" - -#: includes/admin/views/field-group-field-conditional-logic.php:60 -msgid "Show this field if" -msgstr "Mostrar este campo si" - -#: includes/admin/views/field-group-field-conditional-logic.php:172 -#: includes/admin/views/field-group-locations.php:38 -msgid "Add rule group" -msgstr "Agregar grupo de reglas" - -#: includes/admin/views/field-group-field.php:49 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:295 -msgid "Drag to reorder" -msgstr "Arrastra para reordenar" - -#: includes/admin/views/field-group-field.php:53 -#: includes/admin/views/field-group-field.php:56 -msgid "Edit field" -msgstr "Editar campo" - -#: includes/admin/views/field-group-field.php:56 -#: includes/fields/class-acf-field-file.php:157 -#: includes/fields/class-acf-field-image.php:137 -#: includes/fields/class-acf-field-link.php:142 -#: pro/fields/class-acf-field-gallery.php:335 -msgid "Edit" -msgstr "Editar" - -#: includes/admin/views/field-group-field.php:57 -msgid "Duplicate field" -msgstr "Duplicar campo" - -#: includes/admin/views/field-group-field.php:58 -msgid "Move field to another group" -msgstr "Mover campo a otro grupo" - -#: includes/admin/views/field-group-field.php:58 -msgid "Move" -msgstr "Mover" - -#: includes/admin/views/field-group-field.php:59 -msgid "Delete field" -msgstr "Borrar campo" - -#: includes/admin/views/field-group-field.php:59 -#: pro/fields/class-acf-field-flexible-content.php:552 -msgid "Delete" -msgstr "Borrar" - -#: includes/admin/views/field-group-field.php:78 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#: includes/admin/views/field-group-field.php:79 -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/field-group-field.php:92 -msgid "Field Name" -msgstr "Nombre del campo" - -#: includes/admin/views/field-group-field.php:93 -msgid "Single word, no spaces. Underscores and dashes allowed" +#: includes/admin/views/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." msgstr "" -"Una sola palabra, sin espacios. Guiones bajos y barras están permitidos" +"Selecciona los elementos que ocultar de la pantalla de edición." -#: includes/admin/views/field-group-field.php:106 -msgid "Field Type" -msgstr "Tipo de campo" +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" -#: includes/admin/views/field-group-field.php:121 -msgid "Instructions" -msgstr "Instrucciones" +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" -#: includes/admin/views/field-group-field.php:122 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Instrucciones para los autores. Se muestra a la hora de introducir los datos" +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" -#: includes/admin/views/field-group-field.php:135 -msgid "Required?" -msgstr "¿Requerido?" +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorías" -#: includes/admin/views/field-group-field.php:161 -msgid "Wrapper Attributes" -msgstr "Atributos del Contenedor" +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos de página" -#: includes/admin/views/field-group-field.php:167 -msgid "width" -msgstr "ancho" +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" -#: includes/admin/views/field-group-field.php:185 -msgid "class" -msgstr "clase" +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" -#: includes/admin/views/field-group-field.php:201 -msgid "id" -msgstr "id" +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" -#: includes/admin/views/field-group-field.php:215 -msgid "Close Field" -msgstr "Cerrar Campo" +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisiones" -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Orden" +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentarios" -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:204 -#: includes/fields/class-acf-field-checkbox.php:412 -#: includes/fields/class-acf-field-radio.php:279 -#: includes/fields/class-acf-field-select.php:445 -#: pro/fields/class-acf-field-flexible-content.php:581 -msgid "Label" -msgstr "Etiqueta" +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discusión" -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:926 -#: pro/fields/class-acf-field-flexible-content.php:597 -msgid "Name" -msgstr "Nombre" +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracto" -#: includes/admin/views/field-group-fields.php:8 +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contenido" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Los grupos de campos con menor orden aparecerán primero" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "N.º de orden" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Debajo de los campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Debajo de las etiquetas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Ubicación de la instrucción" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Ubicación de la etiqueta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (después del contenido)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (después del título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Directo (sin caja meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estándar (caja meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 msgid "Type" msgstr "Tipo" -#: includes/admin/views/field-group-fields.php:19 -msgid "" -"No fields. Click the + Add Field button to create your " -"first field." +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Orden" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos del contenedor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Obligatorio" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" msgstr "" -"No hay campos. Haz Click en el botón + Añadir campo para " -"crear tu primer campo." +"Instrucciones para los autores. Se muestra a la hora de enviar los datos" -#: includes/admin/views/field-group-fields.php:44 -msgid "+ Add Field" -msgstr "+ Añadir Campo" +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrucciones" -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Reglas" +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nombre del campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta del campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo a otro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hay actualizaciones disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leyendo tareas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Fallo al actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos a la versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El sitio está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar los sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Añadir grupo de reglas" #: includes/admin/views/field-group-locations.php:10 msgid "" @@ -878,975 +1130,1454 @@ msgstr "" "Crea un conjunto de reglas para determinar qué pantallas de edición " "utilizarán estos campos personalizados" -#: includes/admin/views/field-group-options.php:10 +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Reglas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El siguiente código puede ser utilizado para registrar una versión local del " +"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " +"beneficios como tiempos de carga más cortos, 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 como un archivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Se ha importado un grupo de campos" +msgstr[1] "Se han importado %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Archivo de imporación vacío" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +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:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripción" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronización disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona el destino para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Cerrar ventana" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movimiento completo." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 msgid "Active" msgstr "Activo" -#: includes/admin/views/field-group-options.php:27 -msgid "Show in REST API" -msgstr "Mostrar en la API de REST" +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claves de campo" -#: includes/admin/views/field-group-options.php:44 -msgid "Style" -msgstr "Estilo" +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ajustes" -#: includes/admin/views/field-group-options.php:51 -msgid "Standard (WP metabox)" -msgstr "Estándar (WP metabox)" +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Ubicación" -#: includes/admin/views/field-group-options.php:52 -msgid "Seamless (no metabox)" -msgstr "Directo (sin metabox)" +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" -#: includes/admin/views/field-group-options.php:61 -msgid "Position" -msgstr "Posición" +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copiar" -#: includes/admin/views/field-group-options.php:68 -msgid "High (after title)" -msgstr "Alta (después del título)" +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" -#: includes/admin/views/field-group-options.php:69 -msgid "Normal (after content)" -msgstr "Normal (después del contenido)" +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" -#: includes/admin/views/field-group-options.php:70 -msgid "Side" -msgstr "Lateral" +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" -#: includes/admin/views/field-group-options.php:80 -msgid "Label placement" -msgstr "Ubicación de la etiqueta" +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No hay campos de conmutación disponibles" -#: includes/admin/views/field-group-options.php:87 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Top aligned" -msgstr "Alineada arriba" +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "El título del grupo de campos es obligatorio" -#: includes/admin/views/field-group-options.php:88 -#: includes/fields/class-acf-field-tab.php:108 -msgid "Left aligned" -msgstr "Alineada a la izquierda" +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/views/field-group-options.php:97 -msgid "Instruction placement" -msgstr "Ubicación de la instrucción" - -#: includes/admin/views/field-group-options.php:104 -msgid "Below labels" -msgstr "Debajo de las etiquetas" - -#: includes/admin/views/field-group-options.php:105 -msgid "Below fields" -msgstr "Debajo de los campos" - -#: includes/admin/views/field-group-options.php:114 -msgid "Order No." -msgstr "Número de orden" - -#: includes/admin/views/field-group-options.php:115 -msgid "Field groups with a lower order will appear first" -msgstr "Los grupos de campos con menor orden aparecerán primero" - -#: includes/admin/views/field-group-options.php:128 -msgid "Shown in field group list" -msgstr "Mostrado en lista de grupos de campos" - -#: includes/admin/views/field-group-options.php:139 -msgid "Permalink" -msgstr "Enlace Permanente" - -#: includes/admin/views/field-group-options.php:140 -msgid "Content Editor" -msgstr "Editor de Contenido" - -#: includes/admin/views/field-group-options.php:141 -msgid "Excerpt" -msgstr "Extracto" - -#: includes/admin/views/field-group-options.php:143 -msgid "Discussion" -msgstr "Discusión" - -#: includes/admin/views/field-group-options.php:145 -msgid "Revisions" -msgstr "Revisiones" - -#: includes/admin/views/field-group-options.php:146 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/field-group-options.php:147 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/field-group-options.php:148 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/field-group-options.php:149 -msgid "Page Attributes" -msgstr "Atributos de Página" - -#: includes/admin/views/field-group-options.php:150 -#: includes/fields/class-acf-field-relationship.php:631 -msgid "Featured Image" -msgstr "Imagen Destacada" - -#: includes/admin/views/field-group-options.php:151 -msgid "Categories" -msgstr "Categorías" - -#: includes/admin/views/field-group-options.php:152 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/views/field-group-options.php:153 -msgid "Send Trackbacks" -msgstr "Enviar Trackbacks" - -#: includes/admin/views/field-group-options.php:161 -msgid "Hide on screen" -msgstr "Esconder en pantalla" - -#: includes/admin/views/field-group-options.php:162 -msgid "Select items to hide them from the edit screen." +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" msgstr "" -"Selecciona los items para esconderlos en la pantalla de " -"edición." +"La cadena \"field_\" no se debe utilizar al comienzo de un nombre de campo" -#: includes/admin/views/field-group-options.php:162 -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 múltiples grupos de campos aparecen en una pantalla de edición, las " -"opciones del primer grupo serán utilizadas (el que tiene el menor número de " -"orden)" +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Borrador del grupo de campos actualizado." -#: includes/admin/views/html-admin-navigation.php:89 -msgid "Upgrade to Pro" -msgstr "Actualizar a Pro" +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#, php-format -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Los siguientes sitios requieren una actualización de la base de datos. Marca " -"los que desea actualizar y haga clic en %s." +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:96 -msgid "Upgrade Sites" -msgstr "Mejorar los sitios" +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos guardado." -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Sitio" +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." -#: includes/admin/views/html-admin-page-upgrade-network.php:78 -#, php-format -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "El sitio requiere la actualización de la base de datos de %1$s a %2$s" +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." -#: includes/admin/views/html-admin-page-upgrade-network.php:80 -msgid "Site is up to date" -msgstr "El sitio está actualizado" +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." -#: includes/admin/views/html-admin-page-upgrade-network.php:97 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Actualización de base de datos completa. Regresar al " -"Escritorio de Red" +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Herramientas" -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "Seleccione al menos un sitio para actualizar." +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "no es igual a" -#: includes/admin/views/html-admin-page-upgrade-network.php:121 -#: includes/admin/views/html-notice-upgrade.php:45 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es fuertemente recomendado que hagas un backup de tu base de datos antes de " -"continuar. Estás seguro que quieres ejecutar la actualización ahora?" +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "es igual a" -#: includes/admin/views/html-admin-page-upgrade-network.php:148 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Actualizando datos a la versión %s" +#: includes/locations.php:102 +msgid "Forms" +msgstr "Formularios" -#: includes/admin/views/html-admin-page-upgrade-network.php:162 -msgid "Upgrade complete." -msgstr "Actualización completa." +#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" -#: includes/admin/views/html-admin-page-upgrade-network.php:165 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Error en la actualización." - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Leyendo tareas de actualización..." - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "" -"Actualización de base de datos completa. Vea las novedades" - -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:34 -msgid "No updates available." -msgstr "No hay actualizaciones disponibles." - -#: includes/admin/views/html-admin-tools.php:24 -msgid "Back to all tools" -msgstr "Volver a todas las herramientas" - -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Repeater" - -#: includes/admin/views/html-notice-upgrade.php:12 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Contenido Flexible" - -#: includes/admin/views/html-notice-upgrade.php:15 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galería" - -#: includes/admin/views/html-notice-upgrade.php:18 -#: pro/locations/class-acf-location-options-page.php:22 -msgid "Options Page" -msgstr "Página de Opciones" - -#: includes/admin/views/html-notice-upgrade.php:28 -msgid "Database Upgrade Required" -msgstr "Actualización de Base de Datos Requerida" - -#: includes/admin/views/html-notice-upgrade.php:29 -#, php-format -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "¡Gracias por actualizar a %1$s v%2$s!" - -#: includes/admin/views/html-notice-upgrade.php:29 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Esta versión contiene mejoras en la base de datos y requiere una " -"actualización." - -#: includes/admin/views/html-notice-upgrade.php:31 -#, php-format -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Compruebe también que todos los complementos premium (%s) se actualizan a la " -"última versión." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:36 -msgid "Invalid field group parameter(s)." -msgstr "Parámetros de grupo de campos no válidos." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:43 -msgid "Invalid field group ID." -msgstr "ID de grupo de campos no válido." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:53 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "" -"Lo sentimos, este grupo de campos no está disponible para la comparación de " -"diferencias." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:59 -#, php-format -msgid "Last updated: %s" -msgstr "Última actualización: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:64 -msgid "Original field group" -msgstr "Grupo de campos original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:68 -msgid "JSON field group (newer)" -msgstr "Grupo de campos JSON (más reciente)" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Mientras tanto no es válido." - -#: includes/api/api-helpers.php:821 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/api/api-helpers.php:822 -msgid "Medium" -msgstr "Medio" - -#: includes/api/api-helpers.php:823 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:864 -msgid "Full Size" -msgstr "Tamaño Completo" - -#: includes/api/api-helpers.php:1569 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:1005 -msgid "(no title)" -msgstr "(sin título)" - -#: includes/api/api-helpers.php:3338 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "El ancho de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3343 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "El ancho de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3357 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "La altura de la imagen debe ser al menos %dpx." - -#: includes/api/api-helpers.php:3362 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "La altura de la imagen no debe exceder %dpx." - -#: includes/api/api-helpers.php:3377 -#, php-format -msgid "File size must be at least %s." -msgstr "El tamaño de archivo debe ser al menos %s." - -#: includes/api/api-helpers.php:3382 -#, php-format -msgid "File size must not exceed %s." -msgstr "El tamaño del archivo no debe exceder %s." - -#: includes/api/api-helpers.php:3413 -#, php-format -msgid "File type must be %s." -msgstr "El tipo de archivo debe ser %s." - -#: includes/assets.php:348 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:176 -#: pro/admin/views/html-settings-updates.php:104 -msgid "Yes" -msgstr "Sí" - -#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 -#: includes/fields/class-acf-field-true_false.php:193 -#: pro/admin/views/html-settings-updates.php:116 -msgid "No" -msgstr "No" - -#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 -#: includes/fields/class-acf-field-image.php:139 -#: includes/fields/class-acf-field-link.php:142 -#: pro/fields/class-acf-field-gallery.php:336 -#: pro/fields/class-acf-field-gallery.php:491 -msgid "Remove" -msgstr "Remover" - -#: includes/assets.php:352 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:362 -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/assets.php:365 -msgid "Validation successful" -msgstr "Validación exitosa" - -#: includes/assets.php:366 includes/validation.php:286 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Validación fallida" - -#: includes/assets.php:367 -msgid "1 field requires attention" -msgstr "1 campo requiere atención" - -#: includes/assets.php:368 -#, php-format -msgid "%d fields require attention" -msgstr "%d campos requieren atención" - -#: includes/assets.php:371 includes/forms/form-comment.php:160 -#: pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/fields.php:313 -msgid "Field type does not exist" -msgstr "Tipo de campo inexistente" - -#: includes/fields.php:313 -msgid "Unknown" -msgstr "Desconocido" - -#: includes/fields.php:354 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:355 includes/forms/form-front.php:49 -msgid "Content" -msgstr "Contenido" - -#: includes/fields.php:356 -msgid "Choice" -msgstr "Elección" - -#: includes/fields.php:357 -msgid "Relational" -msgstr "Relación" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" #: includes/fields.php:358 msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:181 -#: includes/fields/class-acf-field-checkbox.php:377 -#: includes/fields/class-acf-field-group.php:462 -#: includes/fields/class-acf-field-radio.php:256 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:549 -#: pro/fields/class-acf-field-flexible-content.php:604 -#: pro/fields/class-acf-field-repeater.php:451 -msgid "Layout" -msgstr "Layout" +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relación" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconocido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selección es menor que" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selección es mayor que" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor es menor que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor es mayor que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor contiene" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincide con el patrón" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No tiene ningún valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "No tiene algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requieren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo requiere atención" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restringido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Contraer detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Subido a esta publicación" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "El tipo de archivo debe ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "El tamaño del archivo no debe ser mayor de %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "El tamaño de archivo debe ser al menos %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "La altura de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "La altura de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "El ancho de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "El ancho de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sin título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sin etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Establece la altura del área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite añadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Añadir nueva opción" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir las URLs de los archivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Añadir" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nombre" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s añadido/s" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ya existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "El usuario no puede añadir nuevos %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID de término" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objeto de término" + +#: includes/fields/class-acf-field-taxonomy.php:740 +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:739 +msgid "Load Terms" +msgstr "Cargar términos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Conectar los términos seleccionados con la publicación" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Guardar términos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crear términos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botones de radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecciona la apariencia de este campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apariencia" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona la taxonomía a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Ningún %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Añade la opción 'otros' para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botón de radio" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Abrir" #: includes/fields/class-acf-field-accordion.php:25 msgid "Accordion" msgstr "Acordeón" -#: includes/fields/class-acf-field-accordion.php:102 -msgid "Open" -msgstr "Abierto" +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringir qué archivos que se pueden subir" -#: includes/fields/class-acf-field-accordion.php:103 -msgid "Display this accordion as open on page load." -msgstr "Muestre este acordeón como abierto en la carga de la página." +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID del archivo" -#: includes/fields/class-acf-field-accordion.php:114 -msgid "Multi-expand" -msgstr "Multi-expansión" +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL del archivo" -#: includes/fields/class-acf-field-accordion.php:115 -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-file.php:215 +msgid "File Array" +msgstr "Array del archivo" -#: includes/fields/class-acf-field-accordion.php:126 -#: includes/fields/class-acf-field-tab.php:117 -msgid "Endpoint" -msgstr "Punto final" +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Añadir archivo" -#: includes/fields/class-acf-field-accordion.php:127 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will " -"not be visible." -msgstr "" -"Defina un punto final para que se detenga el acordeón anterior. Este " -"acordeón no será visible." +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún archivo seleccionado" -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botones" +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nombre del archivo" -#: includes/fields/class-acf-field-button-group.php:147 -#: includes/fields/class-acf-field-checkbox.php:324 -#: includes/fields/class-acf-field-radio.php:191 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Opciones" +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar archivo" -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:325 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Ingresa cada opción en una nueva línea." +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar archivo" -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:325 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:365 -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/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +msgid "Select File" +msgstr "Seleccionar archivo" -#: includes/fields/class-acf-field-button-group.php:148 -#: includes/fields/class-acf-field-checkbox.php:325 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "rojo : Rojo" +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Archivo" -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:482 -#: includes/fields/class-acf-field-post_object.php:394 -#: includes/fields/class-acf-field-radio.php:202 -#: includes/fields/class-acf-field-select.php:386 -#: includes/fields/class-acf-field-taxonomy.php:748 -#: includes/fields/class-acf-field-user.php:68 -msgid "Allow Null?" -msgstr "Permitir Vacío?" +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Contraseña" -#: includes/fields/class-acf-field-button-group.php:170 -#: includes/fields/class-acf-field-checkbox.php:366 -#: includes/fields/class-acf-field-color_picker.php:155 -#: includes/fields/class-acf-field-email.php:117 -#: includes/fields/class-acf-field-number.php:125 -#: includes/fields/class-acf-field-radio.php:245 -#: includes/fields/class-acf-field-range.php:163 -#: includes/fields/class-acf-field-select.php:375 -#: includes/fields/class-acf-field-text.php:97 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-true_false.php:148 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:334 -msgid "Default Value" -msgstr "Valor por defecto" +#: includes/fields/class-acf-field-select.php:387 +msgid "Specify the value returned" +msgstr "Especifica el valor devuelto" -#: includes/fields/class-acf-field-button-group.php:171 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:126 -#: includes/fields/class-acf-field-radio.php:246 -#: includes/fields/class-acf-field-range.php:164 -#: includes/fields/class-acf-field-text.php:98 -#: includes/fields/class-acf-field-textarea.php:104 -#: includes/fields/class-acf-field-url.php:102 -#: includes/fields/class-acf-field-wysiwyg.php:335 -msgid "Appears when creating a new post" -msgstr "Aparece cuando se está creando un nuevo post" +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "¿Usar AJAX para hacer cargar las opciones de forma asíncrona?" -#: includes/fields/class-acf-field-button-group.php:187 -#: includes/fields/class-acf-field-checkbox.php:384 -#: includes/fields/class-acf-field-radio.php:263 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:188 -#: includes/fields/class-acf-field-checkbox.php:383 -#: includes/fields/class-acf-field-radio.php:262 -msgid "Vertical" -msgstr "Vertical" - -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:405 -#: includes/fields/class-acf-field-file.php:227 -#: includes/fields/class-acf-field-link.php:170 -#: includes/fields/class-acf-field-radio.php:272 -#: includes/fields/class-acf-field-taxonomy.php:801 -msgid "Return Value" -msgstr "Retornar valor" - -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:406 -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-link.php:171 -#: includes/fields/class-acf-field-radio.php:273 -msgid "Specify the returned value on front end" -msgstr "Especifica el valor retornado en el front end" - -#: includes/fields/class-acf-field-button-group.php:203 -#: includes/fields/class-acf-field-checkbox.php:411 -#: includes/fields/class-acf-field-radio.php:278 -#: includes/fields/class-acf-field-select.php:444 -msgid "Value" -msgstr "Valor" - -#: includes/fields/class-acf-field-button-group.php:205 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-radio.php:280 -#: includes/fields/class-acf-field-select.php:446 -msgid "Both (Array)" -msgstr "Ambos (Array)" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:733 -msgid "Checkbox" -msgstr "Checkbox" - -#: includes/fields/class-acf-field-checkbox.php:144 -msgid "Toggle All" -msgstr "Invertir Todos" - -#: includes/fields/class-acf-field-checkbox.php:207 -msgid "Add new choice" -msgstr "Agregar nueva opción" - -#: includes/fields/class-acf-field-checkbox.php:335 -msgid "Allow Custom" -msgstr "Permitir personalización" - -#: includes/fields/class-acf-field-checkbox.php:340 -msgid "Allow 'custom' values to be added" -msgstr "Permite añadir valores personalizados" - -#: includes/fields/class-acf-field-checkbox.php:348 -msgid "Save Custom" -msgstr "Guardar personalización" - -#: includes/fields/class-acf-field-checkbox.php:353 -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:367 +#: includes/fields/class-acf-field-checkbox.php:358 #: includes/fields/class-acf-field-select.php:376 msgid "Enter each default value on a new line" -msgstr "Ingresa cada valor en una nueva línea" +msgstr "Añade cada valor en una nueva línea" -#: includes/fields/class-acf-field-checkbox.php:393 -msgid "Toggle" -msgstr "Invertir" +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" -#: includes/fields/class-acf-field-checkbox.php:394 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Anteponer un checkbox extra para invertir todas las opciones" +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Error al cargar" -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selector de color" +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Clear" -msgstr "Limpiar" +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando más resultados…" -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Clear color" -msgstr "Limpiar el color" +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selección" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID del usuario" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Grupo de objetos" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos los roles de usuario" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar color" #: includes/fields/class-acf-field-color_picker.php:71 msgid "Default" msgstr "Por defecto" -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Select default color" -msgstr "Seleccionar color por defecto" +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Vaciar" -#: includes/fields/class-acf-field-color_picker.php:73 -msgid "Select Color" -msgstr "Selecciona Color" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Color value" -msgstr "Valor del color" - -#: includes/fields/class-acf-field-color_picker.php:95 -#: includes/fields/class-acf-field-color_picker.php:185 -msgid "Hex String" -msgstr "Cadena hexadecimal" - -#: includes/fields/class-acf-field-color_picker.php:96 -msgid "RGBA String" -msgstr "Cadena RGBA" - -#: includes/fields/class-acf-field-color_picker.php:167 -msgid "Enable Transparency" -msgstr "Habilite la transparencia" - -#: includes/fields/class-acf-field-color_picker.php:179 -#: includes/fields/class-acf-field-date_picker.php:216 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-image.php:204 -#: includes/fields/class-acf-field-post_object.php:418 -#: includes/fields/class-acf-field-relationship.php:662 -#: includes/fields/class-acf-field-select.php:439 -#: includes/fields/class-acf-field-time_picker.php:131 -#: includes/fields/class-acf-field-user.php:90 -#: pro/fields/class-acf-field-gallery.php:573 -msgid "Return Format" -msgstr "Formato de Retorno" - -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "RGBA Array" -msgstr "Arreglo de discos RGBA" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selector de Fecha" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoy" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Siguiente" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Se" - -#: 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:114 -msgid "Display Format" -msgstr "Formato de Visualización" - -#: 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:115 -msgid "The format displayed when editing a post" -msgstr "El formato mostrado cuando se edita un post" - -#: includes/fields/class-acf-field-date_picker.php:190 -#: includes/fields/class-acf-field-date_picker.php:226 -#: includes/fields/class-acf-field-date_time_picker.php:192 -#: includes/fields/class-acf-field-date_time_picker.php:211 -#: includes/fields/class-acf-field-time_picker.php:122 -#: includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:202 -msgid "Save Format" -msgstr "Guardar formato" - -#: includes/fields/class-acf-field-date_picker.php:203 -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:217 -#: includes/fields/class-acf-field-date_time_picker.php:202 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "El formato retornado a través de las funciones del tema" - -#: includes/fields/class-acf-field-date_picker.php:237 -#: 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_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selector de fecha y hora" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Elegir tiempo" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tiempo" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zona horaria" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ahora" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Hecho" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Elige" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -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 amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" +#: 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:85 msgctxt "Date Time Picker JS pmTextShort" msgid "P" msgstr "P" +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hecho" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ahora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Variable" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alineada a la izquierda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alineada arriba" + +#: includes/fields/class-acf-field-tab.php:107 +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:159 +msgid "Value must be a valid URL" +msgstr "El valor debe ser una URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL del enlace" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array de enlaces" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abrir en una nueva ventana/pestaña" + +#: includes/fields/class-acf-field-link.php:137 +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 "Email" +msgstr "Correo electrónico" -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:73 -#: includes/fields/class-acf-field-text.php:108 -#: includes/fields/class-acf-field-textarea.php:114 -#: includes/fields/class-acf-field-url.php:112 -msgid "Placeholder Text" -msgstr "Marcador de Texto" +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Tamaño de paso" -#: includes/fields/class-acf-field-email.php:129 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:74 -#: includes/fields/class-acf-field-text.php:109 -#: includes/fields/class-acf-field-textarea.php:115 -#: includes/fields/class-acf-field-url.php:113 -msgid "Appears within the input" -msgstr "Aparece en el campo" +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" -#: includes/fields/class-acf-field-email.php:139 -#: includes/fields/class-acf-field-number.php:147 -#: includes/fields/class-acf-field-password.php:84 -#: includes/fields/class-acf-field-range.php:210 -#: includes/fields/class-acf-field-text.php:119 -msgid "Prepend" -msgstr "Anteponer" +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "Valor mínimo" -#: includes/fields/class-acf-field-email.php:140 -#: includes/fields/class-acf-field-number.php:148 -#: includes/fields/class-acf-field-password.php:85 -#: includes/fields/class-acf-field-range.php:211 -#: includes/fields/class-acf-field-text.php:120 -msgid "Appears before the input" -msgstr "Aparece antes del campo" +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Rango" -#: includes/fields/class-acf-field-email.php:150 -#: includes/fields/class-acf-field-number.php:158 -#: includes/fields/class-acf-field-password.php:95 -#: includes/fields/class-acf-field-range.php:221 -#: includes/fields/class-acf-field-text.php:130 +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rojo : Rojo" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "¿Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "¿Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "¿Retrasar el inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "¿Mostrar botones de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de herramientas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Sólo texto" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Sólo visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual y Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestañas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Haz clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "El valor no debe exceder los %d caracteres" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Déjalo en blanco para ilimitado" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Aparece después del campo" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 msgid "Append" msgstr "Anexar" -#: includes/fields/class-acf-field-email.php:151 -#: includes/fields/class-acf-field-number.php:159 -#: includes/fields/class-acf-field-password.php:96 -#: includes/fields/class-acf-field-range.php:222 -#: includes/fields/class-acf-field-text.php:131 -msgid "Appears after the input" -msgstr "Aparece luego del campo" +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Aparece antes del campo" -#: includes/fields/class-acf-field-email.php:175 -#, php-format -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-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Anteponer" -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Archivo" +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Aparece en el campo" -#: includes/fields/class-acf-field-file.php:59 -msgid "Edit File" -msgstr "Editar Archivo" +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Marcador de posición" -#: includes/fields/class-acf-field-file.php:60 -msgid "Update File" -msgstr "Actualizar Archivo" +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +msgid "Appears when creating a new post" +msgstr "Aparece cuando se está creando una nueva entrada" -#: includes/fields/class-acf-field-file.php:147 -msgid "File name" -msgstr "Nombre del archivo" +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-relationship.php:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objeto de publicación" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Publicaciones máximas" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Publicaciones mínimas" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imagen destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas las taxonomías" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos los tipos de contenido" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de archivos permitidos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" #: includes/fields/class-acf-field-file.php:151 -#: includes/fields/class-acf-field-file.php:264 -#: includes/fields/class-acf-field-file.php:277 -#: includes/fields/class-acf-field-image.php:276 -#: includes/fields/class-acf-field-image.php:313 -#: pro/fields/class-acf-field-gallery.php:682 -#: pro/fields/class-acf-field-gallery.php:719 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 msgid "File size" -msgstr "Tamaño de Archivo" +msgstr "Tamaño del archivo" -#: includes/fields/class-acf-field-file.php:182 -msgid "Add File" -msgstr "Añadir archivo" +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringir qué imágenes se pueden subir" -#: includes/fields/class-acf-field-file.php:233 -msgid "File Array" -msgstr "Array de Archivo" +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" -#: includes/fields/class-acf-field-file.php:234 -msgid "File URL" -msgstr "URL de Archivo" +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Subidos al contenido" -#: includes/fields/class-acf-field-file.php:235 -msgid "File ID" -msgstr "ID de Archivo" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-image.php:233 -#: pro/fields/class-acf-field-gallery.php:617 -msgid "Library" -msgstr "Librería" - -#: includes/fields/class-acf-field-file.php:245 -#: includes/fields/class-acf-field-image.php:234 -#: pro/fields/class-acf-field-gallery.php:618 -msgid "Limit the media library choice" -msgstr "Limitar las opciones de la librería de medios" - -#: includes/fields/class-acf-field-file.php:250 -#: includes/fields/class-acf-field-image.php:239 +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 #: 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 @@ -1854,595 +2585,593 @@ msgstr "Limitar las opciones de la librería de medios" #: 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 -#: pro/fields/class-acf-field-gallery.php:623 -#: pro/locations/class-acf-location-block.php:66 msgid "All" msgstr "Todos" -#: includes/fields/class-acf-field-file.php:251 -#: includes/fields/class-acf-field-image.php:240 -#: pro/fields/class-acf-field-gallery.php:624 -msgid "Uploaded to post" -msgstr "Subidos al post" +#: includes/fields/class-acf-field-file.php:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitar las opciones de la biblioteca de medios" -#: includes/fields/class-acf-field-file.php:260 -#: includes/fields/class-acf-field-image.php:249 -#: pro/fields/class-acf-field-gallery.php:655 -msgid "Minimum" -msgstr "Mínimo" +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" -#: includes/fields/class-acf-field-file.php:261 -#: includes/fields/class-acf-field-file.php:274 -msgid "Restrict which files can be uploaded" -msgstr "Restringir qué archivos pueden ser subidos" +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamaño de vista previa" -#: includes/fields/class-acf-field-file.php:273 -#: includes/fields/class-acf-field-image.php:286 -#: pro/fields/class-acf-field-gallery.php:692 -msgid "Maximum" -msgstr "Máximo" +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de imagen" -#: includes/fields/class-acf-field-file.php:286 -#: includes/fields/class-acf-field-image.php:323 -#: pro/fields/class-acf-field-gallery.php:729 -msgid "Allowed file types" -msgstr "Tipos de archivos permitidos" +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de imagen" -#: includes/fields/class-acf-field-file.php:287 -#: includes/fields/class-acf-field-image.php:324 -#: pro/fields/class-acf-field-gallery.php:730 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separada por comas. Deja en blanco para todos los tipos" +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array de imágenes" -#: includes/fields/class-acf-field-file.php:469 -#, php-format -msgid "%s requires a valid attachment ID." -msgstr "%s requiere un ID de datos adjuntos válido." +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especificar el valor devuelto en la web" -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Mapa de Google" +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorno" -#: includes/fields/class-acf-field-google-map.php:60 -msgid "Sorry, this browser does not support geolocation" -msgstr "Disculpas, este navegador no soporta geolocalización" +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Añadir imagen" -#: includes/fields/class-acf-field-google-map.php:155 -#: includes/fields/class-acf-field-relationship.php:615 -msgid "Search" -msgstr "Buscar" +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No hay ninguna imagen seleccionada" -#: includes/fields/class-acf-field-google-map.php:156 -msgid "Clear location" -msgstr "Borrar ubicación" +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" -#: includes/fields/class-acf-field-google-map.php:157 -msgid "Find current location" -msgstr "Encontrar ubicación actual" +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Search for address..." -msgstr "Buscar dirección..." +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas las imágenes" -#: includes/fields/class-acf-field-google-map.php:192 -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Center" -msgstr "Centrar" +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagen" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagen" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sin formato" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Añadir <br> automáticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Añadir párrafos automáticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +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:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nuevas líneas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semana comienza el" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Guardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Siguiente" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoy" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamaño de incrustación" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado cuando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado cuando está activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "UI estilizada" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por defecto" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensaje" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabla" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Especifica el estilo utilizado para representar los campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Estructura" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar la altura del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer el nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" #: includes/fields/class-acf-field-google-map.php:193 #: includes/fields/class-acf-field-google-map.php:206 msgid "Center the initial map" msgstr "Centrar inicialmente el mapa" -#: includes/fields/class-acf-field-google-map.php:219 -msgid "Zoom" -msgstr "Zoom" +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" -#: includes/fields/class-acf-field-google-map.php:220 -msgid "Set the initial zoom level" -msgstr "Setear el nivel inicial de zoom" +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar dirección..." -#: includes/fields/class-acf-field-google-map.php:231 -#: includes/fields/class-acf-field-image.php:264 -#: includes/fields/class-acf-field-image.php:301 -#: includes/fields/class-acf-field-oembed.php:292 -#: pro/fields/class-acf-field-gallery.php:670 -#: pro/fields/class-acf-field-gallery.php:707 -msgid "Height" -msgstr "Altura" +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" -#: includes/fields/class-acf-field-google-map.php:232 -msgid "Customize the map height" -msgstr "Personalizar la altura del mapa" +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Buscar" -#: includes/fields/class-acf-field-group.php:446 -#: pro/fields/class-acf-field-repeater.php:381 -msgid "Sub Fields" -msgstr "Sub Campos" +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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-group.php:463 -#: pro/fields/class-acf-field-clone.php:851 -msgid "Specify the style used to render the selected fields" +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Mapa de Google" + +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +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:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactivo (%s)" +msgstr[1] "Inactivos (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No se han encontrado campos en la papelera" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No se han encontrado campos" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nuevo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Añadir nuevo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No se han encontrado grupos de campos en la papelera" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No se han encontrado grupos de campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nuevo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Añadir nuevo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Añadir nuevo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:497 +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 "" -"Especifique el estilo utilizado para representar los campos seleccionados" +"Advanced Custom Fields y Advanced Custom Fields PRO no deberían estar " +"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom " +"Fields PRO." -#: includes/fields/class-acf-field-group.php:468 -#: pro/fields/class-acf-field-clone.php:856 -#: pro/fields/class-acf-field-flexible-content.php:617 -#: pro/fields/class-acf-field-repeater.php:459 -#: pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "Bloque" - -#: includes/fields/class-acf-field-group.php:469 -#: pro/fields/class-acf-field-clone.php:857 -#: pro/fields/class-acf-field-flexible-content.php:616 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Table" -msgstr "Tabla" - -#: includes/fields/class-acf-field-group.php:470 -#: pro/fields/class-acf-field-clone.php:858 -#: pro/fields/class-acf-field-flexible-content.php:618 -#: pro/fields/class-acf-field-repeater.php:460 -msgid "Row" -msgstr "Fila" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagen" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Select Image" -msgstr "Seleccionar Imagen" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Edit Image" -msgstr "Editar Imagen" - -#: includes/fields/class-acf-field-image.php:66 -msgid "Update Image" -msgstr "Actualizar Imagen" - -#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 -msgid "All images" -msgstr "Todas las imágenes" - -#: includes/fields/class-acf-field-image.php:158 -msgid "No image selected" -msgstr "No hay ninguna imagen seleccionada" - -#: includes/fields/class-acf-field-image.php:158 -msgid "Add Image" -msgstr "Añadir Imagen" - -#: includes/fields/class-acf-field-image.php:210 -#: pro/fields/class-acf-field-gallery.php:579 -msgid "Image Array" -msgstr "Array de Imagen" - -#: includes/fields/class-acf-field-image.php:211 -#: pro/fields/class-acf-field-gallery.php:580 -msgid "Image URL" -msgstr "URL de Imagen" - -#: includes/fields/class-acf-field-image.php:212 -#: pro/fields/class-acf-field-gallery.php:581 -msgid "Image ID" -msgstr "ID de Imagen" - -#: includes/fields/class-acf-field-image.php:221 -#: pro/fields/class-acf-field-gallery.php:590 -msgid "Preview Size" -msgstr "Tamaño del Preview" - -#: includes/fields/class-acf-field-image.php:250 -#: includes/fields/class-acf-field-image.php:287 -#: pro/fields/class-acf-field-gallery.php:656 -#: pro/fields/class-acf-field-gallery.php:693 -msgid "Restrict which images can be uploaded" -msgstr "Restringir cuáles imágenes pueden ser subidas" - -#: includes/fields/class-acf-field-image.php:253 -#: includes/fields/class-acf-field-image.php:290 -#: includes/fields/class-acf-field-oembed.php:279 -#: pro/fields/class-acf-field-gallery.php:659 -#: pro/fields/class-acf-field-gallery.php:696 -msgid "Width" -msgstr "Ancho" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Enlace" - -#: includes/fields/class-acf-field-link.php:137 -msgid "Select Link" -msgstr "Elige el enlace" - -#: includes/fields/class-acf-field-link.php:142 -msgid "Opens in a new window/tab" -msgstr "Abrir en una nueva ventana/pestaña" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "Matriz de enlace" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "URL del enlace" - -#: includes/fields/class-acf-field-message.php:26 -#: includes/fields/class-acf-field-message.php:100 -#: includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "Mensaje" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:148 -msgid "New Lines" -msgstr "Nuevas Líneas" - -#: includes/fields/class-acf-field-message.php:112 -#: includes/fields/class-acf-field-textarea.php:149 -msgid "Controls how new lines are rendered" -msgstr "Controla cómo se muestran las nuevas líneas" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:153 -msgid "Automatically add paragraphs" -msgstr "Agregar párrafos automáticamente" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:154 -msgid "Automatically add <br>" -msgstr "Agregar <br> automáticamente" - -#: includes/fields/class-acf-field-message.php:118 -#: includes/fields/class-acf-field-textarea.php:155 -msgid "No Formatting" -msgstr "Sin Formato" - -#: includes/fields/class-acf-field-message.php:127 -msgid "Escape HTML" -msgstr "Escapar HTML" - -#: includes/fields/class-acf-field-message.php:128 -msgid "Allow HTML markup to display as visible text instead of rendering" +#: acf.php:495 +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 "" -"Permitir que el maquetado HTML se muestre como texto visible en vez de " -"interpretarlo" +"Advanced Custom Fields y Advanced Custom Fields PRO no deberían estar " +"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom " +"Fields." -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Número" +#: includes/admin/views/html-admin-navigation.php:89 +msgid "Upgrade to Pro" +msgstr "Actualizar a la versión Pro" -#: includes/fields/class-acf-field-number.php:169 -#: includes/fields/class-acf-field-range.php:174 -msgid "Minimum Value" -msgstr "Valor Mínimo" +#. Author of the plugin +msgid "Delicious Brains" +msgstr "Delicious Brains" -#: includes/fields/class-acf-field-number.php:180 -#: includes/fields/class-acf-field-range.php:186 -msgid "Maximum Value" -msgstr "Valor Máximo" +#: acf.php:440 includes/admin/admin-field-group.php:385 +#: includes/admin/admin-field-groups.php:230 +msgctxt "post status" +msgid "Disabled" +msgstr "Desactivado" -#: includes/fields/class-acf-field-number.php:191 -#: includes/fields/class-acf-field-range.php:198 -msgid "Step Size" -msgstr "Tamaño del Paso" +#: includes/admin/views/field-group-fields.php:44 +msgid "+ Add Field" +msgstr "+ Añadir campo" -#: includes/fields/class-acf-field-number.php:229 -msgid "Value must be a number" -msgstr "El valor debe ser un número" +#: includes/admin/views/field-group-fields.php:19 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"No hay campos. Haz clic en el botón + Añadir campo para " +"crear tu primer campo." -#: includes/fields/class-acf-field-number.php:244 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "El valor debe ser mayor o igual a %d" +#: includes/admin/views/field-group-field.php:135 +msgid "Required?" +msgstr "¿Obligatorio?" -#: includes/fields/class-acf-field-number.php:251 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "El valor debe ser menor o igual a %d" +#: includes/admin/tools/class-acf-admin-tool-export.php:334 +msgid "Export File" +msgstr "Exportar archivo" -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button 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. Utiliza el botón de descarga para exportar a un " +"archivo .json que puedes importar en otra instalación de ACF. Utiliza el " +"botón generar para exportar a código PHP que puedes incluir en tu tema." -#: includes/fields/class-acf-field-oembed.php:230 -msgid "Enter URL" -msgstr "Ingresa URL" +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +msgid "Import File" +msgstr "Importar archivo" -#: includes/fields/class-acf-field-oembed.php:276 -#: includes/fields/class-acf-field-oembed.php:289 -msgid "Embed Size" -msgstr "Tamaño del Embed" +#: 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 field groups." +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/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Link de página" +#: includes/admin/admin-field-group.php:167 +#: assets/build/js/acf-field-group.js:2056 +#: assets/build/js/acf-field-group.js:2425 +msgid "Move to trash. Are you sure?" +msgstr "Mover a papelera. ¿Estás seguro?" -#: includes/fields/class-acf-field-page_link.php:165 -msgid "Archives" -msgstr "Archivos" +#: includes/fields/class-acf-field-checkbox.php:393 +msgid "Toggle" +msgstr "Cambiar" -#: includes/fields/class-acf-field-page_link.php:249 -#: includes/fields/class-acf-field-post_object.php:250 -#: includes/fields/class-acf-field-taxonomy.php:948 -msgid "Parent" -msgstr "Superior" +#: includes/fields/class-acf-field-checkbox.php:348 +msgid "Save Custom" +msgstr "Guardar personalizados" -#: includes/fields/class-acf-field-page_link.php:450 -#: includes/fields/class-acf-field-post_object.php:362 -#: includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "Filtrar por Tipo de Post" +#: includes/fields/class-acf-field-checkbox.php:335 +msgid "Allow Custom" +msgstr "Permitir personalizados" -#: includes/fields/class-acf-field-page_link.php:458 -#: includes/fields/class-acf-field-post_object.php:370 -#: includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "Todos los Tipos de Post" - -#: includes/fields/class-acf-field-page_link.php:466 -#: includes/fields/class-acf-field-post_object.php:378 -#: includes/fields/class-acf-field-relationship.php:594 -msgid "Filter by Taxonomy" -msgstr "Filtrar por Taxonomía" - -#: includes/fields/class-acf-field-page_link.php:474 -#: includes/fields/class-acf-field-post_object.php:386 -#: includes/fields/class-acf-field-relationship.php:602 -msgid "All taxonomies" -msgstr "Todas las taxonomías" - -#: includes/fields/class-acf-field-page_link.php:494 -msgid "Allow Archives URLs" -msgstr "Permitir las URLs de los archivos" - -#: includes/fields/class-acf-field-page_link.php:506 -#: includes/fields/class-acf-field-post_object.php:406 -#: includes/fields/class-acf-field-select.php:398 -#: includes/fields/class-acf-field-user.php:79 -msgid "Select multiple values?" -msgstr "¿Seleccionar valores múltiples?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Contraseña" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:423 -#: includes/fields/class-acf-field-relationship.php:667 -msgid "Post Object" -msgstr "Objecto Post" - -#: includes/fields/class-acf-field-post_object.php:424 -#: includes/fields/class-acf-field-relationship.php:668 -msgid "Post ID" -msgstr "ID de Post" - -#: includes/fields/class-acf-field-post_object.php:642 -#, php-format -msgid "%1$s must have a valid post ID." -msgstr "%1$s debe tener una identificación postal válida." - -#: includes/fields/class-acf-field-post_object.php:652 -#, php-format -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 de tipo post %2$s." -msgstr[1] "%1$s debe ser uno de los siguientes tipos de post: %2$s" - -#: includes/fields/class-acf-field-post_object.php:668 -#, php-format -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 %2$s de término." -msgstr[1] "%1$s debe tener uno de los siguientes términos: %2$s" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio Button" - -#: includes/fields/class-acf-field-radio.php:214 -msgid "Other" -msgstr "Otro" - -#: includes/fields/class-acf-field-radio.php:219 -msgid "Add 'other' choice to allow for custom values" -msgstr "Agregar la opción 'otros' para permitir valores personalizados" +#: includes/fields/class-acf-field-taxonomy.php:673 +msgctxt "No terms" +msgid "No %s" +msgstr "Ningún %s" #: includes/fields/class-acf-field-radio.php:227 msgid "Save Other" -msgstr "Guardar Otro" +msgstr "Guardar otros" -#: includes/fields/class-acf-field-radio.php:232 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar 'otros' valores a las opciones del campo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Rango" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relación" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Maximum values reached ( {max} values )" -msgstr "Valores máximos alcanzados ( {max} valores )" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "Loading" -msgstr "Cargando" - -#: includes/fields/class-acf-field-relationship.php:65 -msgid "No matches found" -msgstr "No se encontraron resultados" - -#: includes/fields/class-acf-field-relationship.php:390 -msgid "Select post type" -msgstr "Selecciona Tipo de Post" - -#: includes/fields/class-acf-field-relationship.php:399 -msgid "Select taxonomy" -msgstr "Selecciona Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:469 -msgid "Search..." -msgstr "Buscar..." - -#: includes/fields/class-acf-field-relationship.php:610 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-relationship.php:616 -#: includes/locations/class-acf-location-post-type.php:22 -msgid "Post Type" -msgstr "Post Type" - -#: includes/fields/class-acf-field-relationship.php:617 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:714 -#: includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: includes/fields/class-acf-field-relationship.php:626 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:627 -msgid "Selected elements will be displayed in each result" -msgstr "Los elementos seleccionados serán mostrados en cada resultado" - -#: includes/fields/class-acf-field-relationship.php:640 -msgid "Minimum posts" -msgstr "Mínimos posts" - -#: includes/fields/class-acf-field-relationship.php:651 -msgid "Maximum posts" -msgstr "Máximos posts" - -#: includes/fields/class-acf-field-relationship.php:752 -#: pro/fields/class-acf-field-gallery.php:832 -#, php-format -msgid "%1$s requires at least %2$s selection" -msgid_plural "%1$s requires at least %2$s selections" -msgstr[0] "%s requiere al menos %s selección" -msgstr[1] "%s requiere al menos %s selecciones" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:738 -msgctxt "noun" -msgid "Select" -msgstr "Elige" - -#: includes/fields/class-acf-field-select.php:107 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Hay un resultado disponible, pulse Enter para seleccionarlo." - -#: includes/fields/class-acf-field-select.php:108 -#, php-format -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultados disponibles, utilice las flechas arriba y abajo para navegar " -"por los resultados." - -#: includes/fields/class-acf-field-select.php:109 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "No se encontraron coincidencias" - -#: includes/fields/class-acf-field-select.php:110 -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:111 -#, php-format -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Por favor escribe %d o más caracteres" - -#: includes/fields/class-acf-field-select.php:112 -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:113 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Por favor, elimina %d caracteres" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Sólo puede seleccionar 1 elemento" - -#: includes/fields/class-acf-field-select.php:115 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Sólo puede seleccionar %d elementos" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Cargando más resultados…" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Buscando…" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Error al cargar" - -#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 -msgctxt "verb" -msgid "Select" -msgstr "Elige" - -#: includes/fields/class-acf-field-select.php:410 -#: includes/fields/class-acf-field-true_false.php:159 -msgid "Stylised UI" -msgstr "UI estilizada" - -#: includes/fields/class-acf-field-select.php:422 -msgid "Use AJAX to lazy load choices?" -msgstr "Usar AJAX para hacer lazy load de las opciones?" - -#: includes/fields/class-acf-field-select.php:440 -msgid "Specify the value returned" -msgstr "Especifique el valor devuelto" - -#: includes/fields/class-acf-field-select.php:663 -#, php-format -msgid "%1$s is not one of %2$s" -msgstr "%1$s no es uno de %2$s" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separador" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "Pestaña" - -#: includes/fields/class-acf-field-tab.php:103 -msgid "Placement" -msgstr "Ubicación" +#: includes/fields/class-acf-field-radio.php:214 +msgid "Other" +msgstr "Otros" #: includes/fields/class-acf-field-tab.php:118 msgid "" @@ -2452,477 +3181,116 @@ msgstr "" "Definir un punto final para detener las pestañas anteriores. Esto iniciará " "un nuevo grupo de pestañas." -#: includes/fields/class-acf-field-taxonomy.php:673 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "No %s" +#: includes/fields/class-acf-field-select.php:410 +#: includes/fields/class-acf-field-true_false.php:159 +msgid "Stylised UI" +msgstr "UI estilizada" -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Select the taxonomy to be displayed" -msgstr "Selecciona taxonomía a ser mostrada" +#: acf.php:445 +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Desactivado (%s)" +msgstr[1] "Desactivados (%s)" -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Appearance" -msgstr "Apariencia" - -#: includes/fields/class-acf-field-taxonomy.php:727 -msgid "Select the appearance of this field" -msgstr "Selecciona la apariencia de este campo" - -#: includes/fields/class-acf-field-taxonomy.php:732 -msgid "Multiple Values" -msgstr "Múltiples Valores" - -#: includes/fields/class-acf-field-taxonomy.php:734 -msgid "Multi Select" -msgstr "Selección Múltiple" - -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Single Value" -msgstr "Valor Individual" - -#: includes/fields/class-acf-field-taxonomy.php:737 -msgid "Radio Buttons" -msgstr "Botones Radio" - -#: includes/fields/class-acf-field-taxonomy.php:765 -msgid "Create Terms" -msgstr "Crear Términos" - -#: includes/fields/class-acf-field-taxonomy.php:766 -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:777 -msgid "Save Terms" -msgstr "Guardar Términos" - -#: includes/fields/class-acf-field-taxonomy.php:778 -msgid "Connect selected terms to the post" -msgstr "Conectar los términos seleccionados al post" - -#: includes/fields/class-acf-field-taxonomy.php:789 -msgid "Load Terms" -msgstr "Cargar Términos" - -#: includes/fields/class-acf-field-taxonomy.php:790 -msgid "Load value from posts terms" -msgstr "Cargar valor de los términos del post" - -#: includes/fields/class-acf-field-taxonomy.php:806 -msgid "Term Object" -msgstr "Objeto de Término" - -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Term ID" -msgstr "ID de Término" - -#: includes/fields/class-acf-field-taxonomy.php:862 -#, php-format -msgid "User unable to add new %s" -msgstr "El usuario no puede agregar nuevos %s" - -#: includes/fields/class-acf-field-taxonomy.php:874 -#, php-format -msgid "%s already exists" -msgstr "%s ya existe" - -#: includes/fields/class-acf-field-taxonomy.php:910 -#, php-format -msgid "%s added" -msgstr "%s agregados" - -#: includes/fields/class-acf-field-taxonomy.php:961 -#: includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "Agregar" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-text.php:141 -#: includes/fields/class-acf-field-textarea.php:125 -msgid "Character Limit" -msgstr "Límite de Caractéres" - -#: includes/fields/class-acf-field-text.php:142 -#: includes/fields/class-acf-field-textarea.php:126 -msgid "Leave blank for no limit" -msgstr "Deja en blanco para ilimitado" - -#: includes/fields/class-acf-field-text.php:168 -#: includes/fields/class-acf-field-textarea.php:221 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "El valor no debe superar los caracteres %d" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Area de Texto" - -#: includes/fields/class-acf-field-textarea.php:136 -msgid "Rows" -msgstr "Filas" - -#: includes/fields/class-acf-field-textarea.php:137 -msgid "Sets the textarea height" -msgstr "Setea el alto del área de texto" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selector de hora" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadero / Falso" - -#: 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-true_false.php:172 -msgid "On Text" -msgstr "Sobre texto" - -#: includes/fields/class-acf-field-true_false.php:173 -msgid "Text shown when active" -msgstr "Texto mostrado cuando está activo" - -#: includes/fields/class-acf-field-true_false.php:189 -msgid "Off Text" -msgstr "Sin texto" - -#: includes/fields/class-acf-field-true_false.php:190 -msgid "Text shown when inactive" -msgstr "Texto mostrado cuando está inactivo" - -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "Url" - -#: includes/fields/class-acf-field-url.php:154 -msgid "Value must be a valid URL" -msgstr "El valor debe ser una URL válida" - -#: includes/fields/class-acf-field-user.php:20 includes/locations.php:101 -msgid "User" -msgstr "Usuario" - -#: includes/fields/class-acf-field-user.php:53 -msgid "Filter by role" -msgstr "Filtrar por rol" - -#: includes/fields/class-acf-field-user.php:61 -msgid "All user roles" -msgstr "Todos los roles de usuario" - -#: includes/fields/class-acf-field-user.php:95 -msgid "User Array" -msgstr "Matriz de usuarios" - -#: includes/fields/class-acf-field-user.php:96 -msgid "User Object" -msgstr "Objeto de usuario" - -#: includes/fields/class-acf-field-user.php:97 -msgid "User ID" -msgstr "ID de Usuario" - -#: includes/fields/class-acf-field-user.php:350 -msgid "Error loading field." -msgstr "Error al cargar el campo." - -#: includes/fields/class-acf-field-user.php:355 -msgid "Invalid request." -msgstr "Petición incorrecta." - -#: includes/fields/class-acf-field-user.php:517 -#, php-format -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:527 -#, php-format -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 rol de %2$s." -msgstr[1] "%1$s debe tener un usuario con uno de los siguientes roles: %2$s." - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "Editor Wysiwyg" - -#: includes/fields/class-acf-field-wysiwyg.php:282 -msgid "Visual" -msgstr "Visual" - -#: includes/fields/class-acf-field-wysiwyg.php:283 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:289 -msgid "Click to initialize TinyMCE" -msgstr "Haz clic para iniciar TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:345 -msgid "Tabs" -msgstr "Pestañas" - -#: includes/fields/class-acf-field-wysiwyg.php:350 -msgid "Visual & Text" -msgstr "Visual y Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:351 -msgid "Visual Only" -msgstr "Sólo Visual" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Text Only" -msgstr "Sólo Texto" - -#: includes/fields/class-acf-field-wysiwyg.php:361 -msgid "Toolbar" -msgstr "Barra de Herramientas" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons?" -msgstr "¿Mostrar el botón Media Upload?" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "Delay initialization?" -msgstr "¿Inicialización retrasada?" - -#: includes/fields/class-acf-field-wysiwyg.php:391 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo" - -#: includes/forms/form-front.php:40 pro/fields/class-acf-field-gallery.php:352 -msgid "Title" -msgstr "Título" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "Validar correo electrónico" - -#: includes/forms/form-front.php:106 pro/fields/class-acf-field-gallery.php:523 -#: pro/options-page.php:77 -msgid "Update" -msgstr "Actualizar" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "Post actualizado" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "Spam detectado" - -#: includes/forms/form-user.php:353 -#, php-format -msgid "Error: %s" -msgstr "Error: %s" - -#: includes/locations.php:25 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "La clase \"%s\" no existe." - -#: includes/locations.php:36 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "El tipo de ubicación \"%s\" ya está registrado." - -#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 -msgid "Post" -msgstr "Post" - -#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 -msgid "Page" -msgstr "Página" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "Formularios" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "es igual a" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "no es igual a" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "Adjunto" - -#: includes/locations/class-acf-location-attachment.php:84 -#, php-format -msgid "All %s formats" -msgstr "%s formatos" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "Comentario" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "Rol del Usuario Actual" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "Super Administrador" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "Usuario Actual" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "Logueado" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "Viendo front end" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "Viendo back end" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "Elemento del menú" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "Menú" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "Localizaciones de menú" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "Página Superior" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -msgstr "Plantilla de Página" - -#: includes/locations/class-acf-location-page-template.php:73 -#: includes/locations/class-acf-location-post-template.php:85 -msgid "Default Template" -msgstr "Plantilla por Defecto" - -#: includes/locations/class-acf-location-page-type.php:22 -msgid "Page Type" -msgstr "Tipo de Página" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "Página Principal" - -#: 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:112 -msgid "Top Level Page (no parent)" -msgstr "Página de Nivel Superior" - -#: includes/locations/class-acf-location-page-type.php:113 -msgid "Parent Page (has children)" -msgstr "Página Superior (tiene hijas)" - -#: 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-post-category.php:22 -msgid "Post Category" -msgstr "Categoría de Post" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "Formato de Post" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "Estado del Post" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "Taxonomía de Post" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "Plantilla de entrada" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "Formulario de Usuario" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "Agregar / Editar" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "Registrar" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "Rol de Usuario" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -msgstr "Widget" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" - -#: includes/media.php:50 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - -#: includes/media.php:51 -msgid "Uploaded to this post" -msgstr "Subidos a este post" - -#: includes/media.php:52 -msgid "Expand Details" -msgstr "Expandir Detalles" - -#: includes/media.php:53 -msgid "Collapse Details" -msgstr "Colapsar Detalles" - -#: includes/media.php:54 -msgid "Restricted" -msgstr "Restringido" - -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "El valor %s es requerido" - -#. Plugin Name of the plugin/theme #: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "El nombre del tipo de bloque es requerido." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "El tipo de bloque \" %s\" ya está registrado." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Cambiar a Editar" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Cambiar a vista previa" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Cambiar la alineación del contenido" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s ajustes" + +#: pro/blocks.php:949 +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:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Comprobar de nuevo" + +#: pro/updates.php:561 +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 -#, php-format msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -2935,18 +3303,6 @@ 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:122 pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Actualizaciones" - -#: pro/admin/admin-updates.php:196 -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/admin/admin-updates.php:209 msgid "" "Error. Could not authenticate update package. Please check again or " @@ -2955,106 +3311,13 @@ msgstr "" "Error. No se pudo autenticar el paquete de actualización. Compruebe " "de nuevo o desactive y reactive su licencia ACF PRO." -#: 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: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:34 -#, php-format +#: pro/admin/admin-updates.php:196 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." 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:41 -msgid "License Key" -msgstr "Clave de Licencia" - -#: pro/admin/views/html-settings-updates.php:76 -msgid "Update Information" -msgstr "Información de Actualización" - -#: pro/admin/views/html-settings-updates.php:83 -msgid "Current Version" -msgstr "Versión Actual" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "Latest Version" -msgstr "Última Versión" - -#: pro/admin/views/html-settings-updates.php:99 -msgid "Update Available" -msgstr "Actualización Disponible" - -#: pro/admin/views/html-settings-updates.php:107 -msgid "Please reactivate your license to unlock updates" -msgstr "Reactive su licencia para desbloquear actualizaciones" - -#: pro/admin/views/html-settings-updates.php:109 -msgid "Update Plugin" -msgstr "Actualizar Plugin" - -#: pro/admin/views/html-settings-updates.php:111 -msgid "Please enter your license key above to unlock updates" -msgstr "Por favor ingresa tu clave de licencia para habilitar actualizaciones" - -#: pro/admin/views/html-settings-updates.php:117 pro/updates.php:279 -msgid "Check Again" -msgstr "Comprobar de nuevo" - -#: pro/admin/views/html-settings-updates.php:124 -msgid "Changelog" -msgstr "Registro de cambios" - -#: pro/admin/views/html-settings-updates.php:134 -msgid "Upgrade Notice" -msgstr "Notificación de Actualización" - -#: pro/blocks.php:37 -msgid "Block type name is required." -msgstr "El nombre del tipo de bloque es requerido." - -#: pro/blocks.php:44 -#, php-format -msgid "Block type \"%s\" is already registered." -msgstr "El tipo de bloque \" %s\" ya está registrado." - -#: pro/blocks.php:495 -msgid "Switch to Edit" -msgstr "Cambiar a Editar" - -#: pro/blocks.php:496 -msgid "Switch to Preview" -msgstr "Cambiar a vista previa" - -#: pro/blocks.php:497 -msgid "Change content alignment" -msgstr "Cambiar la alineación del contenido" - -#: pro/blocks.php:500 -#, php-format -msgid "%s settings" -msgstr "%s ajustes" +"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:25 msgctxt "noun" @@ -3083,7 +3346,6 @@ msgid "Seamless (replaces this field with selected fields)" msgstr "Transparente (reemplaza este campo con los campos seleccionados)" #: pro/fields/class-acf-field-clone.php:864 -#, php-format msgid "Labels will be displayed as %s" msgstr "Las etiquetas se mostrarán como %s" @@ -3092,7 +3354,6 @@ msgid "Prefix Field Labels" msgstr "Etiquetas del prefijo de campo" #: pro/fields/class-acf-field-clone.php:880 -#, php-format msgid "Values will be saved as %s" msgstr "Los valores se guardarán como %s" @@ -3109,18 +3370,17 @@ msgid "Unknown field group" msgstr "Grupo de campos desconocido" #: pro/fields/class-acf-field-clone.php:1042 -#, php-format msgid "All fields from %s field group" msgstr "Todos los campos del grupo de campo %s" -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:182 -#: pro/fields/class-acf-field-repeater.php:473 +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "Agregar Fila" -#: pro/fields/class-acf-field-flexible-content.php:71 -#: pro/fields/class-acf-field-flexible-content.php:917 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, #: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" @@ -3131,8 +3391,8 @@ msgstr[1] "esquema" msgid "layouts" msgstr "diseños" -#: pro/fields/class-acf-field-flexible-content.php:75 -#: pro/fields/class-acf-field-flexible-content.php:916 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, #: pro/fields/class-acf-field-flexible-content.php:995 msgid "This field requires at least {min} {label} {identifier}" msgstr "Este campo requiere al menos {min} {label} {identifier}" @@ -3156,7 +3416,6 @@ 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:276 -#, php-format 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" @@ -3172,8 +3431,8 @@ msgstr "Duplicar Diseño" msgid "Remove layout" msgstr "Remover esquema" -#: pro/fields/class-acf-field-flexible-content.php:416 -#: pro/fields/class-acf-field-repeater.php:297 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" msgstr "Clic para mostrar" @@ -3205,8 +3464,8 @@ msgstr "Min" msgid "Max" msgstr "Max" -#: pro/fields/class-acf-field-flexible-content.php:679 -#: pro/fields/class-acf-field-repeater.php:469 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "Etiqueta del Botón" @@ -3218,21 +3477,18 @@ msgstr "Esquemas Mínimos" msgid "Maximum Layouts" msgstr "Esquemas Máximos" -#: pro/fields/class-acf-field-flexible-content.php:1704 -#: pro/fields/class-acf-field-repeater.php:1108 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 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:1716 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:1715 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:1732 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:1731 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." @@ -3310,43 +3566,98 @@ msgstr "Selección Mínima" msgid "Maximum Selection" msgstr "Selección Máxima" -#: pro/fields/class-acf-field-repeater.php:64 -#: pro/fields/class-acf-field-repeater.php:659 +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "Mínimo de filas alcanzado ({min} rows)" -#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "Máximo de filas alcanzado ({max} rows)" -#: pro/fields/class-acf-field-repeater.php:334 -msgid "Add row" -msgstr "Agregar fila" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "Error al cargar la página" -#: pro/fields/class-acf-field-repeater.php:335 -msgid "Duplicate row" -msgstr "Duplicar fila" - -#: pro/fields/class-acf-field-repeater.php:336 -msgid "Remove row" -msgstr "Remover fila" - -#: pro/fields/class-acf-field-repeater.php:414 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" msgstr "Colapsado" -#: pro/fields/class-acf-field-repeater.php:415 +#: pro/fields/class-acf-field-repeater.php:175 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:427 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "Mínimo de Filas" -#: pro/fields/class-acf-field-repeater.php:439 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "Máximo de Filas" +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "Paginación" + +#: pro/fields/class-acf-field-repeater.php:229 +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:240 +msgid "Rows Per Page" +msgstr "Filas por página" + +#: pro/fields/class-acf-field-repeater.php:241 +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:959 +msgid "Invalid field key." +msgstr "Clave de campo no válida." + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "Ha habido un error al recuperar el campo." + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Agregar fila" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Duplicar fila" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Remover fila" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "Página actual" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "Primera página" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "Página anterior" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s de %2$s" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "Página siguiente" + +#: pro/fields/class-acf-repeater-table.php:469 +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" @@ -3355,77 +3666,79 @@ msgstr "No existen tipos de bloques" msgid "No options pages exist" msgstr "No existen páginas de opciones" -#: pro/options-page.php:78 -msgid "Options Updated" -msgstr "Opciones Actualizadas" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "Desactivar Licencia" -#: pro/updates.php:99 -#, php-format +#: 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 enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." +"To unlock updates, please enter your license key below. 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.." +"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/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/admin/views/html-settings-updates.php:41 +msgid "License Key" +msgstr "Clave de Licencia" -#: 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/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/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/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "Reintentar activación" -#: pro/updates.php:192 -msgid "ACF Activation Error" -msgstr "Error de activación de ACF" +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Información de Actualización" -#: pro/updates.php:561 -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/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Versión Actual" -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Última Versión" -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos." +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Actualización Disponible" -#. Author of the plugin/theme -msgid "Delicious Brains" -msgstr "Cerebros deliciosos" +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Por favor ingresa tu clave de licencia para habilitar actualizaciones" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Actualizar Plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "Reactive su licencia para desbloquear actualizaciones" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Registro de cambios" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Notificación de Actualización" #~ msgid "Inactive" #~ msgstr "Inactivo" -#, php-format -#~ msgid "Inactive (%s)" -#~ msgid_plural "Inactive (%s)" -#~ msgstr[0] "Activo (%s)" -#~ msgstr[1] "Activos (%s)" - #~ msgid "Parent fields" #~ msgstr "Campos Padre" @@ -3971,9 +4284,6 @@ msgstr "Cerebros deliciosos" #~ msgid "Activate Add-ons." #~ msgstr "Activar Add-ons." -#~ msgid "Flexible Content Field" -#~ msgstr "Flexible Content Field" - #~ msgid "" #~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " #~ "on multiple sites." diff --git a/lang/acf-es_MX.mo b/lang/acf-es_MX.mo new file mode 100644 index 0000000..19c54dd Binary files /dev/null and b/lang/acf-es_MX.mo differ diff --git a/lang/acf-es_MX.po b/lang/acf-es_MX.po new file mode 100644 index 0000000..b0a1308 --- /dev/null +++ b/lang/acf-es_MX.po @@ -0,0 +1,3041 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Petición no válida." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s necesita un ID de adjunto válido." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostrar en la API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar la transparencia" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadena RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadena hexadecimal" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galería (solo Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clon (solo Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contenido flexible (solo Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetidor (solo Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor del color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar el color predeterminado" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Vaciar el color" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloques" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opciones" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos del menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjuntos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (más nuevo)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualización: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Lo siento, este grupo de campos no está disponible para la comparacion diff." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de campo de grupo no válido." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetro(s) de grupo de campos no válido(s)." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Esperando el guardado" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Guardado" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisar cambios" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Localizado en: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Localizado en el plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Localizado en el tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varios" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar cambios" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Cargando diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisar cambios de JSON local" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ayuda y soporte" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error al cargar el campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "El valor de %s es obligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostrar este campo si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lógica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "y" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Clonar campo" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "¡Gracias por actualizar a %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Es necesario actualizar la base de datos" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opciones" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas las herramientas" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos de página" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisiones" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentarios" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discusión" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contenido" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Los grupos de campos con menor orden aparecerán primero" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Número de orden" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Debajo de los campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Debajo de las etiquetas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Ubicación de la instrucción" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Ubicación de la etiqueta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (después del contenido)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (después del título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Directo (sin caja meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estándar (caja meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Orden" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "ID" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos del contenedor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +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/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrucciones" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nombre del campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta del campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo a otro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hay actualizaciones disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leyendo tareas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Fallo al actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos a la versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El sitio está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar los sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Añadir grupo de reglas" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Reglas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El siguiente código puede ser utilizado para registrar una versión local del " +"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " +"beneficios como tiempos de carga más cortos, 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 como un archivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Se ha importado un grupo de campos" +msgstr[1] "Se han importado %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Archivo de imporación vacío" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripción" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronización disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona el destino para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Cerrar ventana" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movimiento completo." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claves de campo" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ajustes" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No hay campos de conmutación disponibles" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "El título del grupo de campos es obligatorio" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Borrador del grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos guardado." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relación" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconocido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selección es menor que" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selección es mayor que" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor es menor que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor es mayor que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor contiene" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincide con el patrón" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No tiene ningún valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "No tiene algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requieren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo requiere atención" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restringido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Contraer detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Subido a esta publicación" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "El tipo de archivo debe ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "El tamaño del archivo no debe ser mayor de %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "El tamaño de archivo debe ser al menos %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "La altura de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "La altura de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "El ancho de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "El ancho de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sin título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sin etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Establece la altura del área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite añadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Añadir nueva opción" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir las URLs de los archivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Añadir" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nombre" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s añadido/s" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ya existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "El usuario no puede añadir nuevos %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID de término" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objeto de término" + +#: includes/fields/class-acf-field-taxonomy.php:740 +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:739 +msgid "Load Terms" +msgstr "Cargar términos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Conectar los términos seleccionados con la publicación" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Guardar términos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crear términos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botones de radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecciona la apariencia de este campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apariencia" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona la taxonomía a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Añade la opción 'otros' para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botón de radio" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeón" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringen los archivos que se pueden subir" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID del archivo" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array del archivo" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Añadir archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún archivo seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nombre del archivo" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar archivo" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Especifica el valor devuelto" + +#: includes/fields/class-acf-field-select.php:456 +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:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Error al cargar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando más resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selección" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID del usuario" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Grupo de objetos" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos los roles de usuario" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por defecto" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hecho" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ahora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Variable" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alineada a la izquierda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alineada arriba" + +#: includes/fields/class-acf-field-tab.php:107 +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:159 +msgid "Value must be a valid URL" +msgstr "El valor debe ser una URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL del enlace" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array de enlaces" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abrir en una nueva ventana/pestaña" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Tamaño de paso" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rojo : Rojo" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "¿Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "¿Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "¿Retrasar el inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "¿Mostrar botones de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de herramientas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Sólo texto" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Sólo visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual y Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestañas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Haz clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "El valor no debe exceder los %d caracteres" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Déjalo en blanco para ilimitado" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Aparece después del campo" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Anexar" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Aparece antes del campo" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Anteponer" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Aparece en el campo" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Marcador de posición" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objeto de publicación" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Publicaciones máximas" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Publicaciones mínimas" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imagen destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas las taxonomías" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos los tipos de contenido" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de archivos permitidos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Tamaño del archivo" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringir que las imágenes se pueden subir" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Subidos al contenido" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitar las opciones de la biblioteca de medios" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamaño de vista previa" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de imagen" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de imagen" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array de imágenes" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especificar el valor devuelto en la web" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Añadir imagen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No hay ninguna imagen seleccionada" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas las imágenes" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagen" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagen" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sin formato" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Añadir <br> automáticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Añadir párrafos automáticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +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:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nuevas líneas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semana comienza el" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Guardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Siguiente" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoy" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamaño de incrustación" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado cuando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado cuando está activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por defecto" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensaje" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabla" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Especifica el estilo utilizado para representar los campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Estructura" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar la altura del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer el nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar inicialmente el mapa" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar dirección..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Buscar" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +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:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No se han encontrado campos en la papelera" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No se han encontrado campos" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nuevo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Añadir nuevo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No se han encontrado grupos de campos en la papelera" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No se han encontrado grupos de campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nuevo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Añadir nuevo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Añadir nuevo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-es_VE.mo b/lang/acf-es_VE.mo new file mode 100644 index 0000000..05766f0 Binary files /dev/null and b/lang/acf-es_VE.mo differ diff --git a/lang/acf-es_VE.po b/lang/acf-es_VE.po new file mode 100644 index 0000000..60c1be6 --- /dev/null +++ b/lang/acf-es_VE.po @@ -0,0 +1,3041 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Petición no válida." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s necesita un ID de adjunto válido." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostrar en la API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar la transparencia" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadena RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadena hexadecimal" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galería (solo Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clon (solo Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contenido flexible (solo Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetidor (solo Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor del color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar el color por defecto" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Vaciar el color" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloques" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opciones" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos del menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjuntos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (más nuevo)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualización: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Lo siento, este grupo de campos no está disponible para la comparacion diff." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de grupo de campos no válido." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetro(s) de grupo de campos no válido(s)" + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Esperando el guardado" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Guardado" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisar cambios" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Localizado en: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Localizado en el plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Localizado en el tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varios" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar cambios" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Cargando diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisar cambios de JSON local" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ayuda y soporte" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Error al cargar el campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "El valor de %s es obligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostrar este campo si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lógica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "y" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Clonar campo" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "¡Gracias por actualizar a %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Es necesario actualizar la base de datos" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opciones" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas las herramientas" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos de página" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisiones" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentarios" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discusión" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contenido" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Los grupos de campos con menor orden aparecerán primero" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Número de orden" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Debajo de los campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Debajo de las etiquetas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Ubicación de la instrucción" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Ubicación de la etiqueta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (después del contenido)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (después del título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Directo (sin caja meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estándar (caja meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Orden" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos del contenedor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +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/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrucciones" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nombre del campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta del campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo a otro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hay actualizaciones disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leyendo tareas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Fallo al actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos a la versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El sitio está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar los sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Añadir grupo de reglas" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Reglas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El siguiente código puede ser utilizado para registrar una versión local del " +"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " +"beneficios como tiempos de carga más cortos, 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 como un archivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Se ha importado un grupo de campos" +msgstr[1] "Se han importado %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Archivo de imporación vacío" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripción" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronización disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona el destino para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Cerrar ventana" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movimiento completo." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claves de campo" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ajustes" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "No hay campos de conmutación disponibles" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "El título del grupo de campos es obligatorio" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Borrador del grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos guardado." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relación" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconocido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selección es menor que" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selección es mayor que" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor es menor que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor es mayor que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor contiene" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincide con el patrón" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No tiene ningún valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "No tiene algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requieren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo requiere atención" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restringido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Contraer detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Subido a esta publicación" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "El tipo de archivo debe ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "El tamaño del archivo no debe ser mayor de %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "El tamaño de archivo debe ser al menos %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "La altura de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "La altura de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "El ancho de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "El ancho de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sin título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sin etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Establece la altura del área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite añadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Añadir nueva opción" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir las URLs de los archivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Añadir" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nombre" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s añadido/s" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s ya existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "El usuario no puede añadir nuevos %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID de término" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objeto de término" + +#: includes/fields/class-acf-field-taxonomy.php:740 +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:739 +msgid "Load Terms" +msgstr "Cargar términos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Conectar los términos seleccionados con la publicación" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Guardar términos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crear términos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botones de radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecciona la apariencia de este campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apariencia" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona la taxonomía a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Añade la opción 'otros' para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botón de radio" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeón" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringen los archivos que se pueden subir" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID del archivo" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array del archivo" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Añadir archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún archivo seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nombre del archivo" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar archivo" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Especifica el valor devuelto" + +#: includes/fields/class-acf-field-select.php:456 +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:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Error al cargar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando más resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selección" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID del usuario" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Grupo de objetos" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos los roles de usuario" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por defecto" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hecho" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ahora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Variable" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alineada a la izquierda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alineada arriba" + +#: includes/fields/class-acf-field-tab.php:107 +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:159 +msgid "Value must be a valid URL" +msgstr "El valor debe ser una URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL del enlace" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array de enlaces" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abrir en una nueva ventana/pestaña" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Tamaño de paso" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rojo : Rojo" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "¿Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "¿Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "¿Retrasar el inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "¿Mostrar botones de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de herramientas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Sólo texto" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Sólo visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual y Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestañas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Haz clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "El valor no debe exceder los %d caracteres" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Déjalo en blanco para ilimitado" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Aparece después del campo" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Anexar" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Aparece antes del campo" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Anteponer" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Aparece en el campo" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Marcador de posición" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objeto de publicación" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Publicaciones máximas" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Publicaciones mínimas" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imagen destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas las taxonomías" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos los tipos de contenido" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de archivos permitidos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Tamaño del archivo" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringir que las imágenes se pueden subir" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Subidos al contenido" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitar las opciones de la biblioteca de medios" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamaño de vista previa" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de imagen" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de imagen" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array de imágenes" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especificar el valor devuelto en la web" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Añadir imagen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No hay ninguna imagen seleccionada" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas las imágenes" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagen" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagen" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sin formato" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Añadir <br> automáticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Añadir párrafos automáticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +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:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nuevas líneas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semana comienza el" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Guardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Siguiente" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoy" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamaño de incrustación" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado cuando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado cuando está activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por defecto" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensaje" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabla" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Especifica el estilo utilizado para representar los campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Estructura" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar la altura del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer el nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar inicialmente el mapa" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar dirección..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Buscar" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +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:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "No se han encontrado campos en la papelera" + +#: acf.php:411 +msgid "No Fields found" +msgstr "No se han encontrado campos" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nuevo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Añadir nuevo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "No se han encontrado grupos de campos en la papelera" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "No se han encontrado grupos de campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nuevo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Añadir nuevo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Añadir nuevo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-fa_IR.mo b/lang/acf-fa_IR.mo index 5d40e9e..e214957 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 0a41ca0..0cfbb33 100644 --- a/lang/acf-fa_IR.po +++ b/lang/acf-fa_IR.po @@ -1,3069 +1,3190 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.7.11\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2019-05-08 14:09+0430\n" -"PO-Revision-Date: 2019-05-08 14:13+0430\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Majix \n" -"Language: fa\n" +"Language: fa_IR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n" -"X-Generator: Poedit 2.2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:80 -msgid "Advanced Custom Fields" -msgstr "زمینه‌های سفارشی پیشرفته" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -#: acf.php:363 includes/admin/admin.php:58 -msgid "Field Groups" -msgstr "گروه‌های زمینه" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -#: acf.php:364 -msgid "Field Group" -msgstr "گروه زمینه" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:365 acf.php:397 includes/admin/admin.php:59 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Add New" -msgstr "افزودن" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:366 -msgid "Add New Field Group" -msgstr "افزودن گروه زمینه جدید" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:367 -msgid "Edit Field Group" -msgstr "ویرایش گروه زمینه" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -#: acf.php:368 -msgid "New Field Group" -msgstr "گروه زمینه جدید" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" -#: acf.php:369 -msgid "View Field Group" -msgstr "مشاهده گروه زمینه" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" -#: acf.php:370 -msgid "Search Field Groups" -msgstr "جستجوی گروه های زمینه" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:371 -msgid "No Field Groups found" -msgstr "گروه زمینه ای یافت نشد" +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "بروزرسانی ها" -#: acf.php:372 -msgid "No Field Groups found in Trash" -msgstr "گروه زمینه ای در زباله دان یافت نشد" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" -#: acf.php:395 includes/admin/admin-field-group.php:220 -#: includes/admin/admin-field-groups.php:530 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "زمینه ها" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" -#: acf.php:396 -msgid "Field" -msgstr "زمینه" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" -#: acf.php:398 -msgid "Add New Field" -msgstr "زمینه جدید" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" -#: acf.php:399 -msgid "Edit Field" -msgstr "ویرایش زمینه" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -#: acf.php:400 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "زمینه جدید" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" -#: acf.php:401 -msgid "View Field" -msgstr "نمایش زمینه" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -#: acf.php:402 -msgid "Search Fields" -msgstr "جستجوی گروه های زمینه" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" -#: acf.php:403 -msgid "No Fields found" -msgstr "گروه زمینه ای یافت نشد" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" -#: acf.php:404 -msgid "No Fields found in Trash" -msgstr "گروه زمینه ای در زباله دان یافت نشد" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" -#: acf.php:443 includes/admin/admin-field-group.php:402 -#: includes/admin/admin-field-groups.php:587 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" msgid "Inactive" -msgstr "غیرفعال" +msgstr "" -#: acf.php:448 -#, php-format -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "غیرفعال (%s)" -msgstr[1] "غیرفعال (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "" -#: includes/acf-field-functions.php:828 includes/admin/admin-field-group.php:178 -msgid "(no label)" -msgstr "(بدون برچسب)" +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" -#: includes/acf-field-group-functions.php:816 -#: includes/admin/admin-field-group.php:180 -msgid "copy" -msgstr "کپی" +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" -#: includes/admin/admin-field-group.php:86 includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -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/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "گروه زمینه حذف شد." +#: includes/fields/class-acf-field-user.php:537 +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/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "گروه زمینه انتشار یافت." +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "" -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "گروه زمینه ذخیره شد." +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "گروه زمینه ارسال شد." +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "گروه زمینه برنامه ریزی انتشار پیدا کرده برای." +#: includes/fields/class-acf-field-post_object.php:669 +msgid "%1$s must have term %2$s." +msgid_plural "%1$s must have one of the following terms: %2$s" +msgstr[0] "" -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "پیش نویش گروه زمینه بروز شد." +#: includes/fields/class-acf-field-post_object.php:653 +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/admin/admin-field-group.php:171 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "کلمه متنی \"field_\" نباید در ابتدای نام فیلد استفاده شود" +#: includes/fields/class-acf-field-post_object.php:644 +msgid "%1$s must have a valid post ID." +msgstr "" -#: includes/admin/admin-field-group.php:172 -msgid "This field cannot be moved until its changes have been saved" -msgstr "این زمینه قبل از اینکه ذخیره شود نمی تواند جابجا شود" +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" -#: includes/admin/admin-field-group.php:173 -msgid "Field group title is required" -msgstr "عنوان گروه زمینه ضروری است" +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" -#: includes/admin/admin-field-group.php:174 -msgid "Move to trash. Are you sure?" -msgstr "انتقال به زباله دان، آیا شما مطمئنید؟" +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "فعال کردن شفافیت" -#: includes/admin/admin-field-group.php:175 -msgid "No toggle fields available" -msgstr "هیچ زمینه شرط پذیری موجود نیست" +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "آرایه RGBA " -#: includes/admin/admin-field-group.php:176 -msgid "Move Custom Field" -msgstr "جابجایی زمینه دلخواه" +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "رشته RGBA " -#: includes/admin/admin-field-group.php:177 -msgid "Checked" -msgstr "انتخاب شده" +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "کد هگز RGBA " -#: includes/admin/admin-field-group.php:179 -msgid "(this field)" -msgstr "(این گزینه)" +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "گالری(در نسخه پیشرفته)" -#: includes/admin/admin-field-group.php:181 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3862 -msgid "or" -msgstr "یا" +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "کلون(در نسخه پیشرفته)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "محتوای انعطاف پذیر(در نسخه پیشرفته)" #: includes/admin/admin-field-group.php:182 -msgid "Null" -msgstr "خالی (null)" +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "تکرار کننده(در نسخه پیشرفته)" -#: includes/admin/admin-field-group.php:221 -msgid "Location" -msgstr "مکان" - -#: includes/admin/admin-field-group.php:222 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "تنظیمات" - -#: includes/admin/admin-field-group.php:372 -msgid "Field Keys" -msgstr "کایدهای زمینه" - -#: includes/admin/admin-field-group.php:402 -#: includes/admin/views/field-group-options.php:9 +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" msgid "Active" msgstr "فعال" -#: includes/admin/admin-field-group.php:771 -msgid "Move Complete." -msgstr "انتقال کامل شد." +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "نشانی ایمیل %s معتبر نیست" -#: includes/admin/admin-field-group.php:772 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "زمینه %s اکنون در گروه زمینه %s قرار گرفته است" +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "مقدار رنگ" -#: includes/admin/admin-field-group.php:773 -msgid "Close Window" -msgstr "بستن زمینه" +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "انتخاب رنگ پیش‌فرض" -#: includes/admin/admin-field-group.php:814 -msgid "Please select the destination for this field" -msgstr "مقصد انتقال این زمینه را مشخص کنید" +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "پاک کردن رنگ" -#: includes/admin/admin-field-group.php:821 -msgid "Move Field" -msgstr "جابجایی زمینه" +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "بلوک‌ها" -#: includes/admin/admin-field-groups.php:89 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "فعال (%s)" -msgstr[1] "فعال (%s)" +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "گزینه ها" -#: includes/admin/admin-field-groups.php:156 -#, php-format -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s گروه زمینه تکثیر شدند." -msgstr[1] "گروه زمینه تکثیر شد." +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "کاربران" -#: includes/admin/admin-field-groups.php:243 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "%s گروه زمینه همگام سازی شد." -msgstr[1] "گروه زمینه همگام سازی شد." +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "آیتم‌های منو" -#: includes/admin/admin-field-groups.php:414 -#: includes/admin/admin-field-groups.php:577 -msgid "Sync available" -msgstr "هماهنگ سازی موجود است" +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "ابزارک‌ها" -#: includes/admin/admin-field-groups.php:527 includes/forms/form-front.php:38 -#: pro/fields/class-acf-field-gallery.php:372 -msgid "Title" -msgstr "عنوان" +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "پیوست‌ها" -#: includes/admin/admin-field-groups.php:528 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:399 -msgid "Description" -msgstr "توضیحات" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "طبقه‌بندی‌ها" -#: includes/admin/admin-field-groups.php:529 -msgid "Status" -msgstr "وضعیت" +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "نوشته ها" -#. Description of the plugin/theme -#: includes/admin/admin-field-groups.php:626 -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "وردپرس را با زمینه‌های حرفه‌ای و قدرتمند سفارشی کنید." +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "گروه فیلد JSON (جدیدتر)" -#: includes/admin/admin-field-groups.php:628 includes/admin/settings-info.php:76 -#: pro/admin/views/html-settings-updates.php:107 -msgid "Changelog" -msgstr "تغییرات" +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "گروه فیلد اصلی" -#: includes/admin/admin-field-groups.php:633 -#, php-format -msgid "See what's new in version %s." -msgstr "مشاهده موارد جدید نسخه %s." +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "آخرین به‌روزرسانی: %s" -#: includes/admin/admin-field-groups.php:636 -msgid "Resources" -msgstr "منابع" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" -#: includes/admin/admin-field-groups.php:638 -msgid "Website" -msgstr "وب سایت" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "شناسه گروه فیلد نامعتبر می باشد." -#: includes/admin/admin-field-groups.php:639 -msgid "Documentation" -msgstr "مستندات" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "پارامتر(ها) گروه فیلد نامعتبر است" -#: includes/admin/admin-field-groups.php:640 -msgid "Support" -msgstr "پشتیبانی" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "در انتظار ذخیره" -#: includes/admin/admin-field-groups.php:642 -#: includes/admin/views/settings-info.php:84 -msgid "Pro" -msgstr "پیشرفته" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "ذخیره شده" -#: includes/admin/admin-field-groups.php:647 -#, php-format -msgid "Thank you for creating with ACF." -msgstr "با تشکر از شما برای استفاده از ACF." +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "درون‌ریزی" -#: includes/admin/admin-field-groups.php:686 -msgid "Duplicate this item" -msgstr "تکثیر این زمینه" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "تغییرات مرور شد" -#: includes/admin/admin-field-groups.php:686 -#: includes/admin/admin-field-groups.php:702 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Duplicate" -msgstr "تکثیر" +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "قرار گرفته در: %s" -#: includes/admin/admin-field-groups.php:719 -#: includes/fields/class-acf-field-google-map.php:165 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Search" -msgstr "جستجو" +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "قرار گرفته در پلاگین: %s" -#: includes/admin/admin-field-groups.php:778 -#, php-format -msgid "Select %s" -msgstr "انتخاب %s" +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "قرار گرفته در قالب: %s" -#: includes/admin/admin-field-groups.php:786 -msgid "Synchronise field group" -msgstr "هماهنگ سازی گروه زمینه" +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "مختلف" -#: includes/admin/admin-field-groups.php:786 -#: includes/admin/admin-field-groups.php:816 -msgid "Sync" -msgstr "هماهنگ" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "همگام‌سازی تغییرات" -#: includes/admin/admin-field-groups.php:798 -msgid "Apply" -msgstr "اعمال" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "" -#: includes/admin/admin-field-groups.php:816 -msgid "Bulk Actions" -msgstr "اعمال گروهی" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "" -#: includes/admin/admin-tools.php:116 includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "ابزارها" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "بازدید وب سایت" -#: includes/admin/admin-upgrade.php:47 includes/admin/admin-upgrade.php:94 -#: includes/admin/admin-upgrade.php:156 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "به‌روزرسانی پایگاه داده" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "نمایش جزییات" -#: includes/admin/admin-upgrade.php:180 -msgid "Review sites & upgrade" -msgstr "بازبینی و به‌روزرسانی سایت‌ها" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "نگارش %s" -#: includes/admin/admin.php:54 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "زمینه‌های سفارشی" - -#: includes/admin/settings-info.php:50 -msgid "Info" +#: includes/admin/admin.php:169 +msgid "Information" msgstr "اطلاعات" -#: includes/admin/settings-info.php:75 -msgid "What's New" -msgstr "چه چیز جدید است" - -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "برون بری گروه های زمینه" - -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "تولید کد PHP" - -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "گروه زمینه ای انتخاب نشده است" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "%s گروه زمینه برون‌بری شد." -msgstr[1] "۱ گروه زمینه برون‌بری شد." - -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "انتخاب گروه های زمینه" - -#: includes/admin/tools/class-acf-admin-tool-export.php:336 +#: includes/admin/admin.php:160 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." msgstr "" -"گروه زمینه‌هایی که مایل به تهیه خروجی آنها هستید را انتخاب کنید و در ادامه روش " -"خروجی را نیز مشخص کنید. از دکمه دانلود برای خروجی فایل .json برای وارد کردن در " -"یک سایت دیگر که این افزونه نصب شده است استفاده کنید. از دکمه تولید می توانید " -"برای ساخت کد PHP برای قراردادن در قالب خود استفاده کنید." -#: includes/admin/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "خروجی فایل" - -#: includes/admin/tools/class-acf-admin-tool-export.php:414 +#: includes/admin/admin.php:156 msgid "" -"The following code can be used to register a local version of the selected " -"field group(s). A local field group 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." +"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 "" -"این کد می تواند برای ثبت یک نسخه محلی (لوکال)از گروه زمینه‌های انتخاب شده " -"استفاده شود. یک نسخه محلی فواید زیادی دارد، مثلا سرعت لود بالاتر، کنترل نسخه و " -"پویاسازی زمینه ها و تنظیماتشان. به راحتی می توانید کد زیر را در فایل function." -"php خود کپی کنید و یا از یک فایل دیگر انرا فراخوانی نمایید." -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "درج در حافظه موقت" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "کپی شد" - -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "وارد کردن گروه های زمینه" - -#: includes/admin/tools/class-acf-admin-tool-import.php:47 +#: includes/admin/admin.php:152 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When you " -"click the import button below, ACF will import the field groups." +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." msgstr "" -"فایل JSON ای که قبلا از این افزونه خروجی گرفته اید را انتخاب کنید تا وارد شود. " -"زمانی که دکمه وارد کردن را در زیر کلیک کنید، سیستم اقدام به ساخت گروه های زمینه " -"خواهد نمود." -#: includes/admin/tools/class-acf-admin-tool-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "انتخاب پرونده" +#: includes/admin/admin.php:149 +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/tools/class-acf-admin-tool-import.php:62 -msgid "Import File" -msgstr "وارد کردن فایل" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "کمک و پشتیبانی" -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:170 -msgid "No file selected" -msgstr "هیچ پرونده ای انتخاب نشده" +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -msgid "Error uploading file. Please try again" -msgstr "خطا در آپلود فایل. لطفا مجدد بررسی کنید" +#: includes/admin/admin.php:134 +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/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "نوع فایل صحیح نیست" +#: includes/admin/admin.php:132 +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/tools/class-acf-admin-tool-import.php:107 -msgid "Import file empty" -msgstr "فایل وارد شده خالی است" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "مرور کلی" -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "%s گروه زمینه درون‌ریزی شد" -msgstr[1] "۱ گروه زمینه درون‌ریزی شد" +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "" -#: includes/admin/views/field-group-field-conditional-logic.php:25 +#: 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:361 +msgid "Error loading field." +msgstr "خطا در بارگزاری زمینه" + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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 "درحال نمایش سمت کاربر" + +#: 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:365 +msgid "%s value is required" +msgstr "مقدار %s لازم است" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "نمایش این گروه فیلد اگر" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 msgid "Conditional Logic" msgstr "منطق شرطی" -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "نمایش این گروه زمینه اگر" - -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "و" -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "افزودن گروه قانون" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON های لوکال" -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "گرفتن و کشیدن برای مرتب سازی" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "فیلد کپی" -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "ویرایش زمینه" - -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:152 -#: includes/fields/class-acf-field-image.php:139 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:359 -msgid "Edit" -msgstr "ویرایش" - -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "تکثیر زمینه" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "انتقال زمینه ها به گروه دیگر" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "انتقال" - -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "حذف زمینه" - -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:556 -msgid "Delete" -msgstr "حذف" - -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "برچسب زمینه" - -#: includes/admin/views/field-group-field.php:66 -msgid "This is the name which will appear on the EDIT page" -msgstr "این نامی است که در صفحه \"ویرایش\" نمایش داده خواهد شد" - -#: includes/admin/views/field-group-field.php:75 -msgid "Field Name" -msgstr "نام زمینه" - -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "تک کلمه، بدون فاصله. خط زیرین و خط تیره ها مجازاند" - -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "نوع زمینه" - -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "دستورالعمل ها" - -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند" - -#: includes/admin/views/field-group-field.php:106 -msgid "Required?" -msgstr "لازم است؟" - -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "مشخصات پوشش فیلد" - -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "عرض" - -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "کلاس" - -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "شناسه" - -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "بستن زمینه" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "ترتیب" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:582 -msgid "Label" -msgstr "برچسب زمینه" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:939 -#: pro/fields/class-acf-field-flexible-content.php:596 -msgid "Name" -msgstr "نام" - -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "کلید" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "نوع زمینه" - -#: includes/admin/views/field-group-fields.php:14 +#: includes/admin/views/html-notice-upgrade.php:31 msgid "" -"No fields. Click the + Add Field button to create your first " -"field." +"Please also check all premium add-ons (%s) are updated to the latest version." msgstr "" -"هیچ زمینه ای وجود ندارد. روی دکمه+ افزودن زمینه کلیک کنید تا " -"اولین زمینه خود را بسازید." +"همچنین لطفا همه افزونه‌های پولی (%s) را بررسی کنید که به نسخه آخر بروز شده " +"باشند." -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ افزودن زمینه" - -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "قوانین" - -#: includes/admin/views/field-group-locations.php:10 +#: includes/admin/views/html-notice-upgrade.php:29 msgid "" -"Create a set of rules to determine which edit screens will use these advanced " -"custom fields" +"This version contains improvements to your database and requires an upgrade." +msgstr "این نسخه شامل بهبودهایی در پایگاه داده است و نیاز به ارتقا دارد." + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -"مجموعه ای از قوانین را بسازید تا مشخص کنید در کدام صفحه ویرایش، این زمینه‌های " -"سفارشی سفارشی نمایش داده شوند" -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "شیوه نمایش" +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "به روزرسانی دیتابیس لازم است" -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "استاندارد (دارای متاباکس)" +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "برگه تنظیمات" -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "بدون متاباکس" +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "گالری" -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "موقعیت" +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "محتوای انعطاف پذیر" -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "بالا (بعد از عنوان)" +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "فیلد تکرار کننده" -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "معمولی (بعد از ادیتور متن)" +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "بازگشت به همه ابزارها" -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "کنار" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "مکان برچسب" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "سمت بالا" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "سمت چپ" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "مکان دستورالعمل ها" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "زیر برچسب ها" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "زیر زمینه ها" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "شماره ترتیب." - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "گروه ها با شماره ترتیب کمتر اول دیده می شوند" - -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "نمایش لیست گروه زمینه" - -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "پیوند یکتا" - -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "ویرایش گر محتوا(ادیتور اصلی)" - -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "چکیده" - -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "گفتگو" - -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "دیدگاه ها" - -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "بازنگری ها" - -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "نامک" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "نویسنده" - -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "فرمت" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "صفات برگه" - -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:607 -msgid "Featured Image" -msgstr "تصویر شاخص" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "دسته ها" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "برچسب ها" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "ارسال بازتاب ها" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "مخفی کردن در صفحه" - -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "انتخاب آیتم ها برای پنهان کردن آن ها از صفحه ویرایش." - -#: includes/admin/views/field-group-options.php:129 +#: includes/admin/views/field-group-options.php:161 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/html-admin-page-upgrade-network.php:26 -#, php-format -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update and " -"then click %s." -msgstr "این سایت ها نیاز به به روز رسانی دارند برای انجام %s کلیک کنید." +#: includes/admin/views/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "انتخاب آیتم ها برای پنهان کردن آن ها از صفحه ویرایش." -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "ارتقاء سایت" +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "مخفی کردن در صفحه" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "ارسال بازتاب ها" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "برچسب ها" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "دسته ها" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "صفات برگه" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "فرمت" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "نویسنده" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "نامک" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "بازنگری ها" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "دیدگاه ها" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "گفتگو" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "چکیده" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "ویرایش گر محتوا(ادیتور اصلی)" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "پیوند یکتا" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "نمایش لیست گروه فیلد " + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "گروه ها با شماره ترتیب کمتر اول دیده می شوند" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "شماره ترتیب." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "زیر فیلد ها" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "زیر برچسب ها" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "مکان دستورالعمل ها" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "مکان برچسب" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "کنار" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "معمولی (بعد از ادیتور متن)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "بالا (بعد از عنوان)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "موقعیت" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "بدون متاباکس" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "استاندارد (دارای متاباکس)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "شیوه نمایش" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "نوع " + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "کلید" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "ترتیب" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "بستن فیلد " + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "شناسه" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "کلاس" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "عرض" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "مشخصات پوشش فیلد" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "دستورالعمل ها" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "نوع فیلد " + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "تک کلمه، بدون فاصله. خط زیرین و خط تیره ها مجازاند" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "نام فیلد " + +#: includes/admin/views/field-group-field.php:122 +msgid "This is the name which will appear on the EDIT page" +msgstr "این نامی است که در صفحه \"ویرایش\" نمایش داده خواهد شد" + +#: includes/admin/views/field-group-field.php:121 +msgid "Field Label" +msgstr "برچسب فیلد " + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "حذف" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "حذف زمینه" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "انتقال" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "انتقال زمینه ها به گروه دیگر" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "تکثیر زمینه" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "ویرایش زمینه" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "گرفتن و کشیدن برای مرتب سازی" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "نمایش این گروه زمینه اگر" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "به‌روزرسانی موجود نیست." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "ارتقای پایگاه داده کامل شد. تغییرات جدید را ببینید" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "در حال خواندن مراحل به روزرسانی..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "ارتقا با خطا مواجه شد." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "ارتقا کامل شد." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "به روز رسانی داده ها به نسحه %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "لطفا حداقل یک سایت برای ارتقا انتخاب کنید." + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"به روزرسانی دیتابیس انجام شد. بازگشت به پیشخوان شبکه" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "سایت به روز است" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "" #: includes/admin/views/html-admin-page-upgrade-network.php:36 #: includes/admin/views/html-admin-page-upgrade-network.php:47 msgid "Site" msgstr "سایت" -#: includes/admin/views/html-admin-page-upgrade-network.php:74 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "سایت نیاز به به‌روزرسانی از %s به %s دارد" +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "ارتقاء سایت" -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "سایت به روز است" - -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -msgid "Database Upgrade complete. Return to network dashboard" -msgstr "به روزرسانی دیتابیس انجام شد. بازگشت به پیشخوان شبکه" - -#: includes/admin/views/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "لطفا حداقل یک سایت برای ارتقا انتخاب کنید." - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:26 msgid "" -"It is strongly recommended that you backup your database before proceeding. Are " -"you sure you wish to run the updater now?" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "این سایت ها نیاز به به روز رسانی دارند برای انجام %s کلیک کنید." + +#: includes/admin/views/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "افزودن گروه قانون" + +#: includes/admin/views/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/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "به روز رسانی داده ها به نسحه %s" +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "قوانین" -#: includes/admin/views/html-admin-page-upgrade-network.php:167 -msgid "Upgrade complete." -msgstr "ارتقا کامل شد." +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "کپی شد" -#: includes/admin/views/html-admin-page-upgrade-network.php:176 -#: includes/admin/views/html-admin-page-upgrade-network.php:185 -#: includes/admin/views/html-admin-page-upgrade.php:78 -#: includes/admin/views/html-admin-page-upgrade.php:87 -msgid "Upgrade failed." -msgstr "ارتقا با خطا مواجه شد." +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "درج در حافظه موقت" -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "در حال خواندن مراحل به روزرسانی..." +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"این کد می تواند برای ثبت یک نسخه محلی (لوکال)از گروه زمینه‌های انتخاب شده " +"استفاده شود. یک نسخه محلی فواید زیادی دارد، مثلا سرعت لود بالاتر، کنترل نسخه " +"و پویاسازی زمینه ها و تنظیماتشان. به راحتی می توانید کد زیر را در فایل " +"function.php خود کپی کنید و یا از یک فایل دیگر انرا فراخوانی نمایید." -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "ارتقای پایگاه داده کامل شد. تغییرات جدید را ببینید" +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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/views/html-admin-page-upgrade.php:116 -#: includes/ajax/class-acf-ajax-upgrade.php:33 -msgid "No updates available." -msgstr "به‌روزرسانی موجود نیست." +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "انتخاب گروه های زمینه" +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "%s گروه زمینه برون‌بری شد." + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "%s گروه زمینه درون‌ریزی شد" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "فایل وارد شده خالی است" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "نوع فایل صحیح نیست" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "خطا در آپلود فایل. لطفا مجدد بررسی کنید" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "وارد کردن گروه های زمینه" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "هماهنگ" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "انتخاب %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "تکثیر" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "تکثیر این زمینه" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "توضیحات" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "هماهنگ سازی موجود است" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s گروه زمینه همگام سازی شد." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s گروه زمینه تکثیر شدند." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "فعال (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "به‌روزرسانی پایگاه داده" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "زمینه‌های سفارشی" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "جابجایی زمینه" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "مقصد انتقال این زمینه را مشخص کنید" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "بستن زمینه" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "انتقال کامل شد." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "فعال" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "کایدهای زمینه" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "تنظیمات" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "مکان" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "خالی (null)" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "کپی" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(این گزینه)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "انتخاب شده" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "جابجایی زمینه دلخواه" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "هیچ زمینه شرط پذیری موجود نیست" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "عنوان گروه زمینه ضروری است" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" +msgstr "این زمینه قبل از اینکه ذخیره شود نمی تواند جابجا شود" + +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "کلمه متنی \"field_\" نباید در ابتدای نام فیلد استفاده شود" + +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "پیش نویش گروه زمینه بروز شد." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "گروه زمینه برنامه ریزی انتشار پیدا کرده برای." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "گروه زمینه ارسال شد." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "گروه زمینه ذخیره شد." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "گروه زمینه انتشار یافت." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "گروه زمینه حذف شد." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "گروه زمینه بروز شد." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 #: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "بازگشت به همه ابزارها" +msgid "Tools" +msgstr "ابزارها" -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "نمایش این گروه زمینه اگر" +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "برابر نشود با" -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "زمینه تکرار کننده" +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "برابر شود با" -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "محتوای انعطاف پذیر" +#: includes/locations.php:102 +msgid "Forms" +msgstr "فرم ها" -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "گالری" +#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "برگه" -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:26 -msgid "Options Page" -msgstr "برگه تنظیمات" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "نوشته" -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "به روزرسانی دیتابیس لازم است" +#: includes/fields.php:358 +msgid "jQuery" +msgstr "جی کوئری" -#: includes/admin/views/html-notice-upgrade.php:22 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "از شما برای بروزرسانی به آخرین نسخه %s v%s ممنون هستیم!" +#: includes/fields.php:357 +msgid "Relational" +msgstr "رابطه" -#: includes/admin/views/html-notice-upgrade.php:22 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "این نسخه شامل بهبودهایی در پایگاه داده است و نیاز به ارتقا دارد." - -#: includes/admin/views/html-notice-upgrade.php:24 -#, php-format -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"همچنین لطفا همه افزونه‌های پولی (%s) را بررسی کنید که به نسخه آخر بروز شده باشند." - -#: includes/admin/views/settings-addons.php:3 -msgid "Add-ons" -msgstr "افزودنی ها" - -#: includes/admin/views/settings-addons.php:17 -msgid "Download & Install" -msgstr "دانلود و نصب" - -#: includes/admin/views/settings-addons.php:36 -msgid "Installed" -msgstr "نصب شده" - -#: includes/admin/views/settings-info.php:3 -msgid "Welcome to Advanced Custom Fields" -msgstr "به افزونه زمینه‌های سفارشی پیشرفته خوش آمدید" - -#: includes/admin/views/settings-info.php:4 -#, php-format -msgid "" -"Thank you for updating! ACF %s is bigger and better than ever before. We hope " -"you like it." -msgstr "" -"از اینکه به روزرسانی کردید متشکریم! افزونه زمینه دلخواه پیشرفته %s بزرگتر و " -"بهتر از قبل شده است. امیدواریم لذت ببرید." - -#: includes/admin/views/settings-info.php:15 -msgid "A Smoother Experience" -msgstr "یک تجربه راحتتر" - -#: includes/admin/views/settings-info.php:19 -msgid "Improved Usability" -msgstr "کاربری بهینه شده" - -#: includes/admin/views/settings-info.php:20 -msgid "" -"Including the popular Select2 library has improved both usability and speed " -"across a number of field types including post object, page link, taxonomy and " -"select." -msgstr "" -"استفاده از کتابخانه محبوب Select2 باعث سرعت در عملکرد و کاربری بهتر در انواع " -"زمینه هاشامل آبجکت نوشته، پیوند(لینک) صفحه ، طبقه بندی و زمینه‌های " -"انتخاب(Select) شده است." - -#: includes/admin/views/settings-info.php:24 -msgid "Improved Design" -msgstr "طراحی بهینه شده" - -#: includes/admin/views/settings-info.php:25 -msgid "" -"Many fields have undergone a visual refresh to make ACF look better than ever! " -"Noticeable changes are seen on the gallery, relationship and oEmbed (new) " -"fields!" -msgstr "" -"بسیاری از زمینه ها از نظر ظاهری باز طراحی شدند تا این افزونه از قبل بهتر شده " -"باشد. تغییرات چشم گیر در گالری و ارتباط و زمینه جدید به نام oEmbed صورت گرفته " -"است!" - -#: includes/admin/views/settings-info.php:29 -msgid "Improved Data" -msgstr "داده ها بهینه شده اند" - -#: includes/admin/views/settings-info.php:30 -msgid "" -"Redesigning the data architecture has allowed sub fields to live independently " -"from their parents. This allows you to drag and drop fields in and out of " -"parent fields!" -msgstr "" -"بازطراحی معماری داده ها این اجازه را به زمینه‌های زیرمجموعه داده است که بدون " -"زمینه‌های والد باقی بمانند. این به شما کمک می کند که زمینه ها را از یک فیلد اصلی " -"خارج یا به آن وارد نمایید !" - -#: includes/admin/views/settings-info.php:38 -msgid "Goodbye Add-ons. Hello PRO" -msgstr "خداحافظ افزودنی ها و سلام به نسخه حرفه ای" - -#: includes/admin/views/settings-info.php:41 -msgid "Introducing ACF PRO" -msgstr "معرفی نسخه حرفه ای" - -#: includes/admin/views/settings-info.php:42 -msgid "" -"We're changing the way premium functionality is delivered in an exciting way!" -msgstr "ما در حال تغییر راه عملکردهای پولی افزونه به شیوه ای هیجان انگیز هستیم!" - -#: includes/admin/views/settings-info.php:43 -#, php-format -msgid "" -"All 4 premium add-ons have been combined into a new Pro version " -"of ACF. With both personal and developer licenses available, premium " -"functionality is more affordable and accessible than ever before!" -msgstr "" -"هر چهار افزدونی پولی یکی شده و تحت عنوان نسخه حرفه ای (Pro) " -"از افزونه زمینه‌های سفارشی معرفی شده اند. دو نسخه شخصی و توسعه دهنده موجود است " -"که در هر دو این امکانات بهتر و دسترس تر از قبل موجود است!" - -#: includes/admin/views/settings-info.php:47 -msgid "Powerful Features" -msgstr "امکانات قدرتمند" - -#: includes/admin/views/settings-info.php:48 -msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content " -"layouts, a beautiful gallery field and the ability to create extra admin " -"options pages!" -msgstr "" -"نسخه حرفه دارای امکانات قدرتمندی نظیر داده های تکرارپذیر، محتوای منعطف، یک " -"زمینه گالری زیبا و امکان ساخت صفحات تنظیمات می باشد !" - -#: includes/admin/views/settings-info.php:49 -#, php-format -msgid "Read more about ACF PRO features." -msgstr "اطلاعات بیشتر در امکانات نسخه حرفه ای." - -#: includes/admin/views/settings-info.php:53 -msgid "Easy Upgrading" -msgstr "به روزرسانی آسان" - -#: includes/admin/views/settings-info.php:54 -msgid "" -"Upgrading to ACF PRO is easy. Simply purchase a license online and download the " -"plugin!" -msgstr "" -"ارتقا به نسخه حرفه‌ای آسان است. به سادگی لایسنس را بخرید و افزونه را دانلود کنید!" - -#: includes/admin/views/settings-info.php:55 -#, php-format -msgid "" -"We also wrote an upgrade guide to answer any questions, but " -"if you do have one, please contact our support team via the help " -"desk." -msgstr "" -"همچنین در اینجا راهنمایی برای ارتقا وجود دارد که به سوالات " -"شما پاسخ می‌دهد. لطفا از طریق میز راهنما با تیم پشتیبانی تماس " -"حاصل کنید." - -#: includes/admin/views/settings-info.php:64 -msgid "New Features" -msgstr "ویژگی‌های جدید" - -#: includes/admin/views/settings-info.php:69 -msgid "Link Field" -msgstr "زمینه پیوند (Link)" - -#: includes/admin/views/settings-info.php:70 -msgid "" -"The Link field provides a simple way to select or define a link (url, title, " -"target)." -msgstr "" -"با استفاده از زمینه پیوند میتوانید به سادگی یک روش برای انتخاب یا تعریف یک " -"پیوند (url-title-target) ایجاد کنید." - -#: includes/admin/views/settings-info.php:74 -msgid "Group Field" -msgstr "گروه زمینه" - -#: includes/admin/views/settings-info.php:75 -msgid "The Group field provides a simple way to create a group of fields." -msgstr "با استفاده از گروه زمینه می‌توانید گروهی از زمینه‌ها را ایجاد کنید." - -#: includes/admin/views/settings-info.php:79 -msgid "oEmbed Field" -msgstr "زمینه oEmbed" - -#: includes/admin/views/settings-info.php:80 -msgid "" -"The oEmbed field allows an easy way to embed videos, images, tweets, audio, and " -"other content." -msgstr "" -"با استفاده از زمینه oEmbed میتوانید به سادگی ویدیو، تصویر، توییت، صدا و " -"محتواهای دیگر را جاسازی کنید." - -#: includes/admin/views/settings-info.php:84 -msgid "Clone Field" -msgstr "فیلد کپی" - -#: includes/admin/views/settings-info.php:85 -msgid "The clone field allows you to select and display existing fields." -msgstr "" -"با استفاده از فیلد کپی میتوانید فیلدهای موجود را انتخاب کنید یا نمایش دهید." - -#: includes/admin/views/settings-info.php:89 -msgid "More AJAX" -msgstr "ایجکس بیشتر" - -#: includes/admin/views/settings-info.php:90 -msgid "More fields use AJAX powered search to speed up page loading." -msgstr "" -"بیشتر زمینه‌ها از قدرت AJAX برای جستجو استفاده می‌کند تا سرعت بارگذاری را افزایش " -"دهند." - -#: includes/admin/views/settings-info.php:94 -msgid "Local JSON" -msgstr "JSON های لوکال" - -#: includes/admin/views/settings-info.php:95 -msgid "" -"New auto export to JSON feature improves speed and allows for syncronisation." -msgstr "" -"ویژگی جدید برون‌بری خودکار به فایل JSON سرعت را بهبود داده و همگام سازی را فراهم " -"می‌کند." - -#: includes/admin/views/settings-info.php:99 -msgid "Easy Import / Export" -msgstr "درون‌ریزی یا برون‌بری آسان" - -#: includes/admin/views/settings-info.php:100 -msgid "Both import and export can easily be done through a new tools page." -msgstr "درون ریزی یا برون بری به سادگی از طریق یک ابزار جدید انجام می‌شود." - -#: includes/admin/views/settings-info.php:104 -msgid "New Form Locations" -msgstr "مکان جدید فرم‌ها" - -#: includes/admin/views/settings-info.php:105 -msgid "" -"Fields can now be mapped to menus, menu items, comments, widgets and all user " -"forms!" -msgstr "" -"زمینه‌ها اکنون می‌توانند به فهرست‌ها، موارد فهرست، دیدگاه‌ها، ابزارک‌ها و تمامی " -"فرم‌های مرتبط با کاربر ارجاع داده شوند!" - -#: includes/admin/views/settings-info.php:109 -msgid "More Customization" -msgstr "سفارشی سازی بیشتر" - -#: includes/admin/views/settings-info.php:110 -msgid "" -"New PHP (and JS) actions and filters have been added to allow for more " -"customization." -msgstr "اکشن‌ها و فیلترهای جدید PHP (و JS) برای سفارشی سازی بیشتر اضافه شد‌ه‌اند." - -#: includes/admin/views/settings-info.php:114 -msgid "Fresh UI" -msgstr "رابط کاربری تازه" - -#: includes/admin/views/settings-info.php:115 -msgid "" -"The entire plugin has had a design refresh including new field types, settings " -"and design!" -msgstr "تمامی افزونه با یک رابط کاربری جدید بروز شده است!" - -#: includes/admin/views/settings-info.php:119 -msgid "New Settings" -msgstr "تنظیمات جدید" - -#: includes/admin/views/settings-info.php:120 -msgid "" -"Field group settings have been added for Active, Label Placement, Instructions " -"Placement and Description." -msgstr "" -"تنظیمات گروه زمینه برای مکان برچسب، راهنمای قرارگیری و توضیحات اضافه شده است." - -#: includes/admin/views/settings-info.php:124 -msgid "Better Front End Forms" -msgstr "فرم های سمت کاربر بهتر شده اند" - -#: includes/admin/views/settings-info.php:125 -msgid "" -"acf_form() can now create a new post on submission with lots of new settings." -msgstr "" -"تابع acf_form() اکنون میتوانید نوشته‌های جدید را همراه با تنظیمات بیشتر ثبت کند." - -#: includes/admin/views/settings-info.php:129 -msgid "Better Validation" -msgstr "خطایابی بهتر" - -#: includes/admin/views/settings-info.php:130 -msgid "Form validation is now done via PHP + AJAX in favour of only JS." -msgstr "اعتبارسنجی فرم‌ها اکنون از طریق PHP + AJAX صورت می‌گیرد." - -#: includes/admin/views/settings-info.php:134 -msgid "Moving Fields" -msgstr "جابجایی زمینه ها" - -#: includes/admin/views/settings-info.php:135 -msgid "" -"New field group functionality allows you to move a field between groups & " -"parents." -msgstr "" -"عملکرد جدید گروه زمینه اکنون اجازه می‌دهد تا یک زمینه را بین گروه‌ها و والدهای " -"مختلف جابجا کنید." - -#: includes/admin/views/settings-info.php:146 -#, php-format -msgid "We think you'll love the changes in %s." -msgstr "فکر می کنیم شما تغییرات در %s را دوست خواهید داشت." - -#: includes/api/api-helpers.php:1003 -msgid "Thumbnail" -msgstr "تصویر بندانگشتی" - -#: includes/api/api-helpers.php:1004 -msgid "Medium" -msgstr "متوسط" - -#: includes/api/api-helpers.php:1005 -msgid "Large" -msgstr "بزرگ" - -#: includes/api/api-helpers.php:1054 -msgid "Full Size" -msgstr "اندازه کامل" - -#: includes/api/api-helpers.php:1775 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(بدون عنوان)" - -#: includes/api/api-helpers.php:3783 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "عرض تصویر باید حداقل %d پیکسل باشد." - -#: includes/api/api-helpers.php:3788 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "عرض تصویر نباید از %d پیکسل بیشتر باشد." - -#: includes/api/api-helpers.php:3804 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "ارتفاع فایل باید حداقل %d پیکسل باشد." - -#: includes/api/api-helpers.php:3809 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "ارتفاع تصویر نباید از %d پیکسل بیشتر باشد." - -#: includes/api/api-helpers.php:3827 -#, php-format -msgid "File size must be at least %s." -msgstr "حجم فایل باید حداقل %s باشد." - -#: includes/api/api-helpers.php:3832 -#, php-format -msgid "File size must must not exceed %s." -msgstr "حجم فایل ها نباید از %s بیشتر باشد." - -#: includes/api/api-helpers.php:3866 -#, php-format -msgid "File type must be %s." -msgstr "نوع فایل باید %s باشد." - -#: includes/assets.php:168 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "اگر از صفحه جاری خارج شوید ، تغییرات شما ذخیره نخواهند شد" - -#: includes/assets.php:171 includes/fields/class-acf-field-select.php:259 -msgctxt "verb" -msgid "Select" +#: includes/fields.php:356 +msgid "Choice" msgstr "انتخاب" -#: includes/assets.php:172 -msgctxt "verb" -msgid "Edit" -msgstr "ویرایش" +#: includes/fields.php:354 +msgid "Basic" +msgstr "پایه" -#: includes/assets.php:173 +#: includes/fields.php:313 +msgid "Unknown" +msgstr "ناشناخته" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "محتوا" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "عنوان" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "ویرایش گروه زمینه" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "انتخاب کمتر از" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "انتخاب بیشتر از" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "مقدار کمتر از" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "مقدار بیشتر از" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "شامل می شود" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "مقدار الگوی" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 assets/build/js/acf-input.js:903 +#: assets/build/js/acf-input.js:1116 +msgid "Value is not equal to" +msgstr "مقدار برابر نیست با" + +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "مقدار برابر است با" + +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "بدون مقدار" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "هر نوع مقدار" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "لغو" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "اطمینان دارید؟" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d گزینه نیاز به بررسی دارد" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "یکی از گزینه ها نیاز به بررسی دارد" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "مشکل در اعتبار سنجی" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "اعتبار سنجی موفق بود" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "ممنوع" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "عدم نمایش جزئیات" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "نمایش جزئیات" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "بارگذاری شده در این نوشته" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 msgctxt "verb" msgid "Update" msgstr "بروزرسانی" -#: includes/assets.php:174 -msgid "Uploaded to this post" -msgstr "بارگذاری شده در این نوشته" +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "ویرایش" -#: includes/assets.php:175 -msgid "Expand Details" -msgstr "نمایش جزئیات" +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "اگر از صفحه جاری خارج شوید ، تغییرات شما ذخیره نخواهند شد" -#: includes/assets.php:176 -msgid "Collapse Details" -msgstr "عدم نمایش جزئیات" +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "نوع فایل باید %s باشد." -#: includes/assets.php:177 -msgid "Restricted" -msgstr "ممنوع" +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "یا" -#: includes/assets.php:178 includes/fields/class-acf-field-image.php:67 -msgid "All images" -msgstr "تمام تصاویر" +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "حجم فایل ها نباید از %s بیشتر باشد." -#: includes/assets.php:181 -msgid "Validation successful" -msgstr "اعتبار سنجی موفق بود" +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "حجم فایل باید حداقل %s باشد." -#: includes/assets.php:182 includes/validation.php:285 includes/validation.php:296 -msgid "Validation failed" -msgstr "مشکل در اعتبار سنجی" +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "ارتفاع تصویر نباید از %d پیکسل بیشتر باشد." -#: includes/assets.php:183 -msgid "1 field requires attention" -msgstr "یکی از گزینه ها نیاز به بررسی دارد" +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "ارتفاع فایل باید حداقل %d پیکسل باشد." -#: includes/assets.php:184 -#, php-format -msgid "%d fields require attention" -msgstr "%d گزینه نیاز به بررسی دارد" +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "عرض تصویر نباید از %d پیکسل بیشتر باشد." -#: includes/assets.php:187 -msgid "Are you sure?" -msgstr "اطمینان دارید؟" +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "عرض تصویر باید حداقل %d پیکسل باشد." -#: includes/assets.php:188 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "بله" +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(بدون عنوان)" -#: includes/assets.php:189 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "خیر" +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "اندازه کامل" -#: includes/assets.php:190 includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-image.php:141 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:360 -#: pro/fields/class-acf-field-gallery.php:549 -msgid "Remove" -msgstr "حذف" +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "بزرگ" -#: includes/assets.php:191 -msgid "Cancel" -msgstr "لغو" +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "متوسط" -#: includes/assets.php:194 -msgid "Has any value" -msgstr "هر نوع مقدار" +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "تصویر بندانگشتی" -#: includes/assets.php:195 -msgid "Has no value" -msgstr "بدون مقدار" +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(بدون برچسب)" -#: includes/assets.php:196 -msgid "Value is equal to" -msgstr "مقدار برابر است با" +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "تعیین ارتفاع باکس متن" -#: includes/assets.php:197 -msgid "Value is not equal to" -msgstr "مقدار برابر نیست با" +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "سطرها" -#: includes/assets.php:198 -msgid "Value matches pattern" -msgstr "مقدار الگوی" +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "جعبه متن (متن چند خطی)" -#: includes/assets.php:199 -msgid "Value contains" -msgstr "شامل می شود" - -#: includes/assets.php:200 -msgid "Value is greater than" -msgstr "مقدار بیشتر از" - -#: includes/assets.php:201 -msgid "Value is less than" -msgstr "مقدار کمتر از" - -#: includes/assets.php:202 -msgid "Selection is greater than" -msgstr "انتخاب بیشتر از" - -#: includes/assets.php:203 -msgid "Selection is less than" -msgstr "انتخاب کمتر از" - -#: includes/assets.php:206 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "ویرایش گروه زمینه" - -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "نوع زمینه وجود ندارد" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "ناشناخته" - -#: includes/fields.php:349 -msgid "Basic" -msgstr "پایه" - -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "محتوا" - -#: includes/fields.php:351 -msgid "Choice" -msgstr "انتخاب" - -#: includes/fields.php:352 -msgid "Relational" -msgstr "رابطه" - -#: includes/fields.php:353 -msgid "jQuery" -msgstr "جی کوئری" - -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:553 -#: pro/fields/class-acf-field-flexible-content.php:602 -#: pro/fields/class-acf-field-repeater.php:448 -msgid "Layout" -msgstr "چیدمان" - -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "آکاردئونی" - -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "باز" - -#: includes/fields/class-acf-field-accordion.php:100 -msgid "Display this accordion as open on page load." -msgstr "نمایش آکوردئون این به عنوان باز در بارگذاری صفحات." - -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "چند گسترش" - -#: includes/fields/class-acf-field-accordion.php:110 -msgid "Allow this accordion to open without closing others." -msgstr "اجازه دهید این آکوردئون بدون بستن دیگر آکاردئون‌ها باز شود." - -#: includes/fields/class-acf-field-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "نقطه پایانی" - -#: includes/fields/class-acf-field-accordion.php:120 -msgid "" -"Define an endpoint for the previous accordion to stop. This accordion will not " -"be visible." -msgstr "" -"یک نقطه پایانی برای توقف آکاردئون قبلی تعریف کنید. این آکاردئون مخفی خواهد بود." - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "گروه دکمه‌ها" - -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "انتخاب ها" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "هر انتخاب را در یک خط جدید وارد کنید." - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "For more control, you may specify both a value and label like this:" -msgstr "برای کنترل بیشتر، ممکن است هر دو مقدار و برچسب را مانند زیر مشخص کنید:" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "red : قرمز" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:513 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:784 -#: includes/fields/class-acf-field-user.php:393 -msgid "Allow Null?" -msgstr "آیا Null مجاز است؟" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:149 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:119 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:381 -msgid "Default Value" -msgstr "مقدار پیش فرض" - -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:150 -#: includes/fields/class-acf-field-text.php:120 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:382 -msgid "Appears when creating a new post" -msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود" - -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "افقی" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "عمودی" - -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-image.php:205 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:829 -msgid "Return Value" -msgstr "مقدار بازگشت" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:216 -#: includes/fields/class-acf-field-image.php:206 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -msgid "Specify the returned value on front end" -msgstr "مقدار برگشتی در نمایش نهایی را تعیین کنید" - -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "مقدار" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "هر دو (آرایه)" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Checkbox" -msgstr "جعبه انتخاب (Checkbox)" - -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "انتخاب همه" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "درج انتخاب جدید" - -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "اجازه دلخواه" - -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "اجازه درج مقادیر دلخواه" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "ذخیره دلخواه" - -#: includes/fields/class-acf-field-checkbox.php:369 -msgid "Save 'custom' values to the field's choices" -msgstr "ذخیره مقادیر دلخواه در انتخاب های زمینه" - -#: includes/fields/class-acf-field-checkbox.php:381 -#: includes/fields/class-acf-field-select.php:374 -msgid "Enter each default value on a new line" -msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید" - -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" -msgstr "انتخاب" - -#: includes/fields/class-acf-field-checkbox.php:404 +#: includes/fields/class-acf-field-checkbox.php:447 msgid "Prepend an extra checkbox to toggle all choices" msgstr "اضافه کردن چک باکس اضافی برای انتخاب همه" -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "انتخاب کننده رنگ" +#: includes/fields/class-acf-field-checkbox.php:409 +msgid "Save 'custom' values to the field's choices" +msgstr "ذخیره مقادیر دلخواه در انتخاب های زمینه" -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "پاکسازی" +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "اجازه درج مقادیر دلخواه" -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "پیش فرض" +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "درج انتخاب جدید" -#: includes/fields/class-acf-field-color_picker.php:70 +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "انتخاب همه" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "اجازه آدرس های آرشیو" + +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "بایگانی ها" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "پیوند (لینک) برگه/نوشته" + +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "افزودن" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "نام" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s اضافه شد" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s هم اکنون موجود است" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "کاربر قادر به اضافه کردن%s جدید نیست" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "شناسه(ID) آیتم(ترم)" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "به صورت آبجکت" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "خواندن مقادیر از ترم های نوشته" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "خواندن ترم ها" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "الصاق آیتم های انتخابی به نوشته" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "ذخیره ترم ها" + +#: includes/fields/class-acf-field-taxonomy.php:718 +msgid "Allow new terms to be created whilst editing" +msgstr "اجازه به ساخت آیتم‌ها(ترم‌ها) جدید در زمان ویرایش" + +#: includes/fields/class-acf-field-taxonomy.php:717 +msgid "Create Terms" +msgstr "ساخت آیتم (ترم)" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "دکمه‌های رادیویی" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "تک مقدار" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "چندین انتخاب" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "جعبه انتخاب (Checkbox)" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "چندین مقدار" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "ظاهر این زمینه را مشخص کنید" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "ظاهر" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "طبقه‌بندی را برای برون بری انتخاب کنید" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +msgid "Value must be equal to or lower than %d" +msgstr "مقدار باید کوچکتر یا مساوی %d باشد" + +#: includes/fields/class-acf-field-number.php:256 +msgid "Value must be equal to or higher than %d" +msgstr "مقدار باید مساوی یا بیشتر از %d باشد" + +#: includes/fields/class-acf-field-number.php:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "ذخیره مقادیر دیگر در انتخاب های زمینه" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "افزودن گزینه 'دیگر' برای ثبت مقادیر دلخواه" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "دکمه رادیویی" + +#: includes/fields/class-acf-field-accordion.php:105 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"یک نقطه پایانی برای توقف آکاردئون قبلی تعریف کنید. این آکاردئون مخفی خواهد " +"بود." + +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "اجازه دهید این آکوردئون بدون بستن دیگر آکاردئون‌ها باز شود." + +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "چند گسترش" + +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "نمایش آکوردئون این به عنوان باز در بارگذاری صفحات." + +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "باز" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "آکاردئونی" + +#: 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:217 +msgid "File ID" +msgstr "شناسه(ID) پرونده" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "آدرس پرونده" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "آرایه فایل" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "افزودن پرونده" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "هیچ پرونده ای انتخاب نشده" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "نام فایل" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "بروزرسانی پرونده" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "ویرایش پرونده" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "مقدار بازگشتی را انتخاب کنید" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "از ایجکس برای خواندن گزینه های استفاده شود؟" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "انتخاب" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "خطا در فراخوانی داده ها" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "جستجو …" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "بارگذاری نتایج بیشتر…" + +#: includes/fields/class-acf-field-select.php:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "شما فقط می توانید %d مورد را انتخاب کنید" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "فقط می توانید یک آیتم را انتخاب کنید" + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "لطفا %d کاراکتر را حذف کنید" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "یک حرف را حذف کنید" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "لطفا %d یا چند کاراکتر دیگر وارد کنید" + +#: includes/fields/class-acf-field-select.php:110 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "یک یا چند حرف وارد کنید" + +#: includes/fields/class-acf-field-select.php:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "مشابهی یافت نشد" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "انتخاب (Select)" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "شناسه کاربر" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "آبجکت کاربر" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "آرایه کاربر" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "تمام نقش های کاربر" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "تفکیک با نقش" + +#: includes/fields/class-acf-field-user.php:20 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:73 msgid "Select Color" msgstr "رنگ را انتخاب کنید" #: includes/fields/class-acf-field-color_picker.php:71 -msgid "Current Color" -msgstr "رنگ فعلی" +msgid "Default" +msgstr "پیش فرض" -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "تاریخ" +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "پاکسازی" -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "انجام شد" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "امروز" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "بعدی" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "قبلی" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "هفته" - -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "فرمت نمایش" - -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -msgid "The format displayed when editing a post" -msgstr "قالب در زمان نمایش نوشته دیده خواهد شد" - -#: includes/fields/class-acf-field-date_picker.php:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "دلخواه:" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "ذخیره قالب" - -#: includes/fields/class-acf-field-date_picker.php:198 -msgid "The format used when saving a value" -msgstr "قالب استفاده در زمان ذخیره مقدار" - -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:634 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:412 -msgid "Return Format" -msgstr "فرمت بازگشت" - -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "قالب توسط توابع پوسته نمایش داده خواهد شد" - -#: includes/fields/class-acf-field-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "اولین روز هفته" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "انتخاب کننده زمان و تاریخ" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "انتخاب زمان" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "زمان" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "ساعت" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "دقیقه" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "ثانیه" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "میلی ثانیه" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "میکرو ثانیه" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "منطقه زمانی" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "الان" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "انجام شد" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "انتخاب" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "صبح" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "صبح" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "عصر" +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "انتخاب کننده رنگ" #: includes/fields/class-acf-field-date_time_picker.php:85 msgctxt "Date Time Picker JS pmTextShort" msgid "P" msgstr "عصر" -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "پست الکترونیکی" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:128 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "نگهدارنده مکان متن" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:129 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "در داخل ورودی نمایش داده می شود" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:188 -#: includes/fields/class-acf-field-text.php:137 -msgid "Prepend" -msgstr "پیشوند" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:189 -#: includes/fields/class-acf-field-text.php:138 -msgid "Appears before the input" -msgstr "قبل از ورودی نمایش داده می شود" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:197 -#: includes/fields/class-acf-field-text.php:146 -msgid "Append" -msgstr "پسوند" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:198 -#: includes/fields/class-acf-field-text.php:147 -msgid "Appears after the input" -msgstr "بعد از ورودی نمایش داده می شود" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "پرونده" - -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "ویرایش پرونده" - -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "بروزرسانی پرونده" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "نام فایل" - -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:248 -#: includes/fields/class-acf-field-file.php:259 -#: includes/fields/class-acf-field-image.php:265 -#: includes/fields/class-acf-field-image.php:294 -#: pro/fields/class-acf-field-gallery.php:708 -#: pro/fields/class-acf-field-gallery.php:737 -msgid "File size" -msgstr "اندازه فایل" - -#: includes/fields/class-acf-field-file.php:170 -msgid "Add File" -msgstr "افزودن پرونده" - -#: includes/fields/class-acf-field-file.php:221 -msgid "File Array" -msgstr "آرایه فایل" - -#: includes/fields/class-acf-field-file.php:222 -msgid "File URL" -msgstr "آدرس پرونده" - -#: includes/fields/class-acf-field-file.php:223 -msgid "File ID" -msgstr "شناسه(ID) پرونده" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:230 -#: pro/fields/class-acf-field-gallery.php:673 -msgid "Library" -msgstr "کتابخانه" - -#: includes/fields/class-acf-field-file.php:231 -#: includes/fields/class-acf-field-image.php:231 -#: pro/fields/class-acf-field-gallery.php:674 -msgid "Limit the media library choice" -msgstr "محدود کردن انتخاب کتابخانه چندرسانه ای" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:236 -#: includes/locations/class-acf-location-attachment.php:101 -#: includes/locations/class-acf-location-comment.php:79 -#: includes/locations/class-acf-location-nav-menu.php:102 -#: includes/locations/class-acf-location-taxonomy.php:79 -#: includes/locations/class-acf-location-user-form.php:87 -#: includes/locations/class-acf-location-user-role.php:111 -#: includes/locations/class-acf-location-widget.php:83 -#: pro/fields/class-acf-field-gallery.php:679 -#: pro/locations/class-acf-location-block.php:79 -msgid "All" -msgstr "همه" - -#: includes/fields/class-acf-field-file.php:237 -#: includes/fields/class-acf-field-image.php:237 -#: pro/fields/class-acf-field-gallery.php:680 -msgid "Uploaded to post" -msgstr "بارگذاری شده در نوشته" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-image.php:244 -#: pro/fields/class-acf-field-gallery.php:687 -msgid "Minimum" -msgstr "کمترین" - -#: includes/fields/class-acf-field-file.php:245 -#: includes/fields/class-acf-field-file.php:256 -msgid "Restrict which files can be uploaded" -msgstr "محدودیت در آپلود فایل ها" - -#: includes/fields/class-acf-field-file.php:255 -#: includes/fields/class-acf-field-image.php:273 -#: pro/fields/class-acf-field-gallery.php:716 -msgid "Maximum" -msgstr "بیشترین" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:302 -#: pro/fields/class-acf-field-gallery.php:745 -msgid "Allowed file types" -msgstr "انواع مجاز فایل" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-image.php:303 -#: pro/fields/class-acf-field-gallery.php:746 -msgid "Comma separated list. Leave blank for all types" -msgstr "با کامای انگلیسی جدا کرده یا برای عدم محدودیت خالی بگذارید" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "نقشه گوگل" - -#: includes/fields/class-acf-field-google-map.php:59 -msgid "Sorry, this browser does not support geolocation" -msgstr "با عرض پوزش، این مرورگر از موقعیت یابی جغرافیایی پشتیبانی نمی کند" - -#: includes/fields/class-acf-field-google-map.php:166 -msgid "Clear location" -msgstr "حذف مکان" - -#: includes/fields/class-acf-field-google-map.php:167 -msgid "Find current location" -msgstr "پیدا کردن مکان فعلی" - -#: includes/fields/class-acf-field-google-map.php:170 -msgid "Search for address..." -msgstr "جستجو برای آدرس . . ." - -#: includes/fields/class-acf-field-google-map.php:200 -#: includes/fields/class-acf-field-google-map.php:211 -msgid "Center" -msgstr "مرکز" - -#: includes/fields/class-acf-field-google-map.php:201 -#: includes/fields/class-acf-field-google-map.php:212 -msgid "Center the initial map" -msgstr "نقشه اولیه را وسط قرار بده" - -#: includes/fields/class-acf-field-google-map.php:223 -msgid "Zoom" -msgstr "بزرگنمایی" - -#: includes/fields/class-acf-field-google-map.php:224 -msgid "Set the initial zoom level" -msgstr "تعین مقدار بزرگنمایی اولیه" - -#: includes/fields/class-acf-field-google-map.php:233 -#: includes/fields/class-acf-field-image.php:256 -#: includes/fields/class-acf-field-image.php:285 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:699 -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Height" -msgstr "ارتفاع" - -#: includes/fields/class-acf-field-google-map.php:234 -msgid "Customize the map height" -msgstr "سفارشی سازی ارتفاع نقشه" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "گروه" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:384 -msgid "Sub Fields" -msgstr "زمینه‌های زیرمجموعه" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "استایل جهت نمایش فیلد انتخابی" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:613 -#: pro/fields/class-acf-field-repeater.php:456 -#: pro/locations/class-acf-location-block.php:27 -msgid "Block" -msgstr "بلوک" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:612 -#: pro/fields/class-acf-field-repeater.php:455 -msgid "Table" -msgstr "جدول" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:457 -msgid "Row" -msgstr "سطر" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "تصویر" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Select Image" -msgstr "انتخاب تصویر" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Edit Image" -msgstr "ویرایش تصویر" - -#: includes/fields/class-acf-field-image.php:66 -msgid "Update Image" -msgstr "بروزرسانی تصویر" - -#: includes/fields/class-acf-field-image.php:157 -msgid "No image selected" -msgstr "هیچ تصویری انتخاب نشده" - -#: includes/fields/class-acf-field-image.php:157 -msgid "Add Image" -msgstr "افزودن تصویر" - -#: includes/fields/class-acf-field-image.php:211 -msgid "Image Array" -msgstr "آرایه تصاویر" - -#: includes/fields/class-acf-field-image.php:212 -msgid "Image URL" -msgstr "آدرس تصویر" - -#: includes/fields/class-acf-field-image.php:213 -msgid "Image ID" -msgstr "شناسه(ID) تصویر" - -#: includes/fields/class-acf-field-image.php:220 -msgid "Preview Size" -msgstr "اندازه پیش نمایش" - -#: includes/fields/class-acf-field-image.php:221 -msgid "Shown when entering data" -msgstr "هنگام وارد کردن داده ها نمایش داده می شود" - -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: pro/fields/class-acf-field-gallery.php:688 -#: pro/fields/class-acf-field-gallery.php:717 -msgid "Restrict which images can be uploaded" -msgstr "محدودیت در آپلود تصاویر" - -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:277 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:691 -#: pro/fields/class-acf-field-gallery.php:720 -msgid "Width" -msgstr "عرض" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "لینک" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "انتخاب لینک" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "در پنجره جدید باز شود" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "آرایه لینک" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "آدرس لینک" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "پیام" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "خطوط جدید" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "تنظیم کنید که خطوط جدید چگونه نمایش داده شوند" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "پاراگراف ها خودکار اضافه شوند" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "اضافه کردن خودکار <br>" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "بدون قالب بندی" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "حذف HTML" - -#: 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-number.php:25 -msgid "Number" -msgstr "عدد" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:158 -msgid "Minimum Value" -msgstr "حداقل مقدار" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:168 -msgid "Maximum Value" -msgstr "حداکثر مقدار" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:178 -msgid "Step Size" -msgstr "اندازه مرحله" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "مقدار باید عددی باشد" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "مقدار باید مساوی یا بیشتر از %d باشد" - -#: includes/fields/class-acf-field-number.php:245 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "مقدار باید کوچکتر یا مساوی %d باشد" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "آدرس را وارد کنید" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "اندازه جانمایی" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "پیوند (لینک) برگه/نوشته" - -#: includes/fields/class-acf-field-page_link.php:177 -msgid "Archives" -msgstr "بایگانی ها" - -#: includes/fields/class-acf-field-page_link.php:269 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:961 -msgid "Parent" -msgstr "مادر" - -#: includes/fields/class-acf-field-page_link.php:485 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:560 -msgid "Filter by Post Type" -msgstr "فیلتر با نوع نوشته" - -#: includes/fields/class-acf-field-page_link.php:493 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "All post types" -msgstr "تمام انواع نوشته" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:574 -msgid "Filter by Taxonomy" -msgstr "فیلتر با طبقه بندی" - -#: includes/fields/class-acf-field-page_link.php:507 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:582 -msgid "All taxonomies" -msgstr "تمام طبقه بندی ها" - -#: includes/fields/class-acf-field-page_link.php:523 -msgid "Allow Archives URLs" -msgstr "اجازه آدرس های آرشیو" - -#: includes/fields/class-acf-field-page_link.php:533 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:403 -msgid "Select multiple values?" -msgstr "آیا چندین مقدار انتخاب شوند؟" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "رمزعبور" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:639 -msgid "Post Object" -msgstr "آبجکت یک نوشته" - -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:640 -msgid "Post ID" -msgstr "شناسه(ID) نوشته" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "دکمه رادیویی" - -#: includes/fields/class-acf-field-radio.php:254 -msgid "Other" -msgstr "دیگر" - -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "افزودن گزینه 'دیگر' برای ثبت مقادیر دلخواه" - -#: includes/fields/class-acf-field-radio.php:265 -msgid "Save Other" -msgstr "ذخیره دیگر" - -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "ذخیره مقادیر دیگر در انتخاب های زمینه" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "محدوده" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "ارتباط" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "مقادیر به حداکثر رسیده اند ( {max} آیتم )" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "درحال خواندن" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "مطابقتی یافت نشد" - -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "انتحاب نوع نوشته" - -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "انتخاب طبقه بندی" - -#: includes/fields/class-acf-field-relationship.php:477 -msgid "Search..." -msgstr "جستجو . . ." - -#: includes/fields/class-acf-field-relationship.php:588 -msgid "Filters" -msgstr "فیلترها" - -#: includes/fields/class-acf-field-relationship.php:594 -#: includes/locations/class-acf-location-post-type.php:27 -msgid "Post Type" -msgstr "نوع نوشته" - -#: includes/fields/class-acf-field-relationship.php:595 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:754 -#: includes/locations/class-acf-location-taxonomy.php:27 -msgid "Taxonomy" -msgstr "طبقه بندی" - -#: includes/fields/class-acf-field-relationship.php:602 -msgid "Elements" -msgstr "عناصر" - -#: includes/fields/class-acf-field-relationship.php:603 -msgid "Selected elements will be displayed in each result" -msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد" - -#: includes/fields/class-acf-field-relationship.php:614 -msgid "Minimum posts" -msgstr "حداقل تعداد نوشته‌ها" - -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Maximum posts" -msgstr "حداکثر تعداد نوشته ها" - -#: includes/fields/class-acf-field-relationship.php:727 -#: pro/fields/class-acf-field-gallery.php:818 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s به حداقل %s انتخاب نیاز دارد" -msgstr[1] "%s به حداقل %s انتخاب نیاز دارد" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:776 -msgctxt "noun" +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "عصر" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "صبح" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "صبح" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" msgid "Select" -msgstr "انتخاب (Select)" +msgstr "انتخاب" -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "یک نتیجه موجود است برای انتخاب Enter را فشار دهید." +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "انجام شد" -#: includes/fields/class-acf-field-select.php:112 -#, php-format -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-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "اکنون" -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "مشابهی یافت نشد" +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "منطقه زمانی" -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "یک یا چند حرف وارد کنید" +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "میکرو ثانیه" -#: includes/fields/class-acf-field-select.php:115 -#, php-format -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "لطفا %d یا چند کاراکتر دیگر وارد کنید" +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "میلی ثانیه" -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "یک حرف را حذف کنید" +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "ثانیه" -#: includes/fields/class-acf-field-select.php:117 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "لطفا %d کاراکتر را حذف کنید" +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "دقیقه" -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "فقط می توانید یک آیتم را انتخاب کنید" +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "ساعت" -#: includes/fields/class-acf-field-select.php:119 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "شما فقط می توانید %d مورد را انتخاب کنید" +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "زمان" -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "بارگذاری نتایج بیشتر…" +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "انتخاب زمان" -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "جستجو …" +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "انتخاب کننده زمان و تاریخ" -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "خطا در فراخوانی داده ها" +#: includes/fields/class-acf-field-accordion.php:104 +msgid "Endpoint" +msgstr "نقطه پایانی" -#: includes/fields/class-acf-field-select.php:402 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "ظاهر بهینه شده" +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "سمت چپ" -#: includes/fields/class-acf-field-select.php:412 -msgid "Use AJAX to lazy load choices?" -msgstr "از ایجکس برای خواندن گزینه های استفاده شود؟" +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "سمت بالا" -#: includes/fields/class-acf-field-select.php:428 -msgid "Specify the value returned" -msgstr "مقدار بازگشتی را انتخاب کنید" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "جداکننده" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "تب" - -#: includes/fields/class-acf-field-tab.php:102 +#: includes/fields/class-acf-field-tab.php:107 msgid "Placement" msgstr "جانمایی" -#: includes/fields/class-acf-field-tab.php:115 -msgid "" -"Define an endpoint for the previous tabs to stop. This will start a new group " -"of tabs." -msgstr "" -"یک نقطه پایانی برای توقف زبانه قبلی تعریف کنید. این کار باعث می‌شود گروه جدیدی " -"از زبانه‌ها ایجاد شود." +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "تب" -#: includes/fields/class-acf-field-taxonomy.php:714 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "بدون %s" - -#: includes/fields/class-acf-field-taxonomy.php:755 -msgid "Select the taxonomy to be displayed" -msgstr "طبقه‌بندی را برای برون بری انتخاب کنید" - -#: includes/fields/class-acf-field-taxonomy.php:764 -msgid "Appearance" -msgstr "ظاهر" - -#: includes/fields/class-acf-field-taxonomy.php:765 -msgid "Select the appearance of this field" -msgstr "ظاهر این زمینه را مشخص کنید" - -#: includes/fields/class-acf-field-taxonomy.php:770 -msgid "Multiple Values" -msgstr "چندین مقدار" - -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Multi Select" -msgstr "چندین انتخاب" - -#: includes/fields/class-acf-field-taxonomy.php:774 -msgid "Single Value" -msgstr "تک مقدار" - -#: includes/fields/class-acf-field-taxonomy.php:775 -msgid "Radio Buttons" -msgstr "دکمه‌های رادیویی" - -#: includes/fields/class-acf-field-taxonomy.php:799 -msgid "Create Terms" -msgstr "ساخت آیتم (ترم)" - -#: includes/fields/class-acf-field-taxonomy.php:800 -msgid "Allow new terms to be created whilst editing" -msgstr "اجازه به ساخت آیتم‌ها(ترم‌ها) جدید در زمان ویرایش" - -#: includes/fields/class-acf-field-taxonomy.php:809 -msgid "Save Terms" -msgstr "ذخیره ترم ها" - -#: includes/fields/class-acf-field-taxonomy.php:810 -msgid "Connect selected terms to the post" -msgstr "الصاق آیتم های انتخابی به نوشته" - -#: includes/fields/class-acf-field-taxonomy.php:819 -msgid "Load Terms" -msgstr "خواندن ترم ها" - -#: includes/fields/class-acf-field-taxonomy.php:820 -msgid "Load value from posts terms" -msgstr "خواندن مقادیر از ترم های نوشته" - -#: includes/fields/class-acf-field-taxonomy.php:834 -msgid "Term Object" -msgstr "به صورت آبجکت" - -#: includes/fields/class-acf-field-taxonomy.php:835 -msgid "Term ID" -msgstr "شناسه(ID) آیتم(ترم)" - -#: includes/fields/class-acf-field-taxonomy.php:885 -#, php-format -msgid "User unable to add new %s" -msgstr "کاربر قادر به اضافه کردن%s جدید نیست" - -#: includes/fields/class-acf-field-taxonomy.php:895 -#, php-format -msgid "%s already exists" -msgstr "%s هم اکنون موجود است" - -#: includes/fields/class-acf-field-taxonomy.php:927 -#, php-format -msgid "%s added" -msgstr "%s اضافه شد" - -#: includes/fields/class-acf-field-taxonomy.php:973 -msgid "Add" -msgstr "افزودن" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "متن" - -#: includes/fields/class-acf-field-text.php:155 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "محدودیت کاراکتر" - -#: includes/fields/class-acf-field-text.php:156 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "برای نامحدود بودن این بخش را خالی بگذارید" - -#: includes/fields/class-acf-field-text.php:181 -#: includes/fields/class-acf-field-textarea.php:213 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "مقدار نباید از %d کاراکتر بیشتر شود" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "جعبه متن (متن چند خطی)" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "سطرها" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "تعیین ارتفاع باکس متن" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "انتخاب زمان" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "صحیح / غلط" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "نمایش متن همراه انتخاب" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "با متن" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "نمایش متن در زمان فعال بودن" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "بدون متن" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "نمایش متن در زمان غیر فعال بودن" +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "مقدار باید یک آدرس صحیح باشد" #: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "URL" -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "مقدار باید یک آدرس صحیح باشد" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "آدرس لینک" -#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 -msgid "User" -msgstr "کاربر" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "آرایه لینک" -#: includes/fields/class-acf-field-user.php:378 -msgid "Filter by role" -msgstr "تفکیک با نقش" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "در پنجره جدید باز شود" -#: includes/fields/class-acf-field-user.php:386 -msgid "All user roles" -msgstr "تمام نقش های کاربر" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "انتخاب لینک" -#: includes/fields/class-acf-field-user.php:417 -msgid "User Array" -msgstr "آرایه کاربر" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "لینک" -#: includes/fields/class-acf-field-user.php:418 -msgid "User Object" -msgstr "آبجکت کاربر" +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "پست الکترونیکی" -#: includes/fields/class-acf-field-user.php:419 -msgid "User ID" -msgstr "شناسه کاربر" +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "اندازه مرحله" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "حداکثر مقدار" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "حداقل مقدار" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "محدوده" + +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "هر دو (آرایه)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "برچسب زمینه" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "مقدار" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "عمودی" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "افقی" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : قرمز" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "برای کنترل بیشتر، ممکن است هر دو مقدار و برچسب را مانند زیر مشخص کنید:" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "هر انتخاب را در یک خط جدید وارد کنید." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "انتخاب ها" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "گروه دکمه‌ها" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "آیا چندین مقدار انتخاب شوند؟" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "آیا Null مجاز است؟" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "مادر" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد" + +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "نمایش با تاخیر؟" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "آیا دکمه‌های بارگذاری رسانه نمایش داده شوند؟" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "نوار ابزار" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "فقط متن" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "فقط بصری" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "بصری و متنی" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "تب ها" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "برای اجرای TinyMCE کلیک کنید" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "متن" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "بصری" #: includes/fields/class-acf-field-wysiwyg.php:25 msgid "Wysiwyg Editor" msgstr "ویرایشگر دیداری" -#: includes/fields/class-acf-field-wysiwyg.php:330 -msgid "Visual" -msgstr "بصری" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "مقدار نباید از %d کاراکتر بیشتر شود" -#: includes/fields/class-acf-field-wysiwyg.php:331 -msgctxt "Name for the Text editor tab (formerly HTML)" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "برای نامحدود بودن این بخش را خالی بگذارید" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "محدودیت کاراکتر" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "بعد از ورودی نمایش داده می شود" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "پسوند" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "قبل از ورودی نمایش داده می شود" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "پیشوند" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "در داخل ورودی نمایش داده می شود" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "نگهدارنده مکان متن" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +msgid "Appears when creating a new post" +msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود" + +#: includes/fields/class-acf-field-text.php:25 msgid "Text" msgstr "متن" -#: includes/fields/class-acf-field-wysiwyg.php:337 -msgid "Click to initialize TinyMCE" -msgstr "برای اجرای TinyMCE کلیک کنید" +#: includes/fields/class-acf-field-relationship.php:760 +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-wysiwyg.php:390 -msgid "Tabs" -msgstr "تب ها" +#: includes/fields/class-acf-field-post_object.php:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "شناسه(ID) نوشته" -#: includes/fields/class-acf-field-wysiwyg.php:395 -msgid "Visual & Text" -msgstr "بصری و متنی" +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "آبجکت یک نوشته" -#: includes/fields/class-acf-field-wysiwyg.php:396 -msgid "Visual Only" -msgstr "فقط بصری" +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "حداکثر تعداد نوشته ها" -#: includes/fields/class-acf-field-wysiwyg.php:397 -msgid "Text Only" -msgstr "فقط متن" +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "حداقل تعداد نوشته‌ها" -#: includes/fields/class-acf-field-wysiwyg.php:404 -msgid "Toolbar" -msgstr "نوار ابزار" +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "تصویر شاخص" -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Show Media Upload Buttons?" -msgstr "آیا دکمه‌های بارگذاری رسانه نمایش داده شوند؟" +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد" -#: includes/fields/class-acf-field-wysiwyg.php:429 -msgid "Delay initialization?" -msgstr "نمایش با تاخیر؟" +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "عناصر" -#: includes/fields/class-acf-field-wysiwyg.php:430 -msgid "TinyMCE will not be initalized until field is clicked" -msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد" +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "طبقه بندی" -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "اعتبار سنجی ایمیل" +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "نوع نوشته" -#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:591 -#: pro/options-page.php:81 -msgid "Update" -msgstr "بروزرسانی" +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "فیلترها" -#: includes/forms/form-front.php:104 -msgid "Post updated" -msgstr "نوشته بروز شد" +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "تمام طبقه بندی ها" -#: includes/forms/form-front.php:230 -msgid "Spam Detected" -msgstr "اسپم تشخیص داده شد" +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "فیلتر با طبقه بندی" -#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 -msgid "Post" -msgstr "نوشته" +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "تمام انواع نوشته" -#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 -msgid "Page" -msgstr "برگه" +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "فیلتر با نوع نوشته" -#: includes/locations.php:96 -msgid "Forms" -msgstr "فرم ها" +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "جستجو . . ." -#: includes/locations.php:243 -msgid "is equal to" -msgstr "برابر شود با" +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "انتخاب طبقه بندی" -#: includes/locations.php:244 -msgid "is not equal to" -msgstr "برابر نشود با" +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "انتحاب نوع نوشته" -#: includes/locations/class-acf-location-attachment.php:27 -msgid "Attachment" -msgstr "پیوست" +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "مطابقتی یافت نشد" -#: includes/locations/class-acf-location-attachment.php:109 -#, php-format -msgid "All %s formats" -msgstr "همه‌ی فرمت‌های %s" +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "درحال خواندن" -#: includes/locations/class-acf-location-comment.php:27 -msgid "Comment" -msgstr "دیدگاه" +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "مقادیر به حداکثر رسیده اند ( {max} آیتم )" -#: includes/locations/class-acf-location-current-user-role.php:27 -msgid "Current User Role" -msgstr "نقش کاربرفعلی" +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "ارتباط" -#: includes/locations/class-acf-location-current-user-role.php:110 -msgid "Super Admin" -msgstr "مدیرکل" +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "با کامای انگلیسی جدا کرده یا برای عدم محدودیت خالی بگذارید" -#: includes/locations/class-acf-location-current-user.php:27 -msgid "Current User" -msgstr "کاربر فعلی" +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "انواع مجاز فایل" -#: includes/locations/class-acf-location-current-user.php:97 -msgid "Logged in" -msgstr "وارده شده" +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "بیشترین" -#: includes/locations/class-acf-location-current-user.php:98 -msgid "Viewing front end" -msgstr "درحال نمایش سمت کاربر" +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "اندازه فایل" -#: includes/locations/class-acf-location-current-user.php:99 -msgid "Viewing back end" -msgstr "درحال نمایش سمت مدیریت" +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "محدودیت در آپلود تصاویر" -#: includes/locations/class-acf-location-nav-menu-item.php:27 -msgid "Menu Item" -msgstr "آیتم منو" +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "کمترین" -#: includes/locations/class-acf-location-nav-menu.php:27 -msgid "Menu" -msgstr "منو" +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "بارگذاری شده در نوشته" -#: includes/locations/class-acf-location-nav-menu.php:109 -msgid "Menu Locations" -msgstr "محل منو" +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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/locations/class-acf-location-nav-menu.php:119 -msgid "Menus" -msgstr "منوها" +#: includes/fields/class-acf-field-file.php:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "محدود کردن انتخاب کتابخانه چندرسانه ای" -#: includes/locations/class-acf-location-page-parent.php:27 -msgid "Page Parent" -msgstr "برگه مادر" +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "کتابخانه" -#: includes/locations/class-acf-location-page-template.php:27 -msgid "Page Template" -msgstr "قالب برگه" +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "اندازه پیش نمایش" -#: includes/locations/class-acf-location-page-template.php:87 -#: includes/locations/class-acf-location-post-template.php:134 -msgid "Default Template" -msgstr "پوسته پیش فرض" +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "شناسه(ID) تصویر" -#: includes/locations/class-acf-location-page-type.php:27 -msgid "Page Type" -msgstr "نوع برگه" +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "آدرس تصویر" -#: includes/locations/class-acf-location-page-type.php:146 -msgid "Front Page" -msgstr "برگه نخست" +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "آرایه تصاویر" -#: includes/locations/class-acf-location-page-type.php:147 -msgid "Posts Page" -msgstr "برگه ی نوشته ها" +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "مقدار برگشتی در نمایش نهایی را تعیین کنید" -#: includes/locations/class-acf-location-page-type.php:148 -msgid "Top Level Page (no parent)" -msgstr "بالاترین سطح برگه(بدون والد)" +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "مقدار بازگشت" -#: includes/locations/class-acf-location-page-type.php:149 -msgid "Parent Page (has children)" -msgstr "برگه مادر (دارای زیر مجموعه)" +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "افزودن تصویر" -#: includes/locations/class-acf-location-page-type.php:150 -msgid "Child Page (has parent)" -msgstr "برگه زیر مجموعه (دارای مادر)" +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "هیچ تصویری انتخاب نشده" -#: includes/locations/class-acf-location-post-category.php:27 -msgid "Post Category" -msgstr "دسته بندی نوشته" +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "حذف" -#: includes/locations/class-acf-location-post-format.php:27 -msgid "Post Format" -msgstr "فرمت نوشته" +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "ویرایش" -#: includes/locations/class-acf-location-post-status.php:27 -msgid "Post Status" -msgstr "وضعیت نوشته" +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "تمام تصاویر" -#: includes/locations/class-acf-location-post-taxonomy.php:27 -msgid "Post Taxonomy" -msgstr "طبقه بندی نوشته" +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "بروزرسانی تصویر" -#: includes/locations/class-acf-location-post-template.php:27 -msgid "Post Template" -msgstr "قالب نوشته" +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "ویرایش تصویر" -#: includes/locations/class-acf-location-user-form.php:27 -msgid "User Form" -msgstr "فرم کاربر" +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "انتخاب تصویر" -#: includes/locations/class-acf-location-user-form.php:88 -msgid "Add / Edit" -msgstr "اضافه کردن/ویرایش" +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "تصویر" -#: includes/locations/class-acf-location-user-form.php:89 -msgid "Register" -msgstr "ثبت نام" +#: includes/fields/class-acf-field-message.php:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "اجازه نمایش کدهای HTML به عنوان متن به جای اعمال آنها" -#: includes/locations/class-acf-location-user-role.php:27 -msgid "User Role" -msgstr "نقش کاربر" +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "حذف HTML" -#: includes/locations/class-acf-location-widget.php:27 -msgid "Widget" -msgstr "ابزارک" +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "بدون قالب بندی" -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "مقدار %s لازم است" +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "اضافه کردن خودکار <br>" -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "پاراگراف ها خودکار اضافه شوند" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "تنظیم کنید که خطوط جدید چگونه نمایش داده شوند" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "خطوط جدید" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "اولین روز هفته" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "قالب استفاده در زمان ذخیره مقدار" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "ذخیره قالب" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "هفته" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "قبلی" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "بعدی" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "امروز" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "عرض" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "اندازه جانمایی" + +#: includes/fields/class-acf-field-oembed.php:219 +msgid "Enter URL" +msgstr "آدرس را وارد کنید" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-true_false.php:181 +msgid "Text shown when inactive" +msgstr "نمایش متن در زمان غیر فعال بودن" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "بدون متن" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "نمایش متن در زمان فعال بودن" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "با متن" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "مقدار پیش فرض" + +#: 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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "پیام" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "خیر" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "بله" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "صحیح / غلط" + +#: includes/fields/class-acf-field-group.php:471 +msgid "Row" +msgstr "سطر" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "جدول" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "بلوک" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "استایل جهت نمایش فیلد انتخابی" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "چیدمان" + +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "زمینه‌های زیرمجموعه" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "گروه" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "سفارشی سازی ارتفاع نقشه" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "ارتفاع" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "تعین مقدار بزرگنمایی اولیه" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "بزرگنمایی" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "نقشه اولیه را وسط قرار بده" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "مرکز" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "جستجو برای آدرس . . ." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "پیدا کردن مکان فعلی" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "حذف مکان" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "جستجو" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "قالب توسط توابع پوسته نمایش داده خواهد شد" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "فرمت بازگشت" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "دلخواه:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "قالب در زمان نمایش نوشته دیده خواهد شد" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +msgid "Display Format" +msgstr "فرمت نمایش" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "انتخاب زمان" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "گروه زمینه ای در زباله دان یافت نشد" + +#: acf.php:411 +msgid "No Fields found" +msgstr "گروه زمینه ای یافت نشد" + +#: acf.php:410 +msgid "Search Fields" +msgstr "جستجوی گروه های زمینه" + +#: acf.php:409 +msgid "View Field" +msgstr "نمایش زمینه" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "زمینه جدید" + +#: acf.php:407 +msgid "Edit Field" +msgstr "ویرایش زمینه" + +#: acf.php:406 +msgid "Add New Field" +msgstr "زمینه جدید" + +#: acf.php:404 +msgid "Field" +msgstr "زمینه" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "زمینه ها" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "گروه زمینه ای در زباله دان یافت نشد" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "گروه زمینه ای یافت نشد" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "جستجوی گروه های زمینه" + +#: acf.php:375 +msgid "View Field Group" +msgstr "مشاهده گروه زمینه" + +#: acf.php:374 +msgid "New Field Group" +msgstr "گروه زمینه جدید" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "ویرایش گروه زمینه" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "افزودن گروه زمینه جدید" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "افزودن" + +#: acf.php:370 +msgid "Field Group" +msgstr "گروه زمینه" + +#: acf.php:369 includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "گروه‌های زمینه" + +#. Description of the plugin +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "وردپرس را با زمینه‌های حرفه‌ای و قدرتمند سفارشی کنید." + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "زمینه‌های سفارشی پیشرفته" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "زمینه‌های سفارشی پیشرفته نسخه حرفه ای" -#: pro/admin/admin-options-page.php:198 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "حالت ویرایش" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "حالت پیش‌نمایش" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "بررسی دوباره" + +#: pro/updates.php:561 +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:204 -#, php-format +#: 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:49 +#: pro/admin/admin-updates.php:52 msgid "Error. Could not connect to update server" msgstr "خطا. امکان اتصال به سرور به روزرسانی الان ممکن نیست" -#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "بروزرسانی ها" - -#: pro/admin/admin-updates.php:191 +#: pro/admin/admin-updates.php:209 msgid "" "Error. Could not authenticate update package. Please check again or " "deactivate and reactivate your ACF PRO license." msgstr "" -"خطا. پکیج بروزرسانی اعتبارسنجی نشد. دوباره بررسی کنید یا لایسنس ACF PRO " -"را غیرفعال و مجددا فعال کنید." +"خطا. پکیج بروزرسانی اعتبارسنجی نشد. دوباره بررسی کنید یا لایسنس ACF " +"PRO را غیرفعال و مجددا فعال کنید." -#: pro/admin/views/html-settings-updates.php:7 -msgid "Deactivate License" -msgstr "غیرفعال سازی لایسنس" - -#: pro/admin/views/html-settings-updates.php:7 -msgid "Activate License" -msgstr "فعال سازی لایسنس" - -#: pro/admin/views/html-settings-updates.php:17 -msgid "License Information" -msgstr "اطلاعات لایسنس" - -#: pro/admin/views/html-settings-updates.php:20 -#, php-format +#: pro/admin/admin-updates.php:196 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." msgstr "" -"برای به روزرسانی لطفا کد لایسنس را وارد کنید. قیمت ها." - -#: pro/admin/views/html-settings-updates.php:29 -msgid "License Key" -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:92 -msgid "Update Plugin" -msgstr "بروزرسانی افزونه" - -#: pro/admin/views/html-settings-updates.php:94 -msgid "Please enter your license key above to unlock updates" -msgstr "برای فعالسازی به روزرسانی لایسنس خود را بنویسید" - -#: pro/admin/views/html-settings-updates.php:100 -msgid "Check Again" -msgstr "بررسی دوباره" - -#: pro/admin/views/html-settings-updates.php:117 -msgid "Upgrade Notice" -msgstr "نکات به روزرسانی" - -#: pro/blocks.php:371 -msgid "Switch to Edit" -msgstr "حالت ویرایش" - -#: pro/blocks.php:372 -msgid "Switch to Preview" -msgstr "حالت پیش‌نمایش" #: pro/fields/class-acf-field-clone.php:25 msgctxt "noun" msgid "Clone" msgstr "کپی (هیچ)" -#: pro/fields/class-acf-field-clone.php:812 +#: pro/fields/class-acf-field-clone.php:815 msgid "Select one or more fields you wish to clone" msgstr "انتخاب فیلد دیگری برای کپی" -#: pro/fields/class-acf-field-clone.php:829 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "نمایش" -#: pro/fields/class-acf-field-clone.php:830 +#: pro/fields/class-acf-field-clone.php:835 msgid "Specify the style used to render the clone field" msgstr "مشخص کردن استایل مورد نظر در نمایش دسته فیلدها" -#: pro/fields/class-acf-field-clone.php:835 +#: pro/fields/class-acf-field-clone.php:840 msgid "Group (displays selected fields in a group within this field)" msgstr "گروه ها(نمایش فیلدهای انتخابی در یک گروه با این فیلد)" -#: pro/fields/class-acf-field-clone.php:836 +#: pro/fields/class-acf-field-clone.php:841 msgid "Seamless (replaces this field with selected fields)" msgstr "بدون مانند (جایگزینی این فیلد با فیلدهای انتخابی)" -#: pro/fields/class-acf-field-clone.php:857 -#, php-format +#: pro/fields/class-acf-field-clone.php:864 msgid "Labels will be displayed as %s" msgstr "برچسب ها نمایش داده شوند به صورت %s" -#: pro/fields/class-acf-field-clone.php:860 +#: pro/fields/class-acf-field-clone.php:869 msgid "Prefix Field Labels" msgstr "پیشوند پرچسب فیلدها" -#: pro/fields/class-acf-field-clone.php:871 -#, php-format +#: pro/fields/class-acf-field-clone.php:880 msgid "Values will be saved as %s" msgstr "مقادیر ذخیره خواهند شد به صورت %s" -#: pro/fields/class-acf-field-clone.php:874 +#: pro/fields/class-acf-field-clone.php:885 msgid "Prefix Field Names" msgstr "پیشوند نام فایل ها" -#: pro/fields/class-acf-field-clone.php:992 +#: pro/fields/class-acf-field-clone.php:1001 msgid "Unknown field" msgstr "فیلد ناشناس" -#: pro/fields/class-acf-field-clone.php:1031 +#: pro/fields/class-acf-field-clone.php:1038 msgid "Unknown field group" msgstr "گروه ناشناس" -#: pro/fields/class-acf-field-clone.php:1035 -#, php-format +#: pro/fields/class-acf-field-clone.php:1042 msgid "All fields from %s field group" msgstr "تمام فیلدها از %s گروه فیلد" -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:193 -#: pro/fields/class-acf-field-repeater.php:468 +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "سطر جدید" -#: pro/fields/class-acf-field-flexible-content.php:73 -#: pro/fields/class-acf-field-flexible-content.php:924 -#: pro/fields/class-acf-field-flexible-content.php:1006 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" msgstr[0] "طرح‌ها" msgstr[1] "طرح" -#: pro/fields/class-acf-field-flexible-content.php:74 +#: pro/fields/class-acf-field-flexible-content.php:72 msgid "layouts" msgstr "طرح ها" -#: pro/fields/class-acf-field-flexible-content.php:77 -#: pro/fields/class-acf-field-flexible-content.php:923 -#: pro/fields/class-acf-field-flexible-content.php:1005 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 msgid "This field requires at least {min} {label} {identifier}" msgstr "این زمینه لازم دارد {min} {label} {identifier}" -#: pro/fields/class-acf-field-flexible-content.php:78 +#: pro/fields/class-acf-field-flexible-content.php:76 msgid "This field has a limit of {max} {label} {identifier}" msgstr "این گزینه محدود است به {max} {label} {identifier}" -#: pro/fields/class-acf-field-flexible-content.php:81 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{available} {label} {identifier} available (max {max})" msgstr "{available} {label} {identifier} موجود است (حداکثر {max})" -#: pro/fields/class-acf-field-flexible-content.php:82 +#: pro/fields/class-acf-field-flexible-content.php:80 msgid "{required} {label} {identifier} required (min {min})" msgstr "{required} {label} {identifier} لازم دارد (حداقل {min})" -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:83 msgid "Flexible Content requires at least 1 layout" msgstr "زمینه محتوای انعطاف پذیر حداقل به یک طرح نیاز دارد" -#: pro/fields/class-acf-field-flexible-content.php:287 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:276 msgid "Click the \"%s\" button below to start creating your layout" msgstr "روی دکمه \"%s\" دز زیر کلیک کنید تا چیدمان خود را بسازید" @@ -3072,209 +3193,736 @@ msgid "Add layout" msgstr "طرح جدید" #: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 msgid "Remove layout" msgstr "حذف طرح" -#: pro/fields/class-acf-field-flexible-content.php:415 -#: pro/fields/class-acf-field-repeater.php:301 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" msgstr "کلیک برای انتخاب" -#: pro/fields/class-acf-field-flexible-content.php:555 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder Layout" msgstr "ترتیب بندی طرح ها" -#: pro/fields/class-acf-field-flexible-content.php:555 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder" msgstr "مرتب سازی" -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:552 msgid "Delete Layout" msgstr "حذف طرح" -#: pro/fields/class-acf-field-flexible-content.php:557 +#: pro/fields/class-acf-field-flexible-content.php:553 msgid "Duplicate Layout" msgstr "تکثیر طرح" -#: pro/fields/class-acf-field-flexible-content.php:558 +#: pro/fields/class-acf-field-flexible-content.php:554 msgid "Add New Layout" msgstr "افزودن طرح جدید" -#: pro/fields/class-acf-field-flexible-content.php:629 +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "حداقل" -#: pro/fields/class-acf-field-flexible-content.php:642 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "حداکثر" -#: pro/fields/class-acf-field-flexible-content.php:669 -#: pro/fields/class-acf-field-repeater.php:464 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "متن دکمه" -#: pro/fields/class-acf-field-flexible-content.php:678 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "حداقل تعداد طرح ها" -#: pro/fields/class-acf-field-flexible-content.php:687 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "حداکثر تعداد طرح ها" -#: pro/fields/class-acf-field-gallery.php:71 +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 msgid "Add Image to Gallery" msgstr "افزودن تصویر به گالری" -#: pro/fields/class-acf-field-gallery.php:72 +#: pro/fields/class-acf-field-gallery.php:74 msgid "Maximum selection reached" msgstr "بیشترین حد انتخاب شده است" -#: pro/fields/class-acf-field-gallery.php:338 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "طول" -#: pro/fields/class-acf-field-gallery.php:381 +#: pro/fields/class-acf-field-gallery.php:364 msgid "Caption" msgstr "متن" -#: pro/fields/class-acf-field-gallery.php:390 +#: pro/fields/class-acf-field-gallery.php:376 msgid "Alt Text" msgstr "متن جایگزین" -#: pro/fields/class-acf-field-gallery.php:562 +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "اضافه به گالری" -#: pro/fields/class-acf-field-gallery.php:566 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "کارهای گروهی" -#: pro/fields/class-acf-field-gallery.php:567 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "به ترتیب تاریخ آپلود" -#: pro/fields/class-acf-field-gallery.php:568 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "به ترتیب تاریخ اعمال تغییرات" -#: pro/fields/class-acf-field-gallery.php:569 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "به ترتیب عنوان" -#: pro/fields/class-acf-field-gallery.php:570 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "معکوس سازی ترتیب کنونی" -#: pro/fields/class-acf-field-gallery.php:588 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "بستن" -#: pro/fields/class-acf-field-gallery.php:642 -msgid "Minimum Selection" -msgstr "حداقل انتخاب" - -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Maximum Selection" -msgstr "حداکثر انتخاب" - -#: pro/fields/class-acf-field-gallery.php:660 +#: pro/fields/class-acf-field-gallery.php:602 msgid "Insert" msgstr "درج" -#: pro/fields/class-acf-field-gallery.php:661 +#: pro/fields/class-acf-field-gallery.php:603 msgid "Specify where new attachments are added" msgstr "مشخص کنید که پیوست ها کجا اضافه شوند" -#: pro/fields/class-acf-field-gallery.php:665 +#: pro/fields/class-acf-field-gallery.php:607 msgid "Append to the end" msgstr "افزودن به انتها" -#: pro/fields/class-acf-field-gallery.php:666 +#: pro/fields/class-acf-field-gallery.php:608 msgid "Prepend to the beginning" msgstr "افزودن قبل از" -#: pro/fields/class-acf-field-repeater.php:65 -#: pro/fields/class-acf-field-repeater.php:661 +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "حداقل انتخاب" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "حداکثر انتخاب" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "مقادیر به حداکثر رسیده اند ( {min} سطر )" -#: pro/fields/class-acf-field-repeater.php:66 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "مقادیر به حداکثر رسیده اند ( {max} سطر )" -#: pro/fields/class-acf-field-repeater.php:338 -msgid "Add row" -msgstr "افزودن سطر" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" -#: pro/fields/class-acf-field-repeater.php:339 -msgid "Remove row" -msgstr "حذف سطر" - -#: pro/fields/class-acf-field-repeater.php:417 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" msgstr "جمع شده" -#: pro/fields/class-acf-field-repeater.php:418 +#: pro/fields/class-acf-field-repeater.php:175 msgid "Select a sub field to show when row is collapsed" msgstr "یک زمینه زیرمجموعه را انتخاب کنید تا زمان بسته شدن طر نمایش داده شود" -#: pro/fields/class-acf-field-repeater.php:428 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "حداقل تعداد سطرها" -#: pro/fields/class-acf-field-repeater.php:438 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "حداکثر تعداد سطرها" -#: pro/locations/class-acf-location-options-page.php:79 +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "افزودن سطر" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "حذف سطر" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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/options-page.php:51 -msgid "Options" -msgstr "تنظیمات" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "غیرفعال سازی لایسنس" -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "تنظیمات به روز شدند" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Activate License" +msgstr "فعال سازی لایسنس" -#: pro/updates.php:97 -#, php-format +#: pro/admin/views/html-settings-updates.php:16 +msgid "License Information" +msgstr "اطلاعات لایسنس" + +#: pro/admin/views/html-settings-updates.php:34 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." +"To unlock updates, please enter your license key below. If you don't have a " +"licence key, please see details & pricing." msgstr "" -"برای به روزرسانی لطفا کد لایسنس را وارد کنید. بروزرسانی. قیمت ها." +"برای به روزرسانی لطفا کد لایسنس را وارد کنید. قیمت ها." -#: tests/basic/test-blocks.php:13 -msgid "Testimonial" -msgstr "توصیه‌نامه" +#: pro/admin/views/html-settings-updates.php:41 +msgid "License Key" +msgstr "کلید لایسنس" -#: tests/basic/test-blocks.php:14 -msgid "A custom testimonial block." -msgstr "بلوک سفارشی توصیه‌نامه (Testimonial)" +#: pro/admin/views/html-settings-updates.php:22 +msgid "Your license key is defined in wp-config.php." +msgstr "" -#: tests/basic/test-blocks.php:40 -msgid "Slider" -msgstr "اسلایدر" +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "" -#: tests/basic/test-blocks.php:41 -msgid "A custom gallery slider." -msgstr "اسلایدر گالری سفارشی" +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "اطلاعات به روز رسانی" -#. Plugin URI of the plugin/theme -msgid "https://www.advancedcustomfields.com/" -msgstr "https://www.advancedcustomfields.com/" +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "نسخه فعلی" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "آخرین نسخه" -#. Author URI of the plugin/theme -msgid "http://www.elliotcondon.com/" -msgstr "http://www.elliotcondon.com/" +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "بروزرسانی موجود است" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "برای فعالسازی به روزرسانی لایسنس خود را بنویسید" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "بروزرسانی افزونه" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "تغییرات" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "نکات به روزرسانی" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "غیرفعال (%s)" +#~ msgstr[1] "غیرفعال (%s)" + +#~ msgid "Inactive" +#~ msgstr "غیرفعال" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "انتقال به زباله دان، آیا شما مطمئنید؟" + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "زمینه %s اکنون در گروه زمینه %s قرار گرفته است" + +#~ msgid "Status" +#~ msgstr "وضعیت" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "مشاهده موارد جدید نسخه %s." + +#~ msgid "Resources" +#~ msgstr "منابع" + +#~ msgid "Website" +#~ msgstr "وب سایت" + +#~ msgid "Documentation" +#~ msgstr "مستندات" + +#~ msgid "Support" +#~ msgstr "پشتیبانی" + +#~ msgid "Pro" +#~ msgstr "پیشرفته" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "با تشکر از شما برای استفاده از ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "هماهنگ سازی گروه زمینه" + +#~ msgid "Apply" +#~ msgstr "اعمال" + +#~ msgid "Bulk Actions" +#~ msgstr "اعمال گروهی" + +#~ msgid "Info" +#~ msgstr "اطلاعات" + +#~ msgid "What's New" +#~ msgstr "چه چیز جدید است" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "گروه زمینه‌هایی که مایل به تهیه خروجی آنها هستید را انتخاب کنید و در ادامه " +#~ "روش خروجی را نیز مشخص کنید. از دکمه دانلود برای خروجی فایل .json برای " +#~ "وارد کردن در یک سایت دیگر که این افزونه نصب شده است استفاده کنید. از دکمه " +#~ "تولید می توانید برای ساخت کد PHP برای قراردادن در قالب خود استفاده کنید." + +#~ msgid "Export File" +#~ msgstr "خروجی فایل" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "فایل JSON ای که قبلا از این افزونه خروجی گرفته اید را انتخاب کنید تا وارد " +#~ "شود. زمانی که دکمه وارد کردن را در زیر کلیک کنید، سیستم اقدام به ساخت " +#~ "گروه های زمینه خواهد نمود." + +#~ msgid "Import File" +#~ msgstr "وارد کردن فایل" + +#~ msgid "Required?" +#~ msgstr "لازم است؟" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "هیچ زمینه ای وجود ندارد. روی دکمه+ افزودن زمینه کلیک " +#~ "کنید تا اولین زمینه خود را بسازید." + +#~ msgid "+ Add Field" +#~ msgstr "+ افزودن زمینه" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "سایت نیاز به به‌روزرسانی از %s به %s دارد" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "از شما برای بروزرسانی به آخرین نسخه %s v%s ممنون هستیم!" + +#~ msgid "Add-ons" +#~ msgstr "افزودنی ها" + +#~ msgid "Download & Install" +#~ msgstr "دانلود و نصب" + +#~ msgid "Installed" +#~ msgstr "نصب شده" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "به افزونه زمینه‌های سفارشی پیشرفته خوش آمدید" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "از اینکه به روزرسانی کردید متشکریم! افزونه زمینه دلخواه پیشرفته %s " +#~ "بزرگتر و بهتر از قبل شده است. امیدواریم لذت ببرید." + +#~ msgid "A Smoother Experience" +#~ msgstr "یک تجربه راحتتر" + +#~ msgid "Improved Usability" +#~ msgstr "کاربری بهینه شده" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "استفاده از کتابخانه محبوب Select2 باعث سرعت در عملکرد و کاربری بهتر در " +#~ "انواع زمینه هاشامل آبجکت نوشته، پیوند(لینک) صفحه ، طبقه بندی و زمینه‌های " +#~ "انتخاب(Select) شده است." + +#~ msgid "Improved Design" +#~ msgstr "طراحی بهینه شده" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "بسیاری از زمینه ها از نظر ظاهری باز طراحی شدند تا این افزونه از قبل بهتر " +#~ "شده باشد. تغییرات چشم گیر در گالری و ارتباط و زمینه جدید به نام oEmbed " +#~ "صورت گرفته است!" + +#~ msgid "Improved Data" +#~ msgstr "داده ها بهینه شده اند" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "بازطراحی معماری داده ها این اجازه را به زمینه‌های زیرمجموعه داده است که " +#~ "بدون زمینه‌های والد باقی بمانند. این به شما کمک می کند که زمینه ها را از " +#~ "یک فیلد اصلی خارج یا به آن وارد نمایید !" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "خداحافظ افزودنی ها و سلام به نسخه حرفه ای" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "معرفی نسخه حرفه ای" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "ما در حال تغییر راه عملکردهای پولی افزونه به شیوه ای هیجان انگیز هستیم!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "هر چهار افزدونی پولی یکی شده و تحت عنوان نسخه حرفه ای " +#~ "(Pro) از افزونه زمینه‌های سفارشی معرفی شده اند. دو نسخه شخصی و توسعه " +#~ "دهنده موجود است که در هر دو این امکانات بهتر و دسترس تر از قبل موجود است!" + +#~ msgid "Powerful Features" +#~ msgstr "امکانات قدرتمند" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "نسخه حرفه دارای امکانات قدرتمندی نظیر داده های تکرارپذیر، محتوای منعطف، " +#~ "یک زمینه گالری زیبا و امکان ساخت صفحات تنظیمات می باشد !" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "اطلاعات بیشتر در امکانات نسخه حرفه ای." + +#~ msgid "Easy Upgrading" +#~ msgstr "به روزرسانی آسان" + +#~ msgid "" +#~ "Upgrading to ACF PRO is easy. Simply purchase a license online and " +#~ "download the plugin!" +#~ msgstr "" +#~ "ارتقا به نسخه حرفه‌ای آسان است. به سادگی لایسنس را بخرید و افزونه را " +#~ "دانلود کنید!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk." +#~ msgstr "" +#~ "همچنین در اینجا راهنمایی برای ارتقا وجود دارد که به " +#~ "سوالات شما پاسخ می‌دهد. لطفا از طریق میز راهنما با تیم " +#~ "پشتیبانی تماس حاصل کنید." + +#~ msgid "New Features" +#~ msgstr "ویژگی‌های جدید" + +#~ msgid "Link Field" +#~ msgstr "زمینه پیوند (Link)" + +#~ msgid "" +#~ "The Link field provides a simple way to select or define a link (url, " +#~ "title, target)." +#~ msgstr "" +#~ "با استفاده از زمینه پیوند میتوانید به سادگی یک روش برای انتخاب یا تعریف " +#~ "یک پیوند (url-title-target) ایجاد کنید." + +#~ msgid "Group Field" +#~ msgstr "گروه زمینه" + +#~ msgid "The Group field provides a simple way to create a group of fields." +#~ msgstr "با استفاده از گروه زمینه می‌توانید گروهی از زمینه‌ها را ایجاد کنید." + +#~ msgid "oEmbed Field" +#~ msgstr "زمینه oEmbed" + +#~ msgid "" +#~ "The oEmbed field allows an easy way to embed videos, images, tweets, " +#~ "audio, and other content." +#~ msgstr "" +#~ "با استفاده از زمینه oEmbed میتوانید به سادگی ویدیو، تصویر، توییت، صدا و " +#~ "محتواهای دیگر را جاسازی کنید." + +#~ msgid "The clone field allows you to select and display existing fields." +#~ msgstr "" +#~ "با استفاده از فیلد کپی میتوانید فیلدهای موجود را انتخاب کنید یا نمایش " +#~ "دهید." + +#~ msgid "More AJAX" +#~ msgstr "ایجکس بیشتر" + +#~ msgid "More fields use AJAX powered search to speed up page loading." +#~ msgstr "" +#~ "بیشتر زمینه‌ها از قدرت AJAX برای جستجو استفاده می‌کند تا سرعت بارگذاری را " +#~ "افزایش دهند." + +#~ msgid "" +#~ "New auto export to JSON feature improves speed and allows for " +#~ "syncronisation." +#~ msgstr "" +#~ "ویژگی جدید برون‌بری خودکار به فایل JSON سرعت را بهبود داده و همگام سازی را " +#~ "فراهم می‌کند." + +#~ msgid "Easy Import / Export" +#~ msgstr "درون‌ریزی یا برون‌بری آسان" + +#~ msgid "Both import and export can easily be done through a new tools page." +#~ msgstr "درون ریزی یا برون بری به سادگی از طریق یک ابزار جدید انجام می‌شود." + +#~ msgid "New Form Locations" +#~ msgstr "مکان جدید فرم‌ها" + +#~ msgid "" +#~ "Fields can now be mapped to menus, menu items, comments, widgets and all " +#~ "user forms!" +#~ msgstr "" +#~ "زمینه‌ها اکنون می‌توانند به فهرست‌ها، موارد فهرست، دیدگاه‌ها، ابزارک‌ها و " +#~ "تمامی فرم‌های مرتبط با کاربر ارجاع داده شوند!" + +#~ msgid "More Customization" +#~ msgstr "سفارشی سازی بیشتر" + +#~ msgid "" +#~ "New PHP (and JS) actions and filters have been added to allow for more " +#~ "customization." +#~ msgstr "" +#~ "اکشن‌ها و فیلترهای جدید PHP (و JS) برای سفارشی سازی بیشتر اضافه شد‌ه‌اند." + +#~ msgid "Fresh UI" +#~ msgstr "رابط کاربری تازه" + +#~ msgid "" +#~ "The entire plugin has had a design refresh including new field types, " +#~ "settings and design!" +#~ msgstr "تمامی افزونه با یک رابط کاربری جدید بروز شده است!" + +#~ msgid "New Settings" +#~ msgstr "تنظیمات جدید" + +#~ msgid "" +#~ "Field group settings have been added for Active, Label Placement, " +#~ "Instructions Placement and Description." +#~ msgstr "" +#~ "تنظیمات گروه زمینه برای مکان برچسب، راهنمای قرارگیری و توضیحات اضافه شده " +#~ "است." + +#~ msgid "Better Front End Forms" +#~ msgstr "فرم های سمت کاربر بهتر شده اند" + +#~ msgid "" +#~ "acf_form() can now create a new post on submission with lots of new " +#~ "settings." +#~ msgstr "" +#~ "تابع acf_form() اکنون میتوانید نوشته‌های جدید را همراه با تنظیمات بیشتر " +#~ "ثبت کند." + +#~ msgid "Better Validation" +#~ msgstr "خطایابی بهتر" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." +#~ msgstr "اعتبارسنجی فرم‌ها اکنون از طریق PHP + AJAX صورت می‌گیرد." + +#~ msgid "Moving Fields" +#~ msgstr "جابجایی زمینه ها" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents." +#~ msgstr "" +#~ "عملکرد جدید گروه زمینه اکنون اجازه می‌دهد تا یک زمینه را بین گروه‌ها و " +#~ "والدهای مختلف جابجا کنید." + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "فکر می کنیم شما تغییرات در %s را دوست خواهید داشت." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "حجم فایل ها نباید از %s بیشتر باشد." + +#~ msgid "Allow Custom" +#~ msgstr "اجازه دلخواه" + +#~ msgid "Save Custom" +#~ msgstr "ذخیره دلخواه" + +#~ msgid "Toggle" +#~ msgstr "انتخاب" + +#~ msgid "Current Color" +#~ msgstr "رنگ فعلی" + +#~ msgid "Shown when entering data" +#~ msgstr "هنگام وارد کردن داده ها نمایش داده می شود" + +#~ msgid "Other" +#~ msgstr "دیگر" + +#~ msgid "Save Other" +#~ msgstr "ذخیره دیگر" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s به حداقل %s انتخاب نیاز دارد" +#~ msgstr[1] "%s به حداقل %s انتخاب نیاز دارد" + +#~ msgid "Stylised UI" +#~ msgstr "ظاهر بهینه شده" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "یک نقطه پایانی برای توقف زبانه قبلی تعریف کنید. این کار باعث می‌شود گروه " +#~ "جدیدی از زبانه‌ها ایجاد شود." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "بدون %s" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد" + +#, php-format +#~ 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 "" +#~ "برای به روزرسانی لطفا کد لایسنس را وارد کنید. بروزرسانی. قیمت ها." + +#~ msgid "Testimonial" +#~ msgstr "توصیه‌نامه" + +#~ msgid "A custom testimonial block." +#~ msgstr "بلوک سفارشی توصیه‌نامه (Testimonial)" + +#~ msgid "Slider" +#~ msgstr "اسلایدر" + +#~ msgid "A custom gallery slider." +#~ msgstr "اسلایدر گالری سفارشی" + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" #~ msgid "Field group duplicated. %s" #~ msgstr "گروه زمینه تکثیر شد. %s" @@ -3290,7 +3938,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgid_plural "%s field groups synchronised." #~ msgstr[0] "گروه زمینه %s هماهنگ شده است" -#~ msgid "Customise WordPress with powerful, professional and intuitive fields." +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." #~ msgstr "سفارشی کردن وردپرس با زمینه های قدرتمند، حرفه ای و بصری." #~ msgid "Error validating request" @@ -3306,39 +3955,41 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "به‌روزرسانی انجام شد" #~ msgid "" -#~ "Before you start using the new awesome features, please update your database " -#~ "to the newest version." +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." #~ msgstr "" #~ "قبل از اینکه از تمام امکانات شگفت انگیز جدید استفاده کنید لازم است بانک " #~ "اطلاعاتی را به روز کنید" #~ msgid "" -#~ "Please also ensure any premium add-ons (%s) have first been updated to the " -#~ "latest version." +#~ "Please also ensure any premium add-ons (%s) have first been updated to " +#~ "the latest version." #~ msgstr "" #~ "لطفا اطمینان حاصل کنید که افزودنی های تجاري (%s) ابتدا به آخرین نسخه بروز " #~ "شده‌اند." #~ msgid "Database Upgrade complete. See what's new" -#~ msgstr "ارتقاء پایگاه داده کامل شد. تغییرات جدید را ببینید" +#~ msgstr "" +#~ "ارتقاء پایگاه داده کامل شد. تغییرات جدید را ببینید" #~ msgid "A smoother custom field experience" #~ msgstr "احساس بهتر در استفاده از زمینه دلخواه" #~ msgid "" -#~ "To help make upgrading easy, login to your store account " -#~ "and claim a free copy of ACF PRO!" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" #~ msgstr "" -#~ "برای به روزرسانی ساده به بخش کاربری خود در فروشگاه وارد شوید " -#~ " و یک نسخه از ویرایش حرفه ای را دانلود کنید!" +#~ "برای به روزرسانی ساده به بخش کاربری خود در فروشگاه وارد " +#~ "شوید و یک نسخه از ویرایش حرفه ای را دانلود کنید!" #~ msgid "" -#~ "We also wrote an upgrade guide to answer any questions, " -#~ "but if you do have one, please contact our support team via the help desk" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" #~ msgstr "" -#~ "همچنین یک راهنمای به روزرسانی برای پاسخ به سوالات نوشته " -#~ "ایم ولی اگر هنوز سوالی دارید از تیم پشتیبانی بپرسید " +#~ "همچنین یک راهنمای به روزرسانی برای پاسخ به سوالات " +#~ "نوشته ایم ولی اگر هنوز سوالی دارید از تیم پشتیبانی " +#~ "بپرسید " #~ msgid "Under the Hood" #~ msgstr "در پشت قضیه" @@ -3348,10 +3999,12 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "ACF now saves its field settings as individual post objects" #~ msgstr "" -#~ "افزونه اکنون تنظیمات زمینه ها را به عنوان آبجکت ها مختلف نوشته ذخیره می کند" +#~ "افزونه اکنون تنظیمات زمینه ها را به عنوان آبجکت ها مختلف نوشته ذخیره می " +#~ "کند" #~ msgid "More fields use AJAX powered search to speed up page loading" -#~ msgstr "زمینه های بیشتری از جستجوهای ایجکس برای کاهش بار صفحه استفاده می کنند" +#~ msgstr "" +#~ "زمینه های بیشتری از جستجوهای ایجکس برای کاهش بار صفحه استفاده می کنند" #~ msgid "New auto export to JSON feature improves speed" #~ msgstr "امکان جدید خرجی خودکار JSON سرعت را بهبود بخشیده است" @@ -3375,8 +4028,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Fields can now be mapped to comments, widgets and all user forms!" #~ msgstr "" -#~ "گزینه ها اکنون می توانند به نظرات، ابزارک ها و حتی فرم های مربوط به کاربران " -#~ "متصل شوند !" +#~ "گزینه ها اکنون می توانند به نظرات، ابزارک ها و حتی فرم های مربوط به " +#~ "کاربران متصل شوند !" #~ msgid "A new field for embedding content has been added" #~ msgstr "زمینه جدیدی برای جانمایی محتوا اضافه شده است" @@ -3420,11 +4073,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "صفحه تنظیمات بهتر" #~ msgid "" -#~ "New functions for options page allow creation of both parent and child menu " -#~ "pages" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" #~ msgstr "" -#~ "تنظیمات جدید برای صفحه تنظیمات اجازه ساخت هر دو صفحه منوی والد و زیرمجموعه " -#~ "را می دهد" +#~ "تنظیمات جدید برای صفحه تنظیمات اجازه ساخت هر دو صفحه منوی والد و " +#~ "زیرمجموعه را می دهد" #~ msgid "Customise the map height" #~ msgstr "سفارشی کردن ارتفاع نقشه" @@ -3472,32 +4125,33 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "اجاره به آکاردئون برای باز شدن بدون بستن دیگران" #~ msgid "" -#~ "The tab field will display incorrectly when added to a Table style repeater " -#~ "field or flexible content field layout" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" #~ msgstr "" -#~ "زمینه تب در زمانی که در آن زمینه تکرارشونده و یا زمینه محتوای انعطاف پذیر به " -#~ "کار ببرید درست نمایش داده نخواهد شد" +#~ "زمینه تب در زمانی که در آن زمینه تکرارشونده و یا زمینه محتوای انعطاف پذیر " +#~ "به کار ببرید درست نمایش داده نخواهد شد" #~ msgid "" #~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " #~ "together." #~ msgstr "" -#~ "از (زمینه تب) برای سازماندهی بهتر صفحه ویرایش با گروه بندی زمینه ها زیر تب " -#~ "ها استفاده کنید. " +#~ "از (زمینه تب) برای سازماندهی بهتر صفحه ویرایش با گروه بندی زمینه ها زیر " +#~ "تب ها استفاده کنید. " #~ msgid "" -#~ "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 " +#~ "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." #~ msgstr "" -#~ "همه زمینه های زیر این \" زمینه تب \" (یا تا زمینه تب بعدی) با هم گروه بندی " -#~ "می شوند و برچسب زمینه در تب به نمایش در خواهد آمد" +#~ "همه زمینه های زیر این \" زمینه تب \" (یا تا زمینه تب بعدی) با هم گروه " +#~ "بندی می شوند و برچسب زمینه در تب به نمایش در خواهد آمد" #~ msgid "End-point" #~ msgstr "نقطه پایانی" #~ msgid "Use this field as an end-point and start a new group of tabs" -#~ msgstr "استفاده از این زمینه به عنوان نقطه پایانی و شروع یک گروه جدید از تب ها" +#~ msgstr "" +#~ "استفاده از این زمینه به عنوان نقطه پایانی و شروع یک گروه جدید از تب ها" #~ msgid "Disabled" #~ msgstr "غیرفعال" @@ -3545,9 +4199,6 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Generate export code" #~ msgstr "تولید کد خروجی" -#~ msgid "Import" -#~ msgstr "وارد کردن" - #~ msgid "See what's new" #~ msgstr "ببینید چه چیزی جدید است" @@ -3567,11 +4218,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "انجام شد ابزار وارد سازی %s زمینه را وارد کرد: %s" #~ msgid "" -#~ "Warning. Import tool detected %s field groups already exist and have " -#~ "been ignored: %s" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" #~ msgstr "" -#~ "اخطار ابزار وارد سازی تشخصی داد که گروه زمینه %s اکنون موجود می باشد " -#~ "و %s نادیده گرفته شد" +#~ "اخطار ابزار وارد سازی تشخصی داد که گروه زمینه %s اکنون موجود می " +#~ "باشد و %s نادیده گرفته شد" #~ msgid "Upgrade ACF" #~ msgstr "بروزرسانی " @@ -3583,8 +4234,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "با گرفتن و کشیدن مرتب سازی کنید" #~ msgid "" -#~ "The following sites require a DB upgrade. Check the ones you want to update " -#~ "and then click “Upgrade Database”." +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." #~ msgstr "" #~ "سایت‌های زیر نیاز به به‌روزرسانی دیتابیس دارند. آن‌هایی که تمایل دارید را " #~ "انتخاب کنید و دکمه به روزرسانی را کلیک کنید." @@ -3632,8 +4283,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "لایسنس" #~ msgid "" -#~ "To unlock updates, please enter your license key below. If you don't have a " -#~ "licence key, please see" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" #~ msgstr "" #~ "برای به روزرسانی لطفا لایسنس خود را وارد کنید. اگر لایسنس ندارید اینجا را " #~ "ببنید:" @@ -3643,14 +4294,15 @@ msgstr "http://www.elliotcondon.com/" #~ 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" +#~ "\">Updates page. If you don't have a licence key, please see details & pricing" #~ msgstr "" -#~ "برای به روز رسانی لایسنس خود را در قسمت به روزرسانی ها " -#~ "وارد کنید. اگر لایسنس ندارید اینجا را ببینید: جزئیات ئ قیمت" +#~ "برای به روز رسانی لایسنس خود را در قسمت به روزرسانی ها وارد کنید. اگر لایسنس ندارید اینجا را ببینید: جزئیات ئ " +#~ "قیمت" -#~ msgid "Please note that all text will first be passed through the wp function " +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " #~ msgstr "دقت کنید که نکاک متن ها اول از تابع وردپرس عبور خواهند کرد" #~ msgid "Warning" @@ -3698,15 +4350,15 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "نسخه حرفه ای لازم است" #~ msgid "" -#~ "We have detected an issue which requires your attention: This website makes " -#~ "use of premium add-ons (%s) which are no longer compatible with ACF." +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." #~ msgstr "" -#~ "مشکلی مشاهده شده است که نیاز به توجه شما دارد. این وب سایت مجاز به استفاده " -#~ "از افزودنی های پولی (%s) می باشد که دیگر سازگار نیستند" +#~ "مشکلی مشاهده شده است که نیاز به توجه شما دارد. این وب سایت مجاز به " +#~ "استفاده از افزودنی های پولی (%s) می باشد که دیگر سازگار نیستند" #~ msgid "" -#~ "Don't panic, you can simply roll back the plugin and continue using ACF as " -#~ "you know it!" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" #~ msgstr "مشکلی نیست. شما می توانید به نسخه ای که به آن عادت دارید برگردید!" #~ msgid "Roll back to ACF v%s" @@ -3735,8 +4387,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "" #~ "Load value based on the post's terms and update the post's terms on save" #~ msgstr "" -#~ "مقدار بر اساس دسته(ترم) نوشته خوانده شود و دسته های نوشته را در هنگام ذخیره " -#~ "به روز رسانی کند" +#~ "مقدار بر اساس دسته(ترم) نوشته خوانده شود و دسته های نوشته را در هنگام " +#~ "ذخیره به روز رسانی کند" #~ msgid "Controls how HTML tags are rendered" #~ msgstr "کنترل چگونگی نمایش تگ های HTML" @@ -3805,7 +4457,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "No ACF groups selected" #~ msgstr "هیچ گروه زمینه دلخواه پیشرفته ای انتخاب نشده است." -#~ msgid "Create infinite rows of repeatable data with this versatile interface!" +#~ msgid "" +#~ "Create infinite rows of repeatable data with this versatile interface!" #~ msgstr "" #~ "ایجاد بی نهایت سطر از داده های تکرار شونده به وسیله این زمینه چند منظوره!" @@ -3823,8 +4476,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Creates a select field populated with Gravity Forms!" #~ msgstr "" -#~ "زمینه جدید از نوع انتخاب می سازد که می توانید یکی از فرم های GravityForms که " -#~ "ساخته اید را از آن انتخاب کنید" +#~ "زمینه جدید از نوع انتخاب می سازد که می توانید یکی از فرم های GravityForms " +#~ "که ساخته اید را از آن انتخاب کنید" #~ msgid "Date & Time Picker" #~ msgstr "تاریخ و زمان" @@ -3848,15 +4501,15 @@ msgstr "http://www.elliotcondon.com/" #~ "The following Add-ons are available to increase the functionality of the " #~ "Advanced Custom Fields plugin." #~ msgstr "" -#~ "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته قابل " -#~ "استفاده هستند." +#~ "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته " +#~ "قابل استفاده هستند." #~ msgid "" #~ "Each Add-on can be installed as a separate plugin (receives updates) or " #~ "included in your theme (does not receive updates)." #~ msgstr "" -#~ "هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در " -#~ "پوسته شما (غیرقابل بروزرسانی) قرار گیرد." +#~ "هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا " +#~ "در پوسته شما (غیرقابل بروزرسانی) قرار گیرد." #~ msgid "Purchase & Install" #~ msgstr "خرید و نصب" @@ -3874,16 +4527,16 @@ msgstr "http://www.elliotcondon.com/" #~ "ACF will create a .xml export file which is compatible with the native WP " #~ "import plugin." #~ msgstr "" -#~ "افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که " -#~ "با افزونه Wordpress Importer سازگار است." +#~ "افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد " +#~ "که با افزونه Wordpress Importer سازگار است." #~ msgid "" #~ "Imported field groups will appear in the list of editable field " #~ "groups. This is useful for migrating fields groups between Wp websites." #~ msgstr "" -#~ "گروه های زمینه درون ریزی شده در لیست گروه های زمینه قابل ویرایش نمایش داده " -#~ "خواهند شد. این روش برای انتقال گروه های زمینه در بین سایت های وردپرسی " -#~ "مفید است." +#~ "گروه های زمینه درون ریزی شده در لیست گروه های زمینه قابل ویرایش نمایش " +#~ "داده خواهند شد. این روش برای انتقال گروه های زمینه در بین سایت های " +#~ "وردپرسی مفید است." #~ msgid "Select field group(s) from the list and click \"Export XML\"" #~ msgstr "" @@ -3914,23 +4567,23 @@ msgstr "http://www.elliotcondon.com/" #~ "اختیاران قرار می دهد" #~ msgid "" -#~ "Registered field groups will not appear in the list of editable field " -#~ "groups. This is useful for including fields in themes." +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." #~ msgstr "" #~ "گروه های زمینه ساخته خواهند شد ولی قابل ویرایش نخواهند بود.یعنی در " #~ "لیست افزونه برای ویرایش دیده نمی شوند. این روش برای قرار دادن زمینه ها در " #~ "پوسته ها (برای مشتری) مفید است." #~ msgid "" -#~ "Please note that if you export and register field groups within the same WP, " -#~ "you will see duplicate fields on your edit screens. To fix this, please move " -#~ "the original field group to the trash or remove the code from your functions." -#~ "php file." +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." #~ msgstr "" #~ "لطفا توجه کنید که اگر از هر دو روش ذکر شما در یک وردپرس به صورت هم زمان " -#~ "استفاده کنید، در صفحه ویرایش مطالب، دو بار زمینه ها را خواهید دید. واضح است " -#~ "که برای حل این مشکل یا باید زمینه ها را از افزونه حذف کنید یا کدهای php را " -#~ "از پوسته و احتمالا functions.php حذف کنید." +#~ "استفاده کنید، در صفحه ویرایش مطالب، دو بار زمینه ها را خواهید دید. واضح " +#~ "است که برای حل این مشکل یا باید زمینه ها را از افزونه حذف کنید یا کدهای " +#~ "php را از پوسته و احتمالا functions.php حذف کنید." #~ msgid "Select field group(s) from the list and click \"Create PHP\"" #~ msgstr "" @@ -3943,7 +4596,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Paste into your functions.php file" #~ msgstr "در فایل functions.php پوسته خود قرار دهید" -#~ msgid "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." #~ msgstr "برای فعالسازی افزودنی ها،چند سطر اول کدها را ویرایش و استفاده کنید" #~ msgid "Notes" @@ -3953,18 +4607,18 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "قرار دادن در پوسته" #~ msgid "" -#~ "The Advanced Custom Fields plugin can be included within a theme. To do so, " -#~ "move the ACF plugin inside your theme and add the following code to your " -#~ "functions.php file:" +#~ "The Advanced Custom Fields plugin can be included within a theme. To do " +#~ "so, move the ACF plugin inside your theme and add the following code to " +#~ "your functions.php file:" #~ msgstr "" -#~ "افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار بگیرد. " -#~ "برای انجام این کار، افزونه را به کنار پوسته تان انتقال دهید و کدهای زیر را " -#~ "به پرونده functions.php اضافه کنید:" +#~ "افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار " +#~ "بگیرد. برای انجام این کار، افزونه را به کنار پوسته تان انتقال دهید و " +#~ "کدهای زیر را به پرونده functions.php اضافه کنید:" #~ msgid "" -#~ "To remove all visual interfaces from the ACF plugin, you can use a constant " -#~ "to enable lite mode. Add the following code to your functions.php file " -#~ "before the include_once code:" +#~ "To remove all visual interfaces from the ACF plugin, you can use a " +#~ "constant to enable lite mode. Add the following code to your functions." +#~ "php file before the include_once code:" #~ msgstr "" #~ "برای حذف همه رابط های بصری از افزونه زمینه های دلخواه پیشرفته (دیده نشدن " #~ "افزونه)، می توانید از یک ثابت (کانستنت) برای فعال سازی حالت سبک (lite) " @@ -3981,13 +4635,13 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!" #~ msgid "" -#~ "Add-ons are now activated by downloading and installing individual plugins. " -#~ "Although these plugins will not be hosted on the wordpress.org repository, " -#~ "each Add-on will continue to receive updates in the usual way." +#~ "Add-ons are now activated by downloading and installing individual " +#~ "plugins. Although these plugins will not be hosted on the wordpress.org " +#~ "repository, each Add-on will continue to receive updates in the usual way." #~ msgstr "" #~ "افزودنی ها الان با دریافت و نصب افزونه های جداگانه فعال می شوند. با اینکه " -#~ "این افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد، هر افزودنی به صورت معمول " -#~ "به روز رسانی را دریافت خواهد کرد." +#~ "این افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد، هر افزودنی به صورت " +#~ "معمول به روز رسانی را دریافت خواهد کرد." #~ msgid "All previous Add-ons have been successfully installed" #~ msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند" @@ -3999,8 +4653,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "افزودنی های فعال شده ی خود را دانلود کنید" #~ msgid "" -#~ "This website does not use premium Add-ons and will not be affected by this " -#~ "change." +#~ "This website does not use premium Add-ons and will not be affected by " +#~ "this change." #~ msgstr "" #~ "این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار " #~ "نخواهد گرفت" @@ -4021,14 +4675,15 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "زمینه رمزعبور" #~ msgid "" -#~ "Creating your own field type has never been easier! Unfortunately, version 3 " -#~ "field types are not compatible with version 4." +#~ "Creating your own field type has never been easier! Unfortunately, " +#~ "version 3 field types are not compatible with version 4." #~ msgstr "" -#~ "ساخت نوع زمینه دلخواه برای خودتان هرگز به این آسانی نبوده! متأسفانه، انواع " -#~ "زمینه های نسخه 3 با نسخه 4 سازگار نیستند." +#~ "ساخت نوع زمینه دلخواه برای خودتان هرگز به این آسانی نبوده! متأسفانه، " +#~ "انواع زمینه های نسخه 3 با نسخه 4 سازگار نیستند." #~ msgid "Migrating your field types is easy, please" -#~ msgstr "انتقال انواع زمینه ها آسان است. پس لطفا افزونه خود را بروزرسانی کنید." +#~ msgstr "" +#~ "انتقال انواع زمینه ها آسان است. پس لطفا افزونه خود را بروزرسانی کنید." #~ msgid "follow this tutorial" #~ msgstr "این آموزش را دنبال کنید" @@ -4040,11 +4695,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "اکشن ها و فیلترها" #~ msgid "" -#~ "All actions & filters have received a major facelift to make customizing ACF " -#~ "even easier! Please" +#~ "All actions & filters have received a major facelift to make customizing " +#~ "ACF even easier! Please" #~ msgstr "" -#~ "همه اکشن ها و فیلترها دارای تغییرات عمده ای شدند تا دلخواه سازی ACF از قبل " -#~ "آسانتر شود" +#~ "همه اکشن ها و فیلترها دارای تغییرات عمده ای شدند تا دلخواه سازی ACF از " +#~ "قبل آسانتر شود" #~ msgid "read this guide" #~ msgstr "لطفا راهنما را مطالعه فرمایید" @@ -4066,11 +4721,12 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "" #~ "Absolutely no changes have been made to the database " -#~ "between versions 3 and 4. This means you can roll back to version 3 without " -#~ "any issues." +#~ "between versions 3 and 4. This means you can roll back to version 3 " +#~ "without any issues." #~ msgstr "" #~ "هیچ تغییری در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. " -#~ "این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید." +#~ "این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 " +#~ "برگردید." #~ msgid "Potential Issues" #~ msgstr "مسائل بالقوه" @@ -4109,12 +4765,12 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "از شما متشکرم" #~ msgid "" -#~ "A BIG thank you to everyone who has helped test the version " -#~ "4 beta and for all the support I have received." +#~ "A BIG thank you to everyone who has helped test the " +#~ "version 4 beta and for all the support I have received." #~ msgstr "" -#~ "یک تشکر بزرگ از شما و همه کسانی که در تست نسخه 4 بتا به من " -#~ "کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه " -#~ "شما متشکرم." +#~ "یک تشکر بزرگ از شما و همه کسانی که در تست نسخه 4 بتا به " +#~ "من کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز " +#~ "از همه شما متشکرم." #~ msgid "Without you all, this release would not have been possible!" #~ msgstr "بدون همه شما انتشار این نسخه امکان پذیر نبود!" @@ -4125,27 +4781,25 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Learn more" #~ msgstr "اطلاعات بیشتر" -#~ msgid "Overview" -#~ msgstr "بازنگری" - #~ msgid "" -#~ "Previously, all Add-ons were unlocked via an activation code (purchased from " -#~ "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which " -#~ "need to be individually downloaded, installed and updated." +#~ "Previously, all Add-ons were unlocked via an activation code (purchased " +#~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " +#~ "plugins which need to be individually downloaded, installed and updated." #~ msgstr "" #~ "پیش از این، قفل همه افزودنی ها از طریق یک کد فعالسازی (خریداری شده از " -#~ "فروشگاه افزودنی ها) باز می شدند.اما در نسخه 4 همه آنها به صورت افزودنی های " -#~ "جداگانه هستند و باید به صورت جدا دریافت، نصب و بروزرسانی شوند." +#~ "فروشگاه افزودنی ها) باز می شدند.اما در نسخه 4 همه آنها به صورت افزودنی " +#~ "های جداگانه هستند و باید به صورت جدا دریافت، نصب و بروزرسانی شوند." #~ msgid "" -#~ "This page will assist you in downloading and installing each available Add-" -#~ "on." +#~ "This page will assist you in downloading and installing each available " +#~ "Add-on." #~ msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد." #~ msgid "Available Add-ons" #~ msgstr "افزودنی های موجود" -#~ msgid "The following Add-ons have been detected as activated on this website." +#~ msgid "" +#~ "The following Add-ons have been detected as activated on this website." #~ msgstr "افزودنی های زیر به صورت فعال در این سایت شناسایی شده اند" #~ msgid "Installation" @@ -4163,14 +4817,15 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Plugins > Add New > Upload" #~ msgstr "افزونه ها > افزودن > بارگذاری" -#~ msgid "Use the uploader to browse, select and install your Add-on (.zip file)" +#~ msgid "" +#~ "Use the uploader to browse, select and install your Add-on (.zip file)" #~ msgstr "" -#~ "از بارگذار برای انتخاب فایل استفاده کنید. افزودنی خود را (پرونده ZIP) انتخاب " -#~ "و نصب نمایید" +#~ "از بارگذار برای انتخاب فایل استفاده کنید. افزودنی خود را (پرونده ZIP) " +#~ "انتخاب و نصب نمایید" #~ msgid "" -#~ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' " -#~ "link" +#~ "Once the plugin has been uploaded and installed, click the 'Activate " +#~ "Plugin' link" #~ msgstr "" #~ "هنگامی که یک افزونه دریافت و نصب شده است، روی لینک (( فعال کردن افزونه)) " #~ "کلیک کنید" @@ -4246,11 +4901,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "فرمت ذخیره" #~ msgid "" -#~ "This format will determin the value saved to the database and returned via " -#~ "the API" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" #~ msgstr "" -#~ "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API قابل " -#~ "خواندن است" +#~ "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API " +#~ "قابل خواندن است" #~ msgid "\"yymmdd\" is the most versatile save format. Read more about" #~ msgstr "\"yymmdd\" بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر" @@ -4265,8 +4920,8 @@ msgstr "http://www.elliotcondon.com/" #~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " #~ "about" #~ msgstr "" -#~ "\"dd/mm/yy\" یا \"mm/dd/yy\" پر استفاده ترین قالب های نمایش تاریخ می باشند. " -#~ "اطلاعات بیشتر" +#~ "\"dd/mm/yy\" یا \"mm/dd/yy\" پر استفاده ترین قالب های نمایش تاریخ می " +#~ "باشند. اطلاعات بیشتر" #~ msgid "Field Order" #~ msgstr "ترتیب زمینه" diff --git a/lang/acf-fi.mo b/lang/acf-fi.mo index b4a4f67..4d4e909 100644 Binary files a/lang/acf-fi.mo and b/lang/acf-fi.mo differ diff --git a/lang/acf-fi.po b/lang/acf-fi.po index 24b7a28..548dfd6 100644 --- a/lang/acf-fi.po +++ b/lang/acf-fi.po @@ -1,26 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro\n" -"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-02-25 11:11+0200\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: \n" +"PO-Revision-Date: 2022-09-29T12:15:07+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: Poedit 2.2.4\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:3, pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" diff --git a/lang/acf-fr_CA.mo b/lang/acf-fr_CA.mo index 03f3b76..9994cb3 100644 Binary files a/lang/acf-fr_CA.mo and b/lang/acf-fr_CA.mo differ diff --git a/lang/acf-fr_CA.po b/lang/acf-fr_CA.po index 6b601ba..461a6f2 100644 --- a/lang/acf-fr_CA.po +++ b/lang/acf-fr_CA.po @@ -1,129 +1,3037 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.8.8\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2020-04-23 20:16-0400\n" -"PO-Revision-Date: 2020-04-23 21:07-0400\n" -"Last-Translator: Berenger Zyla \n" -"Language-Team: Bérenger Zyla \n" "Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 2.3\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" + +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" # @ acf -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Mises à jour" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blocs" # @ acf -#: acf.php:349 includes/admin/admin.php:54 -msgid "Field Groups" -msgstr "Groupes de champs" +#: includes/acf-wp-functions.php:83 pro/options-page.php:51 +msgid "Options" +msgstr "Options" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Utilisateurs" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Éléments de menu" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Fichiers attachés" # @ acf -#: acf.php:350 -msgid "Field Group" -msgstr "Groupe de champs" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomies" # @ acf -#: acf.php:351 acf.php:383 includes/admin/admin.php:55 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Add New" -msgstr "Ajouter" +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Articles" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "" # @ acf -#: acf.php:352 -msgid "Add New Field Group" -msgstr "Ajouter un nouveau groupe de champs" +#: includes/ajax/class-acf-ajax-local-json-diff.php:57 +#, php-format +msgid "Last updated: %s" +msgstr "Dernière mise à jour : %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "" + +#: includes/admin/admin-field-groups.php:478 +msgid "Awaiting save" +msgstr "En attente de sauvegarde" + +#: includes/admin/admin-field-groups.php:475 +msgid "Saved" +msgstr "Sauvegardé" + +#: includes/admin/admin-field-groups.php:471 +msgid "Import" +msgstr "Importer" + +#: includes/admin/admin-field-groups.php:467 +msgid "Review changes" +msgstr "Réviser les changements" # @ acf -#: acf.php:353 -msgid "Edit Field Group" +#: includes/admin/admin-field-groups.php:443 +#, php-format +msgid "Located in: %s" +msgstr "Localisé dans : %s" + +#: includes/admin/admin-field-groups.php:439 +#, php-format +msgid "Located in plugin: %s" +msgstr "Localisé dans le plugin : %s" + +#: includes/admin/admin-field-groups.php:435 +#, php-format +msgid "Located in theme: %s" +msgstr "Localisé dans le thème : %s" + +#: includes/admin/admin-field-groups.php:413 +msgid "Various" +msgstr "Variable" + +#: includes/admin/admin-field-groups.php:524 +msgid "Sync changes" +msgstr "Synchroniser les changements" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "" + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" + +#: includes/admin/admin.php:156 +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:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" + +#: includes/admin/admin.php:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "" + +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" + +#: includes/admin/admin.php:134 +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:132 +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-field-groups.php:135 +msgid "Overview" +msgstr "Aperçu" + +#: includes/locations-new.php:34 +#, php-format +msgid "Location type \"%s\" is already registered." +msgstr "Le type d’emplacement \"%s\" est déjà enregistré." + +# @ acf +#: includes/locations-new.php:23 +#, php-format +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 non valide." + +#: includes/fields/class-acf-field-user.php:361 +msgid "Error loading field." +msgstr "Erreur au chargement du champ." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "La valeur %s est requise" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Montrer ce champ si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Logique conditionnelle" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "et" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Champ Clone" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Mise-à-jour de la base de données nécessaire" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Page d‘options" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galerie" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenu flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Répéteur" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Retour aux outils" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Masquer" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Envoyer des rétroliens" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Mots-clés" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Catégories" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Attributs de page" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Auteur" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Identifiant (slug)" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Révisions" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Commentaires" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussion" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extrait" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Éditeur de contenu" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalien" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Affiché dans la liste des groupes de champs" + +#: includes/admin/views/field-group-options.php:122 +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/field-group-options.php:121 +msgid "Order No." +msgstr "Ordre" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Sous les champs" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Sous les intitulés" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Emplacement des instructions" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Emplacement de l'intitulé" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Sur le côté" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (après le contenu)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Haute (après le titre)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Position" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Sans contour (directement dans la page)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (boîte WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Style" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Type" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Identifiant" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Ordre" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Fermer le champ" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "largeur" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Attributs du conteneur" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instructions pour les auteurs. Affichées lors de la saisie du contenu" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instructions" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Type de champ" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Un seul mot, sans espace. Les « _ » et « - » sont autorisés" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nom du champ" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Titre du champ" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Supprimer" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Supprimer ce champ" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Déplacer" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Déplacer le champ dans un autre groupe" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Dupliquer ce champ" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Modifier ce champ" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Faites glisser pour réorganiser" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Montrer ce groupe si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Aucune mise-à-jour disponible." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Lecture des instructions de mise à niveau…" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Mise à niveau échouée." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Mise à niveau terminée." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Migration des données vers la version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Le site est à jour" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Mettre à niveau les sites" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Ajouter une règle" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Règles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copié" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copier dans le presse-papiers" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Le code suivant peut être utilisé pour enregistrer une version locale du/des " +"groupe(s) de champs sélectionné(s). Un groupe de champs local apporte de " +"nombreux bénéfices comme des temps de chargement plus rapide, la gestion de " +"versions, ou des champs/paramètres dynamiques. Copiez-collez le code suivant " +"dans le fichier functions.php de votre thème ou incluez-le depuis un autre " +"fichier." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Sélectionnez les groupes de champs" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Un groupe de champs a été exporté." +msgstr[1] "%s groupes de champs ont été exportés." + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Un groupe de champs importé" +msgstr[1] "%s groupes de champs importés" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Le fichier à importer est vide" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Type de fichier incorrect" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importer les groupes de champs" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Synchroniser" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Choisir %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Dupliquer" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Dupliquer cet élément" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Description" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synchronisation disponible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Groupe de champs synchronisé." +msgstr[1] "%s groupes de champs synchronisés." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Actif (%s)" +msgstr[1] "Actifs (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Mise à niveau de la base de données" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "ACF" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Déplacer le champ" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Choisissez la destination de ce champ" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Fermer la fenêtre" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Déplacement effectué." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activé" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Identifiants des champs" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Réglages" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Emplacement" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Vide" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copie" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(ce champ)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Coché" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Déplacer le champ personnalisé" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Aucun champ de sélection disponible" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Veuillez indiquer un titre pour le groupe de champs" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Brouillon du groupe de champs mis à jour." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Groupe de champs programmé." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Groupe de champs enregistré." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Groupe de champs enregistré." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Groupe de champs publié." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Groupe de champs supprimé." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Groupe de champs mis à jour." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Page" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Article" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relationnel" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Choix" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Commun" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Inconnu" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenu" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Titre" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" msgstr "Modifier le groupe de champs" -# @ acf -#: acf.php:354 -msgid "New Field Group" -msgstr "Nouveau groupe de champs" +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La sélection est inférieure à" -# @ default -#: acf.php:355 -msgid "View Field Group" -msgstr "Voir le groupe de champs" +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La sélection est supérieure à" -# @ default -#: acf.php:356 -msgid "Search Field Groups" -msgstr "Rechercher des groupes de champs" +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "La valeur est inférieure à" -# @ default -#: acf.php:357 -msgid "No Field Groups found" -msgstr "Aucun groupe de champs trouvé" +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "La valeur est supérieure à" -# @ default -#: acf.php:358 -msgid "No Field Groups found in Trash" -msgstr "Aucun groupe de champs trouvé dans la corbeille" +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "La valeur contient" -# @ acf -#: acf.php:381 includes/admin/admin-field-group.php:220 -#: includes/admin/admin-field-groups.php:260 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Champs" +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "La valeur correspond au modèle" -# @ acf -#: acf.php:382 -msgid "Field" -msgstr "Champ" +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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" -# @ acf -#: acf.php:384 -msgid "Add New Field" -msgstr "Ajouter un champ" +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "La valeur est égale à" -# @ acf -#: acf.php:385 -msgid "Edit Field" -msgstr "Modifier le champ" +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "N'a pas de valeur" -# @ acf -#: acf.php:386 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Nouveau champ" +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "A n'importe quelle valeur" -# @ acf -#: acf.php:387 -msgid "View Field" -msgstr "Voir le champ" +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Annuler" -# @ default -#: acf.php:388 -msgid "Search Fields" -msgstr "Rechercher des champs" +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Êtes-vous sûr(e)?" -# @ default -#: acf.php:389 +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d champs requièrent votre attention" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 champ requiert votre attention" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Échec de la validation" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validé avec succès" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Limité" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Masquer les détails" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Afficher les détails" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Lié(s) à cet article" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Mettre à jour" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Modifier" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "Le type de fichier doit être %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "ou" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Le poids de l'image ne doit pas dépasser %s." + +#: includes/api/api-helpers.php:3373 +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:3358 +msgid "Image height must not exceed %dpx." +msgstr "L'image ne doit pas dépasser %dpx de hauteur." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "L'image doit mesurer au moins %dpx de hauteur." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "L'image ne doit pas dépasser %dpx de largeur." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "L'image doit mesurer au moins %dpx de largeur." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sans titre)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Taille originale" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Moyen" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniature" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(aucun libellé)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Hauteur du champ" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permettre l’ajout de valeurs personnalisées" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Ajouter un choix" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Tout (dé)sélectionner" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Afficher les pages d’archives" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Ajouter" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nom" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s ajouté" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s existe déjà" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Utilisateur incapable d'ajouter un nouveau %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID du terme" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objet Terme" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Charger une valeur depuis les termes de l’article" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Charger les termes" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Lier les termes sélectionnés à l'article" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Enregistrer les termes" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Créer des termes" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Boutons radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valeur unique" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Sélecteur multiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Case à cocher" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valeurs multiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Apparence de ce champ" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apparence" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Choisissez la taxonomie à afficher" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Ajouter un choix « autre » pour autoriser une valeur personnalisée" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Bouton radio" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Ouverture multiple" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Ouvert" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Accordéon" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restreindre l'import de fichiers" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID du Fichier" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL du fichier" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Données du fichier (tableau)" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Ajouter un fichier" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Aucun fichier sélectionné" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nom du fichier" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Mettre à jour le fichier" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Modifier le fichier" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Définit la valeur retournée" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Utiliser AJAX pour charger les choix dynamiquement?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Choisir" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Échec du chargement" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Recherche en cours…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Chargement de résultats supplémentaires…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Aucun résultat trouvé" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Sélection" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID de l'utilisateur" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Objet" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Tableau" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Tous les rôles utilisateurs" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrer par rôle" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Choisir une couleur" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Valeur par défaut" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Sélectionner" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Valider" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Maintenant" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fuseau horaire" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milliseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Seconde" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Heure" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Heure" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Extrémité" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Aligné à gauche" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Aligné en haut" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Emplacement" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Onglet" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "La valeur doit être une URL valide" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Adresse web" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL du Lien" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Tableau de données" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Ouvrir dans un nouvel onglet/fenêtre" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Pas" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valeur maximale" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Les deux (tableau)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Libellé" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valeur" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rouge : Rouge" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Indiquez une valeur par ligne." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Autoriser la sélection multiple?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Autoriser une valeur vide?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Parent" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Retarder l’initialisation?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Afficher les boutons d‘ajout de médias?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barre d‘outils" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Texte brut seulement" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Visuel seulement" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visuel & Texte brut" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Onglets" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Cliquez pour initialiser TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texte" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visuel" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Éditeur WYSIWYG" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +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:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Laisser vide ne pas donner de limite" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limite de caractères" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Apparait après le champ" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Suffixe" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Apparait avant le champ" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Préfixe" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Apparait dans le champ" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Texte indicatif" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de l'article" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objet Article" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum d'articles sélectionnables" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum d'articles sélectionnables" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Image à la Une" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Éléments" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomie" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Type de publication" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtres" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Toutes les taxonomies" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrer par taxonomie" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Tous les types de publication" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrer par type de publication" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Rechercher…" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Choisissez la taxonomie" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Choisissez le type de publication" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Aucun résultat" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Chargement en cours" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Nombre maximal de valeurs atteint ({max} valeurs)" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relation" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Types de fichiers autorisés" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Taille du fichier" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restreindre les images envoyées" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Liés à cet article" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limiter le choix dans la médiathèque" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Médias" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Taille de prévisualisation" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de l‘image" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Adresse web de l'image" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Données de l'image (tableau)" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +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:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valeur renvoyée" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Ajouter une image" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Aucune image sélectionnée" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Enlever" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Modifier" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Toutes les images" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Mettre à jour" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Modifier l'image" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Afficher le code HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Pas de formatage" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Ajouter <br> automatiquement" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Ajouter des paragraphes automatiquement" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Comment sont interprétés les sauts de lignes" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nouvelles lignes" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semaine commencent le" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "Le format enregistré" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Enregistrer le format" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem." + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Préc." + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Suiv." + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Aujourd’hui" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Largeur" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Dimensions" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texte affiché lorsque le bouton est désactivé" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texte côté « Inactif »" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Text affiché lorsque le bouton est actif" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texte côté « Actif »" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valeur par défaut" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Message" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Non" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Rangée" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tableau" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloc" + +#: includes/fields/class-acf-field-group.php:464 +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:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Mise en page" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Hauteur de la carte" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Hauteur" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Niveau de zoom initial" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Position initiale du centre de la carte" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centre" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Chercher une adresse…" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Trouver l'emplacement actuel" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Effacer la position" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Rechercher" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Valeur retournée dans le code" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Format de retour" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personnalisé :" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Aucun champ trouvé dans la corbeille" + +#: acf.php:411 msgid "No Fields found" msgstr "Aucun champ trouvé" -# @ default -#: acf.php:390 -msgid "No Fields found in Trash" -msgstr "Aucun champ trouvé dans la corbeille" +#: acf.php:410 +msgid "Search Fields" +msgstr "Rechercher des champs" + +#: acf.php:409 +msgid "View Field" +msgstr "Voir le champ" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nouveau champ" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Modifier le champ" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Ajouter un champ" + +#: acf.php:404 +msgid "Field" +msgstr "Champ" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Champs" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Aucun groupe de champs trouvé dans la corbeille" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Aucun groupe de champs trouvé" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Rechercher des groupes de champs" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Voir le groupe de champs" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nouveau groupe de champs" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Modifier le groupe de champs" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Ajouter un nouveau groupe de champs" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Ajouter" + +#: acf.php:370 +msgid "Field Group" +msgstr "Groupe de champs" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" #: acf.php:425 msgid "Disabled" @@ -136,335 +3044,25 @@ msgid_plural "Disabled (%s)" msgstr[0] "Désactivé (%s)" msgstr[1] "Désactivés (%s)" -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:178 -msgid "(no label)" -msgstr "(aucun label)" - -#: includes/acf-field-group-functions.php:820 -#: includes/admin/admin-field-group.php:180 -msgid "copy" -msgstr "copie" - -# @ acf -#: includes/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Articles" - -# @ acf -#: includes/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taxonomies" - -#: includes/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Fichiers attachés" - -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Commentaires" - -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Widgets" - -#: includes/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:87 -msgid "Menus" -msgstr "Menus" - -#: includes/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "Éléments de menu" - -#: includes/acf-wp-functions.php:79 -msgid "Users" -msgstr "Utilisateurs" - -# @ acf -#: includes/acf-wp-functions.php:83 pro/options-page.php:51 -msgid "Options" -msgstr "Options" - -#: includes/acf-wp-functions.php:87 -msgid "Blocks" -msgstr "Blocs" - -# @ default -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "Groupe de champs mis à jour." - -# @ default -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "Groupe de champs supprimé." - -# @ default -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "Groupe de champ publié." - -# @ default -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "Groupe de champ enregistré." - -# @ default -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "Groupe de champ enregistré." - -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "Groupe de champs programmé pour." - -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "Brouillon du groupe de champs mis à jour." - -#: includes/admin/admin-field-group.php:171 -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/admin-field-group.php:172 -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" - -# @ default -#: includes/admin/admin-field-group.php:173 -msgid "Field group title is required" -msgstr "Veuillez indiquer un titre pour le groupe de champs" - # @ acf #: includes/admin/admin-field-group.php:174 msgid "Move to trash. Are you sure?" msgstr "Mettre à la corbeille. Êtes-vous sûr?" -#: includes/admin/admin-field-group.php:175 -msgid "No toggle fields available" -msgstr "Aucun champ de sélection disponible" - -# @ acf -#: includes/admin/admin-field-group.php:176 -msgid "Move Custom Field" -msgstr "Déplacer le champ personnalisé" - -#: includes/admin/admin-field-group.php:177 -msgid "Checked" -msgstr "Coché" - -#: includes/admin/admin-field-group.php:179 -msgid "(this field)" -msgstr "(ce champ)" - -#: includes/admin/admin-field-group.php:181 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3649 -msgid "or" -msgstr "ou" - -#: includes/admin/admin-field-group.php:182 -msgid "Null" -msgstr "Vide" - -# @ acf -#: includes/admin/admin-field-group.php:221 -#: includes/admin/admin-field-groups.php:259 -msgid "Location" -msgstr "Emplacement" - -#: includes/admin/admin-field-group.php:222 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Réglages" - -#: includes/admin/admin-field-group.php:372 -msgid "Field Keys" -msgstr "Identifiants des champs" - -#: includes/admin/admin-field-group.php:402 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Actif" - #: includes/admin/admin-field-group.php:402 msgid "Inactive" msgstr "Inactif" -#: includes/admin/admin-field-group.php:763 -msgid "Move Complete." -msgstr "Déplacement effectué." - #: includes/admin/admin-field-group.php:764 #, php-format msgid "The %s field can now be found in the %s field group" msgstr "Le champ %s a été déplacé dans le groupe %s" -# @ acf -#: includes/admin/admin-field-group.php:765 -msgid "Close Window" -msgstr "Fermer la fenêtre" - -# @ acf -#: includes/admin/admin-field-group.php:806 -msgid "Please select the destination for this field" -msgstr "Choisissez la destination de ce champ" - -# @ acf -#: includes/admin/admin-field-group.php:813 -msgid "Move Field" -msgstr "Déplacer le champ" - -#: includes/admin/admin-field-groups.php:102 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actif (%s)" -msgstr[1] "Actifs (%s)" - -#: includes/admin/admin-field-groups.php:135 -msgid "Overview" -msgstr "Aperçu" - #: includes/admin/admin-field-groups.php:224 msgctxt "post status" msgid "Disabled" msgstr "Désactivé" -# @ acf -#: includes/admin/admin-field-groups.php:257 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Description" -msgstr "Description" - -#: includes/admin/admin-field-groups.php:258 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Identifiant" - -#: includes/admin/admin-field-groups.php:263 -#: includes/admin/views/settings-info.php:91 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/admin-field-groups.php:413 -msgid "Various" -msgstr "Variable" - -#: includes/admin/admin-field-groups.php:435 -#, php-format -msgid "Located in theme: %s" -msgstr "Localisé dans le thème : %s" - -#: includes/admin/admin-field-groups.php:439 -#, php-format -msgid "Located in plugin: %s" -msgstr "Localisé dans le plugin : %s" - -# @ acf -#: includes/admin/admin-field-groups.php:443 -#, php-format -msgid "Located in: %s" -msgstr "Localisé dans : %s" - -# @ acf -#: includes/admin/admin-field-groups.php:463 -#: includes/admin/admin-field-groups.php:672 -msgid "Sync available" -msgstr "Synchronisation disponible" - -#: includes/admin/admin-field-groups.php:466 -msgid "Sync" -msgstr "Synchroniser" - -#: includes/admin/admin-field-groups.php:467 -msgid "Review changes" -msgstr "Réviser les changements" - -#: includes/admin/admin-field-groups.php:471 -msgid "Import" -msgstr "Importer" - -#: includes/admin/admin-field-groups.php:475 -msgid "Saved" -msgstr "Sauvegardé" - -#: includes/admin/admin-field-groups.php:478 -msgid "Awaiting save" -msgstr "En attente de sauvegarde" - -# @ acf -#: includes/admin/admin-field-groups.php:499 -msgid "Duplicate this item" -msgstr "Dupliquer cet élément" - -#: includes/admin/admin-field-groups.php:499 -#: includes/admin/admin-field-groups.php:519 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Duplicate" -msgstr "Dupliquer" - -#: includes/admin/admin-field-groups.php:524 -msgid "Sync changes" -msgstr "Synchroniser les changements" - -# @ default -#: includes/admin/admin-field-groups.php:546 -#, php-format -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Groupe de champs dupliqué." -msgstr[1] "%s groupes de champs dupliqués." - -# @ default -#: includes/admin/admin-field-groups.php:603 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Groupe de champs synchronisé." -msgstr[1] "%s groupes de champs synchronisés." - -# @ acf -#: includes/admin/admin-field-groups.php:776 -#, php-format -msgid "Select %s" -msgstr "Choisir %s" - -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Outils" - -# @ acf -#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 -#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Mise à niveau de la base de données" - -#: includes/admin/admin-upgrade.php:199 -msgid "Review sites & upgrade" -msgstr "Examiner les sites et mettre à niveau" - -# @ acf -#: includes/admin/admin.php:53 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "ACF" - #: includes/admin/admin.php:59 msgid "Info" msgstr "Informations" @@ -478,42 +3076,6 @@ msgstr "Nouveautés" msgid "Changelog" msgstr "Liste des modifications" -#: includes/admin/admin.php:182 -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 -msgid "and" -msgstr "et" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Exporter les groupes de champs" - -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "Générer le PHP" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Aucun groupe de champs sélectionné" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Un groupe de champ a été exporté." -msgstr[1] "%s groupes de champs ont été exportés." - -# @ default -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Sélectionnez les groupes de champs" - #: includes/admin/tools/class-acf-admin-tool-export.php:336 msgid "" "Select the field groups you would like to export and then select your export " @@ -531,34 +3093,6 @@ msgstr "" msgid "Export File" msgstr "Exporter le fichier" -#: includes/admin/tools/class-acf-admin-tool-export.php:414 -msgid "" -"The following code can be used to register a local version of the selected " -"field group(s). A local field group 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." -msgstr "" -"Le code suivant peut être utilisé pour enregistrer une version locale du/des " -"groupe(s) de champs sélectionné(s). Un groupe de champ local apporte de " -"nombreux bénéfices comme des temps de chargement plus rapide, la gestion de " -"versions, ou des champs/paramètres dynamiques. Copiez-collez le code suivant " -"dans le fichier functions.php de votre thème ou incluez-le depuis un autre " -"fichier." - -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Copier dans le presse-papiers" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Copié" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Importer les groupes de champs" - #: includes/admin/tools/class-acf-admin-tool-import.php:47 msgid "" "Select the Advanced Custom Fields JSON file you would like to import. When " @@ -567,188 +3101,15 @@ msgstr "" "Sélectionnez le fichier JSON ACF que vous souhaitez importer et cliquez sur " "Importer. ACF importera les groupes de champs." -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Sélectionner un fichier" - #: includes/admin/tools/class-acf-admin-tool-import.php:62 msgid "Import File" msgstr "Importer le fichier" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:170 -msgid "No file selected" -msgstr "Aucun fichier sélectionné" - -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -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:98 -msgid "Incorrect file type" -msgstr "Type de fichier incorrect" - -#: includes/admin/tools/class-acf-admin-tool-import.php:107 -msgid "Import file empty" -msgstr "Le fichier à importer est vide" - -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Un groupe de champs importé" -msgstr[1] "%s groupes de champs importés" - -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Logique conditionnelle" - -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Montrer ce champ si" - -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Ajouter une règle" - -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "Faites glisser pour réorganiser" - -# @ acf -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Modifier ce champ" - -# @ acf -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:152 -#: includes/fields/class-acf-field-image.php:138 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:337 -msgid "Edit" -msgstr "Modifier" - -# @ acf -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Dupliquer ce champ" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Déplacer le champ dans un autre groupe" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Déplacer" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Supprimer ce champ" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:556 -msgid "Delete" -msgstr "Supprimer" - -# @ acf -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Titre du champ" - -# @ acf -#: includes/admin/views/field-group-field.php:66 -msgid "This is the name which will appear on the EDIT page" -msgstr "Ce nom apparaîtra sur la page d‘édition" - -# @ acf -#: includes/admin/views/field-group-field.php:75 -msgid "Field Name" -msgstr "Nom du champ" - -# @ acf -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Un seul mot, sans espace. Les « _ » et « - » sont autorisés" - -# @ acf -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Type de champ" - -# @ acf -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Instructions" - -# @ acf -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructions pour les auteurs. Affichées lors de la saisie du contenu" - # @ acf #: includes/admin/views/field-group-field.php:106 msgid "Required?" msgstr "Requis?" -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Attributs du conteneur" - -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "largeur" - -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "classe" - -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "id" - -# @ acf -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Fermer le champ" - -# @ acf -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Ordre" - -# @ acf -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:582 -msgid "Label" -msgstr "Intitulé" - -# @ acf -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:936 -#: pro/fields/class-acf-field-flexible-content.php:596 -msgid "Name" -msgstr "Nom" - -# @ acf -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Type" - # @ acf #: includes/admin/views/field-group-fields.php:14 msgid "" @@ -763,307 +3124,16 @@ msgstr "" msgid "+ Add Field" msgstr "+ Ajouter un champ" -# @ acf -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Règles" - -# @ acf -#: includes/admin/views/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é" - -# @ acf -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Style" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Standard (boîte WP)" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Sans contour (directement dans la page)" - -# @ acf -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Haute (après le titre)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normal (après le contenu)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Sur le côté" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Emplacement de l’intitulé" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Aligné en haut" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Aligné à gauche" - -# @ acf -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Emplacement des instructions" - -# @ acf -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Sous les intitulés" - -# @ acf -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Sous les champs" - -# @ acf -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Ordre" - -#: includes/admin/views/field-group-options.php:86 -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/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Affiché dans la liste des groupes de champs" - -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Permalien" - -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Éditeur de contenu" - -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Extrait" - -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Discussion" - -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Révisions" - -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Identifiant (slug)" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Auteur" - -# @ acf -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Attributs de page" - -# @ acf -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:607 -msgid "Featured Image" -msgstr "Image à la Une" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Catégories" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Mots-clés" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Envoyer des rétroliens" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Masquer" - -# @ acf -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Sélectionnez les champs que vous souhaitez masquer sur la page " -"d‘édition." - -# @ acf -#: includes/admin/views/field-group-options.php:129 -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/html-admin-page-upgrade-network.php:26 -#, php-format -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/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Mettre à niveau les sites" - -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Site" - #: includes/admin/views/html-admin-page-upgrade-network.php:74 #, php-format msgid "Site requires database upgrade from %s to %s" msgstr "Le site requiert une mise à niveau de la base données de %s à %s" -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "Le site est à jour" - -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -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/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Merci de sélectionner au moins un site à mettre à niveau." - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Migration des données vers la version %s" - -#: includes/admin/views/html-admin-page-upgrade-network.php:158 -msgid "Upgrade complete." -msgstr "Mise à niveau terminée." - -#: includes/admin/views/html-admin-page-upgrade-network.php:161 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Mise à niveau échouée." - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Lecture des instructions de mise à niveau…" - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "" -"Mise à niveau de la base de données terminée. Consulter les " -"nouveautés" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "Aucune mise à jour disponible." - -#: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Retour aux outils" - -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Montrer ce groupe si" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Répéteur" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Contenu flexible" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galerie" - -# @ acf -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:26 -msgid "Options Page" -msgstr "Page d‘options" - -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Mise à jour de la base de données nécessaire" - #: includes/admin/views/html-notice-upgrade.php:22 #, php-format msgid "Thank you for updating to %s v%s!" msgstr "Merci d’avoir mis à jour %s v%s!" -#: includes/admin/views/html-notice-upgrade.php:22 -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/html-notice-upgrade.php:24 -#, php-format -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." - # @ acf #: includes/admin/views/settings-info.php:3 msgid "Welcome to Advanced Custom Fields" @@ -1234,10 +3304,6 @@ msgstr "" "Le champ oEmbed vous permet d’embarquer des vidéos, des images, des tweets, " "de l’audio ou encore d’autres média en toute simplicité." -#: includes/admin/views/settings-info.php:81 -msgid "Clone Field" -msgstr "Champ Clone" - #: includes/admin/views/settings-info.php:81 msgid "Pro" msgstr "Pro" @@ -1367,12 +3433,6 @@ msgstr "Nous pensons que vous allez adorer les nouveautés de la version %s." msgid "Error." msgstr "Erreur." -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:57 -#, php-format -msgid "Last updated: %s" -msgstr "Dernière mise à jour : %s" - # @ acf #: includes/ajax/class-acf-ajax-local-json-diff.php:62 msgid "Current field group" @@ -1382,1232 +3442,35 @@ msgstr "Groupe de champs actuel" msgid "Local JSON field group (newer)" msgstr "Groupe de champs local JSON (plus récent)" -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce invalide." - -#: includes/api/api-helpers.php:827 -msgid "Thumbnail" -msgstr "Miniature" - -#: includes/api/api-helpers.php:828 -msgid "Medium" -msgstr "Moyen" - -#: includes/api/api-helpers.php:829 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:878 -msgid "Full Size" -msgstr "Taille originale" - -# @ acf -#: includes/api/api-helpers.php:1599 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(sans titre)" - -#: includes/api/api-helpers.php:3570 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "L’image doit mesurer au moins %dpx de largeur." - -#: includes/api/api-helpers.php:3575 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "L’image ne doit pas dépasser %dpx de largeur." - -#: includes/api/api-helpers.php:3591 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "L’image doit mesurer au moins %dpx de hauteur." - -#: includes/api/api-helpers.php:3596 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "L’image ne doit pas dépasser %dpx de hauteur." - -#: includes/api/api-helpers.php:3614 -#, php-format -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:3619 #, php-format msgid "File size must must not exceed %s." msgstr "Le poids de l’image ne doit pas dépasser %s." -# @ acf -#: includes/api/api-helpers.php:3653 -#, php-format -msgid "File type must be %s." -msgstr "Le type de fichier doit être %s." - -#: includes/assets.php:184 -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/assets.php:187 includes/fields/class-acf-field-select.php:259 -msgctxt "verb" -msgid "Select" -msgstr "Choisir" - -#: includes/assets.php:188 -msgctxt "verb" -msgid "Edit" -msgstr "Modifier" - -#: includes/assets.php:189 -msgctxt "verb" -msgid "Update" -msgstr "Mettre à jour" - -#: includes/assets.php:190 -msgid "Uploaded to this post" -msgstr "Lié(s) à cet article" - -#: includes/assets.php:191 -msgid "Expand Details" -msgstr "Afficher les détails" - -#: includes/assets.php:192 -msgid "Collapse Details" -msgstr "Masquer les détails" - -#: includes/assets.php:193 -msgid "Restricted" -msgstr "Limité" - -# @ acf -#: includes/assets.php:194 includes/fields/class-acf-field-image.php:66 -msgid "All images" -msgstr "Toutes les images" - -#: includes/assets.php:197 -msgid "Validation successful" -msgstr "Validé avec succès" - -#: includes/assets.php:198 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Échec de la validation" - -#: includes/assets.php:199 -msgid "1 field requires attention" -msgstr "1 champ requiert votre attention" - -#: includes/assets.php:200 -#, php-format -msgid "%d fields require attention" -msgstr "%d champs requièrent votre attention" - -# @ acf -#: includes/assets.php:203 -msgid "Are you sure?" -msgstr "Êtes-vous sûr(e)?" - -#: includes/assets.php:204 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Oui" - -#: includes/assets.php:205 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "Non" - -# @ acf -#: includes/assets.php:206 includes/fields/class-acf-field-file.php:154 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:338 -#: pro/fields/class-acf-field-gallery.php:478 -msgid "Remove" -msgstr "Enlever" - -#: includes/assets.php:207 -msgid "Cancel" -msgstr "Annuler" - -#: includes/assets.php:210 -msgid "Has any value" -msgstr "A n’importe quelle valeur" - -#: includes/assets.php:211 -msgid "Has no value" -msgstr "N’a pas de valeur" - -#: includes/assets.php:212 -msgid "Value is equal to" -msgstr "La valeur est égale à" - -#: includes/assets.php:213 -msgid "Value is not equal to" -msgstr "La valeur est différente de" - -#: includes/assets.php:214 -msgid "Value matches pattern" -msgstr "La valeur correspond au modèle" - -#: includes/assets.php:215 -msgid "Value contains" -msgstr "La valeur contient" - -#: includes/assets.php:216 -msgid "Value is greater than" -msgstr "La valeur est supérieure à" - -#: includes/assets.php:217 -msgid "Value is less than" -msgstr "La valeur est inférieure à" - -#: includes/assets.php:218 -msgid "Selection is greater than" -msgstr "La sélection est supérieure à" - -#: includes/assets.php:219 -msgid "Selection is less than" -msgstr "La sélection est inférieure à" - -# @ acf -#: includes/assets.php:222 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Modifier le groupe de champs" - -# @ acf -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Ce type de champ n‘existe pas" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Inconnu" - -#: includes/fields.php:349 -msgid "Basic" -msgstr "Commun" - -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Contenu" - -# @ acf -#: includes/fields.php:351 -msgid "Choice" -msgstr "Choix" - -# @ acf -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relationnel" - -#: includes/fields.php:353 -msgid "jQuery" -msgstr "jQuery" - -# @ acf -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:553 -#: pro/fields/class-acf-field-flexible-content.php:602 -#: pro/fields/class-acf-field-repeater.php:448 -msgid "Layout" -msgstr "Mise en page" - -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Accordéon" - -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Ouvert" - -#: includes/fields/class-acf-field-accordion.php:100 -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:109 -msgid "Multi-expand" -msgstr "Ouverture multiple" - -#: includes/fields/class-acf-field-accordion.php:110 -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:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Extrémité" - -#: includes/fields/class-acf-field-accordion.php:120 -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-button-group.php:24 -msgid "Button Group" -msgstr "Groupe de boutons" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Choix" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Indiquez une valeur par ligne." - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -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 label de cette " -"manière :" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "rouge : Rouge" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:513 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:781 -#: includes/fields/class-acf-field-user.php:63 -msgid "Allow Null?" -msgstr "Autoriser une valeur vide?" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:155 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:381 -msgid "Default Value" -msgstr "Valeur par défaut" - -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:156 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:382 -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-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Vertical" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:826 -msgid "Return Value" -msgstr "Valeur renvoyée" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:216 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -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:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Valeur" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "Les deux (tableau/Array)" - -# @ acf -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:768 -msgid "Checkbox" -msgstr "Case à cocher" - -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Tout (dé)sélectionner" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Ajouter un choix" - #: includes/fields/class-acf-field-checkbox.php:353 msgid "Allow Custom" msgstr "Autoriser des valeurs personnalisées" -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Permettre l’ajout de valeurs personnalisées" - #: includes/fields/class-acf-field-checkbox.php:364 msgid "Save Custom" msgstr "Enregistrer les valeurs personnalisées" -#: includes/fields/class-acf-field-checkbox.php:369 -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:381 -#: includes/fields/class-acf-field-select.php:374 -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-checkbox.php:403 msgid "Toggle" msgstr "Tout (dé)sélectionner" -#: includes/fields/class-acf-field-checkbox.php:404 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" -"Ajouter une case à cocher au début pour tout sélectionner/désélectionner" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Sélecteur de couleur" - -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Effacer" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Valeur par défaut" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Choisir une couleur" - #: includes/fields/class-acf-field-color_picker.php:71 msgid "Current Color" msgstr "Couleur actuelle" -# @ acf -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Sélecteur de date" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Valider" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Aujourd’hui" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Suiv." - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Préc." - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem." - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Format d’affichage" - -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -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:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Personnalisé :" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "Enregistrer le format" - -#: includes/fields/class-acf-field-date_picker.php:198 -msgid "The format used when saving a value" -msgstr "Le format enregistré" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:204 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:634 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:79 -#: pro/fields/class-acf-field-gallery.php:557 -msgid "Return Format" -msgstr "Format de la valeur retournée" - -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "Valeur retournée dans le code" - -#: includes/fields/class-acf-field-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "La semaine commence le" - -#: 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-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Choisir l’heure" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuseau horaire" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Maintenant" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Valider" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -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 amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:85 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Adresse courriel" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Texte indicatif" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Apparait dans le champ" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Préfixe" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Apparait avant le champ" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:203 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Suffixe" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:204 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Apparait après le champ" - -# @ acf -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Modifier le fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Mettre à jour le fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Nom du fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:248 -#: includes/fields/class-acf-field-file.php:259 -#: includes/fields/class-acf-field-image.php:264 -#: includes/fields/class-acf-field-image.php:293 -#: pro/fields/class-acf-field-gallery.php:642 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "File size" -msgstr "Taille du fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:170 -msgid "Add File" -msgstr "Ajouter un fichier" - -#: includes/fields/class-acf-field-file.php:221 -msgid "File Array" -msgstr "Données du fichier (tableau/Array)" - -# @ acf -#: includes/fields/class-acf-field-file.php:222 -msgid "File URL" -msgstr "URL du fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:223 -msgid "File ID" -msgstr "ID du Fichier" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:229 -#: pro/fields/class-acf-field-gallery.php:592 -msgid "Library" -msgstr "Média" - -#: includes/fields/class-acf-field-file.php:231 -#: includes/fields/class-acf-field-image.php:230 -#: pro/fields/class-acf-field-gallery.php:593 -msgid "Limit the media library choice" -msgstr "Limiter le choix dans la médiathèque" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:235 -#: includes/locations/class-acf-location-attachment.php:71 -#: includes/locations/class-acf-location-comment.php:59 -#: includes/locations/class-acf-location-nav-menu.php:72 -#: includes/locations/class-acf-location-taxonomy.php:61 -#: includes/locations/class-acf-location-user-form.php:64 -#: includes/locations/class-acf-location-user-role.php:76 -#: includes/locations/class-acf-location-widget.php:63 -#: pro/fields/class-acf-field-gallery.php:598 -#: pro/locations/class-acf-location-block.php:80 -msgid "All" -msgstr "Tous" - -#: includes/fields/class-acf-field-file.php:237 -#: includes/fields/class-acf-field-image.php:236 -#: pro/fields/class-acf-field-gallery.php:599 -msgid "Uploaded to post" -msgstr "Liés à cet article" - -# @ acf -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-image.php:243 -#: pro/fields/class-acf-field-gallery.php:621 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:245 -#: includes/fields/class-acf-field-file.php:256 -msgid "Restrict which files can be uploaded" -msgstr "Restreindre l’import de fichiers" - -# @ acf -#: includes/fields/class-acf-field-file.php:255 -#: includes/fields/class-acf-field-image.php:272 -#: pro/fields/class-acf-field-gallery.php:650 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:301 -#: pro/fields/class-acf-field-gallery.php:678 -msgid "Allowed file types" -msgstr "Types de fichiers autorisés" - -#: includes/fields/class-acf-field-file.php:267 -#: includes/fields/class-acf-field-image.php:302 -#: pro/fields/class-acf-field-gallery.php:679 -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-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-google-map.php:59 -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:146 -#: includes/fields/class-acf-field-relationship.php:593 -msgid "Search" -msgstr "Rechercher" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Effacer la position" - -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Trouver l’emplacement actuel" - -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Chercher une adresse…" - -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Centre" - -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Position initiale du centre de la carte" - -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Niveau de zoom initial" - -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:255 -#: includes/fields/class-acf-field-image.php:284 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:633 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Height" -msgstr "Hauteur" - -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Hauteur de la carte" - -# @ acf -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groupe" - -# @ acf -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:384 -msgid "Sub Fields" -msgstr "Sous-champs" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "Style utilisé pour générer les champs sélectionnés" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:613 -#: pro/fields/class-acf-field-repeater.php:456 -#: pro/locations/class-acf-location-block.php:27 -msgid "Block" -msgstr "Bloc" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:612 -#: pro/fields/class-acf-field-repeater.php:455 -msgid "Table" -msgstr "Tableau" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:457 -msgid "Row" -msgstr "Rangée" - -# @ acf -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Image" - -# acf -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Sélectionner une image" - -# @ acf -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Modifier l’image" - -# @ acf -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Mettre à jour" - -# @ acf -#: includes/fields/class-acf-field-image.php:156 -msgid "No image selected" -msgstr "Aucune image sélectionnée" - -# @ acf -#: includes/fields/class-acf-field-image.php:156 -msgid "Add Image" -msgstr "Ajouter une image" - -# @ acf -#: includes/fields/class-acf-field-image.php:210 -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image Array" -msgstr "Données de l’image (tableau/Array)" - -# @ acf -#: includes/fields/class-acf-field-image.php:211 -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image URL" -msgstr "URL de l‘image" - -# @ acf -#: includes/fields/class-acf-field-image.php:212 -#: pro/fields/class-acf-field-gallery.php:565 -msgid "Image ID" -msgstr "ID de l‘image" - -# @ acf -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:571 -msgid "Preview Size" -msgstr "Taille de prévisualisation" - -#: includes/fields/class-acf-field-image.php:244 -#: includes/fields/class-acf-field-image.php:273 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Restrict which images can be uploaded" -msgstr "Restreindre les images envoyées" - -#: includes/fields/class-acf-field-image.php:247 -#: includes/fields/class-acf-field-image.php:276 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:625 -#: pro/fields/class-acf-field-gallery.php:654 -msgid "Width" -msgstr "Largeur" - -# @ acf -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Lien" - -# @ acf -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Sélectionner un lien" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Ouvrir dans un nouvel onglet/fenêtre" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Tableau de données (Array)" - -# @ acf -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "URL du Lien" - -# @ acf -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Message" - -# @ acf -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Nouvelles lignes" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Comment sont interprétés les sauts de lignes" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Ajouter des paragraphes automatiquement" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Ajouter <br> automatiquement" - -# @ acf -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Pas de formatage" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Afficher le code HTML" - -#: 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-number.php:25 -msgid "Number" -msgstr "Nombre" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:164 -msgid "Minimum Value" -msgstr "Valeur minimum" - -# @ acf -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:174 -msgid "Maximum Value" -msgstr "Valeur maximum" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:184 -msgid "Step Size" -msgstr "Pas" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "La valeur doit être un nombre" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Entrez l’URL" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Dimensions" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Lien vers page ou article" - -#: includes/fields/class-acf-field-page_link.php:177 -msgid "Archives" -msgstr "Archives" - -#: includes/fields/class-acf-field-page_link.php:269 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:958 -msgid "Parent" -msgstr "Parent" - -#: includes/fields/class-acf-field-page_link.php:485 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:560 -msgid "Filter by Post Type" -msgstr "Filtrer par type de publication" - -#: includes/fields/class-acf-field-page_link.php:493 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "All post types" -msgstr "Tous les types de publication" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:574 -msgid "Filter by Taxonomy" -msgstr "Filtrer par taxonomie" - -#: includes/fields/class-acf-field-page_link.php:507 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:582 -msgid "All taxonomies" -msgstr "Toutes les taxonomies" - -#: includes/fields/class-acf-field-page_link.php:523 -msgid "Allow Archives URLs" -msgstr "Afficher les pages d’archives" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:533 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:71 -msgid "Select multiple values?" -msgstr "Autoriser la sélection multiple?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Mot de passe" - -# @ acf -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:639 -msgid "Post Object" -msgstr "Objet Article" - -# @ acf -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:640 -msgid "Post ID" -msgstr "ID de l’article" - -# @ acf -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Bouton radio" - #: includes/fields/class-acf-field-radio.php:254 msgid "Other" msgstr "Autre" -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Ajouter un choix « Autre » pour autoriser des valeurs personnalisées" - #: includes/fields/class-acf-field-radio.php:265 msgid "Save Other" msgstr "Enregistrer les valeurs personnalisées" -#: includes/fields/class-acf-field-radio.php:270 -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-range.php:25 -msgid "Range" -msgstr "Plage de valeurs" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relation" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "Nombre maximal de valeurs atteint ({max} valeurs)" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "Chargement en cours" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Aucun résultat" - -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Choisissez le type de publication" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Choisissez la taxonomie" - -#: includes/fields/class-acf-field-relationship.php:477 -msgid "Search..." -msgstr "Rechercher…" - -#: includes/fields/class-acf-field-relationship.php:588 -msgid "Filters" -msgstr "Filtres" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:594 -#: includes/locations/class-acf-location-post-type.php:20 -msgid "Post Type" -msgstr "Type de publication" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:595 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:751 -#: includes/locations/class-acf-location-taxonomy.php:20 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:602 -msgid "Elements" -msgstr "Éléments" - -#: includes/fields/class-acf-field-relationship.php:603 -msgid "Selected elements will be displayed in each result" -msgstr "Les éléments sélectionnés seront affichés dans chaque résultat" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:614 -msgid "Minimum posts" -msgstr "Minimum d’articles sélectionnables" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Maximum posts" -msgstr "Maximum d’articles sélectionnables" - #: includes/fields/class-acf-field-relationship.php:727 #: pro/fields/class-acf-field-gallery.php:779 #, php-format @@ -2616,104 +3479,12 @@ msgid_plural "%s requires at least %s selections" msgstr[0] "%s requiert au moins %s sélection" msgstr[1] "%s requiert au moins %s sélections" -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:773 -msgctxt "noun" -msgid "Select" -msgstr "Sélection" - -#: includes/fields/class-acf-field-select.php:111 -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:112 -#, php-format -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:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Aucun résultat trouvé" - -#: includes/fields/class-acf-field-select.php:114 -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:115 -#, php-format -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:116 -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:117 -#, php-format -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:118 -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:119 -#, php-format -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:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Chargement de résultats supplémentaires…" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Recherche en cours…" - -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Échec du chargement" - # @ acf #: includes/fields/class-acf-field-select.php:402 #: includes/fields/class-acf-field-true_false.php:144 msgid "Stylised UI" msgstr "Interface stylisée" -#: includes/fields/class-acf-field-select.php:412 -msgid "Use AJAX to lazy load choices?" -msgstr "Utiliser AJAX pour charger les choix dynamiquement?" - -#: includes/fields/class-acf-field-select.php:428 -msgid "Specify the value returned" -msgstr "Définit la valeur retournée" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Séparateur" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Onglet" - -#: includes/fields/class-acf-field-tab.php:102 -msgid "Placement" -msgstr "Emplacement" - #: includes/fields/class-acf-field-tab.php:115 msgid "" "Define an endpoint for the previous tabs to stop. This will start a new " @@ -2728,457 +3499,11 @@ msgctxt "No terms" msgid "No %s" msgstr "Pas de %s" -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the taxonomy to be displayed" -msgstr "Choisissez la taxonomie à afficher" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Appearance" -msgstr "Apparence" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Select the appearance of this field" -msgstr "Apparence de ce champ" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:767 -msgid "Multiple Values" -msgstr "Valeurs multiples" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:769 -msgid "Multi Select" -msgstr "Sélecteur multiple" - -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Single Value" -msgstr "Valeur unique" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Radio Buttons" -msgstr "Boutons radio" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:796 -msgid "Create Terms" -msgstr "Créer des termes" - -#: includes/fields/class-acf-field-taxonomy.php:797 -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:806 -msgid "Save Terms" -msgstr "Enregistrer les termes" - -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Connect selected terms to the post" -msgstr "Lier les termes sélectionnés à l’article" - -#: includes/fields/class-acf-field-taxonomy.php:816 -msgid "Load Terms" -msgstr "Charger les termes" - -#: includes/fields/class-acf-field-taxonomy.php:817 -msgid "Load value from posts terms" -msgstr "Charger une valeur depuis les termes de l’article" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:831 -msgid "Term Object" -msgstr "Objet Terme" - -#: includes/fields/class-acf-field-taxonomy.php:832 -msgid "Term ID" -msgstr "ID du terme" - -#: includes/fields/class-acf-field-taxonomy.php:882 -#, php-format -msgid "User unable to add new %s" -msgstr "Utilisateur incapable d’ajouter un nouveau %s" - -#: includes/fields/class-acf-field-taxonomy.php:892 -#, php-format -msgid "%s already exists" -msgstr "%s existe déjà" - -#: includes/fields/class-acf-field-taxonomy.php:924 -#, php-format -msgid "%s added" -msgstr "%s ajouté" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:970 -#: includes/locations/class-acf-location-user-form.php:65 -msgid "Add" -msgstr "Ajouter" - -# @ acf -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texte" - -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Limite de caractères" - -#: includes/fields/class-acf-field-text.php:132 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Laisser vide ne pas donner de limite" - -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:215 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "La valeur ne doit pas dépasser %d caractères" - -# @ acf -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Zone de texte" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Lignes" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Hauteur du champ" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Sélecteur d’heure" - -# @ acf -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Oui / Non" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Affiche le texte à côté de la case à cocher" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Texte côté « Actif »" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Text affiché lorsque le bouton est actif" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Texte côté « Inactif »" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Texte affiché lorsque le bouton est désactivé" - -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "URL" - -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "La valeur doit être une URL valide" - -#: includes/fields/class-acf-field-user.php:20 includes/locations-new.php:99 -#: includes/locations.php:95 -msgid "User" -msgstr "Utilisateur" - -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by role" -msgstr "Filtrer par rôle" - -#: 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:84 -msgid "User Array" -msgstr "Tableau Utilisateur (Array)" - -#: includes/fields/class-acf-field-user.php:85 -msgid "User Object" -msgstr "Objet Utilisateur" - -#: includes/fields/class-acf-field-user.php:86 -msgid "User ID" -msgstr "ID de l’Utilisateur" - -#: includes/fields/class-acf-field-user.php:334 -msgid "Error loading field." -msgstr "Échec du chargement du champ." - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "Éditeur WYSIWYG" - -#: includes/fields/class-acf-field-wysiwyg.php:330 -msgid "Visual" -msgstr "Visuel" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:331 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texte" - -#: includes/fields/class-acf-field-wysiwyg.php:337 -msgid "Click to initialize TinyMCE" -msgstr "Cliquez pour initialiser TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "Tabs" -msgstr "Onglets" - -#: includes/fields/class-acf-field-wysiwyg.php:395 -msgid "Visual & Text" -msgstr "Visuel & Texte brut" - -#: includes/fields/class-acf-field-wysiwyg.php:396 -msgid "Visual Only" -msgstr "Visuel seulement" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:397 -msgid "Text Only" -msgstr "Texte brut seulement" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:404 -msgid "Toolbar" -msgstr "Barre d‘outils" - -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Show Media Upload Buttons?" -msgstr "Afficher le bouton d‘ajout de média?" - -#: includes/fields/class-acf-field-wysiwyg.php:429 -msgid "Delay initialization?" -msgstr "Retarder l’initialisation?" - -#: includes/fields/class-acf-field-wysiwyg.php:430 -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/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353 -msgid "Title" -msgstr "Titre" - -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Valider l’adresse courriel" - -# @ acf -#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 -#: pro/options-page.php:81 -msgid "Update" -msgstr "Mise à jour" - -# @ acf -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "Article mis à jour" - -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "Pourriel repéré" - #: includes/forms/form-user.php:336 #, php-format msgid "ERROR: %s" msgstr "ERREUR : %s" -# @ acf -#: includes/locations-new.php:23 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "La classe \"%s\" n’existe pas." - -#: includes/locations-new.php:34 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "Le type d’emplacement \"%s\" est déjà enregistré." - -# @ acf -#: includes/locations-new.php:97 includes/locations.php:93 -#: includes/locations/class-acf-location-post.php:20 -msgid "Post" -msgstr "Article" - -# @ acf -#: includes/locations-new.php:98 includes/locations.php:94 -#: includes/locations/class-acf-location-page.php:20 -msgid "Page" -msgstr "Page" - -# @ acf -#: includes/locations-new.php:100 includes/locations.php:96 -msgid "Forms" -msgstr "Formulaires" - -#: includes/locations-new.php:172 includes/locations.php:243 -#: includes/locations/abstract-acf-location.php:95 -msgid "is equal to" -msgstr "est égal à" - -#: includes/locations-new.php:173 includes/locations.php:244 -#: includes/locations/abstract-acf-location.php:96 -msgid "is not equal to" -msgstr "n‘est pas égal à" - -#: includes/locations/class-acf-location-attachment.php:20 -msgid "Attachment" -msgstr "Fichier attaché" - -#: includes/locations/class-acf-location-attachment.php:82 -#, php-format -msgid "All %s formats" -msgstr "Tous les formats %s" - -#: includes/locations/class-acf-location-comment.php:20 -msgid "Comment" -msgstr "Commentaire" - -# @ acf -#: includes/locations/class-acf-location-current-user-role.php:20 -msgid "Current User Role" -msgstr "Rôle de l’utilisateur courant" - -#: includes/locations/class-acf-location-current-user-role.php:75 -msgid "Super Admin" -msgstr "Super Administrateur" - -#: includes/locations/class-acf-location-current-user.php:20 -msgid "Current User" -msgstr "Utilisateur courant" - -#: includes/locations/class-acf-location-current-user.php:69 -msgid "Logged in" -msgstr "Connecté" - -#: includes/locations/class-acf-location-current-user.php:70 -msgid "Viewing front end" -msgstr "Est dans le site" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Viewing back end" -msgstr "Est dans l’interface d’administration" - -#: includes/locations/class-acf-location-nav-menu-item.php:20 -msgid "Menu Item" -msgstr "Élément de menu" - -#: includes/locations/class-acf-location-nav-menu.php:20 -msgid "Menu" -msgstr "Menu" - -# @ acf -#: includes/locations/class-acf-location-nav-menu.php:78 -msgid "Menu Locations" -msgstr "Emplacement de menu" - -# @ acf -#: includes/locations/class-acf-location-page-parent.php:20 -msgid "Page Parent" -msgstr "Page parente" - -#: includes/locations/class-acf-location-page-template.php:20 -msgid "Page Template" -msgstr "Modèle de page" - -# @ acf -#: includes/locations/class-acf-location-page-template.php:71 -#: includes/locations/class-acf-location-post-template.php:83 -msgid "Default Template" -msgstr "Modèle de base" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:20 -msgid "Page Type" -msgstr "Type de page" - -#: includes/locations/class-acf-location-page-type.php:105 -msgid "Front Page" -msgstr "Page d’accueil" - -#: includes/locations/class-acf-location-page-type.php:106 -msgid "Posts Page" -msgstr "Page des articles" - -#: includes/locations/class-acf-location-page-type.php:107 -msgid "Top Level Page (no parent)" -msgstr "Page de haut niveau (sans parent)" - -#: includes/locations/class-acf-location-page-type.php:108 -msgid "Parent Page (has children)" -msgstr "Page parente (avec page(s) enfant)" - -#: includes/locations/class-acf-location-page-type.php:109 -msgid "Child Page (has parent)" -msgstr "Page enfant (avec parent)" - -#: includes/locations/class-acf-location-post-category.php:20 -msgid "Post Category" -msgstr "Catégorie" - -# @ acf -#: includes/locations/class-acf-location-post-format.php:20 -msgid "Post Format" -msgstr "Format d‘article" - -# @ acf -#: includes/locations/class-acf-location-post-status.php:20 -msgid "Post Status" -msgstr "Statut de l’article" - -# @ acf -#: includes/locations/class-acf-location-post-taxonomy.php:20 -msgid "Post Taxonomy" -msgstr "Taxonomie" - -#: includes/locations/class-acf-location-post-template.php:20 -msgid "Post Template" -msgstr "Modèle d’article" - -# @ acf -#: includes/locations/class-acf-location-user-form.php:20 -msgid "User Form" -msgstr "Formulaire utilisateur" - -#: includes/locations/class-acf-location-user-form.php:66 -msgid "Add / Edit" -msgstr "Ajouter / Modifier" - -#: includes/locations/class-acf-location-user-form.php:67 -msgid "Register" -msgstr "Inscription" - -# @ acf -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Rôle utilisateur" - -#: includes/locations/class-acf-location-widget.php:20 -msgid "Widget" -msgstr "Widget" - -# @ default -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "La valeur %s est requise" - # @ acf #. Plugin Name of the plugin/theme #: pro/acf-pro.php:28 @@ -3203,11 +3528,6 @@ msgstr "" msgid "Error. Could not connect to update server" msgstr "Erreur. Impossible de joindre le serveur" -# @ acf -#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "Mises à jour" - #: pro/admin/admin-updates.php:191 msgid "" "Error. Could not authenticate update package. Please check again or " @@ -3621,17 +3941,6 @@ msgstr "Normal" msgid "Fancy" msgstr "Élaboré" -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" - -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personnalisez WordPress avec des champs intuitifs, puissants et " -"professionnels." - #. Author of the plugin/theme msgid "Elliot Condon" msgstr "Elliot Condon" diff --git a/lang/acf-fr_FR.mo b/lang/acf-fr_FR.mo old mode 100755 new mode 100644 index 57005fe..8c4398b Binary files a/lang/acf-fr_FR.mo and b/lang/acf-fr_FR.mo differ diff --git a/lang/acf-fr_FR.po b/lang/acf-fr_FR.po index c5156a9..31c18fe 100644 --- a/lang/acf-fr_FR.po +++ b/lang/acf-fr_FR.po @@ -1,662 +1,1155 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.8.5\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2020-08-17 10:46+0200\n" -"PO-Revision-Date: 2021-03-31 09:22+0930\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Français\n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Loco-Version: 2.4.2; wp-5.5\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -# @ acf -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "Commencez un nouveau groupe d’onglets dans cet onglet." -# @ acf -#: acf.php:348 includes/admin/admin.php:49 -msgid "Field Groups" -msgstr "Groupes de champs" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "Nouveau groupe d’onglets" -# @ acf -#: acf.php:349 -msgid "Field Group" -msgstr "Groupe de champs" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "Utiliser une case à cocher stylisée avec select2" -# @ acf -#: acf.php:350 acf.php:382 includes/admin/admin.php:50 -#: pro/fields/class-acf-field-flexible-content.php:559 -msgid "Add New" -msgstr "Ajouter" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "Enregistrer un autre choix" -# @ acf -#: acf.php:351 -msgid "Add New Field Group" -msgstr "Ajouter un nouveau groupe de champs" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "Autoriser un autre choix" -# @ acf -#: acf.php:352 -msgid "Edit Field Group" -msgstr "Modifier le groupe de champs" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -# @ acf -#: acf.php:353 -msgid "New Field Group" -msgstr "Nouveau groupe de champs" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Enregistrer les valeurs personnalisées" -# @ default -#: acf.php:354 -msgid "View Field Group" -msgstr "Voir le groupe de champs" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Autoriser les valeurs personnalisées" -# @ default -#: acf.php:355 -msgid "Search Field Groups" -msgstr "Rechercher un groupe de champs" +#: includes/fields/class-acf-field-checkbox.php:144 +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." -# @ default -#: acf.php:356 -msgid "No Field Groups found" -msgstr "Aucun groupe de champs trouvé" +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Mises à jour" -# @ default -#: acf.php:357 -msgid "No Field Groups found in Trash" -msgstr "Aucun groupe de champs trouvé dans la corbeille" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "Logo Advanced Custom Fields" -# @ acf -#: acf.php:380 includes/admin/admin-field-group.php:232 -#: includes/admin/admin-field-groups.php:262 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Champs" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Enregistrer les modifications" -# @ acf -#: acf.php:381 -msgid "Field" -msgstr "Champ" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Titre du groupe de champs" -# @ acf -#: acf.php:383 -msgid "Add New Field" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Ajouter un titre" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +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/field-groups-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/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Ajouter votre premier groupe de champs" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Mettre à niveau maintenant" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Pages d’options" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "Blocs ACF" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Champ galerie" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Champ de contenu flexible" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Champ répéteur" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "Débloquer des fonctionnalités supplémentaires avec ACF PRO" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Supprimer le groupe de champ" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Créé le %1$s à %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "Réglages du groupe" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "Règles de localisation" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" +"Choisissez parmi plus de 30 types de champs. En savoir plus." + +#: includes/admin/views/field-group-fields.php:54 +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/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "N°" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" msgstr "Ajouter un champ" -# @ acf -#: acf.php:384 -msgid "Edit Field" -msgstr "Modifier le champ" +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Présentation" -# @ acf -#: acf.php:385 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Nouveau champ" +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validation" -# @ acf -#: acf.php:386 -msgid "View Field" -msgstr "Voir le champ" +#: includes/admin/views/field-group-field.php:94 +msgid "General" +msgstr "Général" -# @ default -#: acf.php:387 -msgid "Search Fields" -msgstr "Rechercher des champs" +#: includes/admin/tools/class-acf-admin-tool-import.php:70 +msgid "Import JSON" +msgstr "Importation de JSON" -# @ default -#: acf.php:388 -msgid "No Fields found" -msgstr "Aucun champ trouvé" +#: includes/admin/tools/class-acf-admin-tool-export.php:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Exporter des groupes de champs - Générer du PHP" -# @ default -#: acf.php:389 -msgid "No Fields found in Trash" -msgstr "Aucun champ trouvé dans la corbeille" +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Exporter en tant que JSON" -#: acf.php:424 includes/admin/admin-field-groups.php:226 +#: includes/admin/admin-field-groups.php:638 +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." + +#: includes/admin/admin-field-groups.php:585 +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-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Désactiver" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Désactiver cet élément" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Activer" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Activer cet élément" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "Déplacer le groupe de champs vers la corbeille ?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 msgctxt "post status" -msgid "Disabled" -msgstr "Désactivé" +msgid "Inactive" +msgstr "Inactif" -#: acf.php:429 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "Désactivé (%s)" -msgstr[1] "Désactivés (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:178 -msgid "(no label)" -msgstr "(aucun libellé)" +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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." -#: includes/acf-field-group-functions.php:820 -#: includes/admin/admin-field-group.php:180 -msgid "copy" -msgstr "copie" +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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." -# @ acf -#: includes/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Publications" +#: 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." -# @ acf -#: includes/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taxonomies" +#: includes/fields/class-acf-field-user.php:537 +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/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Médias" +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s doit avoir un ID de compte valide." -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Commentaires" +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Demande invalide." -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Widgets" +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "%1$s n’est pas l’un des %2$s" -#: includes/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:87 -msgid "Menus" -msgstr "Menus" +#: includes/fields/class-acf-field-post_object.php:669 +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/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "Éléments de menu" +#: includes/fields/class-acf-field-post_object.php:653 +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/acf-wp-functions.php:79 -msgid "Users" -msgstr "Utilisateurs" +#: includes/fields/class-acf-field-post_object.php:644 +msgid "%1$s must have a valid post ID." +msgstr "%1$s doit avoir un ID de publication valide." -# @ acf -#: includes/acf-wp-functions.php:83 pro/options-page.php:51 -msgid "Options" -msgstr "Options" +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "%s nécessite un ID de fichier jointe valide." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Afficher dans l’API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activer la transparence" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Tableau RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Chaine RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Chaine hexadécimale" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galerie (Pro uniquement)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Cloner (Pro uniquement)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contenu Flexible (Pro uniquement)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Répéteur (Pro uniquement)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Actif" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valeur de la couleur" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Sélectionner une couleur par défaut" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Effacer la couleur" #: includes/acf-wp-functions.php:87 msgid "Blocks" msgstr "Blocs" -# @ default -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "Groupe de champs mis à jour." +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Options" -# @ default -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "Groupe de champs supprimé." +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Comptes" -# @ default -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "Groupe de champ publié." +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Éléments de menu" -# @ default -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "Groupe de champ enregistré." +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" -# @ default -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "Groupe de champ enregistré." +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Fichiers joints" -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "Groupe de champs programmé pour." +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomies" -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "Brouillon du groupe de champs mis à jour." +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Publications" -#: includes/admin/admin-field-group.php:171 -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/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Groupe de champs JSON (plus récent)" -#: includes/admin/admin-field-group.php:172 -msgid "This field cannot be moved until its changes have been saved" +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Groupe de champ original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Dernière mise à jour : %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." msgstr "" -"Ce champ ne peut pas être déplacé tant que ses modifications n'ont pas été " -"enregistrées" +"Désolé, ce groupe de champ n’est pas disponible pour la comparaison de " +"différence." -# @ default -#: includes/admin/admin-field-group.php:173 -msgid "Field group title is required" -msgstr "Veuillez indiquer un titre pour le groupe de champs" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de groupe de champ invalide." -# @ acf -#: includes/admin/admin-field-group.php:174 -msgid "Move to trash. Are you sure?" -msgstr "Mettre à la corbeille. Êtes-vous sûr ?" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Paramètres de groupe de champ invalides." -#: includes/admin/admin-field-group.php:175 -msgid "No toggle fields available" -msgstr "Ajoutez d’abord une case à cocher ou un champ sélection" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "En attente d’enregistrement" -# @ acf -#: includes/admin/admin-field-group.php:176 -msgid "Move Custom Field" -msgstr "Déplacer le champ personnalisé" - -#: includes/admin/admin-field-group.php:177 -msgid "Checked" -msgstr "Coché" - -#: includes/admin/admin-field-group.php:179 -msgid "(this field)" -msgstr "(ce champ)" - -#: includes/admin/admin-field-group.php:181 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3675 -msgid "or" -msgstr "ou" - -#: includes/admin/admin-field-group.php:182 -msgid "Null" -msgstr "Vide" - -#: includes/admin/admin-field-group.php:185 -msgid "Has any value" -msgstr "A n'importe quelle valeur" - -#: includes/admin/admin-field-group.php:186 -msgid "Has no value" -msgstr "N'a pas de valeur" - -#: includes/admin/admin-field-group.php:187 -msgid "Value is equal to" -msgstr "La valeur est égale à" - -#: includes/admin/admin-field-group.php:188 -msgid "Value is not equal to" -msgstr "La valeur est différente de" - -#: includes/admin/admin-field-group.php:189 -msgid "Value matches pattern" -msgstr "La valeur correspond au modèle" - -#: includes/admin/admin-field-group.php:190 -msgid "Value contains" -msgstr "La valeur contient" - -#: includes/admin/admin-field-group.php:191 -msgid "Value is greater than" -msgstr "La valeur est supérieure à" - -#: includes/admin/admin-field-group.php:192 -msgid "Value is less than" -msgstr "La valeur est inférieure à" - -#: includes/admin/admin-field-group.php:193 -msgid "Selection is greater than" -msgstr "La sélection est supérieure à" - -#: includes/admin/admin-field-group.php:194 -msgid "Selection is less than" -msgstr "La sélection est inférieure à" - -# @ acf -#: includes/admin/admin-field-group.php:233 -#: includes/admin/admin-field-groups.php:261 -msgid "Location" -msgstr "Emplacement" - -#: includes/admin/admin-field-group.php:234 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Réglages" - -#: includes/admin/admin-field-group.php:384 -msgid "Field Keys" -msgstr "Identifiants des champs" - -#: includes/admin/admin-field-group.php:414 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Actif" - -#: includes/admin/admin-field-group.php:414 -msgid "Inactive" -msgstr "Inactif" - -#: includes/admin/admin-field-group.php:775 -msgid "Move Complete." -msgstr "Déplacement effectué." - -#: includes/admin/admin-field-group.php:776 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "Le champ %s a été déplacé dans le groupe %s" - -# @ acf -#: includes/admin/admin-field-group.php:777 -msgid "Close Window" -msgstr "Fermer la fenêtre" - -# @ acf -#: includes/admin/admin-field-group.php:818 -msgid "Please select the destination for this field" -msgstr "Choisissez la destination de ce champ" - -# @ acf -#: includes/admin/admin-field-group.php:825 -msgid "Move Field" -msgstr "Déplacer le champ" - -#: includes/admin/admin-field-groups.php:114 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actif (%s)" -msgstr[1] "Actifs (%s)" - -#: includes/admin/admin-field-groups.php:193 -msgid "Review local JSON changes" -msgstr "Voir les modifications du JSON local" - -#: includes/admin/admin-field-groups.php:194 -msgid "Loading diff" -msgstr "Chargement du différentiel" - -#: includes/admin/admin-field-groups.php:195 -#: includes/admin/admin-field-groups.php:529 -msgid "Sync changes" -msgstr "Synchroniser" - -# @ acf -#: includes/admin/admin-field-groups.php:259 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Description" -msgstr "Description" - -#: includes/admin/admin-field-groups.php:260 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Identifiant" - -#: includes/admin/admin-field-groups.php:265 -msgid "Local JSON" -msgstr "JSON Local" - -#: includes/admin/admin-field-groups.php:415 -msgid "Various" -msgstr "Divers" - -#: includes/admin/admin-field-groups.php:437 -#, php-format -msgid "Located in theme: %s" -msgstr "Situé dans le thème : %s" - -#: includes/admin/admin-field-groups.php:441 -#, php-format -msgid "Located in plugin: %s" -msgstr "Situé dans l’extension : %s" - -# @ acf -#: includes/admin/admin-field-groups.php:445 -#, php-format -msgid "Located in: %s" -msgstr "Situé dans : %s" - -# @ acf -#: includes/admin/admin-field-groups.php:465 -#: includes/admin/admin-field-groups.php:683 -msgid "Sync available" -msgstr "Synchronisation disponible" - -#: includes/admin/admin-field-groups.php:468 -msgid "Sync" -msgstr "Synchronisation" - -#: includes/admin/admin-field-groups.php:469 -msgid "Review changes" -msgstr "Voir les changements" - -#: includes/admin/admin-field-groups.php:473 -msgid "Import" -msgstr "Importer" - -#: includes/admin/admin-field-groups.php:477 +#: includes/admin/admin-field-groups.php:503 msgid "Saved" msgstr "Enregistré" -#: includes/admin/admin-field-groups.php:480 -msgid "Awaiting save" -msgstr "En attente d’une sauvegarde" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importer" -# @ acf -#: includes/admin/admin-field-groups.php:501 -msgid "Duplicate this item" -msgstr "Dupliquer cet élément" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Évaluer les modifications" -#: includes/admin/admin-field-groups.php:501 -#: includes/admin/admin-field-groups.php:521 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Duplicate" -msgstr "Dupliquer" +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Situés dans : %s" -#: includes/admin/admin-field-groups.php:551 -#, php-format -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-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Situés dans l’extension : %s" -#: includes/admin/admin-field-groups.php:608 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Groupe de champs synchronisé." -msgstr[1] "%s groupes de champs synchronisés." +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Situés dans le thème : %s" -# @ acf -#: includes/admin/admin-field-groups.php:794 -#, php-format -msgid "Select %s" -msgstr "Choisir %s" +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Divers" -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Outils" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Synchroniser les modifications" -# @ acf -#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 -#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Mise à niveau de la base de données" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Chargement du différentiel" -#: includes/admin/admin-upgrade.php:199 -msgid "Review sites & upgrade" -msgstr "Examiner les sites et mettre à niveau" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Vérifier les modifications JSON locales" -# @ acf -#: includes/admin/admin.php:48 -#: includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "ACF" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visiter le site" -#: includes/admin/admin.php:128 includes/admin/admin.php:130 -msgid "Overview" -msgstr "Aperçu" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Voir les détails" -#: includes/admin/admin.php:131 +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Informations" + +#: includes/admin/admin.php:160 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." +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." msgstr "" -"Advanced Custom Fields fournit un constructeur visuel vous permettant de " -"personnaliser les écrans de WordPress en ajoutant des champs additionnels, " -"ainsi qu’une API intuitive pour afficher ces valeurs dans tous les modèles " -"de votre thème." +"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:133 -#, php-format -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 Champs, nous vous recommandons de " -"lire notre Guide de démarrage afin de " -"vous familiariser avec la philosophie et les bonnes pratiques de l’extension." - -#: includes/admin/admin.php:136 -msgid "" -"Please use the Help & Support tab to get in touch should you find yourself " -"requiring assistance." -msgstr "" -"Utilisez l’onglet Aide & Support afin de nous contacter dans le cas où vous " -"auriez besoin d’assistance." - -#: includes/admin/admin.php:145 includes/admin/admin.php:147 -msgid "Help & Support" -msgstr "Aide & Support" - -#: includes/admin/admin.php:148 -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 des fanatiques du support et nous souhaitons que vous ayez la " -"meilleure expérience avec ACF. Si vous avez des difficultés, voici plusieurs " -"solutions pour obtenir de l’aide :" - -#: includes/admin/admin.php:151 -#, php-format -msgid "" -"Documentation. Our extensive " -"documentation contains references and guides for most situations you may " -"encounter." -msgstr "" -"Documentation. Notre documentation est " -"très complète et contient les ressources et exemples pour faire face à " -"toutes les situations que vous devriez rencontrer." - -#: includes/admin/admin.php:155 -#, php-format +#: includes/admin/admin.php:156 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 "" -"Forums. Nous avons une communauté " -"active et amicale sur nos forums qui pourrait être capable de vous aider " -"quant aux bonnes pratiques de l’univers ACF." +"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:159 -#, php-format +#: includes/admin/admin.php:152 msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." msgstr "" -"Support. Nos professionnels du support " -"vous assisteront en profondeur pour vos soucis les plus techniques." +"Documentation. Notre documentation " +"complète contient des références et des guides pour la plupart des " +"situations que vous pouvez rencontrer." -# @ acf -#: includes/admin/admin.php:168 -msgid "Information" -msgstr "Informations" +#: includes/admin/admin.php:149 +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:169 -#, php-format -msgid "Version %s" -msgstr "Version %s" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Aide & support" -# @ acf -#: includes/admin/admin.php:170 -msgid "View details" -msgstr "Voir les détails" +#: includes/admin/admin.php:137 +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:171 -msgid "Visit website" -msgstr "Visiter le site" +#: includes/admin/admin.php:134 +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:200 -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 +#: includes/admin/admin.php:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Erreur lors du chargement du champ." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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 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 "Vue du back end" + +#: 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:365 +msgid "%s value is required" +msgstr "La valeur %s est obligatoire" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Afficher ce champ si" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Logique conditionnelle" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "et" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Exporter les groupes de champs" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON Local" -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "Générer le PHP" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Champ clone" -# @ acf -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Aucun groupe de champs n'est sélectionné" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "1 groupe de champ a été exporté." -msgstr[1] "%s groupes de champs ont été exportés." - -# @ default -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Sélectionnez les groupes de champs" - -#: includes/admin/tools/class-acf-admin-tool-export.php:336 +#: includes/admin/views/html-notice-upgrade.php:31 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Please also check all premium add-ons (%s) are updated to the latest version." msgstr "" -"Sélectionnez les groupes de champs que vous souhaitez exporter puis " -"choisissez ensuite la méthode d'export : le bouton télécharger vous " -"permettra d’exporter un fichier JSON que vous pourrez importer dans une " -"autre installation ACF alors que le bouton « générer » exportera le code PHP " -"que vous pourrez ajouter dans votre thème." +"Veuillez également vérifier que tous les modules premium (%s) soient mis à " +"jour à la dernière version." -#: includes/admin/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "Exporter le fichier" +#: includes/admin/views/html-notice-upgrade.php:29 +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/tools/class-acf-admin-tool-export.php:414 +#: includes/admin/views/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Mise à niveau de la base de données requise" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Page d’options" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galerie" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenu flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Répéteur" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Retour aux outils" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Masquer de l’écran" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Envoyer des rétroliens" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Étiquettes" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Catégories" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Attributs de page" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Auteur/autrice" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Révisions" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Commentaires" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Commentaires" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extrait" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Éditeur de contenu" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalien" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Affiché dans la liste des groupes de champs" + +#: includes/admin/views/field-group-options.php:122 +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/field-group-options.php:121 +msgid "Order No." +msgstr "N° d’ordre" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Sous les champs" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Sous les libellés" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Emplacement des instructions" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Emplacement des libellés" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Sur le côté" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (après le contenu)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Haute (après le titre)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Emplacement" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Sans contour (pas de boîte meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (boîte meta WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Style" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Type" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clé" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Ordre" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Fermer le champ" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "ID" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "largeur" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Attributs du conteneur" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Obligatoire" + +#: includes/admin/views/field-group-field.php:204 +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/field-group-field.php:203 +msgid "Instructions" +msgstr "Instructions" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Type de champ" + +#: includes/admin/views/field-group-field.php:135 +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/field-group-field.php:134 +msgid "Field Name" +msgstr "Nom du champ" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Libellé du champ" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Supprimer" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Supprimer le champ" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Déplacer" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Deplacer le champ vers un autre groupe" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Dupliquer le champ" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Modifier le champ" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Faites glisser pour réorganiser" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Afficher ce groupe de champs si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Aucune mise à jour disponible." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Lecture des tâches de mise à niveau…" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Mise à niveau échouée." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Mise à niveau terminée." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Mise à niveau des données vers la version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Veuillez sélectionner au moins un site à mettre à niveau." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Le site est à jour" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Mettre à niveau les sites" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Ajouter un groupe de règles" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Règles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copié" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copier dans le presse-papier" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -664,2327 +1157,2027 @@ msgid "" "the following code to your theme's functions.php file or include it within " "an external file." msgstr "" -"Le code suivant peut être utilisé pour enregistrer une version locale du ou " -"des groupes de champs sélectionnés. Un groupe de champ local apporte pas mal " -"de bénéfices tels qu'un temps de chargement plus rapide, la gestion des " -"versions et les champs/paramètres dynamiques. Copiez/collez simplement le " -"code suivant dans le fichier functions.php de votre thème ou incluez-le " -"depuis un autre fichier." +"Le code suivant peut être utilisé pour enregistrer une version locale du/des " +"groupe(s) de champs sélectionné(s). Un groupe de champ local peut apporter " +"de nombreux bénéfices comme des temps de chargement plus rapides, la gestion " +"de versions & des champs/paramètres dynamiques. Copiez-collez le code " +"suivant dans le fichier functions.php de votre thème, ou incluez-le dans un " +"fichier externe." -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Copier dans le presse-papiers" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Copié" - -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Importer les groupes de champs" - -#: includes/admin/tools/class-acf-admin-tool-import.php:47 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." +"Select the field groups 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 le fichier JSON que vous souhaitez importer et cliquez sur " -"« Importer ». ACF s'occupe du reste." -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Sélectionner un fichier" +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Sélectionner les groupes de champs" -#: includes/admin/tools/class-acf-admin-tool-import.php:62 -msgid "Import File" -msgstr "Importer le fichier" +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "1 groupe de champs exporté." +msgstr[1] "%s groupes de champs exportés." -# @ acf -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:169 -msgid "No file selected" -msgstr "Aucun fichier sélectionné" +#: 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-import.php:93 -msgid "Error uploading file. Please try again" -msgstr "Échec de l'import du fichier. Merci de réessayer" +#: includes/admin/tools/class-acf-admin-tool-export.php:39 +#: includes/admin/tools/class-acf-admin-tool-export.php:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Générer le PHP" -#: includes/admin/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "Type de fichier incorrect" +#: 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:107 -msgid "Import file empty" -msgstr "Le fichier à importer est vide" - -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format +#: includes/admin/tools/class-acf-admin-tool-import.php:147 msgid "Imported 1 field group" msgid_plural "Imported %s field groups" msgstr[0] "1 groupe de champs importé" msgstr[1] "%s groupes de champs importés" -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Logique conditionnelle" +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Fichier d’importation vide" -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Montrer ce champ si" +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Type de fichier incorrect" -# @ acf -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Ajouter une règle" +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Erreur de téléversement du fichier. Veuillez réessayer." -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "Faites glisser pour réorganiser" +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" +"Sélectionnez le fichier JSON Advanced Custom Fields que vous souhaitez " +"importer. Quand vous cliquez sur le bouton ci-dessous, ACF importera les " +"groupes de champs." -# @ acf -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Modifier ce champ" +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importer les groupes de champs" -# @ acf -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:151 -#: includes/fields/class-acf-field-image.php:131 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:337 -msgid "Edit" -msgstr "Modifier" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Synchroniser" -# @ acf -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Dupliquer ce champ" +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Sélectionner %s" -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Déplacer le champ dans un autre groupe" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Déplacer" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Supprimer ce champ" - -# @ acf -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Delete" -msgstr "Supprimer" - -# @ acf -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Titre du champ" - -# @ acf +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 #: includes/admin/views/field-group-field.php:66 -msgid "This is the name which will appear on the EDIT page" -msgstr "Ce nom apparaîtra sur la page d‘édition" +msgid "Duplicate" +msgstr "Dupliquer" -# @ acf -#: includes/admin/views/field-group-field.php:75 -msgid "Field Name" -msgstr "Nom du champ" +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Dupliquer cet élément" -# @ acf -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Un seul mot, sans espace.
                              Les « _ » et « - » sont autorisés" +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Description" -# @ acf -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Type de champ" +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synchronisation disponible" -# @ acf -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Instructions" +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Groupe de champs synchronisé." +msgstr[1] "%s groupes de champs synchronisés." -# @ acf -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instructions pour les auteurs. Affichées lors de la saisie du contenu" +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Groupe de champs dupliqué." +msgstr[1] "%s groupes de champs dupliqués." -# @ acf -#: includes/admin/views/field-group-field.php:106 -msgid "Required?" -msgstr "Requis ?" +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Actif (%s)" +msgstr[1] "Actifs (%s)" -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Attributs du conteneur" +#: includes/admin/admin-upgrade.php:237 +msgid "Review sites & upgrade" +msgstr "Examiner les sites et mettre à niveau" -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "largeur" +#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 +#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Mettre à niveau la base de données" -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "classe" +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Champs personnalisés" -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "id" +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Déplacer le champ" -# @ acf -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Fermer le champ" +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Veuillez sélectionner la destination pour ce champ" -# @ acf -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Ordre" +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Fermer la fenêtre" -# @ acf -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:583 -msgid "Label" -msgstr "Intitulé" - -# @ acf -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:936 -#: pro/fields/class-acf-field-flexible-content.php:597 -msgid "Name" -msgstr "Nom" - -# @ acf -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Type" - -# @ acf -#: includes/admin/views/field-group-fields.php:14 -msgid "" -"No fields. Click the + Add Field button to create your " -"first field." +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" msgstr "" -"Aucun champ. Cliquez sur le bouton + Ajouter un champ pour " -"créer votre premier champ." +"Le champ %1$s peut maintenant être trouvé dans le groupe de champs %2$s" -# @ acf -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Ajouter un champ" +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Déplacement effectué." -# @ acf -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Règles" +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Actif" -# @ acf -#: includes/admin/views/field-group-locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Clés des champs" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Réglages" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Emplacement" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copier" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(ce champ)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Coché" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Déplacer le champ personnalisé" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Aucun champ de sélection disponible" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Le titre du groupe de champ est requis" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" msgstr "" -"Créez une série de règles pour déterminer les écrans sur lesquels ce groupe " -"de champs sera utilisé" +"Ce champ ne peut pas être déplacé tant que ses modifications n’ont pas été " +"enregistrées" -# @ acf -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Style" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Dans un bloc" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Sans contour (directement dans la page)" - -# @ acf -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Position" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Haute (après le titre)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normal (après le contenu)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Sur le côté" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Emplacement de l'intitulé" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Aligné en haut" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Aligné à gauche" - -# @ acf -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Emplacement des instructions" - -# @ acf -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Sous les intitulés" - -# @ acf -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Sous les champs" - -# @ acf -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Numéro d’ordre" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" msgstr "" -"Le groupe de champs qui a l’ordre le plus petit sera affiché en premier" +"La chaine « field_ » ne peut pas être utilisée au début du nom d’un champ" -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Affiché dans la liste des groupes de champs" +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Brouillon du groupe de champs mis à jour." -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Permalien" +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Groupe de champs programmé." -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Éditeur de contenu" +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Groupe de champs envoyé." -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Extrait" +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Groupe de champs sauvegardé." -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Discussion" +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Groupe de champs publié." -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Révisions" +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Groupe de champs supprimé." -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Identifiant (slug)" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Auteur" - -# @ acf -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Attributs de la page" - -# @ acf -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Featured Image" -msgstr "Image à la Une" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Catégories" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Mots-clés" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Envoyer des rétroliens" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Masquer" - -# @ acf -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Sélectionnez les champs que vous souhaitez masquer sur la " -"page d‘édition." - -# @ acf -#: includes/admin/views/field-group-options.php:129 -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/html-admin-page-upgrade-network.php:26 -#, php-format -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/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Mettre à niveau les sites" - -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/html-admin-page-upgrade-network.php:74 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Le site requiert une mise à niveau de la base de données de %s à %s" - -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "Le site est à jour" - -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -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/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Merci de sélectionner au moins un site à mettre à niveau." - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Migration des données vers la version %s" - -#: includes/admin/views/html-admin-page-upgrade-network.php:158 -msgid "Upgrade complete." -msgstr "Mise à niveau terminée." - -#: includes/admin/views/html-admin-page-upgrade-network.php:161 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Mise à niveau échouée." - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Lecture des instructions de mise à niveau…" - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "" -"Mise à niveau de la base de données terminée. Consulter les " -"nouveautés" - -# @ acf -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "Aucune mise à jour disponible." +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Groupe de champs mis à jour." +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 #: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Retour aux outils" +msgid "Tools" +msgstr "Outils" -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Montrer ce groupe quand" +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "n’est pas égal à" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Répéteur" +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "est égal à" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Contenu flexible" +#: includes/locations.php:102 +msgid "Forms" +msgstr "Formulaires" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galerie" +#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Page" -# @ acf -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:20 -msgid "Options Page" -msgstr "Page d‘options" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Publication" -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Mise à jour de la base de données nécessaire" - -#: includes/admin/views/html-notice-upgrade.php:22 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Merci d’avoir mis à jour %s v%s !" - -#: includes/admin/views/html-notice-upgrade.php:22 -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/html-notice-upgrade.php:24 -#, php-format -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Veuillez également vérifier que tous les add-ons premium (%s) sont à jour " -"avec la dernière version disponible." - -# @ default -#: includes/ajax/class-acf-ajax-local-json-diff.php:34 -msgid "Invalid field group parameter(s)." -msgstr "Paramètre(s) du groupe de champs invalide." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:41 -msgid "Invalid field group ID." -msgstr "ID du groupe de champs invalide." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:51 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "Désolé, ce groupe de champs n’est pas disponible pour une comparaison." - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:57 -#, php-format -msgid "Last updated: %s" -msgstr "Dernière mise à jour : %s" - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:62 -msgid "Original field group" -msgstr "Groupe de champ original" - -# @ acf -#: includes/ajax/class-acf-ajax-local-json-diff.php:66 -msgid "JSON field group (newer)" -msgstr "Groupe de champ JSON (plus récent)" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Nonce invalide." - -#: includes/api/api-helpers.php:844 -msgid "Thumbnail" -msgstr "Miniature" - -#: includes/api/api-helpers.php:845 -msgid "Medium" -msgstr "Moyen" - -#: includes/api/api-helpers.php:846 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:895 -msgid "Full Size" -msgstr "Taille originale" - -# @ acf -#: includes/api/api-helpers.php:1632 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(aucun titre)" - -#: includes/api/api-helpers.php:3596 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "L'image doit mesurer au moins %dpx de largeur." - -#: includes/api/api-helpers.php:3601 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "L'image ne doit pas dépasser %dpx de largeur." - -#: includes/api/api-helpers.php:3617 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "L’image doit mesurer au moins %dpx de hauteur." - -#: includes/api/api-helpers.php:3622 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "L’image ne doit pas dépasser %dpx de hauteur." - -#: includes/api/api-helpers.php:3640 -#, php-format -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:3645 -#, php-format -msgid "File size must not exceed %s." -msgstr "Le poids du fichier ne doit pas dépasser %s." - -# @ acf -#: includes/api/api-helpers.php:3679 -#, php-format -msgid "File type must be %s." -msgstr "Le type de fichier doit être %s." - -# @ acf -#: includes/assets.php:343 -msgid "Are you sure?" -msgstr "Confirmez-vous cette action ?" - -#: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:88 -msgid "Yes" -msgstr "Oui" - -#: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:98 -msgid "No" -msgstr "Non" - -# @ acf -#: includes/assets.php:346 includes/fields/class-acf-field-file.php:153 -#: includes/fields/class-acf-field-image.php:133 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:338 -#: pro/fields/class-acf-field-gallery.php:478 -msgid "Remove" -msgstr "Enlever" - -#: includes/assets.php:347 -msgid "Cancel" -msgstr "Annuler" - -#: includes/assets.php:355 -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/assets.php:358 -msgid "Validation successful" -msgstr "Validé avec succès" - -#: includes/assets.php:359 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Échec de la validation" - -#: includes/assets.php:360 -msgid "1 field requires attention" -msgstr "1 champ requiert votre attention" - -#: includes/assets.php:361 -#, php-format -msgid "%d fields require attention" -msgstr "%d champs requièrent votre attention" - -# @ acf -#: includes/assets.php:364 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Modifier le groupe de champs" - -# @ acf -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Ce type de champ n‘existe pas" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Inconnu" - -#: includes/fields.php:349 -msgid "Basic" -msgstr "Champs basiques" - -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Contenu" - -# @ acf -#: includes/fields.php:351 -msgid "Choice" -msgstr "Choix" - -# @ acf -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relationnel" - -#: includes/fields.php:353 +#: includes/fields.php:358 msgid "jQuery" msgstr "jQuery" -# @ acf +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relationnel" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Choix" + #: includes/fields.php:354 -#: includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:554 -#: pro/fields/class-acf-field-flexible-content.php:603 -#: pro/fields/class-acf-field-repeater.php:449 -msgid "Layout" -msgstr "Disposition" +msgid "Basic" +msgstr "Basique" -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Accordéon" +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Inconnu" -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Ouvert" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Le type de champ n’existe pas" -#: includes/fields/class-acf-field-accordion.php:100 -msgid "Display this accordion as open on page load." -msgstr "Ouvrir l’accordéon au chargement de la page." +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Indésirable détecté" -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "Ouverture multiple" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Publication mise à jour" -#: includes/fields/class-acf-field-accordion.php:110 -msgid "Allow this accordion to open without closing others." -msgstr "Permettre à cet accordéon de s'ouvrir sans refermer les autres." +#: includes/forms/form-front.php:106 +msgid "Update" +msgstr "Mise à jour" -#: includes/fields/class-acf-field-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Point de terminaison" +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "Valider l’e-mail" -#: includes/fields/class-acf-field-accordion.php:120 +#: includes/fields.php:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenu" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Titre" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Modifier le groupe de champs" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La sélection est inférieure à" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La sélection est supérieure à" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "La valeur est plus petite que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "La valeur est plus grande que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "La valeur contient" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "La valeur correspond au modèle" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "A aucune valeur" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "A n’importe quelle valeur" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Annuler" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Confirmez-vous ?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d champs nécessitent votre attention" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "Un champ nécessite votre attention" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Échec de la validation" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "validation réussie" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Limité" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Replier les détails" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Déplier les détails" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Téléversé sur cette publication" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Mettre à jour" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Modifier" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "Le type de fichier doit être %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "ou" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "La taille du fichier ne doit pas excéder %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "La taille du fichier doit être d’au moins %s." + +#: includes/api/api-helpers.php:3358 +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:3353 +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:3339 +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:3334 +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:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(aucun titre)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Taille originale" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grand" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Moyen" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniature" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(aucun libellé)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Définir la hauteur de la zone de texte" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Autoriser l’ajout de valeurs personnalisées" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Ajouter un nouveau choix" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Tout permuter" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Afficher les URL des archives" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Ajouter" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nom" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s ajouté" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s existe déjà" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Compte incapable d’ajouter un nouveau %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID de terme" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Objet de terme" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Charger une valeur depuis les termes de publications" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Charger les termes" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Lier les termes sélectionnés à la publication" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Enregistrer les termes" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Créer des termes" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Boutons radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valeur unique" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Liste déroulante à multiple choix" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Case à cocher" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valeurs multiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Sélectionner l’apparence de ce champ" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apparence" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Sélectionner la taxonomie à afficher" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "N° %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Ajouter le choix « Autre » pour autoriser les valeurs personnalisées" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Bouton radio" + +#: includes/fields/class-acf-field-accordion.php:105 msgid "" "Define an endpoint for the previous accordion to stop. This accordion will " "not be visible." msgstr "" -"Définir un point de terminaison pour arrêter l’accordéon. Cet accordéon ne " +"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-button-group.php:24 -msgid "Button Group" -msgstr "Groupe de boutons" +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "Autoriser l’ouverture de cet accordéon sans fermer les autres." -# @ acf -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Choix" +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Ouverture multiple" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Indiquez une valeur par ligne." +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "Ouvrir l’accordéon au chargement de la page." -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Pour un contrôle plus poussé, vous pouvez spécifier la valeur et le libellé " -"de cette manière :" +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Ouvrir" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "rouge : Rouge" +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Accordéon" -# @ acf -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:506 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:781 -#: includes/fields/class-acf-field-user.php:63 -msgid "Allow Null?" -msgstr "Autoriser une valeur vide ?" +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restreindre quels fichiers peuvent être téléversés" -# @ acf -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:155 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:371 -msgid "Default Value" -msgstr "Valeur par défaut" +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID du fichier" -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:156 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:372 -msgid "Appears when creating a new post" -msgstr "Valeur affichée à la création d’une publication" +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL du fichier" -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Horizontal" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Vertical" - -# @ acf -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:214 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:826 -msgid "Return Value" -msgstr "Valeur affichée dans le template" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 #: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -msgid "Specify the returned value on front end" -msgstr "Spécifier la valeur retournée sur le site" +msgid "File Array" +msgstr "Tableau de fichiers" -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Valeur" +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Ajouter un fichier" -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "Les deux (tableau)" +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Aucun fichier sélectionné" -# @ acf -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:768 -msgid "Checkbox" -msgstr "Case à cocher" +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nom du fichier" -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Tout masquer/afficher" +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Mettre à jour le fichier" -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Ajouter un choix" +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Modifier le fichier" -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Permettra une valeur personnalisée" +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Spécifier la valeur retournée" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Utiliser AJAX pour un chargement différé des choix ?" #: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Permet l’ajout d’une valeur personnalisée" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Enregistrer la valeur personnalisée" - -#: includes/fields/class-acf-field-checkbox.php:369 -msgid "Save 'custom' values to the field's choices" -msgstr "Enregistre la valeur personnalisée dans les choix du champs" - -#: includes/fields/class-acf-field-checkbox.php:381 -#: includes/fields/class-acf-field-select.php:374 +#: includes/fields/class-acf-field-select.php:376 msgid "Enter each default value on a new line" -msgstr "Entrez chaque valeur par défaut sur une nouvelle ligne" +msgstr "Saisir chaque valeur par défaut sur une nouvelle ligne" -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" -msgstr "Masquer/afficher" +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Liste déroulante" -#: includes/fields/class-acf-field-checkbox.php:404 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Ajouter une case à cocher au début pour intervertir tous les choix" +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Le chargement a échoué" -# @ acf -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Couleur" +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Recherche en cours..." -#: includes/fields/class-acf-field-color_picker.php:68 +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Chargement de résultats supplémentaires…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Aucun résultat" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Liste déroulante" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID du compte" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Objet du compte" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Tableau de comptes" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Tous les rôles de comptes" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrer par rôle" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Sélectionner une couleur" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Par défaut" + +#: includes/fields/class-acf-field-color_picker.php:69 msgid "Clear" msgstr "Effacer" -# @ acf -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Valeur par défaut" - -# @ acf -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Couleur" - -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Current Color" -msgstr "Couleur actuelle" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Date" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Valider" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Aujourd’hui" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Suivant" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Précédent" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Format dans l’administration" - -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -msgid "The format displayed when editing a post" -msgstr "" -"Format affiché lors de l’édition d’une publication depuis l’interface " -"d’administration" - -#: includes/fields/class-acf-field-date_picker.php:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Personnalisé :" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "Enregistrer le format" - -#: includes/fields/class-acf-field-date_picker.php:198 -msgid "The format used when saving a value" -msgstr "Le format enregistré" - -# @ acf -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:194 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:628 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:79 -#: pro/fields/class-acf-field-gallery.php:557 -msgid "Return Format" -msgstr "Format dans le modèle" - -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "Valeur retournée dans le modèle sur le site" - -#: includes/fields/class-acf-field-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "Les semaines commencent le" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Date et Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Choix de l’heure" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Heure" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minute" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuseau horaire" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Maintenant" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Valider" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Valider" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -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 amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" +#: 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:85 msgctxt "Date Time Picker JS pmTextShort" msgid "P" msgstr "P" -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mail" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Texte d’exemple" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Apparait dans le champ (placeholder)" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Préfixe" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Apparait avant le champ" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:203 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Suffixe" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:204 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Apparait après le champ" - -# @ acf -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Modifier le fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Mettre à jour le fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Nom du fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:247 -#: includes/fields/class-acf-field-file.php:258 -#: includes/fields/class-acf-field-image.php:254 -#: includes/fields/class-acf-field-image.php:283 -#: pro/fields/class-acf-field-gallery.php:642 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "File size" -msgstr "Poids du fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:169 -msgid "Add File" -msgstr "Ajouter un fichier" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File Array" -msgstr "Données du fichier (tableau)" - -# @ acf -#: includes/fields/class-acf-field-file.php:221 -msgid "File URL" -msgstr "URL du fichier" - -# @ acf -#: includes/fields/class-acf-field-file.php:222 -msgid "File ID" -msgstr "ID du Fichier" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:592 -msgid "Library" -msgstr "Médias" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:593 -msgid "Limit the media library choice" -msgstr "Limiter le choix de la médiathèque" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:225 -#: includes/locations/class-acf-location-attachment.php:71 -#: includes/locations/class-acf-location-comment.php:59 -#: includes/locations/class-acf-location-nav-menu.php:72 -#: includes/locations/class-acf-location-taxonomy.php:61 -#: includes/locations/class-acf-location-user-form.php:65 -#: includes/locations/class-acf-location-user-role.php:76 -#: includes/locations/class-acf-location-widget.php:63 -#: pro/fields/class-acf-field-gallery.php:598 -#: pro/locations/class-acf-location-block.php:64 -msgid "All" -msgstr "Tous" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:226 -#: pro/fields/class-acf-field-gallery.php:599 -msgid "Uploaded to post" -msgstr "Liés à cette publication" - -# @ acf -#: includes/fields/class-acf-field-file.php:243 -#: includes/fields/class-acf-field-image.php:233 -#: pro/fields/class-acf-field-gallery.php:621 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "Restreindre l’import de fichiers" - -# @ acf -#: includes/fields/class-acf-field-file.php:254 -#: includes/fields/class-acf-field-image.php:262 -#: pro/fields/class-acf-field-gallery.php:650 -msgid "Maximum" -msgstr "Maximum" - -#: includes/fields/class-acf-field-file.php:265 -#: includes/fields/class-acf-field-image.php:291 -#: pro/fields/class-acf-field-gallery.php:678 -msgid "Allowed file types" -msgstr "Types de fichiers autorisés" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:292 -#: pro/fields/class-acf-field-gallery.php:679 -msgid "Comma separated list. Leave blank for all types" -msgstr "" -"Listez les extensions autorisées en les séparant par une virgule. Laissez " -"vide pour autoriser toutes les extensions" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-google-map.php:59 -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:146 -#: includes/fields/class-acf-field-relationship.php:587 -msgid "Search" -msgstr "Rechercher" - -# @ acf -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Effacer la position" - -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Trouver l’emplacement actuel" - -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Rechercher une adresse…" - -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Centre" - -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Position géographique du centre de la carte" - -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Définir le niveau de zoom (0 : monde ; 14 : ville ; 21 : rue)" - -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:633 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Height" -msgstr "Hauteur" - -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Personnaliser la hauteur de la carte" - -# @ acf -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groupe" - -# @ acf -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:385 -msgid "Sub Fields" -msgstr "Sous-champs" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "Définit le style utilisé pour générer les champs sélectionnés" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:615 -#: pro/fields/class-acf-field-repeater.php:457 -#: pro/locations/class-acf-location-block.php:20 -msgid "Block" -msgstr "Bloc" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:456 -msgid "Table" -msgstr "Tableau" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:616 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Row" -msgstr "Rangée" - -# @ acf -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Image" - -# acf -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Sélectionner l‘image" - -# @ acf -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Modifier l’image" - -# @ acf -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Mettre à jour" - -# @ acf -#: includes/fields/class-acf-field-image.php:66 includes/media.php:61 -msgid "All images" -msgstr "Toutes les images" - -# @ acf -#: includes/fields/class-acf-field-image.php:148 -msgid "No image selected" -msgstr "Aucune image sélectionnée" - -# @ acf -#: includes/fields/class-acf-field-image.php:148 -msgid "Add Image" -msgstr "Ajouter une image" - -# @ acf -#: includes/fields/class-acf-field-image.php:200 -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image Array" -msgstr "Données de l’image (tableau)" - -# @ acf -#: includes/fields/class-acf-field-image.php:201 -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image URL" -msgstr "URL de l‘image" - -# @ acf -#: includes/fields/class-acf-field-image.php:202 -#: pro/fields/class-acf-field-gallery.php:565 -msgid "Image ID" -msgstr "ID de l‘image" - -# @ acf -#: includes/fields/class-acf-field-image.php:209 -#: pro/fields/class-acf-field-gallery.php:571 -msgid "Preview Size" -msgstr "Taille de prévisualisation" - -#: includes/fields/class-acf-field-image.php:234 -#: includes/fields/class-acf-field-image.php:263 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Restrict which images can be uploaded" -msgstr "Restreindre les images téléversées" - -#: includes/fields/class-acf-field-image.php:237 -#: includes/fields/class-acf-field-image.php:266 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:625 -#: pro/fields/class-acf-field-gallery.php:654 -msgid "Width" -msgstr "Largeur" - -# @ acf -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Lien" - -# @ acf -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Sélectionner un lien" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Ouvrir dans un nouvel onglet" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Données de lien (tableau)" - -# @ acf -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "URL du Lien" - -# @ acf -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Message" - -# @ acf -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Nouvelles lignes" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Comment sont interprétés les sauts de lignes" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Ajouter des paragraphes automatiquement" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Ajouter <br> automatiquement" - -# @ acf -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Pas de formatage" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Autoriser le code HTML" - -#: 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-number.php:25 -msgid "Number" -msgstr "Nombre" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:164 -msgid "Minimum Value" -msgstr "Valeur minimale" - -# @ acf -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:174 -msgid "Maximum Value" -msgstr "Valeur maximale" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:184 -msgid "Step Size" -msgstr "Pas" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "La valeur doit être un nombre" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Entrez l’URL" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Dimensions" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Lien vers page ou article" - -#: includes/fields/class-acf-field-page_link.php:170 -msgid "Archives" -msgstr "Archives" - -#: includes/fields/class-acf-field-page_link.php:262 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:958 -msgid "Parent" -msgstr "Parent" - -#: includes/fields/class-acf-field-page_link.php:478 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:554 -msgid "Filter by Post Type" -msgstr "Filtrer par type de publication" - -#: includes/fields/class-acf-field-page_link.php:486 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:562 -msgid "All post types" -msgstr "Tous les types de publication" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:492 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "Filter by Taxonomy" -msgstr "Filtrer par taxonomie" - -#: includes/fields/class-acf-field-page_link.php:500 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:576 -msgid "All taxonomies" -msgstr "Toutes les taxonomies" - -#: includes/fields/class-acf-field-page_link.php:516 -msgid "Allow Archives URLs" -msgstr "Afficher les pages d’archives" - -# @ acf -#: includes/fields/class-acf-field-page_link.php:526 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:71 -msgid "Select multiple values?" -msgstr "Plusieurs valeurs possibles ?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Mot de passe" - -# @ acf -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:633 -msgid "Post Object" -msgstr "Objet Publication" - -# @ acf -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:634 -msgid "Post ID" -msgstr "ID de la publication" - -# @ acf -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Bouton radio" - -#: includes/fields/class-acf-field-radio.php:254 -msgid "Other" -msgstr "Autre" - -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Ajouter « autre » pour autoriser une valeur personnalisée" - -#: includes/fields/class-acf-field-radio.php:265 -msgid "Save Other" -msgstr "Enregistrer" - -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "Enregistrer « autre » en tant que choix" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Curseur numérique" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relation" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "Nombre maximal de valeurs atteint ({max} valeurs)" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "Chargement" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Aucun résultat" - -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Choisissez le type de publication" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Choisissez la taxonomie" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Rechercher…" - -#: includes/fields/class-acf-field-relationship.php:582 -msgid "Filters" -msgstr "Filtres" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:588 -#: includes/locations/class-acf-location-post-type.php:20 -msgid "Post Type" -msgstr "Type de publication" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:589 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:751 -#: includes/locations/class-acf-location-taxonomy.php:20 -msgid "Taxonomy" -msgstr "Taxonomie" - -#: includes/fields/class-acf-field-relationship.php:596 -msgid "Elements" -msgstr "Éléments" - -#: includes/fields/class-acf-field-relationship.php:597 -msgid "Selected elements will be displayed in each result" -msgstr "Les éléments sélectionnés seront affichés dans chaque résultat" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Minimum posts" -msgstr "Minimum de publications" - -# @ acf -#: includes/fields/class-acf-field-relationship.php:617 -msgid "Maximum posts" -msgstr "Maximum de publications" - -#: includes/fields/class-acf-field-relationship.php:721 -#: pro/fields/class-acf-field-gallery.php:779 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s requiert au moins %s sélection" -msgstr[1] "%s requiert au moins %s sélections" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:773 -msgctxt "noun" +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" msgid "Select" -msgstr "Liste déroulante" +msgstr "Sélectionner" -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Un résultat disponible, appuyez sur Entrée pour le sélectionner." +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Terminé" -#: includes/fields/class-acf-field-select.php:112 -#, php-format -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-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Maintenant" -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Aucun résultat trouvé" +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fuseau horaire" -#: includes/fields/class-acf-field-select.php:114 -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-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microseconde" -#: includes/fields/class-acf-field-select.php:115 -#, php-format -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-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milliseconde" -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Veuillez retirer 1 caractère" +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Seconde" -#: includes/fields/class-acf-field-select.php:117 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Veuillez retirer %d caractères" +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" -#: includes/fields/class-acf-field-select.php:118 -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-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Heure" -#: includes/fields/class-acf-field-select.php:119 -#, php-format -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-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Heure" -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Chargement de résultats supplémentaires…" +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Choisir l’heure" -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Recherche en cours…" +#: 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-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Échec du chargement" +#: includes/fields/class-acf-field-accordion.php:104 +msgid "Endpoint" +msgstr "Point de terminaison" -#: includes/fields/class-acf-field-select.php:259 includes/media.php:54 -msgctxt "verb" -msgid "Select" -msgstr "Choisir" +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Aligné à gauche" -# @ acf -#: includes/fields/class-acf-field-select.php:402 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "Interface avancée" +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Aligné en haut" -#: includes/fields/class-acf-field-select.php:412 -msgid "Use AJAX to lazy load choices?" -msgstr "Utiliser AJAX pour charger les choix dynamiquement (lazy load) ?" +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Positionnement" -#: includes/fields/class-acf-field-select.php:428 -msgid "Specify the value returned" -msgstr "Définit la valeur retournée" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Séparateur" - -#: includes/fields/class-acf-field-tab.php:25 +#: includes/fields/class-acf-field-tab.php:26 msgid "Tab" msgstr "Onglet" -#: includes/fields/class-acf-field-tab.php:102 -msgid "Placement" -msgstr "Emplacement" - -#: includes/fields/class-acf-field-tab.php:115 -msgid "" -"Define an endpoint for the previous tabs to stop. This will start a new " -"group of tabs." -msgstr "" -"Définir un point de terminaison pour arrêter les précédents onglets. Cela va " -"commencer un nouveau groupe d’onglets." - -#: includes/fields/class-acf-field-taxonomy.php:711 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "Pas de %s" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the taxonomy to be displayed" -msgstr "Choisissez la taxonomie à afficher" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Appearance" -msgstr "Apparence" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Select the appearance of this field" -msgstr "Personnaliser l’apparence de champ" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:767 -msgid "Multiple Values" -msgstr "Valeurs multiples" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:769 -msgid "Multi Select" -msgstr "Sélecteur multiple" - -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Single Value" -msgstr "Valeur unique" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Radio Buttons" -msgstr "Boutons radio" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:796 -msgid "Create Terms" -msgstr "Créer des termes" - -#: includes/fields/class-acf-field-taxonomy.php:797 -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:806 -msgid "Save Terms" -msgstr "Enregistrer les termes" - -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Connect selected terms to the post" -msgstr "Lier les termes sélectionnés à la publication" - -#: includes/fields/class-acf-field-taxonomy.php:816 -msgid "Load Terms" -msgstr "Charger les termes" - -#: includes/fields/class-acf-field-taxonomy.php:817 -msgid "Load value from posts terms" -msgstr "Charger une valeur depuis les termes" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:831 -msgid "Term Object" -msgstr "Objet Terme" - -#: includes/fields/class-acf-field-taxonomy.php:832 -msgid "Term ID" -msgstr "ID du terme" - -#: includes/fields/class-acf-field-taxonomy.php:882 -#, php-format -msgid "User unable to add new %s" -msgstr "Utilisateur incapable d’ajouter un nouveau %s" - -#: includes/fields/class-acf-field-taxonomy.php:892 -#, php-format -msgid "%s already exists" -msgstr "%s existe déjà" - -#: includes/fields/class-acf-field-taxonomy.php:924 -#, php-format -msgid "%s added" -msgstr "%s ajouté" - -# @ acf -#: includes/fields/class-acf-field-taxonomy.php:970 -#: includes/locations/class-acf-location-user-form.php:66 -msgid "Add" -msgstr "Ajouter" - -# @ acf -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texte" - -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Limite de caractères" - -#: includes/fields/class-acf-field-text.php:132 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Laisser vide pour illimité" - -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:213 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "La valeur ne doit pas dépasser %d caractères." - -# @ acf -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Zone de texte" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Lignes" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Hauteur du champ" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Heure" - -# @ acf -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Vrai / Faux" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Affiche le texte à côté de la case à cocher" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Texte côté « Actif »" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Text affiché lorsqu’il est actif" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Texte côté « Inactif »" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Texte affiché lorsqu’il est désactivé" +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Le champ doit contenir une URL valide" #: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "URL" -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "La valeur doit être une URL valide" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL du lien" -#: includes/fields/class-acf-field-user.php:20 includes/locations.php:99 -msgid "User" -msgstr "Utilisateur" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Tableau de liens" -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by role" -msgstr "Filtrer par rôle" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Ouvrir dans une nouvelle fenêtre/onglet" -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Tous les rôles utilisateurs" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Sélectionner un lien" -#: includes/fields/class-acf-field-user.php:84 -msgid "User Array" -msgstr "Données de l’Utilisateur (tableau)" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Lien" -#: includes/fields/class-acf-field-user.php:85 -msgid "User Object" -msgstr "Objet Utilisateur" +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "E-mail " -#: includes/fields/class-acf-field-user.php:86 -msgid "User ID" -msgstr "ID de l’utilisateur" +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Taille de l’incrément" -#: includes/fields/class-acf-field-user.php:334 -msgid "Error loading field." -msgstr "Erreur pendant le chargement du champ." +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valeur maximum" -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "Éditeur de contenu" +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "Valeur minimum" -#: includes/fields/class-acf-field-wysiwyg.php:320 -msgid "Visual" -msgstr "Visuel" +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Plage" -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:321 +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Les deux (tableau)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Libellé" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valeur" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rouge : Rouge" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Saisir chaque choix sur une nouvelle ligne." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Sélectionner des valeurs multiples ?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Autoriser une valeur vide ?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Parent" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Retarder l’initialisation ?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Afficher les boutons de téléversement de médias ?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barre d’outils" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Texte Uniquement" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Visuel uniquement" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visuel & texte" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Onglets" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Cliquer pour initialiser TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 msgctxt "Name for the Text editor tab (formerly HTML)" msgid "Text" msgstr "Texte" -#: includes/fields/class-acf-field-wysiwyg.php:327 -msgid "Click to initialize TinyMCE" -msgstr "Cliquez pour initialiser TinyMCE" +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visuel" -#: includes/fields/class-acf-field-wysiwyg.php:380 -msgid "Tabs" -msgstr "Onglets" +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Éditeur Wysiwyg" -#: includes/fields/class-acf-field-wysiwyg.php:385 -msgid "Visual & Text" -msgstr "Visuel & Texte brut" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "La valeur ne doit pas excéder %d caractères" -#: includes/fields/class-acf-field-wysiwyg.php:386 -msgid "Visual Only" -msgstr "Éditeur visuel seulement" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Laisser vide pour ne fixer aucune limite" -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:387 -msgid "Text Only" -msgstr "Texte brut seulement" +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limite de caractères" -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:394 -msgid "Toolbar" -msgstr "Barre d‘outils" +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Apparait après le champ" -# @ acf -#: includes/fields/class-acf-field-wysiwyg.php:409 -msgid "Show Media Upload Buttons?" -msgstr "Afficher les boutons d‘ajout de médias ?" +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Ajouter après" -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Delay initialization?" -msgstr "Retarder l’initialisation ?" +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Apparait avant le champ" -#: includes/fields/class-acf-field-wysiwyg.php:420 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE ne sera pas initialisé tant que le champ n’est pas cliqué" +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Ajouter avant" -#: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353 -msgid "Title" -msgstr "Titre" +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Apparaît dans l’entrée" -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Valider l’e-mail" +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Texte indicatif" -# @ acf -#: includes/forms/form-front.php:104 -#: pro/fields/class-acf-field-gallery.php:510 pro/options-page.php:81 -msgid "Update" -msgstr "Mise à jour" +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +msgid "Appears when creating a new post" +msgstr "Apparaît à la création d’une nouvelle publication" -# @ acf -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "Publication mise à jour" +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Texte" -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "Spam repéré" +#: includes/fields/class-acf-field-relationship.php:760 +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/forms/form-user.php:336 -#, php-format -msgid "ERROR: %s" -msgstr "ERREUR : %s" +#: includes/fields/class-acf-field-post_object.php:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID de la publication" -# @ acf -#: includes/locations.php:23 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "La classe \"%s\" n’existe pas" +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Objet de la publication" -#: includes/locations.php:34 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "Le type d’emplacement \"%s\" est déjà déclaré." +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum de publications" -# @ acf -#: includes/locations.php:97 includes/locations/class-acf-location-post.php:20 -msgid "Post" -msgstr "Publication" +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum de publications" -# @ acf -#: includes/locations.php:98 includes/locations/class-acf-location-page.php:20 -msgid "Page" -msgstr "Page" +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Image mise en avant" -# @ acf -#: includes/locations.php:100 -msgid "Forms" -msgstr "Formulaires" +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Les éléments sélectionnés seront affichés dans chaque résultat" -#: includes/locations/abstract-acf-location.php:103 -msgid "is equal to" -msgstr "est égal à" +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Éléments" -#: includes/locations/abstract-acf-location.php:104 -msgid "is not equal to" -msgstr "n‘est pas égal à" - -#: includes/locations/class-acf-location-attachment.php:20 -msgid "Attachment" -msgstr "Média (photo, fichier…)" - -#: includes/locations/class-acf-location-attachment.php:82 -#, php-format -msgid "All %s formats" -msgstr "Tous les formats %s" - -#: includes/locations/class-acf-location-comment.php:20 -msgid "Comment" -msgstr "Commentaire" - -# @ acf -#: includes/locations/class-acf-location-current-user-role.php:20 -msgid "Current User Role" -msgstr "Rôle utilisateur actuel" - -#: includes/locations/class-acf-location-current-user-role.php:75 -msgid "Super Admin" -msgstr "Super Administrateur" - -#: includes/locations/class-acf-location-current-user.php:20 -msgid "Current User" -msgstr "Utilisateur actuel" - -#: includes/locations/class-acf-location-current-user.php:69 -msgid "Logged in" -msgstr "Connecté" - -#: includes/locations/class-acf-location-current-user.php:70 -msgid "Viewing front end" -msgstr "Depuis le site" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Viewing back end" -msgstr "Depuis l’interface d’administration" - -#: includes/locations/class-acf-location-nav-menu-item.php:20 -msgid "Menu Item" -msgstr "Élément de menu" - -#: includes/locations/class-acf-location-nav-menu.php:20 -msgid "Menu" -msgstr "Menu" - -# @ acf -#: includes/locations/class-acf-location-nav-menu.php:78 -msgid "Menu Locations" -msgstr "Emplacement de menu" - -# @ acf -#: includes/locations/class-acf-location-page-parent.php:20 -msgid "Page Parent" -msgstr "Page parente" - -#: includes/locations/class-acf-location-page-template.php:20 -msgid "Page Template" -msgstr "Modèle de page" - -# @ acf -#: includes/locations/class-acf-location-page-template.php:71 -#: includes/locations/class-acf-location-post-template.php:83 -msgid "Default Template" -msgstr "Modèle de base" - -# @ acf -#: includes/locations/class-acf-location-page-type.php:20 -msgid "Page Type" -msgstr "Type de page" - -#: includes/locations/class-acf-location-page-type.php:106 -msgid "Front Page" -msgstr "Page d’accueil" - -#: includes/locations/class-acf-location-page-type.php:107 -msgid "Posts Page" -msgstr "Page des articles" - -#: includes/locations/class-acf-location-page-type.php:108 -msgid "Top Level Page (no parent)" -msgstr "Page de haut niveau (sans descendant)" - -#: includes/locations/class-acf-location-page-type.php:109 -msgid "Parent Page (has children)" -msgstr "Page parente (avec page enfant)" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Child Page (has parent)" -msgstr "Page enfant (avec parent)" - -#: includes/locations/class-acf-location-post-category.php:20 -msgid "Post Category" -msgstr "Catégorie" - -# @ acf -#: includes/locations/class-acf-location-post-format.php:20 -msgid "Post Format" -msgstr "Format d‘article" - -# @ acf -#: includes/locations/class-acf-location-post-status.php:20 -msgid "Post Status" -msgstr "Statut de l’article" - -# @ acf -#: includes/locations/class-acf-location-post-taxonomy.php:20 -msgid "Post Taxonomy" +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" msgstr "Taxonomie" -#: includes/locations/class-acf-location-post-template.php:20 -msgid "Post Template" -msgstr "Modèle d’article" +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Type de publication" -# @ acf -#: includes/locations/class-acf-location-user-form.php:20 -msgid "User Form" -msgstr "Formulaire utilisateur" +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtres" -#: includes/locations/class-acf-location-user-form.php:67 -msgid "Add / Edit" -msgstr "Ajouter / Modifier" +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Toutes les taxonomies" -#: includes/locations/class-acf-location-user-form.php:68 -msgid "Register" -msgstr "Inscription" +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrer par taxonomie" -# @ acf -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Rôle utilisateur" +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Tous les types de publication" -#: includes/locations/class-acf-location-widget.php:20 -msgid "Widget" -msgstr "Widget" +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrer par type de publication" -#: includes/media.php:55 -msgctxt "verb" +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Rechercher…" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Sélectionner la taxonomie" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Choisissez le type de publication" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Aucune correspondance trouvée" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Chargement" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valeurs maximum atteintes ({max} valeurs)" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relation" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Types de fichiers autorisés" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Taille du fichier" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restreindre quelles images peuvent être téléversées" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Téléversé dans la publication" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limiter le choix de la médiathèque" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Médiathèque" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Taille de prévisualisation" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID de l’image" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de l’image" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Tableau de l’image" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Spécifier la valeur renvoyée publiquement" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valeur de retour" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Ajouter image" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Aucune image sélectionnée" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Retirer" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 msgid "Edit" msgstr "Modifier" -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Mettre à jour" +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Toutes les images" -#: includes/media.php:57 -msgid "Uploaded to this post" -msgstr "Liés à cette publication" +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Mettre à jour l’image" -#: includes/media.php:58 -msgid "Expand Details" -msgstr "Afficher les détails" +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Modifier l’image" -#: includes/media.php:59 -msgid "Collapse Details" -msgstr "Masquer les détails" +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "Sélectionner une image" -#: includes/media.php:60 -msgid "Restricted" -msgstr "Limité" +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Image" -# @ default -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "La valeur %s est requise" +#: includes/fields/class-acf-field-message.php:123 +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:122 +msgid "Escape HTML" +msgstr "Autoriser le code HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Aucun formatage" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Ajouter automatiquement <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Ajouter automatiquement des paragraphes" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Contrôle comment les nouvelles lignes sont rendues" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nouvelles lignes" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semaine débute le" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Enregistrer le format" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem." + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Préc." + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Suivant" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Aujourd’hui" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Largeur " + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Taille d’intégration" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texte affiché lorsque inactif" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texte « Inactif »" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texte affiché lorsque actif" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texte « Actif »" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Interface (UI) stylisée" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valeur par défaut" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Message" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Non" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Ligne" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tableau" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloc" + +#: includes/fields/class-acf-field-group.php:464 +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:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Mise en page" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personnaliser la hauteur de la carte" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Hauteur" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Définir le niveau de zoom initial" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrer la carte initiale" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centrer" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Rechercher une adresse…" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Obtenir l’emplacement actuel" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Effacer la position" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Rechercher" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +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:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Format de retour" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personnalisé :" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "(%s) inactif" +msgstr[1] "(%s) inactifs" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Aucun champ trouvé dans la corbeille" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Aucun champ trouvé" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Rechercher des champs" + +#: acf.php:409 +msgid "View Field" +msgstr "Voir le champ" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nouveau champ" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Modifier le champ" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Ajouter un nouveau champ" + +#: acf.php:404 +msgid "Field" +msgstr "Champ" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Champs" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Aucun groupe de champs trouvé dans la corbeille" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Aucun groupe de champs trouvé" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Rechercher des groupes de champs" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Voir le groupe de champs" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nouveau groupe de champs" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Modifier le groupe de champs" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Ajouter un groupe de champs" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Ajouter" + +#: acf.php:370 +msgid "Field Group" +msgstr "Groupe de champs" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com/" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" # @ acf -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" -#: pro/admin/admin-options-page.php:198 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Le nom du type de bloc est obligatoire." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Le type de bloc \"%s\" est déjà déclaré." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Passer en mode Édition" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Passer en mode Aperçu" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Modifier l’alignement du contenu" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "Réglages de %s " + +#: pro/blocks.php:949 +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:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Vérifier à nouveau" + +#: pro/updates.php:561 +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:204 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -2992,17 +3185,11 @@ msgstr "" "Aucun groupe de champs trouvé pour cette page options. Créer " "un groupe de champs" -#: pro/admin/admin-updates.php:49 +#: pro/admin/admin-updates.php:52 msgid "Error. Could not connect to update server" msgstr "Erreur. Impossible de joindre le serveur" -# @ acf -#: pro/admin/admin-updates.php:118 -#: pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Mises à jour" - -#: pro/admin/admin-updates.php:191 +#: pro/admin/admin-updates.php:209 msgid "" "Error. Could not authenticate update package. Please check again or " "deactivate and reactivate your ACF PRO license." @@ -3011,208 +3198,115 @@ msgstr "" "nouveau et si le problème persiste, désactivez et réactivez votre licence " "ACF PRO." -#: 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:19 -#, php-format +#: pro/admin/admin-updates.php:196 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." 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:28 -msgid "License Key" -msgstr "Clé de licence" - -# @ acf -#: pro/admin/views/html-settings-updates.php:60 -msgid "Update Information" -msgstr "Informations de mise à jour" - -#: pro/admin/views/html-settings-updates.php:67 -msgid "Current Version" -msgstr "Version actuelle" - -#: pro/admin/views/html-settings-updates.php:75 -msgid "Latest Version" -msgstr "Dernière version" - -# @ acf -#: pro/admin/views/html-settings-updates.php:83 -msgid "Update Available" -msgstr "Mise à jour disponible" - -# @ acf -#: pro/admin/views/html-settings-updates.php:91 -msgid "Update Plugin" -msgstr "Mettre à jour l’extension" - -#: pro/admin/views/html-settings-updates.php:93 -msgid "Please enter your license key above to unlock updates" -msgstr "Entrez votre clé de licence ci-dessous pour activer les mises à jour" - -#: pro/admin/views/html-settings-updates.php:99 -msgid "Check Again" -msgstr "Vérifier à nouveau" - -# @ acf -#: pro/admin/views/html-settings-updates.php:106 -msgid "Changelog" -msgstr "Améliorations" - -# @ wp3i -#: pro/admin/views/html-settings-updates.php:116 -msgid "Upgrade Notice" -msgstr "Améliorations" - -#: pro/blocks.php:36 -msgid "Block type name is required." -msgstr "Le nom du type de bloc est obligatoire." - -#: pro/blocks.php:43 -#, php-format -msgid "Block type \"%s\" is already registered." -msgstr "Le type de bloc \"%s\" est déjà déclaré." - -#: pro/blocks.php:418 -msgid "Switch to Edit" -msgstr "Passer en mode Édition" - -#: pro/blocks.php:419 -msgid "Switch to Preview" -msgstr "Passer en mode Aperçu" - -#: pro/blocks.php:420 -msgid "Change content alignment" -msgstr "Modifier l’alignement du contenu" - -#: pro/blocks.php:423 -#, php-format -msgid "%s settings" -msgstr "Réglages de %s " +"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:25 msgctxt "noun" msgid "Clone" msgstr "Clone" -#: pro/fields/class-acf-field-clone.php:812 +#: pro/fields/class-acf-field-clone.php:815 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:829 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "Format d’affichage" -#: pro/fields/class-acf-field-clone.php:830 +#: pro/fields/class-acf-field-clone.php:835 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:835 +#: pro/fields/class-acf-field-clone.php:840 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:836 +#: pro/fields/class-acf-field-clone.php:841 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:857 -#, php-format +#: pro/fields/class-acf-field-clone.php:864 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:860 +#: pro/fields/class-acf-field-clone.php:869 msgid "Prefix Field Labels" msgstr "Préfixer les libellés de champs" -#: pro/fields/class-acf-field-clone.php:871 -#, php-format +#: pro/fields/class-acf-field-clone.php:880 msgid "Values will be saved as %s" msgstr "Les valeurs seront enregistrées en tant que %s" -#: pro/fields/class-acf-field-clone.php:874 +#: pro/fields/class-acf-field-clone.php:885 msgid "Prefix Field Names" msgstr "Préfixer les noms de champs" -#: pro/fields/class-acf-field-clone.php:992 +#: pro/fields/class-acf-field-clone.php:1001 msgid "Unknown field" msgstr "Champ inconnu" -#: pro/fields/class-acf-field-clone.php:1031 +#: pro/fields/class-acf-field-clone.php:1038 msgid "Unknown field group" msgstr "Groupe de champ inconnu" -#: pro/fields/class-acf-field-clone.php:1035 -#, php-format +#: pro/fields/class-acf-field-clone.php:1042 msgid "All fields from %s field group" msgstr "Tous les champs du groupe %s" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:193 -#: pro/fields/class-acf-field-repeater.php:469 +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "Ajouter un élément" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:73 -#: pro/fields/class-acf-field-flexible-content.php:926 -#: pro/fields/class-acf-field-flexible-content.php:1008 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" msgstr[0] "disposition" msgstr[1] "dispositions" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:74 +#: pro/fields/class-acf-field-flexible-content.php:72 msgid "layouts" msgstr "dispositions" -#: pro/fields/class-acf-field-flexible-content.php:77 -#: pro/fields/class-acf-field-flexible-content.php:925 -#: pro/fields/class-acf-field-flexible-content.php:1007 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 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:78 +#: pro/fields/class-acf-field-flexible-content.php:76 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:81 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{available} {label} {identifier} available (max {max})" msgstr "{available} {label} {identifier} disponible (max {max})" -#: pro/fields/class-acf-field-flexible-content.php:82 +#: pro/fields/class-acf-field-flexible-content.php:80 msgid "{required} {label} {identifier} required (min {min})" msgstr "{required} {label} {identifier} required (min {min})" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:83 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:287 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:276 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" @@ -3231,57 +3325,74 @@ msgstr "Dupliquer la disposition" msgid "Remove layout" msgstr "Retirer la disposition" -#: pro/fields/class-acf-field-flexible-content.php:416 -#: pro/fields/class-acf-field-repeater.php:301 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" -msgstr "Cliquer pour ouvrir/fermer" +msgstr "Cliquer pour afficher/cacher" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder Layout" msgstr "Réorganiser la disposition" -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder" msgstr "Réorganiser" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:557 +#: pro/fields/class-acf-field-flexible-content.php:552 msgid "Delete Layout" msgstr "Supprimer la disposition" -#: pro/fields/class-acf-field-flexible-content.php:558 +#: pro/fields/class-acf-field-flexible-content.php:553 msgid "Duplicate Layout" msgstr "Dupliquer la disposition" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:559 +#: pro/fields/class-acf-field-flexible-content.php:554 msgid "Add New Layout" msgstr "Ajouter une disposition" -#: pro/fields/class-acf-field-flexible-content.php:631 +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "Min" -#: pro/fields/class-acf-field-flexible-content.php:644 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "Max" -#: pro/fields/class-acf-field-flexible-content.php:671 -#: pro/fields/class-acf-field-repeater.php:465 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "Intitulé du bouton" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:680 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "Nombre minimum de dispositions" # @ acf -#: pro/fields/class-acf-field-flexible-content.php:689 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "Nombre maximum de dispositions" +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +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:1715 +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:1731 +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." + # @ acf #: pro/fields/class-acf-field-gallery.php:73 msgid "Add Image to Gallery" @@ -3291,159 +3402,375 @@ msgstr "Ajouter l’image à la galerie" msgid "Maximum selection reached" msgstr "Nombre de sélections maximales atteint" -#: pro/fields/class-acf-field-gallery.php:322 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "Longueur" -#: pro/fields/class-acf-field-gallery.php:362 +#: pro/fields/class-acf-field-gallery.php:364 msgid "Caption" msgstr "Légende" -#: pro/fields/class-acf-field-gallery.php:371 +#: pro/fields/class-acf-field-gallery.php:376 msgid "Alt Text" msgstr "Texte alternatif" -#: pro/fields/class-acf-field-gallery.php:487 +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "Ajouter à la galerie" # @ acf -#: pro/fields/class-acf-field-gallery.php:491 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "Actions de groupe" -#: pro/fields/class-acf-field-gallery.php:492 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "Ranger par date d’import" -#: pro/fields/class-acf-field-gallery.php:493 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "Ranger par date de modification" # @ acf -#: pro/fields/class-acf-field-gallery.php:494 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "Ranger par titre" -#: pro/fields/class-acf-field-gallery.php:495 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "Inverser l’ordre actuel" # @ acf -#: pro/fields/class-acf-field-gallery.php:507 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "Appliquer" -#: pro/fields/class-acf-field-gallery.php:580 +#: pro/fields/class-acf-field-gallery.php:602 msgid "Insert" msgstr "Insérer" -#: pro/fields/class-acf-field-gallery.php:581 +#: pro/fields/class-acf-field-gallery.php:603 msgid "Specify where new attachments are added" msgstr "Définir comment les images sont insérées" -#: pro/fields/class-acf-field-gallery.php:585 +#: pro/fields/class-acf-field-gallery.php:607 msgid "Append to the end" msgstr "Insérer à la fin" -#: pro/fields/class-acf-field-gallery.php:586 +#: pro/fields/class-acf-field-gallery.php:608 msgid "Prepend to the beginning" msgstr "Insérer au début" # @ acf -#: pro/fields/class-acf-field-gallery.php:605 +#: pro/fields/class-acf-field-gallery.php:633 msgid "Minimum Selection" msgstr "Minimum d’images" # @ acf -#: pro/fields/class-acf-field-gallery.php:613 +#: pro/fields/class-acf-field-gallery.php:644 msgid "Maximum Selection" msgstr "Maximum d’images" -#: pro/fields/class-acf-field-repeater.php:65 -#: pro/fields/class-acf-field-repeater.php:662 +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "Nombre minimal d’éléments atteint ({min} éléments)" -#: pro/fields/class-acf-field-repeater.php:66 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "Nombre maximal d’éléments atteint ({max} éléments)" -# @ acf -#: pro/fields/class-acf-field-repeater.php:338 -msgid "Add row" -msgstr "Ajouter un élément" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "Erreur de chargement de la page" -#: pro/fields/class-acf-field-repeater.php:339 -msgid "Duplicate row" -msgstr "Dupliquer la ligne" - -# @ acf -#: pro/fields/class-acf-field-repeater.php:340 -msgid "Remove row" -msgstr "Retirer l’élément" - -#: pro/fields/class-acf-field-repeater.php:418 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" -msgstr "Refermé" +msgstr "Replié" -#: pro/fields/class-acf-field-repeater.php:419 +#: pro/fields/class-acf-field-repeater.php:175 msgid "Select a sub field to show when row is collapsed" msgstr "Choisir un sous champ à montrer lorsque la ligne est refermée" # @ acf -#: pro/fields/class-acf-field-repeater.php:429 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "Nombre minimum d’éléments" # @ acf -#: pro/fields/class-acf-field-repeater.php:439 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "Nombre maximum d’éléments" -#: pro/locations/class-acf-location-block.php:69 +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "Pagination" + +#: pro/fields/class-acf-field-repeater.php:229 +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:240 +msgid "Rows Per Page" +msgstr "Lignes par Page" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "Définir le nombre de lignes à afficher sur une page." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "Clé de champ invalide" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "Il y a une erreur lors de la récupération du champ." + +# @ acf +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Ajouter un élément" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Dupliquer la ligne" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Retirer l’élément" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "Page actuelle" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "Première page" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "Page précédente" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s sur %2$s" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "Page suivante" + +#: pro/fields/class-acf-repeater-table.php:469 +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:68 +#: 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/options-page.php:82 -msgid "Options Updated" -msgstr "Options mises à jour" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Activate License" +msgstr "Activer votre licence" -#: pro/updates.php:97 -#, php-format +# @ 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 enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." +"To unlock updates, please enter your license key below. 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 possédez pas encore une, " -"jetez un oeil à nos détails & tarifs." +"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." -#: tests/basic/test-blocks.php:279 -msgid "Hero" -msgstr "Bannière" +# @ acf +#: pro/admin/views/html-settings-updates.php:41 +msgid "License Key" +msgstr "Clé de licence" -#: tests/basic/test-blocks.php:280 -msgid "Display a random hero image." -msgstr "Affiche une bannière imagée" +#: 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" -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "Retenter l’activation" -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" -"Personnalisez WordPress avec des champs intuitifs, puissants et " -"professionnels." +# @ acf +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Informations de mise à jour" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Version actuelle" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Dernière version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Mise à jour disponible" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Entrez votre clé de licence ci-dessous pour activer les mises à jour" + +# @ acf +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Mettre à jour l’extension" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "Veuillez réactiver votre licence afin de débloquer les mises à jour" + +# @ acf +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Améliorations" + +# @ wp3i +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Améliorations" + +# @ acf +#~ msgid "+ Add Field" +#~ msgstr "+ Ajouter un champ" + +#~ msgid "A block for testing JS." +#~ msgstr "Un bloc pour tester JS." + +#~ 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 "" +#~ "Les extensions Advanced Custom Fields et Advanced Custom Fields PRO ne " +#~ "doivent pas être activés simultanément. Nous avons automatiquement " +#~ "désactivé Advanced Custom Fields PRO." + +#~ 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 "" +#~ "Les extensions Advanced Custom Fields et Advanced Custom Fields PRO ne " +#~ "doivent pas être activés simultanément. Nous avons automatiquement " +#~ "désactivé Advanced Custom Fields." + +#~ msgid "Allow Custom" +#~ msgstr "Permettra une valeur personnalisée" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Définir un point de terminaison pour arrêter les précédents onglets. Cela " +#~ "va commencer un nouveau groupe d’onglets." + +#~ msgid "Delicious Brains" +#~ msgstr "Delicious Brains" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Désactivé (%s)" +#~ msgstr[1] "Désactivés (%s)" + +#~ msgid "Display a random hero image." +#~ msgstr "Affiche une bannière imagée" + +#~ msgid "Export File" +#~ msgstr "Exporter le fichier" + +#~ msgid "Hero" +#~ msgstr "Bannière" + +#~ msgid "Import File" +#~ msgstr "Importer le fichier" + +# @ acf +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Mettre à la corbeille. Êtes-vous sûr ?" + +# @ acf +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Aucun champ. Cliquez sur le bouton + Ajouter un champ " +#~ "pour créer votre premier champ." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Pas de %s" + +#~ msgid "Other" +#~ msgstr "Autre" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Désactivé" + +# @ acf +#~ msgid "Required?" +#~ msgstr "Requis ?" + +#~ msgid "Save Custom" +#~ msgstr "Enregistrer la valeur personnalisée" + +#~ msgid "Save Other" +#~ msgstr "Enregistrer" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Sélectionnez le fichier JSON que vous souhaitez importer et cliquez sur " +#~ "« Importer ». ACF s'occupe du reste." + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Sélectionnez les groupes de champs que vous souhaitez exporter puis " +#~ "choisissez ensuite la méthode d'export : le bouton télécharger vous " +#~ "permettra d’exporter un fichier JSON que vous pourrez importer dans une " +#~ "autre installation ACF alors que le bouton « générer » exportera le code " +#~ "PHP que vous pourrez ajouter dans votre thème." + +# @ acf +#~ msgid "Stylised UI" +#~ msgstr "Interface avancée" + +#~ msgid "Test JS" +#~ msgstr "Test JS" + +#~ msgid "Toggle" +#~ msgstr "Masquer/afficher" + +#~ msgid "Upgrade to Pro" +#~ msgstr "Mettre à niveau vers la version Pro" diff --git a/lang/acf-gl_ES.mo b/lang/acf-gl_ES.mo new file mode 100644 index 0000000..b148e4e Binary files /dev/null and b/lang/acf-gl_ES.mo differ diff --git a/lang/acf-gl_ES.po b/lang/acf-gl_ES.po new file mode 100644 index 0000000..1a0f6b8 --- /dev/null +++ b/lang/acf-gl_ES.po @@ -0,0 +1,3057 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +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:121 +msgid "New Tab Group" +msgstr "Novo grupo de pestanas" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "Usa un recadro de verificación estilizado utilizando select2" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "Gardar a opción «Outro»" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "Permitir a opción «Outro»" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "Engade un «Alternar todos»" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Gardar os valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Permitir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:144 +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/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Actualizacións" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "Logo de Advanced Custom Fields" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Gardar cambios" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Título do grupo de campos" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Engadir título" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +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/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "Engadir grupo de campos" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Engade o teu primeiro grupo de campos" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Actualiza agora" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Páxinas de opcións" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "ACF Blocks" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Campo galería" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Campo de contido flexible" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Campo repetidor" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "Desbloquea as características extra con ACF PRO" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Borrar grupo de campos" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Creado o %1$s ás %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "Axustes de grupo" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "Regras de ubicación" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +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/field-group-fields.php:54 +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/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "#" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "Engadir campo" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Presentación" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validación" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Exportar grupos de campos - Xerar PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Exportar como JSON" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "Grupo de campos desactivado." +msgstr[1] "%s grupos de campos desactivados." + +#: includes/admin/admin-field-groups.php:585 +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-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Desactivar" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Desactiva este elemento" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Activar" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Activa este elemento" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "Mover este grupo de campos á papeleira?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "Inactivo" + +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" +"Advanced Custom Fields e Advanced Custom Fields non deberían estar activos " +"ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields PRO." + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" +"Advanced Custom Fields e Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Petición non válida." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s necesita un ID de adxunto válido." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Amosar na API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar transparencia" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadea RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadea Hex" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galería (só Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clonar (só Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contido flexible (só Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetidor (só Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor da cor" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar cor por defecto" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Baleirar cor" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloques" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opcións" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos do menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adxuntos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (máis novo)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos orixinal" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualización: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Síntoo, este grupo de campos non está dispoñible para a comparación diff." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID do grupo de campos non válido. " + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetro do grupo de campos non válido." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Pendente de gardar" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Gardado" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Revisar cambios" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Localizado en: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Localizado no plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Localizado no tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varios" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar cambios" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Cargando diff" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisar cambios do JSON local" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar a web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" + +#: includes/admin/admin.php:160 +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:156 +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 poden axudarche a descubrir " +"como facer todo no mundo de ACF." + +#: includes/admin/admin.php:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Axuda e Soporte" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Erro ao cargar o campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "O valor de %s é obligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Amosar este campo se" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lóxica condicional" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "e" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON local" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Campo clonar" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Grazas por actualizar a %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "É preciso actualizar a base de datos" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Páxina de opcións" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas as ferramentas" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Selecciona os elementos que ocultar da pantalla de edición." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos da páxina" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisións" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentarios" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discusión" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de contido" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Os grupos de campos con menor orde aparecerán primeiro" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Número de orde" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Debaixo dos campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Debaixo das etiquetas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Ubicación da instrución" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Ubicación da etiqueta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (despois do contido)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (despois do título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Directo (sen caixa meta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Estándar (caixa meta de WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Clave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Orde" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos do contedor" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Obrigatorio" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instrucións para os autores. Móstrase á hora de enviar os datos" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instrucións" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +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/field-group-field.php:134 +msgid "Field Name" +msgstr "Nome do campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etiqueta do campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo a outro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Amosar este grupo de campos se" + +#: includes/admin/views/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Lendo tarefas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "A actualización fallou." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos á versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "O sitio está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar os sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Engadir grupo de regras" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Regras" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar ao portapapeis" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"O seguinte código pode ser utilizado para rexistrar unha versión local del " +"ou dos grupos seleccionados. Un grupo de campos local pode dar moita vantaxe " +"como tempos de carga máis curtos, control de versión e campos/axustes " +"dinámicos. Simplemente copia e pega o seguinte código no arquivo functions." +"php do teu tema ou inclúeo coma un arquivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 grupos de campos 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 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Importouse un grupo de campos" +msgstr[1] "Importáronse %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Arquivo de imporación baleiro" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +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 " +"grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descrición" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronización dispoñible" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona o destino para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Cerrar ventá" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movemento completo." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Claves de campo" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Axustes" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Localización" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Non hai campos de conmutación dispoñibles" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "O título do grupo de campos é obligatorio" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Borrador do grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos gardado." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Páxina" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relacional" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Descoñecido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "A selección é menor que" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "A selección é maior que" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "O valor é menor que" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "O valor é maior que" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "O valor contén" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "O valor coincide co patrón" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Nob ten ningún valor" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Ten algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requiren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo require atención" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restrinxido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Contraer detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Subido a esta publicación" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "O tipo de arquivo debe ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "ou" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "O tamaño de arquivo non debe ser maior de %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "O tamaño do arquivo debe ser polo menos %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "A altura da imaxe non debe exceder %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "A altura da imaxe debe ser polo menos %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "O ancho da imaxe non debe exceder %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "O ancho da imaxe debe ser polo menos %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sen título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sen etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Establece a altura da área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite engadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Engadir nova opción" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir as URLs dos arquivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Engadir" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nome" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s engadido(s)" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s xa existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "O usuario non pode engadir novos %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID do termo" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Obxecto de termo" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Cargar o valor dos termos da publicación" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Cargar termos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Conectar os termos seleccionados coa publicación" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Gardar termos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crear termos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botóns de opción" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Caixa de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecciona a aparencia deste campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Aparencia" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona a taxonomía a amosar" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Non %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Engade a opción «outros» para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botón de opción" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeón" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restrinxir que arquivos se poden subir" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID do arquivo" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL do arquivo" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array do arquivo" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Engadir arquivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún arquivo seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nome do arquivo" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar arquivo" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar arquivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Especifica o valor devolto" + +#: includes/fields/class-acf-field-select.php:456 +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:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Engade cada valor nunha nova liña" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Erro ao cargar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando máis resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Non se encontraron coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID do usuario" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Obxecto de usuario" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos os roles de usuario" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar cor" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por defecto" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Feito" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Agora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Endpoint" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Aliñada á esquerda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Aliñada arriba" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Ubicación" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Pestana" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "O valor debe ser unha URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL do enlace" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array de enlaces" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abrir nunha nova ventá/pestana" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Tamaño de paso" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "vermello : Vermello" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Retrasar o inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Amosar botóns de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de ferramentas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Só texto" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Só visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual e Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Pestanas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Fai clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "O valor non debe exceder os %d caracteres" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Déixao en branco para ilimitado" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Aparece despois da entrada" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Anexar" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Aparece antes do campo" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Antepor" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Aparece no campo" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Marcador de posición" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID da publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Obxecto de publicación" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Publicacións máximas" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Publicacións mínimas" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imaxe destacada" + +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Os elementos seleccionados mostraranse en cada resultado" + +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contido" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas as taxonomías" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos os tipos de contido" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de contido" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Non se encontraron coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de arquivos permitidos" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Tamaño do arquivo" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restrinxir que imaxes se poden subir" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Subidos ao contido" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitar as opcións da biblioteca de medios" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamaño de vista previa" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID da imaxe" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL de imaxe" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array de imaxes" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especificar o valor devolto na web" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor de retorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Engadir imaxe" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Non hai ningunha imaxe seleccionada" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas as imaxes" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imaxe" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imaxe" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sen formato" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Engadir <br> automaticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Engadir parágrafos automaticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Controla como se mostran os saltos de liña" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Novas liñas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "A semana comeza o" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Gardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Seguinte" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoxe" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamaño da inserción" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado cando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado cando está activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "UI estilizada" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por defecto" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensaxe" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Non" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Táboa" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Especifica o estilo utilizado para representar os campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Estrutura" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar a altura do mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer o nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar inicialmente o mapa" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar enderezo..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Buscar" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "O formato devolto polas funcións do tema" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactivo (%s)" +msgstr[1] "Inactivos (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Non se encontraron campos na papeleira" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Non se encontraron campos" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Novo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Engadir novo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Non se atoparon os grupos de campos na papeleira" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Non se encontraron grupos de campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Novo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Engadir novo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Engadir novo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" diff --git a/lang/acf-he_IL.mo b/lang/acf-he_IL.mo index d3d4f6e..32840ac 100644 Binary files a/lang/acf-he_IL.mo and b/lang/acf-he_IL.mo differ diff --git a/lang/acf-he_IL.po b/lang/acf-he_IL.po index 334f3c4..d4468a1 100644 --- a/lang/acf-he_IL.po +++ b/lang/acf-he_IL.po @@ -1,26 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2017-10-23 11:00+0300\n" -"PO-Revision-Date: \n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Ahrale | Atar4U.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: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:67 msgid "Advanced Custom Fields" @@ -1282,8 +1281,7 @@ msgstr "יחסי" msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:149 -#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177 #: includes/fields/class-acf-field-checkbox.php:384 #: includes/fields/class-acf-field-group.php:474 #: includes/fields/class-acf-field-radio.php:285 @@ -2589,8 +2587,8 @@ msgstr "" msgid "Validate Email" msgstr "" -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 +#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573 +#: pro/options-page.php:81 msgid "Update" msgstr "עדכון" diff --git a/lang/acf-hr.mo b/lang/acf-hr.mo index 79c1463..dc5c366 100644 Binary files a/lang/acf-hr.mo and b/lang/acf-hr.mo differ diff --git a/lang/acf-hr.po b/lang/acf-hr.po index 92ad34f..48ff91f 100644 --- a/lang/acf-hr.po +++ b/lang/acf-hr.po @@ -1,26 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields\n" -"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-02-10 13:29+0000\n" -"Last-Translator: Delicious Brains \n" -"Language-Team: Elliot Condon \n" -"Language: hr_HR\n" +"PO-Revision-Date: 2022-09-29T12:15:07+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" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 3.0.1\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:3, pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" diff --git a/lang/acf-hu_HU.mo b/lang/acf-hu_HU.mo index 52f1e67..82d7723 100644 Binary files a/lang/acf-hu_HU.mo and b/lang/acf-hu_HU.mo differ diff --git a/lang/acf-hu_HU.po b/lang/acf-hu_HU.po index 12f55f7..a3e6bf3 100644 --- a/lang/acf-hu_HU.po +++ b/lang/acf-hu_HU.po @@ -1,25 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2015-08-11 23:26+0200\n" -"PO-Revision-Date: 2018-02-06 10:06+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Elliot Condon \n" "Language: hu_HU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;" -"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:63 msgid "Advanced Custom Fields" @@ -33,7 +33,8 @@ msgstr "" msgid "Field Group" msgstr "Mezőcsoport" -#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517 +#: acf.php:207 acf.php:239 admin/admin.php:62 +#: pro/fields/flexible-content.php:517 msgid "Add New" msgstr "Új hozzáadása" @@ -65,7 +66,8 @@ msgstr "Nincsenek mezőcsoportok" msgid "No Field Groups found in Trash" msgstr "Nem található mezőcsoport a lomtárban." -#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519 +#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 +#: admin/field-groups.php:519 msgid "Fields" msgstr "Mezők" @@ -81,7 +83,8 @@ msgstr "Mező hozzáadása" msgid "Edit Field" msgstr "Mező szerkesztése" -#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111 +#: acf.php:242 admin/views/field-group-fields.php:18 +#: admin/views/settings-info.php:111 msgid "New Field" msgstr "Új mező" @@ -165,8 +168,10 @@ msgstr "A mezőcsoport címét kötelező megadni" msgid "copy" msgstr "másolat" -#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67 -#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23 +#: admin/field-group.php:181 +#: admin/views/field-group-field-conditional-logic.php:67 +#: admin/views/field-group-field-conditional-logic.php:162 +#: admin/views/field-group-locations.php:23 #: admin/views/field-group-locations.php:131 api/api-helpers.php:3262 msgid "or" msgstr "vagy" @@ -255,8 +260,9 @@ msgstr "" msgid "Super Admin" msgstr "Szuper admin" -#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840 -#: admin/field-group.php:847 admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 +#: admin/field-group.php:818 admin/field-group.php:826 +#: admin/field-group.php:840 admin/field-group.php:847 +#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 #: fields/image.php:226 pro/fields/gallery.php:653 msgid "All" msgstr "Összes" @@ -330,8 +336,8 @@ msgstr "" msgid "Title" msgstr "Cím" -#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20 -#: admin/views/update-network.php:28 +#: admin/field-groups.php:517 admin/views/field-group-options.php:98 +#: admin/views/update-network.php:20 admin/views/update-network.php:28 msgid "Description" msgstr "" @@ -339,7 +345,8 @@ msgstr "" msgid "Status" msgstr "" -#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111 +#: admin/field-groups.php:616 admin/settings-info.php:76 +#: pro/admin/views/settings-updates.php:111 msgid "Changelog" msgstr "Változások (changelog)" @@ -359,7 +366,8 @@ msgstr "Források" msgid "Getting Started" msgstr "Kezdjük el" -#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17 +#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 +#: pro/admin/views/settings-updates.php:17 msgid "Updates" msgstr "Frissítések" @@ -395,8 +403,8 @@ msgstr "Szerző" msgid "Duplicate this item" msgstr "" -#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58 -#: pro/fields/flexible-content.php:516 +#: admin/field-groups.php:673 admin/field-groups.php:685 +#: admin/views/field-group-field.php:58 pro/fields/flexible-content.php:516 msgid "Duplicate" msgstr "Duplikálás" @@ -429,7 +437,8 @@ msgstr "Információ" msgid "What's New" msgstr "Újdonságok" -#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31 +#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 +#: admin/views/settings-tools.php:31 msgid "Tools" msgstr "" @@ -460,10 +469,12 @@ msgstr "Sikeres. Az importáló eszköz %s mezőcsoportot adott hozzá: % #: admin/settings-tools.php:332 #, php-format -msgid "Warning. Import tool detected %s field groups already exist and have been ignored: %s" +msgid "" +"Warning. Import tool detected %s field groups already exist and have " +"been ignored: %s" msgstr "" -"Figyelmeztetés. Az importáló eszköz észlelte, hogy %s mezőcsoport már létezik, így ezeket " -"figyelmen kívül hagyta: %s" +"Figyelmeztetés. Az importáló eszköz észlelte, hogy %s mezőcsoport már " +"létezik, így ezeket figyelmen kívül hagyta: %s" #: admin/update.php:113 msgid "Upgrade ACF" @@ -485,20 +496,25 @@ msgstr "" msgid "Conditional Logic" msgstr "Logikai feltételek" -#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137 -#: fields/checkbox.php:246 fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 -#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 fields/select.php:425 -#: fields/select.php:439 fields/select.php:453 fields/tab.php:172 fields/taxonomy.php:770 -#: fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457 -#: fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93 +#: admin/views/field-group-field-conditional-logic.php:40 +#: admin/views/field-group-field.php:137 fields/checkbox.php:246 +#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 +#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 +#: fields/select.php:425 fields/select.php:439 fields/select.php:453 +#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784 +#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457 +#: fields/user.php:471 fields/wysiwyg.php:384 +#: pro/admin/views/settings-updates.php:93 msgid "Yes" msgstr "Igen" -#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138 -#: fields/checkbox.php:247 fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 -#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 fields/select.php:426 -#: fields/select.php:440 fields/select.php:454 fields/tab.php:173 fields/taxonomy.php:685 -#: fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813 +#: admin/views/field-group-field-conditional-logic.php:41 +#: admin/views/field-group-field.php:138 fields/checkbox.php:247 +#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 +#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 +#: fields/select.php:426 fields/select.php:440 fields/select.php:454 +#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771 +#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813 #: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385 #: pro/admin/views/settings-updates.php:103 msgid "No" @@ -508,19 +524,23 @@ msgstr "Nem" msgid "Show this field if" msgstr "Mező megjelenítése, ha" -#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88 +#: admin/views/field-group-field-conditional-logic.php:111 +#: admin/views/field-group-locations.php:88 msgid "is equal to" msgstr "egyenlő" -#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89 +#: admin/views/field-group-field-conditional-logic.php:112 +#: admin/views/field-group-locations.php:89 msgid "is not equal to" msgstr "nem egyenlő" -#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118 +#: admin/views/field-group-field-conditional-logic.php:149 +#: admin/views/field-group-locations.php:118 msgid "and" msgstr "és" -#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133 +#: admin/views/field-group-field-conditional-logic.php:164 +#: admin/views/field-group-locations.php:133 msgid "Add rule group" msgstr "Szabálycsoport hozzáadása" @@ -552,7 +572,8 @@ msgstr "Mező törlése" msgid "Delete" msgstr "Törlés" -#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886 +#: admin/views/field-group-field.php:68 fields/oembed.php:212 +#: fields/taxonomy.php:886 msgid "Error" msgstr "Hiba" @@ -578,7 +599,9 @@ msgstr "Mezőnév" #: admin/views/field-group-field.php:94 msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Egyetlen szó, szóközök és ékezetek nélkül, alulvonás és kötőjel használata megengedett" +msgstr "" +"Egyetlen szó, szóközök és ékezetek nélkül, alulvonás és kötőjel használata " +"megengedett" #: admin/views/field-group-field.php:105 msgid "Field Type" @@ -633,9 +656,12 @@ msgid "Type" msgstr "Típus" #: admin/views/field-group-fields.php:44 -msgid "No fields. Click the + Add Field button to create your first field." +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." msgstr "" -"Nincsenek mezők. Kattintsunk a +Mező hozzáadása gombra az első mező létrehozásához." +"Nincsenek mezők. Kattintsunk a +Mező hozzáadása gombra az " +"első mező létrehozásához." #: admin/views/field-group-fields.php:51 msgid "Drag and drop to reorder" @@ -650,14 +676,19 @@ msgid "Rules" msgstr "Szabályok" #: admin/views/field-group-locations.php:6 -msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" -msgstr "Hozzunk létre szabályokat, hogy melyik szerkesztőképernyők használják a mezőcsoportot" +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Hozzunk létre szabályokat, hogy melyik szerkesztőképernyők használják a " +"mezőcsoportot" #: admin/views/field-group-locations.php:21 msgid "Show this field group if" msgstr "Mezőcsoport megjelenítése, ha" -#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47 +#: admin/views/field-group-locations.php:41 +#: admin/views/field-group-locations.php:47 msgid "Post" msgstr "Bejegyzés" @@ -681,7 +712,8 @@ msgstr "Bejegyzés-kategória" msgid "Post Taxonomy" msgstr "Bejegyzés-osztályozás (taxonómia)" -#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53 +#: admin/views/field-group-locations.php:49 +#: admin/views/field-group-locations.php:53 msgid "Page" msgstr "Oldal" @@ -811,8 +843,8 @@ msgstr "" #: admin/views/field-group-options.php:110 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)" +"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 "" #: admin/views/field-group-options.php:117 @@ -885,8 +917,12 @@ msgstr "Üdvözlet! Itt az Advanced Custom Fields" #: admin/views/settings-info.php:10 #, php-format -msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it." -msgstr "Köszönjük a frissítést! Az ACF %s nagyobb és jobb, mint valaha. Reméljük, tetszeni fog!" +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Köszönjük a frissítést! Az ACF %s nagyobb és jobb, mint valaha. Reméljük, " +"tetszeni fog!" #: admin/views/settings-info.php:23 msgid "A smoother custom field experience" @@ -898,11 +934,13 @@ msgstr "Továbbfejlesztett használhatóság" #: admin/views/settings-info.php:29 msgid "" -"Including the popular Select2 library has improved both usability and speed across a number of field " -"types including post object, page link, taxonomy and select." +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." msgstr "" -"A népszerű Select2 könyvtár bevonása számos mezőtípusnál (például bejegyzés objektumok, " -"oldalhivatkozások, osztályozások és kiválasztás) javítja a használhatóságot és a sebességet." +"A népszerű Select2 könyvtár bevonása számos mezőtípusnál (például bejegyzés " +"objektumok, oldalhivatkozások, osztályozások és kiválasztás) javítja a " +"használhatóságot és a sebességet." #: admin/views/settings-info.php:33 msgid "Improved Design" @@ -910,11 +948,13 @@ msgstr "Továbbfejlesztett megjelenés" #: admin/views/settings-info.php:34 msgid "" -"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are " -"seen on the gallery, relationship and oEmbed (new) fields!" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" msgstr "" -"Számos mező vizuálisan megújult, hogy az ACF jobban nézzen ki, mint valaha. Észrevehető változások " -"történtek a galéria, kapcsolat és oEmbed (új) mezők esetében." +"Számos mező vizuálisan megújult, hogy az ACF jobban nézzen ki, mint valaha. " +"Észrevehető változások történtek a galéria, kapcsolat és oEmbed (új) mezők " +"esetében." #: admin/views/settings-info.php:38 msgid "Improved Data" @@ -922,11 +962,13 @@ msgstr "Továbbfejlesztett adatszerkezet" #: admin/views/settings-info.php:39 msgid "" -"Redesigning the data architecture has allowed sub fields to live independently from their parents. This " -"allows you to drag and drop fields in and out of parent fields!" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" msgstr "" -"Az adatszerkezet újratervezésének köszönhetően az almezők függetlenek lettek a szülőmezőktől. Mindez " -"lehetővé teszi, hogy a mezőket fogd-és-vidd módon más mezőkbe, vagy azokon kívülre helyezzük át." +"Az adatszerkezet újratervezésének köszönhetően az almezők függetlenek lettek " +"a szülőmezőktől. Mindez lehetővé teszi, hogy a mezőket fogd-és-vidd módon " +"más mezőkbe, vagy azokon kívülre helyezzük át." #: admin/views/settings-info.php:45 msgid "Goodbye Add-ons. Hello PRO" @@ -937,19 +979,20 @@ msgid "Introducing ACF PRO" msgstr "Az ACF PRO bemutatása" #: admin/views/settings-info.php:51 -msgid "We're changing the way premium functionality is delivered in an exciting way!" +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" msgstr "" #: admin/views/settings-info.php:52 #, php-format msgid "" -"All 4 premium add-ons have been combined into a new Pro version of ACF. With both " -"personal and developer licenses available, premium functionality is more affordable and accessible than " -"ever before!" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" msgstr "" -"Az új ACF PRO változat tartalmazza mind a négy korábbi prémium kiegészítőt. A " -"személyes és fejlesztői licenceknek köszönhetően a prémium funkcionalitás így sokkal megfizethetőbb, " -"mint korábban." +"Az új ACF PRO változat tartalmazza mind a négy korábbi " +"prémium kiegészítőt. A személyes és fejlesztői licenceknek köszönhetően a " +"prémium funkcionalitás így sokkal megfizethetőbb, mint korábban." #: admin/views/settings-info.php:56 msgid "Powerful Features" @@ -957,11 +1000,13 @@ msgstr "Hatékony szolgáltatások" #: admin/views/settings-info.php:57 msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful " -"gallery field and the ability to create extra admin options pages!" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" msgstr "" -"Az ACF PRO változat olyan fantasztikus szolgáltatásokat kínál, mint ismételhető adatok, rugalmas " -"tartalomelrendezések, gyönyörű galériamező, és segítségével egyéni beállítás-oldalak is létrehozhatók!" +"Az ACF PRO változat olyan fantasztikus szolgáltatásokat kínál, mint " +"ismételhető adatok, rugalmas tartalomelrendezések, gyönyörű galériamező, és " +"segítségével egyéni beállítás-oldalak is létrehozhatók!" #: admin/views/settings-info.php:58 #, php-format @@ -975,21 +1020,22 @@ msgstr "Egyszerű frissítés" #: admin/views/settings-info.php:63 #, php-format msgid "" -"To help make upgrading easy, login to your store account and claim a free copy of " -"ACF PRO!" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" msgstr "" -"A még könnyebb frissítés érdekében csak jelenkezzünk be a felhasználói fiókunkba és " -"igényeljünk egy ingyenes ACF PRO változatot!" +"A még könnyebb frissítés érdekében csak jelenkezzünk be a " +"felhasználói fiókunkba és igényeljünk egy ingyenes ACF PRO változatot!" #: admin/views/settings-info.php:64 #, php-format msgid "" -"We also wrote an upgrade guide to answer any questions, but if you do have one, " -"please contact our support team via the help desk" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" msgstr "" -"A felmerülő kérdések megválaszolására egy frissítési útmutató is rendelkezésre áll. " -"Amennyiben az útmutató nem ad választ a kérdésre, vegyük fel a kapcsolatot a támogató " -"csapattal." +"A felmerülő kérdések megválaszolására egy frissítési " +"útmutató is rendelkezésre áll. Amennyiben az útmutató nem ad választ a " +"kérdésre, vegyük fel a kapcsolatot a támogató csapattal." #: admin/views/settings-info.php:72 msgid "Under the Hood" @@ -1009,7 +1055,9 @@ msgstr "Több AJAX" #: admin/views/settings-info.php:83 msgid "More fields use AJAX powered search to speed up page loading" -msgstr "Több mező használ AJAX-alapú keresést az oldal gyorsabb betöltésének érdekében." +msgstr "" +"Több mező használ AJAX-alapú keresést az oldal gyorsabb betöltésének " +"érdekében." #: admin/views/settings-info.php:87 msgid "Local JSON" @@ -1024,8 +1072,12 @@ msgid "Better version control" msgstr "Jobb verziókezelés" #: admin/views/settings-info.php:95 -msgid "New auto export to JSON feature allows field settings to be version controlled" -msgstr "Az új JSON autoexport szolgáltatás lehetővé teszi a mezőbeállítások verziókezelését." +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" +msgstr "" +"Az új JSON autoexport szolgáltatás lehetővé teszi a mezőbeállítások " +"verziókezelését." #: admin/views/settings-info.php:99 msgid "Swapped XML for JSON" @@ -1033,7 +1085,9 @@ msgstr "XML helyett JSON" #: admin/views/settings-info.php:100 msgid "Import / Export now uses JSON in favour of XML" -msgstr "Az importálás és exportálás JSON formátumban történik a korábbi XML megoldás helyett." +msgstr "" +"Az importálás és exportálás JSON formátumban történik a korábbi XML megoldás " +"helyett." #: admin/views/settings-info.php:104 msgid "New Forms" @@ -1041,7 +1095,9 @@ msgstr "Új űrlapok" #: admin/views/settings-info.php:105 msgid "Fields can now be mapped to comments, widgets and all user forms!" -msgstr "A mezők már hozzászólásokhoz, widgetekhez és felhasználói adatlapokhoz is hozzárendelhetők." +msgstr "" +"A mezők már hozzászólásokhoz, widgetekhez és felhasználói adatlapokhoz is " +"hozzárendelhetők." #: admin/views/settings-info.php:112 msgid "A new field for embedding content has been added" @@ -1060,8 +1116,12 @@ msgid "New Settings" msgstr "Új beállítások" #: admin/views/settings-info.php:122 -msgid "Field group settings have been added for label placement and instruction placement" -msgstr "A mezőcsoport beállításai kiegészültek a mezőfeliratok és útmutatók elhelyezési lehetőségeivel." +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "" +"A mezőcsoport beállításai kiegészültek a mezőfeliratok és útmutatók " +"elhelyezési lehetőségeivel." #: admin/views/settings-info.php:128 msgid "Better Front End Forms" @@ -1070,7 +1130,8 @@ msgstr "Jobb felhasználó oldali űrlapok" #: admin/views/settings-info.php:129 msgid "acf_form() can now create a new post on submission" msgstr "" -"Az acf_form() már képes új bejegyzést létrehozni egy felhasználó oldali (front end) űrlap elküldésekor." +"Az acf_form() már képes új bejegyzést létrehozni egy felhasználó oldali " +"(front end) űrlap elküldésekor." #: admin/views/settings-info.php:133 msgid "Better Validation" @@ -1078,24 +1139,32 @@ msgstr "Jobb ellenőrzés és érvényesítés" #: admin/views/settings-info.php:134 msgid "Form validation is now done via PHP + AJAX in favour of only JS" -msgstr "Az űrlapok érvényesítése már nem kizárólag JS által, hanem PHP + AJAX megoldással történik." +msgstr "" +"Az űrlapok érvényesítése már nem kizárólag JS által, hanem PHP + AJAX " +"megoldással történik." #: admin/views/settings-info.php:138 msgid "Relationship Field" msgstr "Kapcsolat mezőtípus" #: admin/views/settings-info.php:139 -msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" -msgstr "Új mezőbeállítás szűrők számára (keresés, bejegyzéstípus, osztályozás) a kapcsolat mezőtípusnál." +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "" +"Új mezőbeállítás szűrők számára (keresés, bejegyzéstípus, osztályozás) a " +"kapcsolat mezőtípusnál." #: admin/views/settings-info.php:145 msgid "Moving Fields" msgstr "Mezők áthelyezése" #: admin/views/settings-info.php:146 -msgid "New field group functionality allows you to move a field between groups & parents" +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" msgstr "" -"A mezőcsoportok új szolgáltatásaival az egyes mezők csoportok és szülőmezők között is mozgathatók." +"A mezőcsoportok új szolgáltatásaival az egyes mezők csoportok és szülőmezők " +"között is mozgathatók." #: admin/views/settings-info.php:150 fields/page_link.php:36 msgid "Page Link" @@ -1103,16 +1172,21 @@ msgstr "Oldalhivatkozás" #: admin/views/settings-info.php:151 msgid "New archives group in page_link field selection" -msgstr "Új 'Archívumok' csoport az oldalhivatkozás mezőtípus választási lehetőségeinél." +msgstr "" +"Új 'Archívumok' csoport az oldalhivatkozás mezőtípus választási " +"lehetőségeinél." #: admin/views/settings-info.php:155 msgid "Better Options Pages" msgstr "Jobb beállítás oldalak" #: admin/views/settings-info.php:156 -msgid "New functions for options page allow creation of both parent and child menu pages" +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" msgstr "" -"A beállítás oldalakhoz kapcsolódó új funkciók segítségével szülő- és gyermekoldalak is létrehozhatók." +"A beállítás oldalakhoz kapcsolódó új funkciók segítségével szülő- és " +"gyermekoldalak is létrehozhatók." #: admin/views/settings-info.php:165 #, php-format @@ -1126,15 +1200,17 @@ msgstr "Mezőcsoport exportálása PHP kódba" #: admin/views/settings-tools-export.php:17 #, fuzzy msgid "" -"The following code can be used to register a local version of the selected field group(s). A local " -"field group 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." +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." msgstr "" -"A következő kód segítségével regisztrálható a kiválasztott mezőcsoportok helyi változata. A helyi " -"mezőcsoportok számos előnnyel rendelkeznek: rövidebb betöltési idő, verziókezelés és dinamikus mezők/" -"beállítások lehetősége. Alkalmazásához egyszerűen másoljuk be a kódot a sablonhoz tartozó functions.php " -"fájlba." +"A következő kód segítségével regisztrálható a kiválasztott mezőcsoportok " +"helyi változata. A helyi mezőcsoportok számos előnnyel rendelkeznek: " +"rövidebb betöltési idő, verziókezelés és dinamikus mezők/beállítások " +"lehetősége. Alkalmazásához egyszerűen másoljuk be a kódot a sablonhoz " +"tartozó functions.php fájlba." #: admin/views/settings-tools.php:5 msgid "Select Field Groups" @@ -1146,13 +1222,15 @@ msgstr "Mezőcsoportok exportálása" #: admin/views/settings-tools.php:38 msgid "" -"Select the field groups you would like to export and then select your export method. Use the download " -"button to export to a .json file which you can then import to another ACF installation. Use the " -"generate button to export to PHP code which you can place in your theme." +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." msgstr "" -"Válasszuk ki az exportálni kívánt mezőcsoportokat, majd az exportálás módszerét. A letöltés gombbal egy " -"JSON fájl készíthető, amelyet egy másik ACF telepítésbe importálhatunk. A kódgenerálás gombbal PHP kód " -"hozható létre, amelyet beilleszthetünk a sablonunkba." +"Válasszuk ki az exportálni kívánt mezőcsoportokat, majd az exportálás " +"módszerét. A letöltés gombbal egy JSON fájl készíthető, amelyet egy másik " +"ACF telepítésbe importálhatunk. A kódgenerálás gombbal PHP kód hozható " +"létre, amelyet beilleszthetünk a sablonunkba." #: admin/views/settings-tools.php:50 msgid "Download export file" @@ -1168,11 +1246,12 @@ msgstr "Mezőcsoportok importálása" #: admin/views/settings-tools.php:67 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button " -"below, ACF will import the field groups." +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." msgstr "" -"Válasszuk ki az importálni kívánt Advanced Custom Fields JSON fájlt. A gombra kattintva az ACF " -"bővítmény importálja a fájlban definiált mezőcsoportokat." +"Válasszuk ki az importálni kívánt Advanced Custom Fields JSON fájlt. A " +"gombra kattintva az ACF bővítmény importálja a fájlban definiált " +"mezőcsoportokat." #: admin/views/settings-tools.php:77 fields/file.php:46 msgid "Select File" @@ -1188,8 +1267,8 @@ msgstr "" #: admin/views/update-network.php:10 msgid "" -"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade " -"Database”." +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click “Upgrade Database”." msgstr "" #: admin/views/update-network.php:19 admin/views/update-network.php:27 @@ -1206,16 +1285,17 @@ msgid "Site is up to date" msgstr "" #: admin/views/update-network.php:62 admin/views/update.php:16 -msgid "Database Upgrade complete. Return to network dashboard" +msgid "" +"Database Upgrade complete. Return to network dashboard" msgstr "" #: admin/views/update-network.php:101 admin/views/update-notice.php:35 msgid "" -"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to " -"run the updater now?" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" msgstr "" -"A folytatás előtt ajánlatos biztonsági mentést készíteni az adatbázisról. Biztosan futtatni akarjuk a " -"frissítést?" +"A folytatás előtt ajánlatos biztonsági mentést készíteni az adatbázisról. " +"Biztosan futtatni akarjuk a frissítést?" #: admin/views/update-network.php:157 msgid "Upgrade complete" @@ -1237,10 +1317,11 @@ msgstr "Köszönjük a frissítést az %s %s verzióra!" #: admin/views/update-notice.php:25 msgid "" -"Before you start using the new awesome features, please update your database to the newest version." +"Before you start using the new awesome features, please update your database " +"to the newest version." msgstr "" -"Mielőtt használni kezdenénk az elképesztő új szolgáltatásokat, frissítsük az adatbázist a legújabb " -"verzióra." +"Mielőtt használni kezdenénk az elképesztő új szolgáltatásokat, frissítsük az " +"adatbázist a legújabb verzióra." #: admin/views/update.php:12 msgid "Reading upgrade tasks..." @@ -1344,8 +1425,8 @@ msgstr "Relációs" msgid "jQuery" msgstr "jQuery" -#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512 -#: pro/fields/repeater.php:392 +#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 +#: pro/fields/flexible-content.php:512 pro/fields/repeater.php:392 msgid "Layout" msgstr "Tartalom elrendezés" @@ -1401,15 +1482,18 @@ msgstr "Minden választási lehetőséget új sorba kell írni" #: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 msgid "For more control, you may specify both a value and label like this:" -msgstr "A testreszabhatóság érdekében az érték és a felirat is meghatározható a következő módon:" +msgstr "" +"A testreszabhatóság érdekében az érték és a felirat is meghatározható a " +"következő módon:" #: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 msgid "red : Red" msgstr "voros : Vörös" -#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150 -#: fields/radio.php:222 fields/select.php:397 fields/text.php:148 fields/textarea.php:145 -#: fields/true_false.php:115 fields/url.php:117 fields/wysiwyg.php:345 +#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 +#: fields/number.php:150 fields/radio.php:222 fields/select.php:397 +#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115 +#: fields/url.php:117 fields/wysiwyg.php:345 msgid "Default Value" msgstr "Alapértelmezett érték" @@ -1489,34 +1573,39 @@ msgstr "Hét kezdőnapja" msgid "Email" msgstr "Email (email)" -#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 -#: fields/textarea.php:146 fields/url.php:118 fields/wysiwyg.php:346 +#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 +#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118 +#: fields/wysiwyg.php:346 msgid "Appears when creating a new post" msgstr "Új bejegyzés létrehozásánál" -#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 -#: fields/textarea.php:154 fields/url.php:126 +#: fields/email.php:133 fields/number.php:159 fields/password.php:137 +#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126 msgid "Placeholder Text" msgstr "Helyőrző szöveg" -#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 -#: fields/textarea.php:155 fields/url.php:127 +#: fields/email.php:134 fields/number.php:160 fields/password.php:138 +#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127 msgid "Appears within the input" msgstr "Beviteli mezőben jelenik meg" -#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166 +#: fields/email.php:142 fields/number.php:168 fields/password.php:146 +#: fields/text.php:166 msgid "Prepend" msgstr "Előtag" -#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167 +#: fields/email.php:143 fields/number.php:169 fields/password.php:147 +#: fields/text.php:167 msgid "Appears before the input" msgstr "Beviteli mező előtt jelenik meg" -#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175 +#: fields/email.php:151 fields/number.php:177 fields/password.php:155 +#: fields/text.php:175 msgid "Append" msgstr "Utótag" -#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176 +#: fields/email.php:152 fields/number.php:178 fields/password.php:156 +#: fields/text.php:176 msgid "Appears after the input" msgstr "Beviteli mező után jelenik meg" @@ -1558,7 +1647,8 @@ msgstr "Visszaadott érték" #: fields/file.php:215 fields/image.php:196 msgid "Specify the returned value on front end" -msgstr "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét" +msgstr "" +"Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét" #: fields/file.php:220 msgid "File Array" @@ -1592,8 +1682,8 @@ msgstr "" msgid "Restrict which files can be uploaded" msgstr "" -#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 -#: pro/fields/gallery.php:684 pro/fields/gallery.php:717 +#: fields/file.php:247 fields/file.php:258 fields/image.php:257 +#: fields/image.php:290 pro/fields/gallery.php:684 pro/fields/gallery.php:717 msgid "File size" msgstr "" @@ -1649,8 +1739,8 @@ msgstr "Nagyítás" msgid "Set the initial zoom level" msgstr "Kezdeti nagyítási szint" -#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262 -#: pro/fields/gallery.php:673 pro/fields/gallery.php:706 +#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 +#: fields/oembed.php:262 pro/fields/gallery.php:673 pro/fields/gallery.php:706 msgid "Height" msgstr "Magasság" @@ -1710,12 +1800,13 @@ msgstr "Előnézeti méret" msgid "Shown when entering data" msgstr "Adatok bevitelénél jelenik meg" -#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695 +#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 +#: pro/fields/gallery.php:695 msgid "Restrict which images can be uploaded" msgstr "" -#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665 -#: pro/fields/gallery.php:698 +#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 +#: pro/fields/gallery.php:665 pro/fields/gallery.php:698 msgid "Width" msgstr "" @@ -1785,28 +1876,33 @@ msgstr "Beágyazási méret" msgid "Archives" msgstr "Archívumok" -#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690 +#: fields/page_link.php:535 fields/post_object.php:401 +#: fields/relationship.php:690 msgid "Filter by Post Type" msgstr "Szűrés bejegyzéstípusra" -#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698 +#: fields/page_link.php:543 fields/post_object.php:409 +#: fields/relationship.php:698 msgid "All post types" msgstr "Minden bejegyzéstípus" -#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704 +#: fields/page_link.php:549 fields/post_object.php:415 +#: fields/relationship.php:704 msgid "Filter by Taxonomy" msgstr "Szűrés osztályozásra" -#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712 +#: fields/page_link.php:557 fields/post_object.php:423 +#: fields/relationship.php:712 msgid "All taxonomies" msgstr "" -#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765 -#: fields/user.php:452 +#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 +#: fields/taxonomy.php:765 fields/user.php:452 msgid "Allow Null?" msgstr "Üres mező engedélyezése" -#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466 +#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 +#: fields/user.php:466 msgid "Select multiple values?" msgstr "Többszörös választás" @@ -1814,7 +1910,8 @@ msgstr "Többszörös választás" msgid "Password" msgstr "Jelszó (password)" -#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769 +#: fields/post_object.php:36 fields/post_object.php:462 +#: fields/relationship.php:769 msgid "Post Object" msgstr "Bejegyzés objektum (post object)" @@ -1924,23 +2021,28 @@ msgstr "Figyelmeztetés" #: fields/tab.php:133 msgid "" -"The tab field will display incorrectly when added to a Table style repeater field or flexible content " -"field layout" +"The tab field will display incorrectly when added to a Table style repeater " +"field or flexible content field layout" msgstr "" -"Táblázat stílusú ismétlő csoportmezőhöz vagy rugalmas tartalomhoz rendelve a lapok helytelenül jelennek " -"meg." +"Táblázat stílusú ismétlő csoportmezőhöz vagy rugalmas tartalomhoz rendelve a " +"lapok helytelenül jelennek meg." #: fields/tab.php:146 -msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together." -msgstr "Használjunk lapokat a szerkesztőképernyők tartalmának rendezéséhez és a mezők csoportosításához." +msgid "" +"Use \"Tab Fields\" to better organize your edit screen by grouping fields " +"together." +msgstr "" +"Használjunk lapokat a szerkesztőképernyők tartalmának rendezéséhez és a " +"mezők csoportosításához." #: fields/tab.php:148 msgid "" -"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." +"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." msgstr "" -"A lap típusú mezőt követő összes mező egy csoportba kerül (egy újabb lap beillesztéséig), a lap címsora " -"pedig a mező felirata lesz." +"A lap típusú mezőt követő összes mező egy csoportba kerül (egy újabb lap " +"beillesztéséig), a lap címsora pedig a mező felirata lesz." #: fields/tab.php:155 msgid "Placement" @@ -2177,8 +2279,12 @@ msgid "Options Updated" msgstr "Beállítások elmentve" #: pro/admin/options-page.php:304 -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" +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/settings-updates.php:137 msgid "Error. Could not connect to update server" @@ -2210,10 +2316,11 @@ msgstr "Licenc" #: pro/admin/views/settings-updates.php:24 msgid "" -"To unlock updates, please enter your license key below. If you don't have a licence key, please see" +"To unlock updates, please enter your license key below. If you don't have a " +"licence key, please see" msgstr "" -"A frissítések engedélyezéséhez adjuk meg a licenckulcsot az alábbi beviteli mezőben. Ha még nem " -"rendelkezünk licenckulccsal, tájékozódáshoz:" +"A frissítések engedélyezéséhez adjuk meg a licenckulcsot az alábbi beviteli " +"mezőben. Ha még nem rendelkezünk licenckulccsal, tájékozódáshoz:" #: pro/admin/views/settings-updates.php:24 msgid "details & pricing" @@ -2262,11 +2369,13 @@ msgstr "Beállítások" #: pro/core/updates.php:186 #, php-format 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" +"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." +"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/fields/flexible-content.php:36 msgid "Flexible Content" @@ -2304,7 +2413,8 @@ msgstr "Ennél a mezőnél legfeljebb {max} {identifier} adható hozzá." # Revision suggested #: pro/fields/flexible-content.php:50 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" +msgstr "" +"Ennél a mezőnél legalább {min} {label} {identifier} hozzáadása szükséges" # Revision suggested #: pro/fields/flexible-content.php:51 @@ -2461,7 +2571,8 @@ msgstr "Ismétlő csoportmező (repeater)" #: pro/fields/repeater.php:46 msgid "Minimum rows reached ({min} rows)" -msgstr "Nem érjük el a sorok minimális számát (legalább {min} sort hozzá kell adni)" +msgstr "" +"Nem érjük el a sorok minimális számát (legalább {min} sort hozzá kell adni)" #: pro/fields/repeater.php:47 msgid "Maximum rows reached ({max} rows)" @@ -2561,33 +2672,43 @@ msgstr "" #~ msgstr "Bejelentkezett felhasználó szerepköre" #~ msgid "Field groups are created in order
                              from lowest to highest" -#~ msgstr "Az egyes mezőcsoportok az alacsonyabbtól a magasabb érték felé haladva jönnek létre" +#~ msgstr "" +#~ "Az egyes mezőcsoportok az alacsonyabbtól a magasabb érték felé haladva " +#~ "jönnek létre" #~ msgid "Select items to hide them from the edit screen" -#~ msgstr "Válasszuk ki a szerkesztőképernyőn elrejteni kívánt elemeket" +#~ msgstr "" +#~ "Válasszuk ki a szerkesztőképernyőn elrejteni kívánt elemeket" #~ 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)" +#~ "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 "" -#~ "Ha a szerkesztőképernyőn több mezőcsoport is megjelenik, úgy a legelső csoport (legalacsonyabb " -#~ "sorszám) beállításai érvényesülnek." +#~ "Ha a szerkesztőképernyőn több mezőcsoport is megjelenik, úgy a legelső " +#~ "csoport (legalacsonyabb sorszám) beállításai érvényesülnek." -#~ msgid "We're changing the way premium functionality is delivered in an exiting way!" +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exiting " +#~ "way!" #~ msgstr "A prémium szolgáltatások immár egy izgalmas, új módon érhetők el! " #~ msgid "ACF PRO Required" #~ msgstr "ACF PRO változat szükséges" #~ msgid "" -#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons " -#~ "(%s) which are no longer compatible with ACF." +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." #~ msgstr "" -#~ "Egy figyelmet igénylő problémát észleltünk: A honlap olyan prémium kiegészítőket használ (%s), " -#~ "amelyek már nem kompatibilisek az új ACF verzióval." +#~ "Egy figyelmet igénylő problémát észleltünk: A honlap olyan prémium " +#~ "kiegészítőket használ (%s), amelyek már nem kompatibilisek az új ACF " +#~ "verzióval." -#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!" -#~ msgstr "Aggodalomra nincs ok, könnyedén visszatérhetünk a bővítmény korábbi, már ismert verziójához!" +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Aggodalomra nincs ok, könnyedén visszatérhetünk a bővítmény korábbi, már " +#~ "ismert verziójához!" #~ msgid "Roll back to ACF v%s" #~ msgstr "Visszatérés az ACF %s verzióhoz" @@ -2618,9 +2739,11 @@ msgstr "" #~ msgid "Load & Save Terms to Post" #~ msgstr "Kifejezések a bejegyzéshez kapcsolva (betöltés és mentés)" -#~ msgid "Load value based on the post's terms and update the post's terms on save" +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" #~ msgstr "" -#~ "Az érték betöltése a bejegyzéshez rendelt kifejezések alapján és a kifejezések frissítése mentéskor" +#~ "Az érték betöltése a bejegyzéshez rendelt kifejezések alapján és a " +#~ "kifejezések frissítése mentéskor" #~ msgid "Column Width" #~ msgstr "Oszlopszélesség" @@ -2688,7 +2811,8 @@ msgstr "" #, fuzzy #~ msgid "Effects value on front end" -#~ msgstr "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét" +#~ msgstr "" +#~ "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét" #, fuzzy #~ msgid "No images selected" @@ -2703,13 +2827,16 @@ msgstr "" #~ msgstr "Kép nincs kiválasztva" #~ msgid "" -#~ "Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a " -#~ "powerful API, it’s a must have for any web developer working with WordPress. Field types include: " -#~ "Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color " -#~ "picker, repeater, flexible content, gallery and more!" +#~ "Fully customise WordPress edit screens with powerful fields. Boasting a " +#~ "professional interface and a powerful API, it’s a must have for any web " +#~ "developer working with WordPress. Field types include: Wysiwyg, text, " +#~ "textarea, image, file, select, checkbox, page link, post object, date " +#~ "picker, color picker, repeater, flexible content, gallery and more!" #~ msgstr "" -#~ "A WordPress teljes körű testreszabása egyéni mezők segítségével. A professzionális kezelőfelületet " -#~ "és hatékony API-t kínáló bővítmény minden WordPress-fejlesztő számára nélkülözhetetlen eszköz. " -#~ "Elérhető mezőtípusok: Wysiwyg, szöveg, szövegterület, kép, fájl, választó, jelölődoboz, " -#~ "oldalhivatkozás, bejegyzés objektum, dátumválasztó, színválasztó, ismétlő csoportmező, rugalmas " -#~ "tartalom, galéria és még több más." +#~ "A WordPress teljes körű testreszabása egyéni mezők segítségével. A " +#~ "professzionális kezelőfelületet és hatékony API-t kínáló bővítmény minden " +#~ "WordPress-fejlesztő számára nélkülözhetetlen eszköz. Elérhető " +#~ "mezőtípusok: Wysiwyg, szöveg, szövegterület, kép, fájl, választó, " +#~ "jelölődoboz, oldalhivatkozás, bejegyzés objektum, dátumválasztó, " +#~ "színválasztó, ismétlő csoportmező, rugalmas tartalom, galéria és még több " +#~ "más." diff --git a/lang/acf-id_ID.mo b/lang/acf-id_ID.mo old mode 100755 new mode 100644 index 72e8187..aaa2288 Binary files a/lang/acf-id_ID.mo and b/lang/acf-id_ID.mo differ diff --git a/lang/acf-id_ID.po b/lang/acf-id_ID.po index 71e6b69..2ba2d2c 100644 --- a/lang/acf-id_ID.po +++ b/lang/acf-id_ID.po @@ -1,25 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2020-08-20 08:47+0700\n" -"PO-Revision-Date: 2020-08-20 11:13+0700\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Elliot Condon \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: Poedit 2.4.1\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:68 msgid "Advanced Custom Fields" diff --git a/lang/acf-it_IT.mo b/lang/acf-it_IT.mo old mode 100755 new mode 100644 index 37d5066..0731b41 Binary files a/lang/acf-it_IT.mo and b/lang/acf-it_IT.mo differ diff --git a/lang/acf-it_IT.po b/lang/acf-it_IT.po index 8b60d89..284c2f4 100644 --- a/lang/acf-it_IT.po +++ b/lang/acf-it_IT.po @@ -1,513 +1,1132 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2018-04-16 17:11+1000\n" -"PO-Revision-Date: 2018-07-16 09:34+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Elliot Condon \n" "Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.1\n" -"X-Loco-Target-Locale: it_IT\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:81 -msgid "Advanced Custom Fields" -msgstr "Campi Personalizzati Avanzati" - -#: acf.php:388 includes/admin/admin.php:117 -msgid "Field Groups" -msgstr "Field Group" - -#: acf.php:389 -msgid "Field Group" -msgstr "Field Group" - -#: acf.php:390 acf.php:422 includes/admin/admin.php:118 -#: pro/fields/class-acf-field-flexible-content.php:551 -msgid "Add New" -msgstr "Aggiungi Nuovo" - -#: acf.php:391 -msgid "Add New Field Group" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." msgstr "" -"Aggiungi Nuovo \n" -"Field Group" -#: acf.php:392 -msgid "Edit Field Group" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" msgstr "" -"Modifica \n" -"Field Group" -#: acf.php:393 -msgid "New Field Group" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" msgstr "" -"Nuovo \n" -"Field Group" -#: acf.php:394 -msgid "View Field Group" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" msgstr "" -"Visualizza \n" -"Field Group" -#: acf.php:395 -msgid "Search Field Groups" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" msgstr "" -"Cerca \n" -"Field Group" -#: acf.php:396 -msgid "No Field Groups found" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" msgstr "" -"Nessun \n" -"Field Group\n" -" Trovato" -#: acf.php:397 -msgid "No Field Groups found in Trash" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" msgstr "" -"Nessun \n" -"Field Group\n" -" trovato nel cestino" -#: acf.php:420 includes/admin/admin-field-group.php:196 -#: includes/admin/admin-field-groups.php:510 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Campi" - -#: acf.php:421 -msgid "Field" -msgstr "Campo" - -#: acf.php:423 -msgid "Add New Field" -msgstr "Aggiungi Nuovo Campo" - -#: acf.php:424 -msgid "Edit Field" -msgstr "Modifica Campo" - -#: acf.php:425 includes/admin/views/field-group-fields.php:41 -#: includes/admin/views/settings-info.php:105 -msgid "New Field" -msgstr "Nuovo Campo" - -#: acf.php:426 -msgid "View Field" -msgstr "Visualizza Campo" - -#: acf.php:427 -msgid "Search Fields" -msgstr "Ricerca Campi" - -#: acf.php:428 -msgid "No Fields found" -msgstr "Nessun Campo trovato" - -#: acf.php:429 -msgid "No Fields found in Trash" -msgstr "Nessun Campo trovato nel cestino" - -#: acf.php:468 includes/admin/admin-field-group.php:377 -#: includes/admin/admin-field-groups.php:567 -msgid "Inactive" -msgstr "Inattivo" - -#: acf.php:473 -#, php-format -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inattivo (%s)" -msgstr[1] "Inattivo (%s)" - -#: includes/admin/admin-field-group.php:68 -#: includes/admin/admin-field-group.php:69 -#: includes/admin/admin-field-group.php:71 -msgid "Field group updated." +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" msgstr "" -"Field Group\n" -" aggiornato." -#: includes/admin/admin-field-group.php:70 -msgid "Field group deleted." +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." msgstr "" -"Field Group\n" -" cancellato." -#: includes/admin/admin-field-group.php:73 -msgid "Field group published." +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Aggiornamenti" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" msgstr "" -"Field Group\n" -" pubblicato." -#: includes/admin/admin-field-group.php:74 -msgid "Field group saved." +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" msgstr "" -"Field Group\n" -" salvato." -#: includes/admin/admin-field-group.php:75 -msgid "Field group submitted." +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" msgstr "" -"Field Group\n" -" inviato." -#: includes/admin/admin-field-group.php:76 -msgid "Field group scheduled for." +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" msgstr "" -"Field Group\n" -" previsto." -#: includes/admin/admin-field-group.php:77 -msgid "Field group draft updated." +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." msgstr "" -"Bozza \n" -"Field Group\n" -" aggiornata." -#: includes/admin/admin-field-group.php:154 -msgid "The string \"field_\" may not be used at the start of a field name" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" msgstr "" -"La stringa \"field_\" non può essere usata come inizio nel nome di un Campo" -#: includes/admin/admin-field-group.php:155 -msgid "This field cannot be moved until its changes have been saved" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." msgstr "" -"Questo Campo non può essere spostato fino a quando non saranno state salvate " -"le modifiche" -#: includes/admin/admin-field-group.php:156 -msgid "Field group title is required" -msgstr "Il titolo del Field Group è richiesto" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" -#: includes/admin/admin-field-group.php:157 -msgid "Move to trash. Are you sure?" -msgstr "Sposta nel cestino. Sei sicuro?" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" #: includes/admin/admin-field-group.php:158 -msgid "Move Custom Field" -msgstr "Sposta Campo Personalizzato" +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" -#: includes/admin/admin-field-group.php:159 -msgid "checked" -msgstr "selezionato" +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" -#: includes/admin/admin-field-group.php:160 -msgid "(no label)" -msgstr "(nessuna etichetta)" +#. Author of the plugin +msgid "WP Engine" +msgstr "" -#: includes/admin/admin-field-group.php:161 -#: includes/api/api-field-group.php:751 -msgid "copy" -msgstr "copia" +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" -#: includes/admin/admin-field-group.php:162 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:139 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:4158 -msgid "or" -msgstr "o" +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" -#: includes/admin/admin-field-group.php:163 -msgid "Null" -msgstr "Nullo" +#: 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/admin/admin-field-group.php:197 -msgid "Location" -msgstr "Posizione" +#: includes/fields/class-acf-field-user.php:537 +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/admin/admin-field-group.php:198 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Impostazioni" +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s deve avere un ID utente valido." -#: includes/admin/admin-field-group.php:347 -msgid "Field Keys" -msgstr "Field Key" +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: includes/admin/admin-field-group.php:377 -#: includes/admin/views/field-group-options.php:9 +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s richiede un ID allegato valido." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostra in API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Abilita trasparenza" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Stringa RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Stringa esadecimale" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galleria (solo versione Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clone (solo versione Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Contenuto flessibile (solo versione Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Ripetitore (solo versione Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" msgid "Active" msgstr "Attivo" -#: includes/admin/admin-field-group.php:753 -msgid "Move Complete." -msgstr "Spostamento Completato." +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' non è un indirizzo email valido" -#: includes/admin/admin-field-group.php:754 -#, php-format -msgid "The %s field can now be found in the %s field group" +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Valore del colore" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleziona il colore predefinito" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Rimuovi colore" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blocchi" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opzioni" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Utenti" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementi del menu" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widget" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Allegati" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Tassonomie" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Articoli" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Gruppo di campo JSON (più recente)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Gruppo di campi originale" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Ultimo aggiornamento: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." msgstr "" -"Il Campo %s può essere trovato nel \n" -"Field Group\n" -" %s" +"Questo gruppo di campi non è disponibile per un confronto di differenze." -#: includes/admin/admin-field-group.php:755 -msgid "Close Window" -msgstr "Chiudi Finestra" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID del gruppo di campi non valido." -#: includes/admin/admin-field-group.php:796 -msgid "Please select the destination for this field" -msgstr "Per favore seleziona la destinazione per questo Campo" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parametri del gruppo di campi non validi." -#: includes/admin/admin-field-group.php:803 -msgid "Move Field" -msgstr "Sposta Campo" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "In attesa del salvataggio" -#: includes/admin/admin-field-groups.php:74 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Attivo (%s)" -msgstr[1] "Attivo (%s)" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Salvato" -#: includes/admin/admin-field-groups.php:142 -#, php-format -msgid "Field group duplicated. %s" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importa" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Rivedi le modifiche" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Situato in: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Situato in plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Situato in tema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Varie" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizza modifiche" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Caricamento differenze" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Verifica modifiche a JSON locale" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visita il sito" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Visualizza i dettagli" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versione %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Informazioni" + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." msgstr "" -"Field Group\n" -" duplicato. %s" +"Help Desk. I professionisti del nostro " +"Help Desk ti assisteranno per problematiche tecniche." -#: includes/admin/admin-field-groups.php:146 -#, php-format -msgid "%s field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s Field Group duplicato." -msgstr[1] "%s Field Group duplicati." - -#: includes/admin/admin-field-groups.php:227 -#, php-format -msgid "Field group synchronised. %s" +#: includes/admin/admin.php:156 +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 "" -"Field Group\n" -" sincronizzato. %s" +"Discussioni. Abbiamo una community " +"attiva ed accogliente nei nostri Community Forums che potrebbe aiutarti a " +"raggiungere i risultati da te auspicati tramite l'utilizzo di ACF." -#: includes/admin/admin-field-groups.php:231 -#, php-format -msgid "%s field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "%s Field Group sincronizzato." -msgstr[1] "%s Field Group sincronizzati." - -#: includes/admin/admin-field-groups.php:394 -#: includes/admin/admin-field-groups.php:557 -msgid "Sync available" -msgstr "Sync disponibile" - -#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 -#: pro/fields/class-acf-field-gallery.php:355 -msgid "Title" -msgstr "Titolo" - -#: includes/admin/admin-field-groups.php:508 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/install-network.php:21 -#: includes/admin/views/install-network.php:29 -#: pro/fields/class-acf-field-gallery.php:382 -msgid "Description" -msgstr "Descrizione" - -#: includes/admin/admin-field-groups.php:509 -msgid "Status" -msgstr "Stato" - -#. Description of the plugin/theme -#: includes/admin/admin-field-groups.php:607 -msgid "Customise WordPress with powerful, professional and intuitive fields." -msgstr "Personalizza WordPress con campi potenti, professionali e intuitivi." - -#: includes/admin/admin-field-groups.php:609 -#: includes/admin/settings-info.php:76 -#: pro/admin/views/html-settings-updates.php:107 -msgid "Changelog" -msgstr "Novità" - -#: includes/admin/admin-field-groups.php:614 -#, php-format -msgid "See what's new in version %s." -msgstr "Guarda cosa c'è di nuovo nella versione %s." - -#: includes/admin/admin-field-groups.php:617 -msgid "Resources" -msgstr "Risorse" - -#: includes/admin/admin-field-groups.php:619 -msgid "Website" -msgstr "Sito Web" - -#: includes/admin/admin-field-groups.php:620 -msgid "Documentation" -msgstr "Documentazione" - -#: includes/admin/admin-field-groups.php:621 -msgid "Support" -msgstr "Supporto" - -#: includes/admin/admin-field-groups.php:623 -msgid "Pro" -msgstr "PRO" - -#: includes/admin/admin-field-groups.php:628 -#, php-format -msgid "Thank you for creating with ACF." -msgstr "Grazie per aver creato con ACF." - -#: includes/admin/admin-field-groups.php:667 -msgid "Duplicate this item" -msgstr "Duplica questo elemento" - -#: includes/admin/admin-field-groups.php:667 -#: includes/admin/admin-field-groups.php:683 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:550 -msgid "Duplicate" -msgstr "Duplica" - -#: includes/admin/admin-field-groups.php:700 -#: includes/fields/class-acf-field-google-map.php:113 -#: includes/fields/class-acf-field-relationship.php:657 -msgid "Search" -msgstr "Ricerca" - -#: includes/admin/admin-field-groups.php:759 -#, php-format -msgid "Select %s" -msgstr "Seleziona %s" - -#: includes/admin/admin-field-groups.php:767 -msgid "Synchronise field group" +#: includes/admin/admin.php:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." msgstr "" -"Sincronizza \n" -"Field Group" +"Documentazione. La nostra estesa " +"documentazione contiene riferimenti e guide per la maggior parte delle " +"situazioni che potresti incontrare." -#: includes/admin/admin-field-groups.php:767 -#: includes/admin/admin-field-groups.php:797 -msgid "Sync" -msgstr "Sync" +#: includes/admin/admin.php:149 +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-field-groups.php:779 -msgid "Apply" -msgstr "Applica" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Aiuto e supporto" -#: includes/admin/admin-field-groups.php:797 -msgid "Bulk Actions" -msgstr "Azioni di massa" +#: includes/admin/admin.php:137 +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-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Strumenti" +#: includes/admin/admin.php:134 +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:113 -#: includes/admin/views/field-group-options.php:118 -msgid "Custom Fields" -msgstr "Campi Personalizzati" +#: includes/admin/admin.php:132 +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/install-network.php:88 includes/admin/install.php:70 -#: includes/admin/install.php:121 -msgid "Upgrade Database" -msgstr "Aggiorna Database" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Panoramica" -#: includes/admin/install-network.php:140 -msgid "Review sites & upgrade" -msgstr "Rivedi siti e aggiornamenti" +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "Il tipo di posizione \"%s\" è già registrato." -#: includes/admin/install.php:187 -msgid "Error validating request" -msgstr "Errore di convalida richiesta" +#: includes/locations.php:25 +msgid "Class \"%s\" does not exist." +msgstr "La classe \"%s\" non esiste." -#: includes/admin/install.php:210 includes/admin/views/install.php:104 +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Nonce non valido." + +#: includes/fields/class-acf-field-user.php:361 +msgid "Error loading field." +msgstr "Errore nel caricamento del campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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 "Registra" + +#: 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:365 +msgid "%s value is required" +msgstr "Il valore %s è obbligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Mostra questo campo se" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Condizione logica" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "e" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON locale" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Campo clone" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "È richiesto un aggiornamento del database" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Pagina opzioni" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galleria" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenuto flessibile" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Ripetitore" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Torna a tutti gli strumenti" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Seleziona gli elementi per nasconderli dalla schermata di " +"modifica." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Nascondi nella schermata" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Invia trackback" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Tag" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorie" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Attributi della pagina" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autore" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisioni" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Commenti" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussione" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Riassunto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor contenuto" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrato nell'elenco dei gruppi di campi" + +#: includes/admin/views/field-group-options.php:122 +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/field-group-options.php:121 +msgid "Order No." +msgstr "N. ordine" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Sotto ai campi" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Sotto alle etichette" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Posizione istruzioni" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Posizione etichetta" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Laterale" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normale (dopo il contenuto)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Alta (dopo il titolo)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posizione" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Senza soluzione di continuità (senza metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (metabox WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Stile" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Chiave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Ordine" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Chiudi campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "larghezza" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Attributi contenitore" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Istruzioni per gli autori. Mostrato in fase di invio dei dati" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Istruzioni" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo di campo" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Singola parola, nessun spazio. Sottolineatura e trattini consentiti" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Nome campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Etichetta campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Elimina" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Elimina campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Sposta" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Sposta campo in un altro gruppo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplica campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Modifica campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Trascina per riordinare" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostra questo gruppo di campo se" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 msgid "No updates available." msgstr "Nessun aggiornamento disponibile." -#: includes/admin/settings-addons.php:51 -#: includes/admin/views/settings-addons.php:3 -msgid "Add-ons" -msgstr "Add-ons" - -#: includes/admin/settings-addons.php:87 -msgid "Error. Could not load add-ons list" -msgstr "Errore. Impossibile caricare l'elenco Add-ons" - -#: includes/admin/settings-info.php:50 -msgid "Info" -msgstr "Informazioni" - -#: includes/admin/settings-info.php:75 -msgid "What's New" -msgstr "Cosa c'è di nuovo" - -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" msgstr "" -"Esporta \n" -"Field Group" +"Aggiornamento del database completato. Leggi le novità" -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "Genera PHP" +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Lettura attività di aggiornamento..." -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "" -"Nessun \n" -"Field Group\n" -" selezionato" +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Aggiornamento fallito." -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Esportato 1 gruppo di campi." -msgstr[1] "Esportati %s gruppi di campi." +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Aggiornamento completato." -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "" -"Cerca \n" -"Field Group" +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Aggiornamento dati alla versione %s" -#: includes/admin/tools/class-acf-admin-tool-export.php:336 +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" msgstr "" -"Selezionare i \n" -"Field Group\n" -" che si desidera esportare e quindi selezionare il metodo di esportazione. " -"Utilizzare il pulsante di download per esportare in un file .json che sarà " -"poi possibile importare in un'altra installazione ACF. Utilizzare il " -"pulsante generare per esportare il codice PHP che è possibile inserire nel " -"vostro tema." +"Si raccomanda vivamente di eseguire il backup del database prima di " +"procedere. Sei sicuro di voler eseguire il programma di aggiornamento adesso?" -#: includes/admin/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "Esporta file" +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Seleziona almeno un sito da aggiornare." -#: includes/admin/tools/class-acf-admin-tool-export.php:414 +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Il sito è aggiornato" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sito" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Aggiorna siti" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Aggiungi gruppo di regole" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Regole" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiato" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copia negli appunti" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -516,2457 +1135,1996 @@ msgid "" "an external file." msgstr "" "Il codice seguente può essere utilizzato per registrare una versione locale " -"del Field Group selezionato(i). Un Field Group locale può fornire numerosi " -"vantaggi come ad esempio i tempi di caricamento più veloci, controllo di " -"versione e campi / impostazioni dinamiche. Semplicemente copia e incolla il " -"seguente codice nel file functions.php del vostro tema." +"dei gruppi di campi selezionato. Un gruppo di campi locale può fornire " +"numerosi vantaggi come ad esempio tempi di caricamento più veloci, controllo " +"di versione e il controllo dinamico di campi e impostazioni. Semplicemente " +"copia e incolla il seguente codice nel file functions.php del tuo tema o " +"includilo tramite un file esterno." -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Copia negli appunti" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Copiato" - -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "" -"Importa \n" -"Field Group" - -#: includes/admin/tools/class-acf-admin-tool-import.php:61 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." +"Select the field groups 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 "" -"Selezionare il file JSON di Advanced Custom Fields che si desidera " -"importare. Quando si fa clic sul pulsante di importazione di seguito, ACF " -"importerà i \n" -"Field Group\n" -"." -#: includes/admin/tools/class-acf-admin-tool-import.php:66 -#: includes/fields/class-acf-field-file.php:37 -msgid "Select File" -msgstr "Seleziona File" +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Seleziona gruppi di campi" -#: includes/admin/tools/class-acf-admin-tool-import.php:76 -msgid "Import File" -msgstr "Importa file" +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Esportato 1 gruppo di campi." +msgstr[1] "Esportati %s gruppi di campi." -#: includes/admin/tools/class-acf-admin-tool-import.php:100 -#: includes/fields/class-acf-field-file.php:154 -msgid "No file selected" -msgstr "Nessun file selezionato" +#: 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-import.php:113 -msgid "Error uploading file. Please try again" -msgstr "Errore caricamento file. Per favore riprova" +#: includes/admin/tools/class-acf-admin-tool-export.php:39 +#: includes/admin/tools/class-acf-admin-tool-export.php:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Genera PHP" -#: includes/admin/tools/class-acf-admin-tool-import.php:122 +#: 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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Importato 1 gruppo di campi" +msgstr[1] "Importati %s gruppi di campi" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "File da importare vuoto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 msgid "Incorrect file type" msgstr "Tipo file non corretto" -#: includes/admin/tools/class-acf-admin-tool-import.php:139 -msgid "Import file empty" -msgstr "File importato vuoto" +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:247 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Importato 1 field group" -msgstr[1] "Importati %s field groups" +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Condizione Logica" +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importa gruppi di campi" -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Mostra questo Campo se" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizza" -#: includes/admin/views/field-group-field-conditional-logic.php:126 -#: includes/admin/views/html-location-rule.php:80 -msgid "and" -msgstr "e" - -#: includes/admin/views/field-group-field-conditional-logic.php:141 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Aggiungi gruppo di regole" - -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:403 -#: pro/fields/class-acf-field-repeater.php:296 -msgid "Drag to reorder" -msgstr "Trascinare per riordinare" - -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Modifica Campo" - -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:136 -#: includes/fields/class-acf-field-image.php:122 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:342 -msgid "Edit" -msgstr "Modifica" - -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Duplica Campo" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Sposta" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Sposta" - -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Cancella Campo" - -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:549 -msgid "Delete" -msgstr "Cancella" - -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Etichetta Campo" +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Seleziona %s" +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 #: includes/admin/views/field-group-field.php:66 -msgid "This is the name which will appear on the EDIT page" -msgstr "Questo è il nome che apparirà sulla pagina Modifica" +msgid "Duplicate" +msgstr "Duplica" -#: includes/admin/views/field-group-field.php:75 -msgid "Field Name" -msgstr "Nome Campo" +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplica questo elemento" -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Singola parola, nessun spazio. Sottolineatura e trattini consentiti" +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descrizione" -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Tipo di Campo" +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronizzazione disponibile" -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Istruzioni" +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Gruppo di campi sincronizzato." +msgstr[1] "%s gruppi di campi sincronizzati." -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" -"Istruzioni per gli autori. Mostrato al momento della presentazione dei dati" +#: includes/admin/admin-field-groups.php:696 +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/views/field-group-field.php:106 -msgid "Required?" -msgstr "Richiesto?" +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Attivo (%s)" +msgstr[1] "Attivi (%s)" -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Attributi Contenitore" +#: includes/admin/admin-upgrade.php:237 +msgid "Review sites & upgrade" +msgstr "Verifica i siti ed effettua l'aggiornamento" -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "larghezza" +#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 +#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Aggiorna database" -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "classe" +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "id" +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Sposta campo" -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Chiudi Campo" +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Seleziona la destinazione per questo campo" -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Ordinamento" +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Chiudi la finestra" -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:418 -#: pro/fields/class-acf-field-flexible-content.php:576 -msgid "Label" -msgstr "Etichetta" +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:964 -#: pro/fields/class-acf-field-flexible-content.php:589 -msgid "Name" -msgstr "Nome" +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Spostamento completato." -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Chiave" +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Attivo" -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Tipo" +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Chiavi campo" -#: includes/admin/views/field-group-fields.php:14 -msgid "" -"No fields. Click the + Add Field button to create your " -"first field." -msgstr "" -"Nessun Campo. Clicca il bottone + Aggiungi Campo per creare " -"il primo campo." +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Impostazioni" -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Aggiungi Campo" - -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Regole" - -#: includes/admin/views/field-group-locations.php:10 -msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "" -"Creare un insieme di regole per determinare quale schermate in modifica " -"dovranno utilizzare i campi personalizzati avanzati" - -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Stile" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Standard (metabox WP)" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Senza giunte (senza metabox)" - -#: includes/admin/views/field-group-options.php:38 -msgid "Position" +#: includes/admin/admin-field-groups.php:286 +msgid "Location" msgstr "Posizione" -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Alto (dopo il titolo)" +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normale (dopo contenuto)" +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "copia" -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "A lato" +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(questo campo)" -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Posizionamento etichette" +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Selezionato" -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Allineamento in alto" +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Sposta campo personalizzato" -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Allineamento a sinistra" +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Nessun campo attiva/disattiva disponibile" -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Posizionamento Istruzione" +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Il titolo del gruppo di campi è necessario" -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Sotto etichette" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Sotto campi" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "N. Ordinamento" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" msgstr "" -"Field groups come inizialmente viene visualizzato in un ordine inferiore" +"Questo campo non può essere spostato fino a quando non saranno state salvate " +"le modifiche" -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Mostrato in lista field group" - -#: includes/admin/views/field-group-options.php:107 -msgid "Hide on screen" -msgstr "Nascondi nello schermo" - -#: includes/admin/views/field-group-options.php:108 -msgid "Select items to hide them from the edit screen." +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" msgstr "" -"Seleziona gli elementi per nasconderli dalla pagina Modifica." - -#: includes/admin/views/field-group-options.php:108 -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 Field Group usato (quello con il numero d'ordine più " -"basso)" - -#: includes/admin/views/field-group-options.php:115 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/field-group-options.php:116 -msgid "Content Editor" -msgstr "Editor Contenuto" - -#: includes/admin/views/field-group-options.php:117 -msgid "Excerpt" -msgstr "Estratto" - -#: includes/admin/views/field-group-options.php:119 -msgid "Discussion" -msgstr "Discussione" - -#: includes/admin/views/field-group-options.php:120 -msgid "Comments" -msgstr "Commenti" - -#: includes/admin/views/field-group-options.php:121 -msgid "Revisions" -msgstr "Revisioni" - -#: includes/admin/views/field-group-options.php:122 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/field-group-options.php:123 -msgid "Author" -msgstr "Autore" - -#: includes/admin/views/field-group-options.php:124 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/field-group-options.php:125 -msgid "Page Attributes" -msgstr "Attributi di Pagina" - -#: includes/admin/views/field-group-options.php:126 -#: includes/fields/class-acf-field-relationship.php:671 -msgid "Featured Image" -msgstr "Immagine di presentazione" - -#: includes/admin/views/field-group-options.php:127 -msgid "Categories" -msgstr "Categorie" - -#: includes/admin/views/field-group-options.php:128 -msgid "Tags" -msgstr "Tag" - -#: includes/admin/views/field-group-options.php:129 -msgid "Send Trackbacks" -msgstr "Invia Trackbacks" - -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "" -"Mostra questo \n" -"Field Group\n" -" se" - -#: includes/admin/views/install-network.php:4 -msgid "Upgrade Sites" -msgstr "Aggiornamento siti" - -#: includes/admin/views/install-network.php:9 -#: includes/admin/views/install.php:3 -msgid "Advanced Custom Fields Database Upgrade" -msgstr "" -"Aggiornamento Database \n" -"Advanced Custom Fields" - -#: includes/admin/views/install-network.php:11 -#, php-format -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 clicca %s." - -#: includes/admin/views/install-network.php:20 -#: includes/admin/views/install-network.php:28 -msgid "Site" -msgstr "Sito" - -#: includes/admin/views/install-network.php:48 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Il sito necessita di un aggiornamento Database da %s a %s" - -#: includes/admin/views/install-network.php:50 -msgid "Site is up to date" -msgstr "Il sito è aggiornato" - -#: includes/admin/views/install-network.php:63 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Aggiornamento Database completato. Ritorna alla Network " -"Dashboard" - -#: includes/admin/views/install-network.php:102 -#: includes/admin/views/install-notice.php:42 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Si raccomanda vivamente di eseguire il backup del database prima di " -"procedere. Sei sicuro che si desidera eseguire il programma di aggiornamento " -"adesso?" - -#: includes/admin/views/install-network.php:158 -msgid "Upgrade complete" -msgstr "Aggiornamento completato" - -#: includes/admin/views/install-network.php:162 -#: includes/admin/views/install.php:9 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Aggiornamento dati alla versione %s" - -#: includes/admin/views/install-notice.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Ripetitore" - -#: includes/admin/views/install-notice.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Contenuto Flessibile" - -#: includes/admin/views/install-notice.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galleria" - -#: includes/admin/views/install-notice.php:11 -#: pro/locations/class-acf-location-options-page.php:26 -msgid "Options Page" -msgstr "Pagina Opzioni" - -#: includes/admin/views/install-notice.php:26 -msgid "Database Upgrade Required" -msgstr "Aggiornamento Database richiesto" - -#: includes/admin/views/install-notice.php:28 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Grazie per aver aggiornato a %s v%s!" - -#: includes/admin/views/install-notice.php:28 -msgid "" -"Before you start using the new awesome features, please update your database " -"to the newest version." -msgstr "" -"Prima di iniziare ad utilizzare queste nuove fantastiche funzionalità, " -"aggiorna il tuo Database alla versione più attuale." - -#: includes/admin/views/install-notice.php:31 -#, php-format -msgid "" -"Please also ensure any premium add-ons (%s) have first been updated to the " -"latest version." -msgstr "" -"Si prega di assicurarsi che anche i componenti premium (%s) siano prima " -"stati aggiornati all'ultima versione." - -#: includes/admin/views/install.php:7 -msgid "Reading upgrade tasks..." -msgstr "Lettura attività di aggiornamento ..." - -#: includes/admin/views/install.php:11 -#, php-format -msgid "Database Upgrade complete. See what's new" -msgstr "" -"Aggiornamento del database completato. Guarda le novità" - -#: includes/admin/views/settings-addons.php:17 -msgid "Download & Install" -msgstr "Scarica & Installa" - -#: includes/admin/views/settings-addons.php:36 -msgid "Installed" -msgstr "Installato" - -#: includes/admin/views/settings-info.php:3 -msgid "Welcome to Advanced Custom Fields" -msgstr "Benvenuto in Advanced Custom Fields" - -#: includes/admin/views/settings-info.php:4 -#, php-format -msgid "" -"Thank you for updating! ACF %s is bigger and better than ever before. We " -"hope you like it." -msgstr "" -"Grazie per l'aggiornamento! ACF %s è più grande e migliore che mai. Speriamo " -"che vi piaccia." - -#: includes/admin/views/settings-info.php:17 -msgid "A smoother custom field experience" -msgstr "Campi Personalizzati come non li avete mai visti" - -#: includes/admin/views/settings-info.php:22 -msgid "Improved Usability" -msgstr "Migliorata Usabilità" - -#: includes/admin/views/settings-info.php:23 -msgid "" -"Including the popular Select2 library has improved both usability and speed " -"across a number of field types including post object, page link, taxonomy " -"and select." -msgstr "" -"Inclusa la famosa biblioteca Select2, che ha migliorato sia l'usabilità, che " -"la velocità di Campi come Post, Link, Tassonomie e Select." - -#: includes/admin/views/settings-info.php:27 -msgid "Improved Design" -msgstr "Miglioramento del Design" - -#: includes/admin/views/settings-info.php:28 -msgid "" -"Many fields have undergone a visual refresh to make ACF look better than " -"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " -"(new) fields!" -msgstr "" -"Molti Campi hanno subito un aggiornamento visivo per rendere ACF un aspetto " -"migliore che mai! Notevoli cambiamenti li trovate nei Campi Gallery, " -"Relazioni e oEmbed (nuovo)!" - -#: includes/admin/views/settings-info.php:32 -msgid "Improved Data" -msgstr "Miglioramento dei dati" - -#: includes/admin/views/settings-info.php:33 -msgid "" -"Redesigning the data architecture has allowed sub fields to live " -"independently from their parents. This allows you to drag and drop fields in " -"and out of parent fields!" -msgstr "" -"Ridisegnare l'architettura dei dati ha permesso ai Sotto-Campi di vivere in " -"modo indipendente dai loro Genitori. Ciò consente di trascinare e rilasciare " -"i Campi dentro e fuori i Campi Genitore!" - -#: includes/admin/views/settings-info.php:39 -msgid "Goodbye Add-ons. Hello PRO" -msgstr "Ciao, ciao Add-ons. Benvenuto PRO" - -#: includes/admin/views/settings-info.php:44 -msgid "Introducing ACF PRO" -msgstr "Introduzione ACF PRO" - -#: includes/admin/views/settings-info.php:45 -msgid "" -"We're changing the way premium functionality is delivered in an exciting way!" -msgstr "Stiamo cambiando in modo eccitante le funzionalità Premium!" - -#: includes/admin/views/settings-info.php:46 -#, php-format -msgid "" -"All 4 premium add-ons have been combined into a new Pro " -"version of ACF. With both personal and developer licenses available, " -"premium functionality is more affordable and accessible than ever before!" -msgstr "" -"Parallelamente ACF5 è la versione tutta nuova di ACF5 PRO! Questa versione PRO include tutti e 4 i componenti aggiuntivi premium " -"(Repeater, Gallery, Flexible Content e Pagina Opzioni) e con le licenze " -"personali e di sviluppo disponibili, funzionalità premium è più conveniente " -"che mai!" - -#: includes/admin/views/settings-info.php:50 -msgid "Powerful Features" -msgstr "Potenti funzionalità" - -#: includes/admin/views/settings-info.php:51 -msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content " -"layouts, a beautiful gallery field and the ability to create extra admin " -"options pages!" -msgstr "" -"ACF PRO contiene caratteristiche impressionanti come i Campi Repeater, " -"Flexible Layout, Gallery e la possibilità di creare Options Page (pagine " -"opzioni di amministrazione) personalizzabili!" - -#: includes/admin/views/settings-info.php:52 -#, php-format -msgid "Read more about ACF PRO features." -msgstr "Scopri di più sulle funzionalità di ACF PRO." - -#: includes/admin/views/settings-info.php:56 -msgid "Easy Upgrading" -msgstr "Aggiornamento facile" - -#: includes/admin/views/settings-info.php:57 -#, php-format -msgid "" -"To help make upgrading easy, login to your store account " -"and claim a free copy of ACF PRO!" -msgstr "" -"Per rendere più semplice gli aggiornamenti, \n" -"accedi al tuo account e richiedi una copia gratuita di " -"ACF PRO!" - -#: includes/admin/views/settings-info.php:58 -#, php-format -msgid "" -"We also wrote an upgrade guide to answer any questions, " -"but if you do have one, please contact our support team via the help desk" -msgstr "" -"Abbiamo inoltre scritto una guida all'aggiornamento per " -"rispondere alle vostre richieste, ma se ne avete di nuove, contattate il " -"nostro help desk" - -#: includes/admin/views/settings-info.php:66 -msgid "Under the Hood" -msgstr "Sotto il cofano" - -#: includes/admin/views/settings-info.php:71 -msgid "Smarter field settings" -msgstr "Impostazioni dei Campi più intelligenti" - -#: includes/admin/views/settings-info.php:72 -msgid "ACF now saves its field settings as individual post objects" -msgstr "ACF ora salva le impostazioni dei Campi come oggetti Post individuali" - -#: includes/admin/views/settings-info.php:76 -msgid "More AJAX" -msgstr "Più AJAX" - -#: includes/admin/views/settings-info.php:77 -msgid "More fields use AJAX powered search to speed up page loading" -msgstr "" -"Altri campi utilizzano la ricerca di AJAX per velocizzare il caricamento " -"della pagina" - -#: includes/admin/views/settings-info.php:81 -msgid "Local JSON" -msgstr "JSON locale" - -#: includes/admin/views/settings-info.php:82 -msgid "New auto export to JSON feature improves speed" -msgstr "" -"Nuovo esportazione automatica di funzionalità JSON migliora la velocità" - -#: includes/admin/views/settings-info.php:88 -msgid "Better version control" -msgstr "Migliore versione di controllo" - -#: includes/admin/views/settings-info.php:89 -msgid "" -"New auto export to JSON feature allows field settings to be version " -"controlled" -msgstr "" -"Nuova esportazione automatica di funzione JSON consente impostazioni dei " -"campi da versione controllati" - -#: includes/admin/views/settings-info.php:93 -msgid "Swapped XML for JSON" -msgstr "XML scambiato per JSON" - -#: includes/admin/views/settings-info.php:94 -msgid "Import / Export now uses JSON in favour of XML" -msgstr "Importa / Esporta ora utilizza JSON a favore di XML" - -#: includes/admin/views/settings-info.php:98 -msgid "New Forms" -msgstr "Nuovi Forme" - -#: includes/admin/views/settings-info.php:99 -msgid "Fields can now be mapped to comments, widgets and all user forms!" -msgstr "" -"I campi possono essere mappati con i commenti, widget e tutte le forme degli " -"utenti!" - -#: includes/admin/views/settings-info.php:106 -msgid "A new field for embedding content has been added" -msgstr "È stato aggiunto un nuovo campo per incorporare contenuti" - -#: includes/admin/views/settings-info.php:110 -msgid "New Gallery" -msgstr "Nuova Galleria" - -#: includes/admin/views/settings-info.php:111 -msgid "The gallery field has undergone a much needed facelift" -msgstr "Il campo galleria ha subito un lifting tanto necessario" - -#: includes/admin/views/settings-info.php:115 -msgid "New Settings" -msgstr "Nuove Impostazioni" - -#: includes/admin/views/settings-info.php:116 -msgid "" -"Field group settings have been added for label placement and instruction " -"placement" -msgstr "" -"Sono state aggiunte impostazioni di gruppo sul Campo per l'inserimento " -"dell'etichetta e il posizionamento di istruzioni" - -#: includes/admin/views/settings-info.php:122 -msgid "Better Front End Forms" -msgstr "Forme Anteriori migliori" - -#: includes/admin/views/settings-info.php:123 -msgid "acf_form() can now create a new post on submission" -msgstr "acf_form() può ora creare un nuovo post di presentazione" - -#: includes/admin/views/settings-info.php:127 -msgid "Better Validation" -msgstr "Validazione Migliore" - -#: includes/admin/views/settings-info.php:128 -msgid "Form validation is now done via PHP + AJAX in favour of only JS" -msgstr "" -"Validazione del form ora avviene tramite PHP + AJAX in favore del solo JS" - -#: includes/admin/views/settings-info.php:132 -msgid "Relationship Field" -msgstr "Campo Relazione" - -#: includes/admin/views/settings-info.php:133 -msgid "" -"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" -msgstr "" -"Nuove Impostazione Campo Relazione per i 'Filtri' (Ricerca, Tipo di Post, " -"Tassonomia)" - -#: includes/admin/views/settings-info.php:139 -msgid "Moving Fields" -msgstr "Spostamento Campi" - -#: includes/admin/views/settings-info.php:140 -msgid "" -"New field group functionality allows you to move a field between groups & " -"parents" -msgstr "" -"La nuova funzionalità di Field Group consente di spostare un campo tra i " -"gruppi e genitori" - -#: includes/admin/views/settings-info.php:144 -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Link Pagina" - -#: includes/admin/views/settings-info.php:145 -msgid "New archives group in page_link field selection" -msgstr "Nuovo gruppo archivi in materia di selezione page_link" - -#: includes/admin/views/settings-info.php:149 -msgid "Better Options Pages" -msgstr "Migliori Pagine Opzioni" - -#: includes/admin/views/settings-info.php:150 -msgid "" -"New functions for options page allow creation of both parent and child menu " -"pages" -msgstr "" -"Nuove funzioni per la Pagina Opzioni consentono la creazione di pagine menu " -"genitore e figlio" - -#: includes/admin/views/settings-info.php:159 -#, php-format -msgid "We think you'll love the changes in %s." -msgstr "Pensiamo che amerete i cambiamenti in %s." - -#: includes/api/api-helpers.php:1039 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: includes/api/api-helpers.php:1040 -msgid "Medium" -msgstr "Medio" - -#: includes/api/api-helpers.php:1041 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:1090 -msgid "Full Size" -msgstr "Dimensione piena" - -#: includes/api/api-helpers.php:1431 includes/api/api-helpers.php:2004 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(nessun titolo)" - -#: includes/api/api-helpers.php:4079 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "La larghezza dell'immagine deve essere di almeno %dpx." - -#: includes/api/api-helpers.php:4084 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "La larghezza dell'immagine non deve superare i %dpx." - -#: includes/api/api-helpers.php:4100 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "L'altezza dell'immagine deve essere di almeno %dpx." - -#: includes/api/api-helpers.php:4105 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "L'altezza dell'immagine non deve superare i %dpx." - -#: includes/api/api-helpers.php:4123 -#, php-format -msgid "File size must be at least %s." -msgstr "La dimensione massima deve essere di almeno %s." - -#: includes/api/api-helpers.php:4128 -#, php-format -msgid "File size must must not exceed %s." -msgstr "La dimensione massima non deve superare i %s." - -#: includes/api/api-helpers.php:4162 -#, php-format -msgid "File type must be %s." -msgstr "La tipologia del File deve essere %s." - -#: includes/assets.php:164 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Le modifiche effettuate verranno cancellate se si esce da questa pagina" - -#: includes/assets.php:167 includes/fields/class-acf-field-select.php:257 -msgctxt "verb" -msgid "Select" -msgstr "Seleziona" - -#: includes/assets.php:168 -msgctxt "verb" -msgid "Edit" -msgstr "Modifica" - -#: includes/assets.php:169 +"La stringa \"field_\" non può essere usata come inizio nel nome di un campo" + +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Bozza del gruppo di campi aggiornata." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Gruppo di campi programmato." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Gruppo di campi inviato." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Gruppo di campi salvato." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Gruppo di campi pubblicato." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Gruppo di campi eliminato." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Gruppo di campi aggiornato." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Pagina" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Articolo" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relazionale" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Scelta" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Base" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Sconosciuto" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenuto" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Titolo" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Modifica gruppo di campi" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selezione è minore di" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selezione è maggiore di" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Il valore è minore di" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Il valore è maggiore di" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Il valore contiene" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Il valore ha corrispondenza con il pattern" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Non ha un valore" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Ha qualunque valore" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Annulla" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Sei sicuro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campi necessitano attenzione" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo richiede attenzione" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validazione fallita" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validazione avvenuta con successo" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Limitato" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Comprimi dettagli" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Espandi dettagli" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Caricato in questo articolo" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 msgctxt "verb" msgid "Update" msgstr "Aggiorna" -#: includes/assets.php:170 pro/fields/class-acf-field-gallery.php:44 -msgid "Uploaded to this post" -msgstr "Caricato in questo Post" +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Modifica" -#: includes/assets.php:171 -msgid "Expand Details" -msgstr "Espandi Dettagli" +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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/assets.php:172 -msgid "Collapse Details" -msgstr "Chiudi Dettagli" +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "La tipologia del file deve essere %s." -#: includes/assets.php:173 -msgid "Restricted" -msgstr "Limitato" +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "oppure" -#: includes/assets.php:174 -msgid "All images" -msgstr "Tutte le immagini" +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "La dimensione del file non deve superare %s." -#: includes/assets.php:177 -msgid "Validation successful" -msgstr "Validazione avvenuta con successo" +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "La dimensione del file deve essere di almeno %s." -#: includes/assets.php:178 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Validazione fallita" +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "L'altezza dell'immagine non deve superare i %dpx." -#: includes/assets.php:179 -msgid "1 field requires attention" -msgstr "1 Campo necessita di attenzioni" +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "L'altezza dell'immagine deve essere di almeno %dpx." -#: includes/assets.php:180 -#, php-format -msgid "%d fields require attention" -msgstr "%d Campi necessitano di attenzioni" +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "La larghezza dell'immagine non deve superare i %dpx." -#: includes/assets.php:183 -msgid "Are you sure?" -msgstr "Sei sicuro?" +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "La larghezza dell'immagine deve essere di almeno %dpx." -#: includes/assets.php:184 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Si" +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(nessun titolo)" -#: includes/assets.php:185 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "No" +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Dimensione originale" -#: includes/assets.php:186 includes/fields/class-acf-field-file.php:138 -#: includes/fields/class-acf-field-image.php:124 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:343 -#: pro/fields/class-acf-field-gallery.php:531 -msgid "Remove" -msgstr "Rimuovi" +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" -#: includes/assets.php:187 -msgid "Cancel" -msgstr "Annulla" +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Media" -#: includes/assets.php:190 -msgid "Has any value" -msgstr "Ha qualunque valore" +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" -#: includes/assets.php:191 -msgid "Has no value" -msgstr "Non ha un valore" +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(nessuna etichetta)" -#: includes/assets.php:192 -msgid "Value is equal to" -msgstr "Valore è uguale a" +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Imposta l'altezza dell'area di testo" -#: includes/assets.php:193 -msgid "Value is not equal to" -msgstr "Valore non è uguale a" +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "Righe" -#: includes/assets.php:194 -msgid "Value matches pattern" -msgstr "Valore corrisponde a modello" +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Area di testo" -#: includes/assets.php:195 -msgid "Value contains" -msgstr "Valore contiene" +#: includes/fields/class-acf-field-checkbox.php:447 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" +"Anteponi un checkbox aggiuntivo per poter selezionare/deselzionare tutte le " +"opzioni" -#: includes/assets.php:196 -msgid "Value is greater than" -msgstr "Valore è maggiore di" +#: includes/fields/class-acf-field-checkbox.php:409 +msgid "Save 'custom' values to the field's choices" +msgstr "Salva i valori 'personalizzati' per le scelte del campo" -#: includes/assets.php:197 -msgid "Value is less than" -msgstr "Valore è meno di" +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "Consenti l'aggiunta di valori 'personalizzati'" -#: includes/assets.php:198 -msgid "Selection is greater than" -msgstr "Selezione è maggiore di" +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Aggiungi nuova scelta" -#: includes/assets.php:199 -msgid "Selection is less than" -msgstr "Selezione è meno di" +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Commuta tutti" -#: includes/fields.php:144 -msgid "Basic" -msgstr "Base" +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Consenti URL degli archivi" -#: includes/fields.php:145 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Contenuto" +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Archivi" -#: includes/fields.php:146 -msgid "Choice" -msgstr "Scegli" +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Link pagina" -#: includes/fields.php:147 -msgid "Relational" -msgstr "Relazionale" +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Aggiungi" -#: includes/fields.php:148 -msgid "jQuery" -msgstr "jQuery" +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nome" -#: includes/fields.php:149 -#: includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:546 -#: pro/fields/class-acf-field-flexible-content.php:595 -#: pro/fields/class-acf-field-repeater.php:442 -msgid "Layout" -msgstr "Layout" +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s aggiunto" -#: includes/fields.php:326 -msgid "Field type does not exist" -msgstr "Il tipo di Campo non esiste" +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s esiste già" -#: includes/fields.php:326 -msgid "Unknown" -msgstr "Sconosciuto" +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Utente non abilitato ad aggiungere %s" -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Fisarmonica" +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID termine" -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Apri" +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Oggetto termine" -#: includes/fields/class-acf-field-accordion.php:100 -msgid "Display this accordion as open on page load." -msgstr "Mostra questa fisarmonica aperta sul caricamento della pagina." +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Carica valori dai termini dell'articolo" -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "Espansione multipla" +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Carica termini" -#: includes/fields/class-acf-field-accordion.php:110 -msgid "Allow this accordion to open without closing others." -msgstr "Permetti a questa fisarmonica di aprirsi senza chiudere gli altri." +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Collega i termini selezionati all'articolo" -#: includes/fields/class-acf-field-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Endpoint" +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Salva termini" -#: includes/fields/class-acf-field-accordion.php:120 +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Crea termini" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Pulsanti radio" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valore singolo" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selezione multipla" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Checkbox" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valori multipli" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Seleziona l'aspetto di questo campo" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Aspetto" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Seleziona la tassonomia da mostrare" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Aggiungi scelta 'altro' per consentire valori personalizzati" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radio button" + +#: includes/fields/class-acf-field-accordion.php:105 msgid "" "Define an endpoint for the previous accordion to stop. This accordion will " "not be visible." msgstr "" -"Definisce un endpoint per la precedente fisarmonica che deve fermarsi. " -"Questa fisarmonica non sarà visibile." +"Definisce il punto di chiusura del precedente accordion. Questo accordion " +"non sarà visibile." -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Gruppo Bottoni" +#: includes/fields/class-acf-field-accordion.php:94 +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-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:349 -msgid "Choices" -msgstr "Scelte" +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Espansione multipla" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:350 -msgid "Enter each choice on a new line." -msgstr "Immettere ogni scelta su una nuova linea." +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "Mostra questo accordion aperto l caricamento della pagina." -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:350 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Per un maggiore controllo, è possibile specificare sia un valore ed " -"etichetta in questo modo:" +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Aperto" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:350 -msgid "red : Red" -msgstr "rosso : Rosso" +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Fisarmonica" -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:513 -#: includes/fields/class-acf-field-post_object.php:412 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:367 -#: includes/fields/class-acf-field-taxonomy.php:793 -#: includes/fields/class-acf-field-user.php:409 -msgid "Allow Null?" -msgstr "Consenti Nullo?" +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Limita i tipi di file che possono essere caricati" -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:146 -#: includes/fields/class-acf-field-select.php:358 -#: includes/fields/class-acf-field-text.php:119 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:410 -msgid "Default Value" -msgstr "Valore di default" +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID file" -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:147 -#: includes/fields/class-acf-field-text.php:120 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:411 -msgid "Appears when creating a new post" -msgstr "Appare quando si crea un nuovo post" +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL file" -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Orizzontale" +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array di file" -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Verticale" +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Aggiungi file" -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:199 -#: includes/fields/class-acf-field-image.php:188 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:833 -msgid "Return Value" -msgstr "Valore di ritorno" +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Nessun file selezionato" -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:200 -#: includes/fields/class-acf-field-image.php:189 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -msgid "Specify the returned value on front end" -msgstr "Specificare il valore restituito sul front-end" +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nome file" -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:417 -msgid "Value" -msgstr "Valore" +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Aggiorna file" -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:419 -msgid "Both (Array)" -msgstr "Entrambi (Array)" +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Modifica file" -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:780 -msgid "Checkbox" -msgstr "Checkbox" +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +msgid "Select File" +msgstr "Seleziona file" -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Seleziona tutti" +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "File" -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Aggiungi nuova scelta" +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Password" -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Consenti Personalizzato" +#: includes/fields/class-acf-field-select.php:387 +msgid "Specify the value returned" +msgstr "Specifica il valore restituito" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Usa AJAX per il caricamento differito delle opzioni?" #: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Consenti valori 'personalizzati' da aggiungere" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Salva Personalizzato" - -#: includes/fields/class-acf-field-checkbox.php:369 -msgid "Save 'custom' values to the field's choices" -msgstr "Salvare i valori 'personalizzati' per le scelte del campo" - -#: includes/fields/class-acf-field-checkbox.php:381 -#: includes/fields/class-acf-field-select.php:359 +#: includes/fields/class-acf-field-select.php:376 msgid "Enter each default value on a new line" -msgstr "Immettere ogni valore di default su una nuova linea" +msgstr "Inserire ogni valore predefinito su una nuova linea" -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" -msgstr "Toggle" +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Seleziona" -#: includes/fields/class-acf-field-checkbox.php:404 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Inserisci un Checkbox extra per poter selezionare tutte le opzioni" +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Caricamento fallito" -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Selettore colore" +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Ricerca …" -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Chiaro" +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Caricamento di altri risultati…" -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Default" +#: includes/fields/class-acf-field-select.php:115 +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-color_picker.php:70 +#: includes/fields/class-acf-field-select.php:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Elimina %d caratteri" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Elimina 1 carattere" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nessun riscontro trovato" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Seleziona" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID utente" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Oggetto utente" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Array di utenti" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Tutti i ruoli utente" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtra per ruolo" + +#: includes/fields/class-acf-field-user.php:20 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:73 msgid "Select Color" msgstr "Seleziona colore" #: includes/fields/class-acf-field-color_picker.php:71 -msgid "Current Color" -msgstr "Colore Corrente" +msgid "Default" +msgstr "Predefinito" -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selettore data" +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Rimuovi" -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fatto" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Oggi" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Prossimo" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Precedente" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sett" - -#: includes/fields/class-acf-field-date_picker.php:180 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Formato di visualizzazione" - -#: includes/fields/class-acf-field-date_picker.php:181 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -msgid "The format displayed when editing a post" -msgstr "Il formato visualizzato durante la modifica di un post" - -#: includes/fields/class-acf-field-date_picker.php:189 -#: includes/fields/class-acf-field-date_picker.php:220 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Personalizzato:" - -#: includes/fields/class-acf-field-date_picker.php:199 -msgid "Save Format" -msgstr "Salva Formato" - -#: includes/fields/class-acf-field-date_picker.php:200 -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:210 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-post_object.php:432 -#: includes/fields/class-acf-field-relationship.php:698 -#: includes/fields/class-acf-field-select.php:412 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:428 -msgid "Return Format" -msgstr "Formato di ritorno" - -#: includes/fields/class-acf-field-date_picker.php:211 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "Il formato restituito tramite funzioni template" - -#: includes/fields/class-acf-field-date_picker.php:229 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "La settimana inizia il" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Selettore data/ora" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Scegli tempo" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Orario" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Ore" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Secondo" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisecondo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsecondo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuso orario" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ora" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fatto" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -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 amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Selettore colore" #: includes/fields/class-acf-field-date_time_picker.php:85 msgctxt "Date Time Picker JS pmTextShort" msgid "P" msgstr "P" -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:128 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Testo segnaposto" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:129 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Appare nella finestra di input" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:185 -#: includes/fields/class-acf-field-text.php:137 -msgid "Prepend" -msgstr "Anteponi" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:186 -#: includes/fields/class-acf-field-text.php:138 -msgid "Appears before the input" -msgstr "Appare prima dell'input" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:146 -msgid "Append" -msgstr "Accodare" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:147 -msgid "Appears after the input" -msgstr "Accodare dopo l'input" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "File" - -#: includes/fields/class-acf-field-file.php:38 -msgid "Edit File" -msgstr "Modifica File" - -#: includes/fields/class-acf-field-file.php:39 -msgid "Update File" -msgstr "Aggiorna File" - -#: includes/fields/class-acf-field-file.php:125 -msgid "File name" -msgstr "Nome file" - -#: includes/fields/class-acf-field-file.php:129 -#: includes/fields/class-acf-field-file.php:232 -#: includes/fields/class-acf-field-file.php:243 -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:277 -#: pro/fields/class-acf-field-gallery.php:690 -#: pro/fields/class-acf-field-gallery.php:719 -msgid "File size" -msgstr "Dimensione File" - -#: includes/fields/class-acf-field-file.php:154 -msgid "Add File" -msgstr "Aggiungi file" - -#: includes/fields/class-acf-field-file.php:205 -msgid "File Array" -msgstr "File Array" - -#: includes/fields/class-acf-field-file.php:206 -msgid "File URL" -msgstr "File URL" - -#: includes/fields/class-acf-field-file.php:207 -msgid "File ID" -msgstr "File ID" - -#: includes/fields/class-acf-field-file.php:214 -#: includes/fields/class-acf-field-image.php:213 -#: pro/fields/class-acf-field-gallery.php:655 -msgid "Library" -msgstr "Libreria" - -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-image.php:214 -#: pro/fields/class-acf-field-gallery.php:656 -msgid "Limit the media library choice" -msgstr "Limitare la scelta alla libreria multimediale" - -#: includes/fields/class-acf-field-file.php:220 -#: includes/fields/class-acf-field-image.php:219 -#: includes/locations/class-acf-location-attachment.php:101 -#: includes/locations/class-acf-location-comment.php:79 -#: includes/locations/class-acf-location-nav-menu.php:102 -#: includes/locations/class-acf-location-taxonomy.php:79 -#: includes/locations/class-acf-location-user-form.php:87 -#: includes/locations/class-acf-location-user-role.php:111 -#: includes/locations/class-acf-location-widget.php:83 -#: pro/fields/class-acf-field-gallery.php:661 -msgid "All" -msgstr "Tutti" - -#: includes/fields/class-acf-field-file.php:221 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Uploaded to post" -msgstr "Caricato al post" - -#: includes/fields/class-acf-field-file.php:228 -#: includes/fields/class-acf-field-image.php:227 -#: pro/fields/class-acf-field-gallery.php:669 -msgid "Minimum" -msgstr "Minimo" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-file.php:240 -msgid "Restrict which files can be uploaded" -msgstr "Limita i tipi di File che possono essere caricati" - -#: includes/fields/class-acf-field-file.php:239 -#: includes/fields/class-acf-field-image.php:256 -#: pro/fields/class-acf-field-gallery.php:698 -msgid "Maximum" -msgstr "Massimo" - -#: includes/fields/class-acf-field-file.php:250 -#: includes/fields/class-acf-field-image.php:285 -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Allowed file types" -msgstr "Tipologie File permesse" - -#: includes/fields/class-acf-field-file.php:251 -#: includes/fields/class-acf-field-image.php:286 -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Comma separated list. Leave blank for all types" -msgstr "Lista separata da virgole. Lascia bianco per tutti i tipi" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-google-map.php:43 -msgid "Sorry, this browser does not support geolocation" -msgstr "Spiacente, questo browser non supporta la geolocalizzazione" - -#: includes/fields/class-acf-field-google-map.php:114 -msgid "Clear location" -msgstr "Pulisci posizione" - -#: includes/fields/class-acf-field-google-map.php:115 -msgid "Find current location" -msgstr "Trova posizione corrente" - -#: includes/fields/class-acf-field-google-map.php:118 -msgid "Search for address..." -msgstr "Cerca per indirizzo..." - -#: includes/fields/class-acf-field-google-map.php:148 -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Center" -msgstr "Centro" - -#: includes/fields/class-acf-field-google-map.php:149 -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Center the initial map" -msgstr "Centrare la mappa iniziale" - -#: includes/fields/class-acf-field-google-map.php:171 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:172 -msgid "Set the initial zoom level" -msgstr "Imposta il livello di zoom iniziale" - -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-image.php:239 -#: includes/fields/class-acf-field-image.php:268 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:681 -#: pro/fields/class-acf-field-gallery.php:710 -msgid "Height" -msgstr "Altezza" - -#: includes/fields/class-acf-field-google-map.php:182 -msgid "Customise the map height" -msgstr "Personalizza l'altezza della mappa iniziale" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Gruppo" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:381 -msgid "Sub Fields" -msgstr "Campi Sub" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -msgid "Specify the style used to render the selected fields" -msgstr "Specificare lo stile utilizzato per il rendering dei campi selezionati" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:606 -#: pro/fields/class-acf-field-repeater.php:450 -msgid "Block" -msgstr "Blocco" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:605 -#: pro/fields/class-acf-field-repeater.php:449 -msgid "Table" -msgstr "Tabella" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:607 -#: pro/fields/class-acf-field-repeater.php:451 -msgid "Row" -msgstr "Riga" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Immagine" - -#: includes/fields/class-acf-field-image.php:42 -msgid "Select Image" -msgstr "Seleziona Immagine" - -#: includes/fields/class-acf-field-image.php:43 -#: pro/fields/class-acf-field-gallery.php:42 -msgid "Edit Image" -msgstr "Modifica Immagine" - -#: includes/fields/class-acf-field-image.php:44 -#: pro/fields/class-acf-field-gallery.php:43 -msgid "Update Image" -msgstr "Aggiorna Immagine" - -#: includes/fields/class-acf-field-image.php:140 -msgid "No image selected" -msgstr "Nessun immagine selezionata" - -#: includes/fields/class-acf-field-image.php:140 -msgid "Add Image" -msgstr "Aggiungi Immagine" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image Array" -msgstr "Array Immagine" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image URL" -msgstr "URL Immagine" - -#: includes/fields/class-acf-field-image.php:196 -msgid "Image ID" -msgstr "ID Immagine" - -#: includes/fields/class-acf-field-image.php:203 -msgid "Preview Size" -msgstr "Dimensione Anteprima" - -#: includes/fields/class-acf-field-image.php:204 -msgid "Shown when entering data" -msgstr "Mostrato durante l'immissione dei dati" - -#: includes/fields/class-acf-field-image.php:228 -#: includes/fields/class-acf-field-image.php:257 -#: pro/fields/class-acf-field-gallery.php:670 -#: pro/fields/class-acf-field-gallery.php:699 -msgid "Restrict which images can be uploaded" -msgstr "Limita i tipi di immagine che possono essere caricati" - -#: includes/fields/class-acf-field-image.php:231 -#: includes/fields/class-acf-field-image.php:260 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:673 -#: pro/fields/class-acf-field-gallery.php:702 -msgid "Width" -msgstr "Larghezza" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Seleziona Link" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Apri in una nuova scheda/finestra" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Link Array" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Messaggio" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Nuove Linee" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Controlla come le nuove linee sono renderizzate" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Aggiungi automaticamente paragrafi" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Aggiungi automaticamente <br>" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Nessuna formattazione" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Visualizza HTML come testo" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Numero" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:155 -msgid "Minimum Value" -msgstr "Valore Minimo" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:165 -msgid "Maximum Value" -msgstr "Valore Massimo" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:175 -msgid "Step Size" -msgstr "Step Dimensione" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Il valore deve essere un numero" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Inserisci URL" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Dimensione Embed" - -#: includes/fields/class-acf-field-page_link.php:177 -msgid "Archives" -msgstr "Archivi" - -#: includes/fields/class-acf-field-page_link.php:269 -#: includes/fields/class-acf-field-post_object.php:268 -#: includes/fields/class-acf-field-taxonomy.php:986 -msgid "Parent" -msgstr "Genitore" - -#: includes/fields/class-acf-field-page_link.php:485 -#: includes/fields/class-acf-field-post_object.php:384 -#: includes/fields/class-acf-field-relationship.php:624 -msgid "Filter by Post Type" -msgstr "Filtra per tipo di Post" - -#: includes/fields/class-acf-field-page_link.php:493 -#: includes/fields/class-acf-field-post_object.php:392 -#: includes/fields/class-acf-field-relationship.php:632 -msgid "All post types" -msgstr "Tutti i tipi di post" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:398 -#: includes/fields/class-acf-field-relationship.php:638 -msgid "Filter by Taxonomy" -msgstr "Fitra per tassonomia" - -#: includes/fields/class-acf-field-page_link.php:507 -#: includes/fields/class-acf-field-post_object.php:406 -#: includes/fields/class-acf-field-relationship.php:646 -msgid "All taxonomies" -msgstr "Tutte le Tassonomie" - -#: includes/fields/class-acf-field-page_link.php:523 -msgid "Allow Archives URLs" -msgstr "Consentire URL degli Archivi" - -#: includes/fields/class-acf-field-page_link.php:533 -#: includes/fields/class-acf-field-post_object.php:422 -#: includes/fields/class-acf-field-select.php:377 -#: includes/fields/class-acf-field-user.php:419 -msgid "Select multiple values?" -msgstr "Selezionare più valori?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Password" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:703 -msgid "Post Object" -msgstr "Oggetto Post" - -#: includes/fields/class-acf-field-post_object.php:438 -#: includes/fields/class-acf-field-relationship.php:704 -msgid "Post ID" -msgstr "ID Post" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Bottone Radio" - -#: includes/fields/class-acf-field-radio.php:254 -msgid "Other" -msgstr "Altro" - -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Aggiungi scelta 'altro' per consentire valori personalizzati" - -#: includes/fields/class-acf-field-radio.php:265 -msgid "Save Other" -msgstr "Salva Altro" - -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "Salvare i valori 'altri' alle scelte di campo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervallo" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relazioni" - -#: includes/fields/class-acf-field-relationship.php:40 -msgid "Maximum values reached ( {max} values )" -msgstr "Valori massimi raggiunti ( valori {max} )" - -#: includes/fields/class-acf-field-relationship.php:41 -msgid "Loading" -msgstr "Caricamento" - -#: includes/fields/class-acf-field-relationship.php:42 -msgid "No matches found" -msgstr "Nessun risultato" - -#: includes/fields/class-acf-field-relationship.php:424 -msgid "Select post type" -msgstr "Seleziona Post Type" - -#: includes/fields/class-acf-field-relationship.php:450 -msgid "Select taxonomy" -msgstr "Seleziona Tassonomia" - -#: includes/fields/class-acf-field-relationship.php:540 -msgid "Search..." -msgstr "Ricerca ..." - -#: includes/fields/class-acf-field-relationship.php:652 -msgid "Filters" -msgstr "Filtri" - -#: includes/fields/class-acf-field-relationship.php:658 -#: includes/locations/class-acf-location-post-type.php:27 -msgid "Post Type" -msgstr "Tipo Post" - -#: includes/fields/class-acf-field-relationship.php:659 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:763 -#: includes/locations/class-acf-location-taxonomy.php:27 -msgid "Taxonomy" -msgstr "Tassonomie" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Elements" -msgstr "Elementi" - -#: includes/fields/class-acf-field-relationship.php:667 -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:678 -msgid "Minimum posts" -msgstr "Post minimi" - -#: includes/fields/class-acf-field-relationship.php:687 -msgid "Maximum posts" -msgstr "Post massimi" - -#: includes/fields/class-acf-field-relationship.php:791 -#: pro/fields/class-acf-field-gallery.php:800 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s richiede la selezione di almeno %s" -msgstr[1] "%s richiede le selezioni di almeno %s" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:785 -msgctxt "noun" +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" msgid "Select" msgstr "Seleziona" -#: includes/fields/class-acf-field-select.php:40 -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-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Fatto" -#: includes/fields/class-acf-field-select.php:41 -#, php-format -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-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ora" -#: includes/fields/class-acf-field-select.php:42 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nessun riscontro trovato" +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fuso orario" -#: includes/fields/class-acf-field-select.php:43 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Per favore inserire 1 o più caratteri" +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsecondo" -#: includes/fields/class-acf-field-select.php:44 -#, php-format -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-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisecondo" -#: includes/fields/class-acf-field-select.php:45 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Per favore cancella 1 carattere" +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Secondo" -#: includes/fields/class-acf-field-select.php:46 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Cancellare %d caratteri" +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" -#: includes/fields/class-acf-field-select.php:47 -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-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Ora" -#: includes/fields/class-acf-field-select.php:48 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "È possibile selezionare solo %d elementi" +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Orario" -#: includes/fields/class-acf-field-select.php:49 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Caricamento altri risultati…" +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Scegli orario" -#: includes/fields/class-acf-field-select.php:50 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Cercando…" +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Selettore data/ora" -#: includes/fields/class-acf-field-select.php:51 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Caricamento fallito" +#: includes/fields/class-acf-field-accordion.php:104 +msgid "Endpoint" +msgstr "Endpoint" -#: includes/fields/class-acf-field-select.php:387 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "UI stilizzata" +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Allineamento a sinistra" -#: includes/fields/class-acf-field-select.php:397 -msgid "Use AJAX to lazy load choices?" -msgstr "Usa AJAX per le scelte di carico lazy?" +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Allineamento in alto" -#: includes/fields/class-acf-field-select.php:413 -msgid "Specify the value returned" -msgstr "Specificare il valore restituito" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Separatore" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Scheda" - -#: includes/fields/class-acf-field-tab.php:102 +#: includes/fields/class-acf-field-tab.php:107 msgid "Placement" msgstr "Posizione" -#: includes/fields/class-acf-field-tab.php:115 -msgid "" -"Define an endpoint for the previous tabs to stop. This will start a new " -"group of tabs." -msgstr "" -"Definire un endpoint per le schede precedenti da interrompere. Questo " -"avvierà un nuovo gruppo di schede." +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Scheda" -#: includes/fields/class-acf-field-taxonomy.php:713 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "Nessun %s" - -#: includes/fields/class-acf-field-taxonomy.php:732 -msgid "None" -msgstr "Nessuno" - -#: includes/fields/class-acf-field-taxonomy.php:764 -msgid "Select the taxonomy to be displayed" -msgstr "Seleziona la Tassonomia da mostrare" - -#: includes/fields/class-acf-field-taxonomy.php:773 -msgid "Appearance" -msgstr "Aspetto" - -#: includes/fields/class-acf-field-taxonomy.php:774 -msgid "Select the appearance of this field" -msgstr "Seleziona l'aspetto per questo Campo" - -#: includes/fields/class-acf-field-taxonomy.php:779 -msgid "Multiple Values" -msgstr "Valori Multipli" - -#: includes/fields/class-acf-field-taxonomy.php:781 -msgid "Multi Select" -msgstr "Selezione Multipla" - -#: includes/fields/class-acf-field-taxonomy.php:783 -msgid "Single Value" -msgstr "Valore Singolo" - -#: includes/fields/class-acf-field-taxonomy.php:784 -msgid "Radio Buttons" -msgstr "Bottoni Radio" - -#: includes/fields/class-acf-field-taxonomy.php:803 -msgid "Create Terms" -msgstr "Crea Termini" - -#: includes/fields/class-acf-field-taxonomy.php:804 -msgid "Allow new terms to be created whilst editing" -msgstr "Abilita la creazione di nuovi Termini" - -#: includes/fields/class-acf-field-taxonomy.php:813 -msgid "Save Terms" -msgstr "Salva Termini" - -#: includes/fields/class-acf-field-taxonomy.php:814 -msgid "Connect selected terms to the post" -msgstr "Collega i Termini selezionati al Post" - -#: includes/fields/class-acf-field-taxonomy.php:823 -msgid "Load Terms" -msgstr "Carica Termini" - -#: includes/fields/class-acf-field-taxonomy.php:824 -msgid "Load value from posts terms" -msgstr "Carica valori dai Termini del Post" - -#: includes/fields/class-acf-field-taxonomy.php:838 -msgid "Term Object" -msgstr "Oggetto Termine" - -#: includes/fields/class-acf-field-taxonomy.php:839 -msgid "Term ID" -msgstr "ID Termine" - -#: includes/fields/class-acf-field-taxonomy.php:898 -msgid "Error." -msgstr "Errore." - -#: includes/fields/class-acf-field-taxonomy.php:898 -#, php-format -msgid "User unable to add new %s" -msgstr "Utente non abilitato ad aggiungere %s" - -#: includes/fields/class-acf-field-taxonomy.php:911 -#, php-format -msgid "%s already exists" -msgstr "%s esiste già" - -#: includes/fields/class-acf-field-taxonomy.php:952 -#, php-format -msgid "%s added" -msgstr "%s aggiunto" - -#: includes/fields/class-acf-field-taxonomy.php:998 -msgid "Add" -msgstr "Aggiungi" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Testo" - -#: includes/fields/class-acf-field-text.php:155 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Limite Carattere" - -#: includes/fields/class-acf-field-text.php:156 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Lasciare vuoto per nessun limite" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Area di Testo" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Righe" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Imposta le righe dell'area di testo" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selettore di tempo" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Vero / Falso" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Visualizza il testo a fianco alla casella di controllo" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Testo Attivo" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Testo visualizzato quando è attivo" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Testo Disattivo" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Testo mostrato quando inattivo" +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Il valore deve essere un URL valido" #: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "Url" -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Il valore deve essere una URL valida" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Link URL" -#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 -msgid "User" -msgstr "Utente" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array di link" -#: includes/fields/class-acf-field-user.php:394 -msgid "Filter by role" -msgstr "Filtra per ruolo" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Apri in una nuova scheda/finestra" -#: includes/fields/class-acf-field-user.php:402 -msgid "All user roles" -msgstr "Tutti i ruoli utente" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Seleziona link" -#: includes/fields/class-acf-field-user.php:433 -msgid "User Array" -msgstr "Array utente" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Link" -#: includes/fields/class-acf-field-user.php:434 -msgid "User Object" -msgstr "Oggetto utente" +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Email" -#: includes/fields/class-acf-field-user.php:435 -msgid "User ID" -msgstr "ID Utente" +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Dimensione step" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valore massimo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Entrambi (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etichetta" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valore" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Verticale" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Orizzontale" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rosso : Rosso" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Inserisci ogni scelta su una nuova linea." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Selezionare più valori?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Consenti valore nullo?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Genitore" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Ritarda inizializzazione?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Mostra pulsanti per il caricamento di media?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra degli strumenti" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Solo testo" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Solo visuale" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visuale e testo" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Schede" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Fare clic per inizializzare TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Testo" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visuale" #: includes/fields/class-acf-field-wysiwyg.php:25 msgid "Wysiwyg Editor" msgstr "Editor Wysiwyg" -#: includes/fields/class-acf-field-wysiwyg.php:359 -msgid "Visual" -msgstr "Visuale" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Il valore non può superare %d caratteri" -#: includes/fields/class-acf-field-wysiwyg.php:360 -msgctxt "Name for the Text editor tab (formerly HTML)" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Lasciare vuoto per nessun limite" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limite caratteri" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Appare dopo il campo di input" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Postponi" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Appare prima del campo di input" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Anteponi" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Appare all'interno del campo di input" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Testo segnaposto" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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-wysiwyg.php:366 -msgid "Click to initialize TinyMCE" -msgstr "Clicca per inizializzare TinyMCE" +#: includes/fields/class-acf-field-relationship.php:760 +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-wysiwyg.php:419 -msgid "Tabs" -msgstr "Schede" +#: includes/fields/class-acf-field-post_object.php:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID articolo" -#: includes/fields/class-acf-field-wysiwyg.php:424 -msgid "Visual & Text" -msgstr "Visuale e Testuale" +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Oggetto articolo" -#: includes/fields/class-acf-field-wysiwyg.php:425 -msgid "Visual Only" -msgstr "Solo Visuale" +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Numero massimo di articoli" -#: includes/fields/class-acf-field-wysiwyg.php:426 -msgid "Text Only" -msgstr "Solo Testuale" +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Numero minimo di articoli" -#: includes/fields/class-acf-field-wysiwyg.php:433 -msgid "Toolbar" -msgstr "Toolbar" +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Immagine in evidenza" -#: includes/fields/class-acf-field-wysiwyg.php:443 -msgid "Show Media Upload Buttons?" -msgstr "Mostra Bottoni caricamento Media?" +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Gli elementi selezionati verranno visualizzati in ogni risultato" -#: includes/fields/class-acf-field-wysiwyg.php:453 -msgid "Delay initialization?" -msgstr "Ritardo inizializzazione?" +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Elementi" -#: includes/fields/class-acf-field-wysiwyg.php:454 -msgid "TinyMCE will not be initalized until field is clicked" +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Tassonomia" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo di contenuto" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtri" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Tutte le tassonomie" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Fitra per tassonomia" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Tutti i tipi di articolo" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtra per tipo di articolo" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Cerca..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Seleziona tassonomia" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleziona tipo di articolo" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Nessuna corrispondenza trovata" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Caricamento in corso" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Numero massimo di valori raggiunto ( {max} valori )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relazione" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipi di file consentiti" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Massimo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Dimensione file" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Limita i tipi di immagine che possono essere caricati" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimo" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Caricato nell'articolo" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limitare la scelta dalla libreria media" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Libreria" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Dimensione anteprima" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID immagine" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL Immagine" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array di immagini" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Specificare il valore restituito sul front-end" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valore di ritorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Aggiungi immagine" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Nessuna immagine selezionata" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Rimuovi" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Modifica" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Tutte le immagini" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Aggiorna immagine" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Modifica immagine" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +msgid "Allow HTML markup to display as visible text instead of rendering" msgstr "" -"TinyMCE non sarà inizializzato fino a quando il campo non viene cliccato" +"Consenti al markup HTML di essere visualizzato come testo visibile anziché " +"essere processato" -#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 -#: pro/admin/admin-options-page.php:308 -msgid "Edit field group" -msgstr "Modifica Field Group" +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "Effettua escape HTML" -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Valida Email" +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Nessuna formattazione" -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 -msgid "Update" -msgstr "Aggiorna" +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Aggiungi automaticamente <br>" -#: includes/forms/form-front.php:104 -msgid "Post updated" -msgstr "Post aggiornato" +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Aggiungi automaticamente paragrafi" -#: includes/forms/form-front.php:230 -msgid "Spam Detected" -msgstr "Spam Rilevato" +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Controlla come le nuove linee sono renderizzate" -#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 -msgid "Post" -msgstr "Post" +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nuove linee" -#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 -msgid "Page" -msgstr "Pagina" +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La settimana inizia" -#: includes/locations.php:96 -msgid "Forms" -msgstr "Moduli" +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "Il formato utilizzato durante il salvataggio di un valore" -#: includes/locations.php:247 -msgid "is equal to" -msgstr "è uguale a" +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Salva formato" -#: includes/locations.php:248 -msgid "is not equal to" -msgstr "non è uguale a" +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sett" -#: includes/locations/class-acf-location-attachment.php:27 -msgid "Attachment" -msgstr "Allegato" +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Prec" -#: includes/locations/class-acf-location-attachment.php:109 -#, php-format -msgid "All %s formats" -msgstr "Tutti i formati %s" +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Succ" -#: includes/locations/class-acf-location-comment.php:27 -msgid "Comment" -msgstr "Commento" +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Oggi" -#: includes/locations/class-acf-location-current-user-role.php:27 -msgid "Current User Role" -msgstr "Ruolo Utente corrente" +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Fatto" -#: includes/locations/class-acf-location-current-user-role.php:110 -msgid "Super Admin" -msgstr "Super Admin" +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Selettore data" -#: includes/locations/class-acf-location-current-user.php:27 -msgid "Current User" -msgstr "Utente corrente" +#: includes/fields/class-acf-field-image.php:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Larghezza" -#: includes/locations/class-acf-location-current-user.php:97 -msgid "Logged in" -msgstr "Autenticato" +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Dimensione oggetto incorporato" -#: includes/locations/class-acf-location-current-user.php:98 -msgid "Viewing front end" -msgstr "Visualizzando Frond-end" +#: includes/fields/class-acf-field-oembed.php:219 +msgid "Enter URL" +msgstr "Inserisci URL" -#: includes/locations/class-acf-location-current-user.php:99 -msgid "Viewing back end" -msgstr "Visualizzando Back-end" +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" -#: includes/locations/class-acf-location-nav-menu-item.php:27 -msgid "Menu Item" -msgstr "Menu Elemento" +#: includes/fields/class-acf-field-true_false.php:181 +msgid "Text shown when inactive" +msgstr "Testo mostrato quando inattivo" -#: includes/locations/class-acf-location-nav-menu.php:27 -msgid "Menu" -msgstr "Menu" +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Testo Off" -#: includes/locations/class-acf-location-nav-menu.php:109 -msgid "Menu Locations" -msgstr "Posizione Menu" +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Testo visualizzato quando è attivo" -#: includes/locations/class-acf-location-nav-menu.php:119 -msgid "Menus" -msgstr "Menu" +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Testo On" -#: includes/locations/class-acf-location-page-parent.php:27 -msgid "Page Parent" -msgstr "Genitore Pagina" +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" -#: includes/locations/class-acf-location-page-template.php:27 -msgid "Page Template" -msgstr "Template Pagina" +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valore predefinito" -#: includes/locations/class-acf-location-page-template.php:98 -#: includes/locations/class-acf-location-post-template.php:151 -msgid "Default Template" -msgstr "Template Default" +#: includes/fields/class-acf-field-true_false.php:135 +msgid "Displays text alongside the checkbox" +msgstr "Visualizza il testo a fianco alla casella di controllo" -#: includes/locations/class-acf-location-page-type.php:27 -msgid "Page Type" -msgstr "Tipo di Pagina" +#: includes/fields/class-acf-field-message.php:26 +#: includes/fields/class-acf-field-message.php:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Messaggio" -#: includes/locations/class-acf-location-page-type.php:146 -msgid "Front Page" -msgstr "Pagina Principale" +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" -#: includes/locations/class-acf-location-page-type.php:147 -msgid "Posts Page" -msgstr "Pagina Post" +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "Sì" -#: includes/locations/class-acf-location-page-type.php:148 -msgid "Top Level Page (no parent)" -msgstr "Pagina di primo livello (no Genitori)" +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Vero / Falso" -#: includes/locations/class-acf-location-page-type.php:149 -msgid "Parent Page (has children)" -msgstr "Pagina Genitore (ha Figli)" +#: includes/fields/class-acf-field-group.php:471 +msgid "Row" +msgstr "Riga" -#: includes/locations/class-acf-location-page-type.php:150 -msgid "Child Page (has parent)" -msgstr "Pagina Figlio (ha Genitore)" +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabella" -#: includes/locations/class-acf-location-post-category.php:27 -msgid "Post Category" -msgstr "Categoria Post" +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Blocco" -#: includes/locations/class-acf-location-post-format.php:27 -msgid "Post Format" -msgstr "Formato Post" +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Specifica lo stile utilizzato per la visualizzazione dei campi selezionati" -#: includes/locations/class-acf-location-post-status.php:27 -msgid "Post Status" -msgstr "Stato Post" +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Layout" -#: includes/locations/class-acf-location-post-taxonomy.php:27 -msgid "Post Taxonomy" -msgstr "Tassonomia Post" +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "Sottocampi" -#: includes/locations/class-acf-location-post-template.php:27 -msgid "Post Template" -msgstr "Template Post" +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Gruppo" -#: includes/locations/class-acf-location-user-form.php:27 -msgid "User Form" -msgstr "Form Utente" +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "Personalizza l'altezza della mappa" -#: includes/locations/class-acf-location-user-form.php:88 -msgid "Add / Edit" -msgstr "Aggiungi / Modifica" +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altezza" -#: includes/locations/class-acf-location-user-form.php:89 -msgid "Register" -msgstr "Registra" +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Imposta il livello di zoom iniziale" -#: includes/locations/class-acf-location-user-role.php:27 -msgid "User Role" -msgstr "Ruolo Utente" +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" -#: includes/locations/class-acf-location-widget.php:27 -msgid "Widget" -msgstr "Widget" +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centra la mappa iniziale" -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "Il valore %s è richiesto" +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Cerca per indirizzo..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Trova posizione corrente" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Rimuovi posizione" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Cerca" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Il formato restituito tramite funzioni template" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato di ritorno" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizzato:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +msgid "Display Format" +msgstr "Formato di visualizzazione" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Selettore orario" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Nessun campo trovato nel cestino" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Nessun campo trovato" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Cerca campi" + +#: acf.php:409 +msgid "View Field" +msgstr "Visualizza campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nuovo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Modifica campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Aggiungi nuovo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campi" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Nessun gruppo di campi trovato nel cestino" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Nessun gruppo di campi trovato" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Cerca gruppi di campi" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Visualizza gruppo di campi" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nuovo gruppo di campi" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Modifica gruppo di campi" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Aggiungi nuovo gruppo di campi" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Aggiungi nuovo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Gruppo di campi" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" -#: pro/admin/admin-options-page.php:200 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Ricontrollare" + +#: pro/updates.php:561 +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:206 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -2974,29 +3132,384 @@ msgstr "" "Nessun Field Group personalizzato trovato in questa Pagina Opzioni. Crea un Field Group personalizzato" -#: pro/admin/admin-settings-updates.php:78 +#: 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-settings-updates.php:162 -#: pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "Aggiornamenti" +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" -#: pro/admin/views/html-settings-updates.php:7 +#: pro/admin/admin-updates.php:196 +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 "Clona" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Visualizza" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +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:864 +msgid "Labels will be displayed as %s" +msgstr "Etichette verranno visualizzate come %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefisso Etichetta Campo" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "I valori verranno salvati come %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefisso Nomi Campo" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Campo sconosciuto" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Field Group sconosciuto" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Tutti i campi dal %s field group" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Aggiungi Riga" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layout" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layout" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} disponibile (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} richiesto (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexible Content richiede almeno 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:413 +msgid "Add layout" +msgstr "Aggiungi Layout" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Rimuovi Layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Clicca per alternare" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Riordina Layout" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Riordina" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Cancella Layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Duplica Layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Aggiungi Nuovo Layout" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Etichetta Bottone" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Layout Minimi" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Layout Massimi" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "Aggiungi Immagine alla Galleria" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Selezione massima raggiunta" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lunghezza" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Didascalia" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Testo Alt" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Aggiungi a Galleria" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Azioni in blocco" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Ordina per aggiornamento data" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Ordina per data modifica" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Ordina per titolo" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Ordine corrente inversa" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Chiudi" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Inserisci" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Specificare dove vengono aggiunti nuovi allegati" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Aggiungere alla fine" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Anteporre all'inizio" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Seleziona Minima" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Seleziona Massima" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Righe minime raggiunte ({min} righe)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Righe massime raggiunte ({max} righe)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Collassata" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Righe Minime" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Righe Massime" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Aggiungi riga" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Rimuovi riga" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "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:7 +#: pro/admin/views/html-settings-updates.php:6 msgid "Activate License" msgstr "Attiva Licenza" -#: pro/admin/views/html-settings-updates.php:17 +#: pro/admin/views/html-settings-updates.php:16 msgid "License Information" msgstr "Informazioni Licenza" -#: pro/admin/views/html-settings-updates.php:20 -#, php-format +#: 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 & pricingDettagli e prezzi." -#: pro/admin/views/html-settings-updates.php:29 +#: pro/admin/views/html-settings-updates.php:41 msgid "License Key" msgstr "Chiave di licenza" -#: pro/admin/views/html-settings-updates.php:61 +#: 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:76 msgid "Update Information" msgstr "Informazioni di aggiornamento" -#: pro/admin/views/html-settings-updates.php:68 +#: pro/admin/views/html-settings-updates.php:83 msgid "Current Version" msgstr "Versione corrente" -#: pro/admin/views/html-settings-updates.php:76 +#: pro/admin/views/html-settings-updates.php:91 msgid "Latest Version" msgstr "Ultima versione" -#: pro/admin/views/html-settings-updates.php:84 +#: pro/admin/views/html-settings-updates.php:99 msgid "Update Available" msgstr "Aggiornamento Disponibile" -#: pro/admin/views/html-settings-updates.php:92 -msgid "Update Plugin" -msgstr "Aggiorna Plugin" - -#: pro/admin/views/html-settings-updates.php:94 +#: pro/admin/views/html-settings-updates.php:111 msgid "Please enter your license key above to unlock updates" msgstr "Inserisci il tuo codice di licenza per sbloccare gli aggiornamenti" -#: pro/admin/views/html-settings-updates.php:100 -msgid "Check Again" -msgstr "Ricontrollare" +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Aggiorna Plugin" -#: pro/admin/views/html-settings-updates.php:117 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Novità" + +#: pro/admin/views/html-settings-updates.php:134 msgid "Upgrade Notice" msgstr "Avviso di Aggiornamento" -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Clona" - -#: pro/fields/class-acf-field-clone.php:812 -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:829 -msgid "Display" -msgstr "Visualizza" - -#: pro/fields/class-acf-field-clone.php:830 -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:835 -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:836 -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:857 #, php-format -msgid "Labels will be displayed as %s" -msgstr "Etichette verranno visualizzate come %s" +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inattivo (%s)" +#~ msgstr[1] "Inattivo (%s)" -#: pro/fields/class-acf-field-clone.php:860 -msgid "Prefix Field Labels" -msgstr "Prefisso Etichetta Campo" +#~ msgid "Inactive" +#~ msgstr "Inattivo" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Sposta nel cestino. Sei sicuro?" + +#~ msgid "checked" +#~ msgstr "selezionato" -#: pro/fields/class-acf-field-clone.php:871 #, php-format -msgid "Values will be saved as %s" -msgstr "I valori verranno salvati come %s" +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "" +#~ "Il Campo %s può essere trovato nel \n" +#~ "Field Group\n" +#~ " %s" -#: pro/fields/class-acf-field-clone.php:874 -msgid "Prefix Field Names" -msgstr "Prefisso Nomi Campo" - -#: pro/fields/class-acf-field-clone.php:992 -msgid "Unknown field" -msgstr "Campo sconosciuto" - -#: pro/fields/class-acf-field-clone.php:1031 -msgid "Unknown field group" -msgstr "Field Group sconosciuto" - -#: pro/fields/class-acf-field-clone.php:1035 #, php-format -msgid "All fields from %s field group" -msgstr "Tutti i campi dal %s field group" +#~ msgid "Field group duplicated. %s" +#~ msgstr "" +#~ "Field Group\n" +#~ " duplicato. %s" -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:174 -#: pro/fields/class-acf-field-repeater.php:462 -msgid "Add Row" -msgstr "Aggiungi Riga" - -#: pro/fields/class-acf-field-flexible-content.php:34 -msgid "layout" -msgstr "layout" - -#: pro/fields/class-acf-field-flexible-content.php:35 -msgid "layouts" -msgstr "layout" - -#: pro/fields/class-acf-field-flexible-content.php:36 -msgid "remove {layout}?" -msgstr "rimuovi {layout}?" - -#: pro/fields/class-acf-field-flexible-content.php:37 -msgid "This field requires at least {min} {identifier}" -msgstr "Questo campoQuesto campo richiede almeno {min} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:38 -msgid "This field has a limit of {max} {identifier}" -msgstr "Questo campo ha un limite di {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:39 -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:40 -msgid "Maximum {label} limit reached ({max} {identifier})" -msgstr "Massimo {label} limite raggiunto ({max} {identifier})" - -#: pro/fields/class-acf-field-flexible-content.php:41 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} disponibile (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:42 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} richiesto (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:43 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexible Content richiede almeno 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:273 #, php-format -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Clicca il bottone \"%s\" qui sotto per iniziare a creare il layout" +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s Field Group duplicato." +#~ msgstr[1] "%s Field Group duplicati." -#: pro/fields/class-acf-field-flexible-content.php:406 -msgid "Add layout" -msgstr "Aggiungi Layout" - -#: pro/fields/class-acf-field-flexible-content.php:407 -msgid "Remove layout" -msgstr "Rimuovi Layout" - -#: pro/fields/class-acf-field-flexible-content.php:408 -#: pro/fields/class-acf-field-repeater.php:298 -msgid "Click to toggle" -msgstr "Clicca per alternare" - -#: pro/fields/class-acf-field-flexible-content.php:548 -msgid "Reorder Layout" -msgstr "Riordina Layout" - -#: pro/fields/class-acf-field-flexible-content.php:548 -msgid "Reorder" -msgstr "Riordina" - -#: pro/fields/class-acf-field-flexible-content.php:549 -msgid "Delete Layout" -msgstr "Cancella Layout" - -#: pro/fields/class-acf-field-flexible-content.php:550 -msgid "Duplicate Layout" -msgstr "Duplica Layout" - -#: pro/fields/class-acf-field-flexible-content.php:551 -msgid "Add New Layout" -msgstr "Aggiungi Nuovo Layout" - -#: pro/fields/class-acf-field-flexible-content.php:622 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:635 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:662 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Button Label" -msgstr "Etichetta Bottone" - -#: pro/fields/class-acf-field-flexible-content.php:671 -msgid "Minimum Layouts" -msgstr "Layout Minimi" - -#: pro/fields/class-acf-field-flexible-content.php:680 -msgid "Maximum Layouts" -msgstr "Layout Massimi" - -#: pro/fields/class-acf-field-gallery.php:41 -msgid "Add Image to Gallery" -msgstr "Aggiungi Immagine alla Galleria" - -#: pro/fields/class-acf-field-gallery.php:45 -msgid "Maximum selection reached" -msgstr "Selezione massima raggiunta" - -#: pro/fields/class-acf-field-gallery.php:321 -msgid "Length" -msgstr "Lunghezza" - -#: pro/fields/class-acf-field-gallery.php:364 -msgid "Caption" -msgstr "Didascalia" - -#: pro/fields/class-acf-field-gallery.php:373 -msgid "Alt Text" -msgstr "Testo Alt" - -#: pro/fields/class-acf-field-gallery.php:544 -msgid "Add to gallery" -msgstr "Aggiungi a Galleria" - -#: pro/fields/class-acf-field-gallery.php:548 -msgid "Bulk actions" -msgstr "Azioni in blocco" - -#: pro/fields/class-acf-field-gallery.php:549 -msgid "Sort by date uploaded" -msgstr "Ordina per aggiornamento data" - -#: pro/fields/class-acf-field-gallery.php:550 -msgid "Sort by date modified" -msgstr "Ordina per data modifica" - -#: pro/fields/class-acf-field-gallery.php:551 -msgid "Sort by title" -msgstr "Ordina per titolo" - -#: pro/fields/class-acf-field-gallery.php:552 -msgid "Reverse current order" -msgstr "Ordine corrente inversa" - -#: pro/fields/class-acf-field-gallery.php:570 -msgid "Close" -msgstr "Chiudi" - -#: pro/fields/class-acf-field-gallery.php:624 -msgid "Minimum Selection" -msgstr "Seleziona Minima" - -#: pro/fields/class-acf-field-gallery.php:633 -msgid "Maximum Selection" -msgstr "Seleziona Massima" - -#: pro/fields/class-acf-field-gallery.php:642 -msgid "Insert" -msgstr "Inserisci" - -#: pro/fields/class-acf-field-gallery.php:643 -msgid "Specify where new attachments are added" -msgstr "Specificare dove vengono aggiunti nuovi allegati" - -#: pro/fields/class-acf-field-gallery.php:647 -msgid "Append to the end" -msgstr "Aggiungere alla fine" - -#: pro/fields/class-acf-field-gallery.php:648 -msgid "Prepend to the beginning" -msgstr "Anteporre all'inizio" - -#: pro/fields/class-acf-field-repeater.php:36 -msgid "Minimum rows reached ({min} rows)" -msgstr "Righe minime raggiunte ({min} righe)" - -#: pro/fields/class-acf-field-repeater.php:37 -msgid "Maximum rows reached ({max} rows)" -msgstr "Righe massime raggiunte ({max} righe)" - -#: pro/fields/class-acf-field-repeater.php:335 -msgid "Add row" -msgstr "Aggiungi riga" - -#: pro/fields/class-acf-field-repeater.php:336 -msgid "Remove row" -msgstr "Rimuovi riga" - -#: pro/fields/class-acf-field-repeater.php:411 -msgid "Collapsed" -msgstr "Collassata" - -#: pro/fields/class-acf-field-repeater.php:412 -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:422 -msgid "Minimum Rows" -msgstr "Righe Minime" - -#: pro/fields/class-acf-field-repeater.php:432 -msgid "Maximum Rows" -msgstr "Righe Massime" - -#: pro/locations/class-acf-location-options-page.php:79 -msgid "No options pages exist" -msgstr "Nessuna Pagina Opzioni esistente" - -#: pro/options-page.php:51 -msgid "Options" -msgstr "Opzioni" - -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "Opzioni Aggiornate" - -#: pro/updates.php:97 #, php-format -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 attivare gli aggiornamenti, per favore inserisci la tua chiave di " -"licenza nella pagina Aggiornamenti. Se non hai una chiave " -"di licenza, per favore vedi dettagli e prezzi." +#~ msgid "Field group synchronised. %s" +#~ msgstr "" +#~ "Field Group\n" +#~ " sincronizzato. %s" -#. Plugin URI of the plugin/theme -msgid "https://www.advancedcustomfields.com/" -msgstr "https://www.advancedcustomfields.com/" +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s Field Group sincronizzato." +#~ msgstr[1] "%s Field Group sincronizzati." -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#~ msgid "Status" +#~ msgstr "Stato" -#. Author URI of the plugin/theme -msgid "http://www.elliotcondon.com/" -msgstr "http://www.elliotcondon.com/" +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "Personalizza WordPress con campi potenti, professionali e intuitivi." + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Guarda cosa c'è di nuovo nella versione %s." + +#~ msgid "Resources" +#~ msgstr "Risorse" + +#~ msgid "Website" +#~ msgstr "Sito Web" + +#~ msgid "Documentation" +#~ msgstr "Documentazione" + +#~ msgid "Support" +#~ msgstr "Supporto" + +#~ msgid "Pro" +#~ msgstr "PRO" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Grazie per aver creato con ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "" +#~ "Sincronizza \n" +#~ "Field Group" + +#~ msgid "Apply" +#~ msgstr "Applica" + +#~ msgid "Bulk Actions" +#~ msgstr "Azioni di massa" + +#~ msgid "Error validating request" +#~ msgstr "Errore di convalida richiesta" + +#~ msgid "Add-ons" +#~ msgstr "Add-ons" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Errore. Impossibile caricare l'elenco Add-ons" + +#~ msgid "Info" +#~ msgstr "Informazioni" + +#~ msgid "What's New" +#~ msgstr "Cosa c'è di nuovo" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Selezionare i \n" +#~ "Field Group\n" +#~ " che si desidera esportare e quindi selezionare il metodo di " +#~ "esportazione. Utilizzare il pulsante di download per esportare in un " +#~ "file .json che sarà poi possibile importare in un'altra installazione " +#~ "ACF. Utilizzare il pulsante generare per esportare il codice PHP che è " +#~ "possibile inserire nel vostro tema." + +#~ msgid "Export File" +#~ msgstr "Esporta file" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Selezionare il file JSON di Advanced Custom Fields che si desidera " +#~ "importare. Quando si fa clic sul pulsante di importazione di seguito, ACF " +#~ "importerà i \n" +#~ "Field Group\n" +#~ "." + +#~ msgid "Import File" +#~ msgstr "Importa file" + +#~ msgid "Required?" +#~ msgstr "Richiesto?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Nessun Campo. Clicca il bottone + Aggiungi Campo per " +#~ "creare il primo campo." + +#~ msgid "+ Add Field" +#~ msgstr "+ Aggiungi Campo" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "" +#~ "Aggiornamento Database \n" +#~ "Advanced Custom Fields" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Il sito necessita di un aggiornamento Database da %s a %s" + +#~ msgid "Upgrade complete" +#~ msgstr "Aggiornamento completato" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Grazie per aver aggiornato a %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Prima di iniziare ad utilizzare queste nuove fantastiche funzionalità, " +#~ "aggiorna il tuo Database alla versione più attuale." + +#, php-format +#~ msgid "" +#~ "Please also ensure any premium add-ons (%s) have first been updated to " +#~ "the latest version." +#~ msgstr "" +#~ "Si prega di assicurarsi che anche i componenti premium (%s) siano prima " +#~ "stati aggiornati all'ultima versione." + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "" +#~ "Aggiornamento del database completato. Guarda le novità" + +#~ msgid "Download & Install" +#~ msgstr "Scarica & Installa" + +#~ msgid "Installed" +#~ msgstr "Installato" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Benvenuto in Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Grazie per l'aggiornamento! ACF %s è più grande e migliore che mai. " +#~ "Speriamo che vi piaccia." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Campi Personalizzati come non li avete mai visti" + +#~ msgid "Improved Usability" +#~ msgstr "Migliorata Usabilità" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Inclusa la famosa biblioteca Select2, che ha migliorato sia l'usabilità, " +#~ "che la velocità di Campi come Post, Link, Tassonomie e Select." + +#~ msgid "Improved Design" +#~ msgstr "Miglioramento del Design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Molti Campi hanno subito un aggiornamento visivo per rendere ACF un " +#~ "aspetto migliore che mai! Notevoli cambiamenti li trovate nei Campi " +#~ "Gallery, Relazioni e oEmbed (nuovo)!" + +#~ msgid "Improved Data" +#~ msgstr "Miglioramento dei dati" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Ridisegnare l'architettura dei dati ha permesso ai Sotto-Campi di vivere " +#~ "in modo indipendente dai loro Genitori. Ciò consente di trascinare e " +#~ "rilasciare i Campi dentro e fuori i Campi Genitore!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Ciao, ciao Add-ons. Benvenuto PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Introduzione ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "Stiamo cambiando in modo eccitante le funzionalità Premium!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Parallelamente ACF5 è la versione tutta nuova di ACF5 PRO! Questa versione PRO include tutti e 4 i componenti aggiuntivi premium " +#~ "(Repeater, Gallery, Flexible Content e Pagina Opzioni) e con le licenze " +#~ "personali e di sviluppo disponibili, funzionalità premium è più " +#~ "conveniente che mai!" + +#~ msgid "Powerful Features" +#~ msgstr "Potenti funzionalità" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO contiene caratteristiche impressionanti come i Campi Repeater, " +#~ "Flexible Layout, Gallery e la possibilità di creare Options Page (pagine " +#~ "opzioni di amministrazione) personalizzabili!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Scopri di più sulle funzionalità di ACF PRO." + +#~ msgid "Easy Upgrading" +#~ msgstr "Aggiornamento facile" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Per rendere più semplice gli aggiornamenti, \n" +#~ "accedi al tuo account e richiedi una copia gratuita di " +#~ "ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Abbiamo inoltre scritto una guida all'aggiornamento " +#~ "per rispondere alle vostre richieste, ma se ne avete di nuove, contattate " +#~ "il nostro help desk" + +#~ msgid "Under the Hood" +#~ msgstr "Sotto il cofano" + +#~ msgid "Smarter field settings" +#~ msgstr "Impostazioni dei Campi più intelligenti" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACF ora salva le impostazioni dei Campi come oggetti Post individuali" + +#~ msgid "More AJAX" +#~ msgstr "Più AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Altri campi utilizzano la ricerca di AJAX per velocizzare il caricamento " +#~ "della pagina" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "" +#~ "Nuovo esportazione automatica di funzionalità JSON migliora la velocità" + +#~ msgid "Better version control" +#~ msgstr "Migliore versione di controllo" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nuova esportazione automatica di funzione JSON consente impostazioni dei " +#~ "campi da versione controllati" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML scambiato per JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Importa / Esporta ora utilizza JSON a favore di XML" + +#~ msgid "New Forms" +#~ msgstr "Nuovi Forme" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "I campi possono essere mappati con i commenti, widget e tutte le forme " +#~ "degli utenti!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "È stato aggiunto un nuovo campo per incorporare contenuti" + +#~ msgid "New Gallery" +#~ msgstr "Nuova Galleria" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Il campo galleria ha subito un lifting tanto necessario" + +#~ msgid "New Settings" +#~ msgstr "Nuove Impostazioni" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Sono state aggiunte impostazioni di gruppo sul Campo per l'inserimento " +#~ "dell'etichetta e il posizionamento di istruzioni" + +#~ msgid "Better Front End Forms" +#~ msgstr "Forme Anteriori migliori" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() può ora creare un nuovo post di presentazione" + +#~ msgid "Better Validation" +#~ msgstr "Validazione Migliore" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Validazione del form ora avviene tramite PHP + AJAX in favore del solo JS" + +#~ msgid "Relationship Field" +#~ msgstr "Campo Relazione" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nuove Impostazione Campo Relazione per i 'Filtri' (Ricerca, Tipo di Post, " +#~ "Tassonomia)" + +#~ msgid "Moving Fields" +#~ msgstr "Spostamento Campi" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "La nuova funzionalità di Field Group consente di spostare un campo tra i " +#~ "gruppi e genitori" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nuovo gruppo archivi in materia di selezione page_link" + +#~ msgid "Better Options Pages" +#~ msgstr "Migliori Pagine Opzioni" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nuove funzioni per la Pagina Opzioni consentono la creazione di pagine " +#~ "menu genitore e figlio" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Pensiamo che amerete i cambiamenti in %s." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "La dimensione massima non deve superare i %s." + +#~ msgid "Allow Custom" +#~ msgstr "Consenti Personalizzato" + +#~ msgid "Save Custom" +#~ msgstr "Salva Personalizzato" + +#~ msgid "Toggle" +#~ msgstr "Toggle" + +#~ msgid "Current Color" +#~ msgstr "Colore Corrente" + +#~ msgid "Customise the map height" +#~ msgstr "Personalizza l'altezza della mappa iniziale" + +#~ msgid "Shown when entering data" +#~ msgstr "Mostrato durante l'immissione dei dati" + +#~ msgid "Other" +#~ msgstr "Altro" + +#~ msgid "Save Other" +#~ msgstr "Salva Altro" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s richiede la selezione di almeno %s" +#~ msgstr[1] "%s richiede le selezioni di almeno %s" + +#~ msgid "Stylised UI" +#~ msgstr "UI stilizzata" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definire un endpoint per le schede precedenti da interrompere. Questo " +#~ "avvierà un nuovo gruppo di schede." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Nessun %s" + +#~ msgid "None" +#~ msgstr "Nessuno" + +#~ msgid "Error." +#~ msgstr "Errore." + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "" +#~ "TinyMCE non sarà inizializzato fino a quando il campo non viene cliccato" + +#~ msgid "remove {layout}?" +#~ msgstr "rimuovi {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Questo campoQuesto campo richiede almeno {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Questo campo ha un limite di {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Massimo {label} limite raggiunto ({max} {identifier})" + +#, php-format +#~ 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 attivare gli aggiornamenti, per favore inserisci la tua chiave di " +#~ "licenza nella pagina Aggiornamenti. Se non hai una " +#~ "chiave di licenza, per favore vedi dettagli e prezzi." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" #~ msgid "No conditional fields available" #~ msgstr "Non ci sono campi condizionali disponibili" @@ -3366,9 +4090,6 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Taxonomy Term" #~ msgstr "Termine Tassonomia" -#~ msgid "No toggle fields available" -#~ msgstr "Nessun Campo Toggle disponibile" - #~ msgid "Export Field Groups to PHP" #~ msgstr "" #~ "Esporta \n" @@ -3381,9 +4102,6 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Generate export code" #~ msgstr "Generare codice di esportazione" -#~ msgid "Import" -#~ msgstr "Importa" - #~ msgid "No embed found for the given URL." #~ msgstr "Nessun embed trovato per l'URL specificato." diff --git a/lang/acf-ja.mo b/lang/acf-ja.mo old mode 100755 new mode 100644 index 434b2f4..bef03db Binary files a/lang/acf-ja.mo and b/lang/acf-ja.mo differ diff --git a/lang/acf-ja.po b/lang/acf-ja.po index 3770fa9..75f7e56 100644 --- a/lang/acf-ja.po +++ b/lang/acf-ja.po @@ -1,2487 +1,4126 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.9.3\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2015-08-11 23:33+0200\n" -"PO-Revision-Date: 2021-01-11 23:02+0900\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: game-ryo \n" -"Language: ja_JP\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.2\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;" -"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:63 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -#: acf.php:205 admin/admin.php:61 -msgid "Field Groups" -msgstr "フィールドグループ" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -#: acf.php:206 -msgid "Field Group" -msgstr "フィールドグループ" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517 -msgid "Add New" -msgstr "新規追加" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:208 -msgid "Add New Field Group" -msgstr "フィールドグループを新規追加" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:209 -msgid "Edit Field Group" -msgstr "フィールドグループを編集" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -#: acf.php:210 -msgid "New Field Group" -msgstr "新規フィールドグループ" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" -#: acf.php:211 -msgid "View Field Group" -msgstr "フィールドグループを表示" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" -#: acf.php:212 -msgid "Search Field Groups" -msgstr "フィールドグループを検索" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:213 -msgid "No Field Groups found" -msgstr "フィールドグループが見つかりませんでした" - -#: acf.php:214 -msgid "No Field Groups found in Trash" -msgstr "ゴミ箱の中にフィールドグループは見つかりませんでした" - -#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519 -msgid "Fields" -msgstr "フィールド" - -#: acf.php:238 -msgid "Field" -msgstr "フィールド" - -#: acf.php:240 -msgid "Add New Field" -msgstr "新規フィールドを追加" - -#: acf.php:241 -msgid "Edit Field" -msgstr "フィールドを編集" - -#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111 -msgid "New Field" -msgstr "新規フィールド" - -#: acf.php:243 -msgid "View Field" -msgstr "フィールドを表示" - -#: acf.php:244 -msgid "Search Fields" -msgstr "フィールドを検索" - -#: acf.php:245 -msgid "No Fields found" -msgstr "フィールドが見つかりませんでした" - -#: acf.php:246 -msgid "No Fields found in Trash" -msgstr "ゴミ箱の中にフィールドは見つかりませんでした" - -#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 admin/views/field-group-options.php:18 -msgid "Disabled" -msgstr "無効状態" - -#: acf.php:273 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "無効状態 (%s)" - -#: admin/admin.php:57 admin/views/field-group-options.php:120 -msgid "Custom Fields" -msgstr "カスタムフィールド" - -#: admin/field-group.php:68 admin/field-group.php:69 admin/field-group.php:71 -msgid "Field group updated." -msgstr "フィールドグループを更新しました。" - -#: admin/field-group.php:70 -msgid "Field group deleted." -msgstr "フィールドグループを削除しました。" - -#: admin/field-group.php:73 -msgid "Field group published." -msgstr "フィールドグループを公開しました。" - -#: admin/field-group.php:74 -msgid "Field group saved." -msgstr "フィールドグループを保存しました。" - -#: admin/field-group.php:75 -msgid "Field group submitted." -msgstr "フィールドグループを送信しました。" - -#: admin/field-group.php:76 -msgid "Field group scheduled for." -msgstr "フィールドグループを公開予約しました。" - -#: admin/field-group.php:77 -msgid "Field group draft updated." -msgstr "フィールドグループの下書きを更新しました。" - -#: admin/field-group.php:176 -msgid "Move to trash. Are you sure?" -msgstr "ゴミ箱に移動します。よろしいですか?" - -#: admin/field-group.php:177 -msgid "checked" -msgstr "チェック済み" - -#: admin/field-group.php:178 -msgid "No toggle fields available" -msgstr "利用できるトグルフィールドがありません" - -#: admin/field-group.php:179 -msgid "Field group title is required" -msgstr "フィールドグループのタイトルは必須です" - -#: admin/field-group.php:180 api/api-field-group.php:607 -msgid "copy" -msgstr "複製" - -#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67 -#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23 -#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262 -msgid "or" -msgstr "または" - -#: admin/field-group.php:183 -msgid "Parent fields" -msgstr "親フィールド" - -#: admin/field-group.php:184 -msgid "Sibling fields" -msgstr "兄弟フィールド" - -#: admin/field-group.php:185 -msgid "Move Custom Field" -msgstr "カスタムフィールドを移動" - -#: admin/field-group.php:186 -msgid "This field cannot be moved until its changes have been saved" -msgstr "このフィールドは変更が保存されるまで移動することはできません" - -#: admin/field-group.php:187 -msgid "Null" -msgstr "空" - -#: admin/field-group.php:188 core/input.php:128 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "このページから移動した場合、変更は失われます" - -#: admin/field-group.php:189 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "\"field_\" はフィールド名の先頭に使うことはできません" - -#: admin/field-group.php:214 -msgid "Location" -msgstr "位置" - -#: admin/field-group.php:215 -msgid "Settings" -msgstr "設定" - -#: admin/field-group.php:253 -msgid "Field Keys" -msgstr "フィールドキー" - -#: admin/field-group.php:283 admin/views/field-group-options.php:17 -msgid "Active" -msgstr "アクティブ" - -#: admin/field-group.php:744 -msgid "Front Page" -msgstr "フロントページ" - -#: admin/field-group.php:745 -msgid "Posts Page" -msgstr "投稿ページ" - -#: admin/field-group.php:746 -msgid "Top Level Page (no parent)" -msgstr "最上位のページ(親ページがない)" - -#: admin/field-group.php:747 -msgid "Parent Page (has children)" -msgstr "親ページ(子ページがある場合)" - -#: admin/field-group.php:748 -msgid "Child Page (has parent)" -msgstr "子ページ(親ページがある場合)" - -#: admin/field-group.php:764 -msgid "Default Template" -msgstr "デフォルトテンプレート" - -#: admin/field-group.php:786 -msgid "Logged in" -msgstr "ログイン済み" - -#: admin/field-group.php:787 -msgid "Viewing front end" -msgstr "フロントエンドで表示" - -#: admin/field-group.php:788 -msgid "Viewing back end" -msgstr "バックエンドで表示" - -#: admin/field-group.php:807 -msgid "Super Admin" -msgstr "ネットワーク管理者" - -#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840 admin/field-group.php:847 -#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 fields/image.php:226 -#: pro/fields/gallery.php:653 -msgid "All" -msgstr "全て" - -#: admin/field-group.php:827 -msgid "Add / Edit" -msgstr "追加 / 編集" - -#: admin/field-group.php:828 -msgid "Register" -msgstr "登録" - -#: admin/field-group.php:1059 -msgid "Move Complete." -msgstr "移動が完了しました。" - -#: admin/field-group.php:1060 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "この %s フィールドは今 %s フィールドグループにあります" - -#: admin/field-group.php:1062 -msgid "Close Window" -msgstr "ウィンドウを閉じる" - -#: admin/field-group.php:1097 -msgid "Please select the destination for this field" -msgstr "このフィールドの移動先を選択してください" - -#: admin/field-group.php:1104 -msgid "Move Field" -msgstr "フィールドを移動" - -#: admin/field-groups.php:74 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "アクティブ (%s)" - -#: admin/field-groups.php:142 -#, php-format -msgid "Field group duplicated. %s" -msgstr "フィールドグループを複製しました。 %s" - -#: admin/field-groups.php:146 -#, php-format -msgid "%s field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s個 のフィールドグループを複製しました。" - -#: admin/field-groups.php:228 -#, php-format -msgid "Field group synchronised. %s" -msgstr "フィールドグループを同期しました。%s" - -#: admin/field-groups.php:232 -#, php-format -msgid "%s field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "%s個 のフィールドグループを同期しました。" - -#: admin/field-groups.php:403 admin/field-groups.php:573 -msgid "Sync available" -msgstr "利用可能な同期" - -#: admin/field-groups.php:516 -msgid "Title" -msgstr "タイトル" - -#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20 -#: admin/views/update-network.php:28 -msgid "Description" -msgstr "説明" - -#: admin/field-groups.php:518 admin/views/field-group-options.php:10 -msgid "Status" -msgstr "状態" - -#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111 -msgid "Changelog" -msgstr "更新履歴" - -#: admin/field-groups.php:617 -msgid "See what's new in" -msgstr "新着情報を見る" - -#: admin/field-groups.php:617 -msgid "version" -msgstr "バージョン" - -#: admin/field-groups.php:619 -msgid "Resources" -msgstr "リソース" - -#: admin/field-groups.php:621 -msgid "Getting Started" -msgstr "はじめに" - -#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17 +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 msgid "Updates" msgstr "アップデート" -#: admin/field-groups.php:623 -msgid "Field Types" -msgstr "フィールドタイプ" - -#: admin/field-groups.php:624 -msgid "Functions" -msgstr "ファンクション" - -#: admin/field-groups.php:625 -msgid "Actions" -msgstr "アクション" - -#: admin/field-groups.php:626 fields/relationship.php:718 -msgid "Filters" -msgstr "フィルター" - -#: admin/field-groups.php:627 -msgid "'How to' guides" -msgstr "使い方ガイド" - -#: admin/field-groups.php:628 -msgid "Tutorials" -msgstr "チュートリアル" - -#: admin/field-groups.php:633 -msgid "Created by" -msgstr "作成" - -#: admin/field-groups.php:673 -msgid "Duplicate this item" -msgstr "この項目を複製" - -#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58 -#: pro/fields/flexible-content.php:516 -msgid "Duplicate" -msgstr "複製" - -#: admin/field-groups.php:724 -#, php-format -msgid "Select %s" -msgstr "%s を選択" - -#: admin/field-groups.php:730 -msgid "Synchronise field group" -msgstr "フィールドグループを同期する" - -#: admin/field-groups.php:730 admin/field-groups.php:750 -msgid "Sync" -msgstr "同期する" - -#: admin/settings-addons.php:51 admin/views/settings-addons.php:9 -msgid "Add-ons" -msgstr "アドオン" - -#: admin/settings-addons.php:87 -msgid "Error. Could not load add-ons list" -msgstr "エラー アドオンのリストを読み込めませんでした" - -#: admin/settings-info.php:50 -msgid "Info" -msgstr "お知らせ" - -#: admin/settings-info.php:75 -msgid "What's New" -msgstr "新着情報" - -#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31 -msgid "Tools" -msgstr "ツール" - -#: admin/settings-tools.php:151 admin/settings-tools.php:365 -msgid "No field groups selected" -msgstr "フィールドグループが選択されていません" - -#: admin/settings-tools.php:188 -msgid "No file selected" -msgstr "ファイルが選択されていません" - -#: admin/settings-tools.php:201 -msgid "Error uploading file. Please try again" -msgstr "ファイルのアップロードに失敗しました。もう一度試してください" - -#: admin/settings-tools.php:210 -msgid "Incorrect file type" -msgstr "不正なファイルタイプ" - -#: admin/settings-tools.php:227 -msgid "Import file empty" -msgstr "インポートファイルが空です" - -#: admin/settings-tools.php:323 -#, php-format -msgid "Success. Import tool added %s field groups: %s" -msgstr "成功 インポートツールは %s個 のフィールドグループを追加しました:%s" - -#: admin/settings-tools.php:332 -#, php-format -msgid "Warning. Import tool detected %s field groups already exist and have been ignored: %s" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" msgstr "" -"警告 インポートツールは %s個 のフィールドグループが既に存在しているのを検出したため無視しました:" -"%s" -#: admin/update.php:113 -msgid "Upgrade ACF" -msgstr "ACFをアップグレード" - -#: admin/update.php:143 -msgid "Review sites & upgrade" -msgstr "サイトをレビュー&アップグレード" - -#: admin/update.php:298 -msgid "Upgrade" -msgstr "アップグレード" - -#: admin/update.php:328 -msgid "Upgrade Database" -msgstr "データベースをアップグレード" - -#: admin/views/field-group-field-conditional-logic.php:29 -msgid "Conditional Logic" -msgstr "条件判定" - -#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137 -#: fields/checkbox.php:246 fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 -#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 fields/select.php:425 -#: fields/select.php:439 fields/select.php:453 fields/tab.php:172 fields/taxonomy.php:770 -#: fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457 -#: fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93 -msgid "Yes" -msgstr "はい" - -#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138 -#: fields/checkbox.php:247 fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 -#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 fields/select.php:426 -#: fields/select.php:440 fields/select.php:454 fields/tab.php:173 fields/taxonomy.php:685 -#: fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813 -#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385 pro/admin/views/settings-updates.php:103 -msgid "No" -msgstr "いいえ" - -#: admin/views/field-group-field-conditional-logic.php:65 -msgid "Show this field if" -msgstr "このフィールドグループの表示条件" - -#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88 -msgid "is equal to" -msgstr "等しい" - -#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89 -msgid "is not equal to" -msgstr "等しくない" - -#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118 -msgid "and" -msgstr "and" - -#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133 -msgid "Add rule group" -msgstr "ルールを追加" - -#: admin/views/field-group-field.php:54 admin/views/field-group-field.php:57 -msgid "Edit field" -msgstr "フィールドを編集" - -#: admin/views/field-group-field.php:57 pro/fields/gallery.php:355 -msgid "Edit" -msgstr "編集" - -#: admin/views/field-group-field.php:58 -msgid "Duplicate field" -msgstr "フィールドを複製" - -#: admin/views/field-group-field.php:59 -msgid "Move field to another group" -msgstr "別のグループにフィールドを移動する" - -#: admin/views/field-group-field.php:59 -msgid "Move" -msgstr "移動" - -#: admin/views/field-group-field.php:60 -msgid "Delete field" -msgstr "フィールドを削除" - -#: admin/views/field-group-field.php:60 pro/fields/flexible-content.php:515 -msgid "Delete" -msgstr "削除" - -#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886 -msgid "Error" -msgstr "エラー" - -#: fields/oembed.php:220 fields/taxonomy.php:900 -msgid "Error." -msgstr "エラー." - -#: admin/views/field-group-field.php:68 -msgid "Field type does not exist" -msgstr "フィールドタイプが存在しません" - -#: admin/views/field-group-field.php:81 -msgid "Field Label" -msgstr "フィールドラベル" - -#: admin/views/field-group-field.php:82 -msgid "This is the name which will appear on the EDIT page" -msgstr "編集ページで表示される名前です" - -#: admin/views/field-group-field.php:93 -msgid "Field Name" -msgstr "フィールド名" - -#: admin/views/field-group-field.php:94 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "スペースは不可、アンダースコアとダッシュは使用可能" - -#: admin/views/field-group-field.php:105 -msgid "Field Type" -msgstr "フィールドタイプ" - -#: admin/views/field-group-field.php:118 fields/tab.php:143 -msgid "Instructions" -msgstr "説明" - -#: admin/views/field-group-field.php:119 -msgid "Instructions for authors. Shown when submitting data" -msgstr "投稿者向けの説明。編集時に表示されます" - -#: admin/views/field-group-field.php:130 -msgid "Required?" -msgstr "必須か?" - -#: admin/views/field-group-field.php:158 -msgid "Wrapper Attributes" -msgstr "ラッパーの属性" - -#: admin/views/field-group-field.php:164 -msgid "width" -msgstr "width" - -#: admin/views/field-group-field.php:178 -msgid "class" -msgstr "class" - -#: admin/views/field-group-field.php:191 -msgid "id" -msgstr "id" - -#: admin/views/field-group-field.php:203 -msgid "Close Field" -msgstr "フィールドを閉じる" - -#: admin/views/field-group-fields.php:29 -msgid "Order" -msgstr "順序" - -#: admin/views/field-group-fields.php:30 pro/fields/flexible-content.php:541 -msgid "Label" -msgstr "ラベル" - -#: admin/views/field-group-fields.php:31 pro/fields/flexible-content.php:554 -msgid "Name" -msgstr "名前" - -#: admin/views/field-group-fields.php:32 -msgid "Type" -msgstr "タイプ" - -#: admin/views/field-group-fields.php:44 -msgid "No fields. Click the + Add Field button to create your first field." +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" msgstr "" -"フィールドはありません。+ 新規追加ボタンをクリックして最初のフィールドを作成してくださ" -"い。" -#: admin/views/field-group-fields.php:51 -msgid "Drag and drop to reorder" -msgstr "ドラッグアンドドロップで並べ替える" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" -#: admin/views/field-group-fields.php:54 -msgid "+ Add Field" -msgstr "+ フィールドを追加" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" -#: admin/views/field-group-locations.php:5 -msgid "Rules" -msgstr "ルール" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -#: admin/views/field-group-locations.php:6 -msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" -msgstr "どの編集画面でカスタムフィールドを表示するかを決定するルールを作成します" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" -#: admin/views/field-group-locations.php:21 -msgid "Show this field group if" -msgstr "このフィールドグループを表示する条件" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47 -msgid "Post" -msgstr "投稿" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" -#: admin/views/field-group-locations.php:42 fields/relationship.php:724 -msgid "Post Type" -msgstr "投稿タイプ" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" -#: admin/views/field-group-locations.php:43 -msgid "Post Status" -msgstr "投稿ステータス" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" -#: admin/views/field-group-locations.php:44 -msgid "Post Format" -msgstr "投稿フォーマット" +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" -#: admin/views/field-group-locations.php:45 -msgid "Post Category" -msgstr "投稿カテゴリー" +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" -#: admin/views/field-group-locations.php:46 -msgid "Post Taxonomy" -msgstr "投稿タクソノミー" +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" -#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53 -msgid "Page" -msgstr "ページ" +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" -#: admin/views/field-group-locations.php:50 -msgid "Page Template" -msgstr "ページテンプレート" +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" -#: admin/views/field-group-locations.php:51 -msgid "Page Type" -msgstr "ページタイプ" +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" -#: admin/views/field-group-locations.php:52 -msgid "Page Parent" -msgstr "親ページ" +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" -#: admin/views/field-group-locations.php:55 fields/user.php:36 -msgid "User" +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "ギャラリー (プロ版のみ)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "複製 (プロ版のみ)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "フレキシブルコンテンツ (プロ版のみ)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "リピーター (プロ版のみ)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "有効" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' は有効なメールアドレスではありません" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "明度" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "デフォルトの色を選択" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "色をクリア" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "ブロック" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "オプション" + +#: includes/acf-wp-functions.php:79 +msgid "Users" msgstr "ユーザー" -#: admin/views/field-group-locations.php:56 -msgid "Current User" -msgstr "現在のユーザー" +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "メニュー項目" -#: admin/views/field-group-locations.php:57 -msgid "Current User Role" -msgstr "現在の権限グループ" - -#: admin/views/field-group-locations.php:58 -msgid "User Form" -msgstr "ユーザーフォーム" - -#: admin/views/field-group-locations.php:59 -msgid "User Role" -msgstr "権限グループ" - -#: admin/views/field-group-locations.php:61 pro/admin/options-page.php:48 -msgid "Forms" -msgstr "フォーム" - -#: admin/views/field-group-locations.php:62 -msgid "Attachment" -msgstr "メディア" - -#: admin/views/field-group-locations.php:63 -msgid "Taxonomy Term" -msgstr "タクソノミーターム" - -#: admin/views/field-group-locations.php:64 -msgid "Comment" -msgstr "コメント" - -#: admin/views/field-group-locations.php:65 -msgid "Widget" +#: includes/acf-wp-functions.php:67 +msgid "Widgets" msgstr "ウィジェット" -#: admin/views/field-group-options.php:25 -msgid "Style" -msgstr "スタイル" +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "添付ファイル" -#: admin/views/field-group-options.php:32 -msgid "Standard (WP metabox)" -msgstr "標準(WPメタボックス)" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "タクソノミー" -#: admin/views/field-group-options.php:33 -msgid "Seamless (no metabox)" -msgstr "シームレス(メタボックスなし)" +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "投稿" -#: admin/views/field-group-options.php:40 -msgid "Position" -msgstr "位置" +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON フィールドグループ (新しい方)" -#: admin/views/field-group-options.php:47 -msgid "High (after title)" -msgstr "高(タイトルの後)" +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "元のフィールドグループ" -#: admin/views/field-group-options.php:48 -msgid "Normal (after content)" -msgstr "通常(コンテンツエディタの後)" +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "最終更新日: %s" -#: admin/views/field-group-options.php:49 -msgid "Side" -msgstr "サイド" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "このフィールドグループは diff 比較に使用できません。" -#: admin/views/field-group-options.php:57 -msgid "Label placement" -msgstr "ラベルの配置" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "無効なフィールドグループ ID。" -#: admin/views/field-group-options.php:64 fields/tab.php:159 -msgid "Top aligned" -msgstr "上揃え" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "無効なフィールドグループパラメータ。" -#: admin/views/field-group-options.php:65 fields/tab.php:160 -msgid "Left aligned" -msgstr "左揃え" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "保存待ち" -#: admin/views/field-group-options.php:72 -msgid "Instruction placement" -msgstr "説明の配置" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "保存しました" -#: admin/views/field-group-options.php:79 -msgid "Below labels" -msgstr "ラベルの下" - -#: admin/views/field-group-options.php:80 -msgid "Below fields" -msgstr "フィールドの下" - -#: admin/views/field-group-options.php:87 -msgid "Order No." -msgstr "順序 No." - -#: admin/views/field-group-options.php:88 -msgid "Field groups with a lower order will appear first" -msgstr "順番が小さいフィールドグループほど最初に表示されます" - -#: admin/views/field-group-options.php:99 -msgid "Shown in field group list" -msgstr "フィールドグループリストに表示されます" - -#: admin/views/field-group-options.php:109 -msgid "Hide on screen" -msgstr "画面に非表示" - -#: admin/views/field-group-options.php:110 -msgid "Select items to hide them from the edit screen." -msgstr "編集画面で表示しないアイテムを選択。" - -#: admin/views/field-group-options.php:110 -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 "" -"編集画面上に複数のフィールドグループが表示される場合、最初のフィールドグループ(=順番の数値が最も小さい" -"グループ)のオプションが使用されます。" - -#: admin/views/field-group-options.php:117 -msgid "Permalink" -msgstr "パーマリンク" - -#: admin/views/field-group-options.php:118 -msgid "Content Editor" -msgstr "コンテンツエディタ" - -#: admin/views/field-group-options.php:119 -msgid "Excerpt" -msgstr "抜粋" - -#: admin/views/field-group-options.php:121 -msgid "Discussion" -msgstr "ディスカッション" - -#: admin/views/field-group-options.php:122 -msgid "Comments" -msgstr "コメント" - -#: admin/views/field-group-options.php:123 -msgid "Revisions" -msgstr "リビジョン" - -#: admin/views/field-group-options.php:124 -msgid "Slug" -msgstr "スラッグ" - -#: admin/views/field-group-options.php:125 -msgid "Author" -msgstr "作成者" - -#: admin/views/field-group-options.php:126 -msgid "Format" -msgstr "フォーマット" - -#: admin/views/field-group-options.php:127 -msgid "Page Attributes" -msgstr "ページ属性" - -#: admin/views/field-group-options.php:128 fields/relationship.php:737 -msgid "Featured Image" -msgstr "アイキャッチ画像" - -#: admin/views/field-group-options.php:129 -msgid "Categories" -msgstr "カテゴリー" - -#: admin/views/field-group-options.php:130 -msgid "Tags" -msgstr "タグ" - -#: admin/views/field-group-options.php:131 -msgid "Send Trackbacks" -msgstr "トラックバック" - -#: admin/views/settings-addons.php:23 -msgid "Download & Install" -msgstr "ダウンロードしてインストール" - -#: admin/views/settings-addons.php:42 -msgid "Installed" -msgstr "インストール済み" - -#: admin/views/settings-info.php:9 -msgid "Welcome to Advanced Custom Fields" -msgstr "ようこそ Advanced Custom Fields" - -#: admin/views/settings-info.php:10 -#, php-format -msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it." -msgstr "" -"アップグレードありがとうございます!ACF %s は規模、質ともに向上しています。気に入ってもらえたら幸いで" -"す。" - -#: admin/views/settings-info.php:23 -msgid "A smoother custom field experience" -msgstr "もっとも快適なカスタムフィールド体験" - -#: admin/views/settings-info.php:28 -msgid "Improved Usability" -msgstr "改良されたユーザビリティ" - -#: admin/views/settings-info.php:29 -msgid "" -"Including the popular Select2 library has improved both usability and speed across a number of field " -"types including post object, page link, taxonomy and select." -msgstr "" -"内蔵した人気のSelect2ライブラリによって、投稿オブジェクトやページリンク、タクソノミーなど多くのフィール" -"ドタイプにおける選択のユーザビリティと速度の両方を改善しました。" - -#: admin/views/settings-info.php:33 -msgid "Improved Design" -msgstr "改良されたデザイン" - -#: admin/views/settings-info.php:34 -msgid "" -"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are " -"seen on the gallery, relationship and oEmbed (new) fields!" -msgstr "" -"ACFがより良くなるよう、多くのフィールドのデザインを一新しました!目立った変化は、ギャラリーフィールドや" -"関連フィールド、(新しい)oEmbedフィールドでわかるでしょう!" - -#: admin/views/settings-info.php:38 -msgid "Improved Data" -msgstr "改良されたデータ" - -#: admin/views/settings-info.php:39 -msgid "" -"Redesigning the data architecture has allowed sub fields to live independently from their parents. This " -"allows you to drag and drop fields in and out of parent fields!" -msgstr "" -"データ構造を再設計したことでサブフィールドは親フィールドから独立して存在できるようになりました。これに" -"よって親フィールドの内外にフィールドをドラッグアンドドロップできます!" - -#: admin/views/settings-info.php:45 -msgid "Goodbye Add-ons. Hello PRO" -msgstr "さようならアドオン、こんにちはPRO" - -#: admin/views/settings-info.php:50 -msgid "Introducing ACF PRO" -msgstr "ACF PRO紹介" - -#: admin/views/settings-info.php:51 -msgid "We're changing the way premium functionality is delivered in an exciting way!" -msgstr "我々はエキサイティングな方法で有料機能を提供することにしました!" - -#: admin/views/settings-info.php:52 -#, php-format -msgid "" -"All 4 premium add-ons have been combined into a new Pro version of ACF. With both " -"personal and developer licenses available, premium functionality is more affordable and accessible than " -"ever before!" -msgstr "" -"4つのアドオンをACFのPROバージョンとして組み合わせました。個人または開発者ライセンスに" -"よって、以前よりお手頃な価格で有料機能を利用できます!" - -#: admin/views/settings-info.php:56 -msgid "Powerful Features" -msgstr "パワフルな機能" - -#: admin/views/settings-info.php:57 -msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful " -"gallery field and the ability to create extra admin options pages!" -msgstr "" -"ACF PROには、繰り返し可能なデータ、柔軟なコンテンツレイアウト、美しいギャラリーフィールド、オプション" -"ページを作成するなど、パワフルな機能が含まれています!" - -#: admin/views/settings-info.php:58 -#, php-format -msgid "Read more about ACF PRO features." -msgstr "もっとACF PRO の機能を見る。" - -#: admin/views/settings-info.php:62 -msgid "Easy Upgrading" -msgstr "簡単なアップグレード" - -#: admin/views/settings-info.php:63 -#, php-format -msgid "" -"To help make upgrading easy, login to your store account and claim a free copy of " -"ACF PRO!" -msgstr "" -"アップグレードを簡単にするために、ストアアカウントにログインしてACF PROの無料版を請求" -"してください!" - -#: admin/views/settings-info.php:64 -#, php-format -msgid "" -"We also wrote an upgrade guide to answer any questions, but if you do have one, " -"please contact our support team via the help desk" -msgstr "" -"我々は多くの質問に応えるためにアップグレードガイドを用意していますが、もし質問がある" -"場合はヘルプデスクからサポートチームに連絡をしてください" - -#: admin/views/settings-info.php:72 -msgid "Under the Hood" -msgstr "その内部では" - -#: admin/views/settings-info.php:77 -msgid "Smarter field settings" -msgstr "よりスマートなフィールド設定" - -#: admin/views/settings-info.php:78 -msgid "ACF now saves its field settings as individual post objects" -msgstr "ACFはそれぞれのフィールドを独立した投稿オブジェクトとして保存するようになりました" - -#: admin/views/settings-info.php:82 -msgid "More AJAX" -msgstr "いっそうAJAXに" - -#: admin/views/settings-info.php:83 -msgid "More fields use AJAX powered search to speed up page loading" -msgstr "ページの読み込み速度を高速化するために、より多くのフィールドがAJAXを利用するようになりました" - -#: admin/views/settings-info.php:87 -msgid "Local JSON" -msgstr "ローカルJSON" - -#: admin/views/settings-info.php:88 -msgid "New auto export to JSON feature improves speed" -msgstr "新しいJSON形式の自動エクスポート機能の速度を改善" - -#: admin/views/settings-info.php:94 -msgid "Better version control" -msgstr "より良いバージョンコントロール" - -#: admin/views/settings-info.php:95 -msgid "New auto export to JSON feature allows field settings to be version controlled" -msgstr "新しいJSON形式の自動エクスポート機能は、フィールド設定のバージョンコントロールを可能にします" - -#: admin/views/settings-info.php:99 -msgid "Swapped XML for JSON" -msgstr "XMLからJSONへ" - -#: admin/views/settings-info.php:100 -msgid "Import / Export now uses JSON in favour of XML" -msgstr "インポート / エクスポートにXML形式より優れているJSON形式が使えます" - -#: admin/views/settings-info.php:104 -msgid "New Forms" -msgstr "新しいフォーム" - -#: admin/views/settings-info.php:105 -msgid "Fields can now be mapped to comments, widgets and all user forms!" -msgstr "コメントとウィジェット、全てのユーザーのフォームにフィールドを追加できるようになりました!" - -#: admin/views/settings-info.php:112 -msgid "A new field for embedding content has been added" -msgstr "新しいフィールドに「oEmbed(埋め込みコンテンツ)」を追加しています" - -#: admin/views/settings-info.php:116 -msgid "New Gallery" -msgstr "新しいギャラリー" - -#: admin/views/settings-info.php:117 -msgid "The gallery field has undergone a much needed facelift" -msgstr "ギャラリーフィールドは多くのマイナーチェンジをしています" - -#: admin/views/settings-info.php:121 -msgid "New Settings" -msgstr "新しい設定" - -#: admin/views/settings-info.php:122 -msgid "Field group settings have been added for label placement and instruction placement" -msgstr "フィールドグループの設定に「ラベルの配置」と「説明の配置」を追加しています" - -#: admin/views/settings-info.php:128 -msgid "Better Front End Forms" -msgstr "より良いフロントエンドフォーム" - -#: admin/views/settings-info.php:129 -msgid "acf_form() can now create a new post on submission" -msgstr "acf_form()は新しい投稿をフロントエンドから作成できるようになりました" - -#: admin/views/settings-info.php:133 -msgid "Better Validation" -msgstr "より良いバリデーション" - -#: admin/views/settings-info.php:134 -msgid "Form validation is now done via PHP + AJAX in favour of only JS" -msgstr "フォームバリデーションは、JSのみより優れているPHP + AJAXで行われます" - -#: admin/views/settings-info.php:138 -msgid "Relationship Field" -msgstr "関連フィールド" - -#: admin/views/settings-info.php:139 -msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" -msgstr "関連フィールドの新しい設定「フィルター」(検索、投稿タイプ、タクソノミー)。" - -#: admin/views/settings-info.php:145 -msgid "Moving Fields" -msgstr "フィールド移動" - -#: admin/views/settings-info.php:146 -msgid "New field group functionality allows you to move a field between groups & parents" -msgstr "" -"新しいフィールドグループでは、フィールドが親フィールドやフィールドグループ間を移動することができます" - -#: admin/views/settings-info.php:150 fields/page_link.php:36 -msgid "Page Link" -msgstr "ページリンク" - -#: admin/views/settings-info.php:151 -msgid "New archives group in page_link field selection" -msgstr "新しいページリンクの選択肢に「アーカイブグループ」を追加しています" - -#: admin/views/settings-info.php:155 -msgid "Better Options Pages" -msgstr "より良いオプションページ" - -#: admin/views/settings-info.php:156 -msgid "New functions for options page allow creation of both parent and child menu pages" -msgstr "オプションページの新しい機能として、親と子の両方のメニューページを作ることができます" - -#: admin/views/settings-info.php:165 -#, php-format -msgid "We think you'll love the changes in %s." -msgstr "%s の変更は、きっと気に入っていただけるでしょう。" - -#: admin/views/settings-tools-export.php:13 -msgid "Export Field Groups to PHP" -msgstr "フィールドグループを PHP形式 でエクスポートする" - -#: admin/views/settings-tools-export.php:17 -msgid "" -"The following code can be used to register a local version of the selected field group(s). A local " -"field group 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." -msgstr "" -"以下のコードは選択したフィールドグループのローカルバージョンとして登録に使えます。ローカルフィールドグ" -"ループは読み込み時間の短縮やバージョンコントロール、動的なフィールド/設定など多くの利点があります。以下" -"のコードをテーマのfunctions.phpや外部ファイルにコピー&ペーストしてください。" - -#: admin/views/settings-tools.php:5 -msgid "Select Field Groups" -msgstr "フィールドグループを選択" - -#: admin/views/settings-tools.php:35 -msgid "Export Field Groups" -msgstr "フィールドグループをエクスポート" - -#: admin/views/settings-tools.php:38 -msgid "" -"Select the field groups you would like to export and then select your export method. Use the download " -"button to export to a .json file which you can then import to another ACF installation. Use the " -"generate button to export to PHP code which you can place in your theme." -msgstr "" -"エクスポートしたいフィールドグループとエクスポート方法を選んでください。ダウンロードボタンでは別のACFを" -"インストールした環境でインポートできるJSONファイルがエクスポートされます。生成ボタンではテーマ内で利用で" -"きるPHPコードが生成されます。" - -#: admin/views/settings-tools.php:50 -msgid "Download export file" -msgstr "エクスポートファイルをダウンロード" - -#: admin/views/settings-tools.php:51 -msgid "Generate export code" -msgstr "エクスポートコードを生成" - -#: admin/views/settings-tools.php:64 -msgid "Import Field Groups" -msgstr "フィールドグループをインポート" - -#: admin/views/settings-tools.php:67 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button " -"below, ACF will import the field groups." -msgstr "" -"インポートしたいACFのJSONファイルを選択してください。下のインポートボタンをクリックすると、ACFはフィール" -"ドグループをインポートします。" - -#: admin/views/settings-tools.php:77 fields/file.php:46 -msgid "Select File" -msgstr "ファイルを選択する" - -#: admin/views/settings-tools.php:86 +#: includes/admin/admin-field-groups.php:499 msgid "Import" msgstr "インポート" -#: admin/views/update-network.php:8 admin/views/update.php:8 -msgid "Advanced Custom Fields Database Upgrade" -msgstr "Advanced Custom Fields データベースのアップグレード" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "変更をレビュー" -#: admin/views/update-network.php:10 +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "位置: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "プラグイン中の位置: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "テーマ内の位置: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "各種" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "変更を同期" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "差分を読み込み中" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "ローカルの JSON 変更をレビュー" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "サイトへ移動" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "詳細を表示" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "バージョン %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "情報" + +#: includes/admin/admin.php:160 msgid "" -"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade " -"Database”." +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." msgstr "" -"下記のサイトはデータベースのアップグレードが必要です。アップデートしたいサイトにチェックを入れ、「データ" -"ベースをアップグレード」をクリックしてください。" +"ヘルプデスク。サポートの専門家がお客様の" +"より詳細な技術的課題をサポートします。" -#: admin/views/update-network.php:19 admin/views/update-network.php:27 -msgid "Site" -msgstr "サイト" - -#: admin/views/update-network.php:47 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "%s から %s へのデータベースアップグレードが必要なサイト" - -#: admin/views/update-network.php:49 -msgid "Site is up to date" -msgstr "サイトは最新です" - -#: admin/views/update-network.php:62 admin/views/update.php:16 -msgid "Database Upgrade complete. Return to network dashboard" -msgstr "データベースのアップグレードが完了しました。 ネットワークダッシュボードに戻る" - -#: admin/views/update-network.php:101 admin/views/update-notice.php:35 +#: includes/admin/admin.php:156 msgid "" -"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to " -"run the updater now?" -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." +msgstr "" +"ディスカッション。コミュニティフォーラム" +"には、活発でフレンドリーなコミュニティがあり、ACF の世界の「ハウツー」を理解" +"する手助けをしてくれるかもしれません。" -#: admin/views/update-network.php:157 -msgid "Upgrade complete" -msgstr "更新完了" - -#: admin/views/update-network.php:161 -msgid "Upgrading data to" -msgstr "データをアップグレード" - -#: admin/views/update-notice.php:23 -msgid "Database Upgrade Required" -msgstr "データベースのアップグレードが必要です" - -#: admin/views/update-notice.php:25 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "%s v%sへのアップグレードありがとうございます!" - -#: admin/views/update-notice.php:25 +#: includes/admin/admin.php:152 msgid "" -"Before you start using the new awesome features, please update your database to the newest version." -msgstr "素晴らしい新機能を利用する前にデータベースを最新バージョンに更新してください。" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" +"ドキュメンテーション。私たちの豊富なド" +"キュメントには、お客様が遭遇する可能性のあるほとんどの状況に対するリファレン" +"スやガイドが含まれています。" -#: admin/views/update.php:12 -msgid "Reading upgrade tasks..." -msgstr "アップグレードタスクを読み込んでいます..." +#: includes/admin/admin.php:149 +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 を使ったサイトを最大限に活用して" +"いただきたいと考えています。何か問題が発生した場合には、複数の場所でサポート" +"を受けることができます:" -#: admin/views/update.php:14 -#, php-format -msgid "Upgrading data to version %s" -msgstr "バージョン %s へデータアップグレード中" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "ヘルプとサポート" -#: admin/views/update.php:16 -msgid "See what's new" -msgstr "新着情報を見る" +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "お困りの際は「ヘルプとサポート」タブからお問い合わせください。" -#: admin/views/update.php:110 -msgid "No updates available." -msgstr "利用可能なアップデートはありません。" +#: includes/admin/admin.php:134 +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 "" +"初めてフィールドグループを作成する前にまずス" +"タートガイドに目を通して、プラグインの理念やベストプラクティスを理解する" +"ことをおすすめします。" -#: api/api-helpers.php:821 -msgid "Thumbnail" -msgstr "サムネイル" +#: includes/admin/admin.php:132 +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 を提供します。" -#: api/api-helpers.php:822 -msgid "Medium" -msgstr "中" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "概要" -#: api/api-helpers.php:823 -msgid "Large" -msgstr "大" +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "位置タイプ「%s」はすでに登録されています。" -#: api/api-helpers.php:871 -msgid "Full Size" -msgstr "フルサイズ" +#: includes/locations.php:25 +msgid "Class \"%s\" does not exist." +msgstr "クラス \"%s\" は存在しません。" -#: api/api-helpers.php:1581 -msgid "(no title)" -msgstr "(無題)" +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "無効な nonce。" -#: api/api-helpers.php:3183 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "画像の幅は少なくとも %dpx 必要です。" +#: includes/fields/class-acf-field-user.php:361 +msgid "Error loading field." +msgstr "フィールドの読み込みエラー。" -#: api/api-helpers.php:3188 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "画像の幅は %dpx を超えてはいけません。" +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +msgid "Location not found: %s" +msgstr "位置情報が見つかりません: %s" -#: api/api-helpers.php:3204 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "画像の高さは少なくとも %dpx 必要です。" +#: includes/forms/form-user.php:353 +msgid "Error: %s" +msgstr "エラー: %s" -#: api/api-helpers.php:3209 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "画像の高さは %dpx を超えてはいけません。" +#: includes/locations/class-acf-location-widget.php:22 +msgid "Widget" +msgstr "ウィジェット" -#: api/api-helpers.php:3227 -#, php-format -msgid "File size must be at least %s." -msgstr "ファイルサイズは少なくとも %s 必要です。" +#: includes/locations/class-acf-location-user-role.php:24 +msgid "User Role" +msgstr "ユーザー権限グループ" -#: api/api-helpers.php:3232 -#, php-format -msgid "File size must must not exceed %s." -msgstr "ファイルサイズは %s を超えてはいけません。" +#: includes/locations/class-acf-location-comment.php:22 +msgid "Comment" +msgstr "コメント" -#: api/api-helpers.php:3266 -#, php-format -msgid "File type must be %s." -msgstr "ファイルタイプは %s でなければいけません。" +#: includes/locations/class-acf-location-post-format.php:22 +msgid "Post Format" +msgstr "投稿フォーマット" -#: api/api-template.php:1289 pro/fields/gallery.php:564 -msgid "Update" -msgstr "更新" +#: includes/locations/class-acf-location-nav-menu-item.php:22 +msgid "Menu Item" +msgstr "メニュー項目" -#: api/api-template.php:1290 -msgid "Post updated" -msgstr "投稿更新済み" +#: includes/locations/class-acf-location-post-status.php:22 +msgid "Post Status" +msgstr "投稿ステータス" -#: core/field.php:131 -msgid "Basic" -msgstr "基本" +#: includes/acf-wp-functions.php:71 +#: includes/locations/class-acf-location-nav-menu.php:89 +msgid "Menus" +msgstr "メニュー" -#: core/field.php:132 -msgid "Content" -msgstr "コンテンツ" +#: includes/locations/class-acf-location-nav-menu.php:80 +msgid "Menu Locations" +msgstr "メニューの位置" -#: core/field.php:133 -msgid "Choice" -msgstr "選択肢" +#: includes/locations/class-acf-location-nav-menu.php:22 +msgid "Menu" +msgstr "メニュー" -#: core/field.php:134 -msgid "Relational" -msgstr "関連" +#: includes/locations/class-acf-location-post-taxonomy.php:22 +msgid "Post Taxonomy" +msgstr "投稿タクソノミー" -#: core/field.php:135 -msgid "jQuery" -msgstr "jQuery" +#: includes/locations/class-acf-location-page-type.php:114 +msgid "Child Page (has parent)" +msgstr "子ページ (親ページあり)" -#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512 -#: pro/fields/repeater.php:392 -msgid "Layout" -msgstr "レイアウト" +#: includes/locations/class-acf-location-page-type.php:113 +msgid "Parent Page (has children)" +msgstr "親ページ (子ページあり)" -#: core/input.php:129 -msgid "Expand Details" -msgstr "詳細を広げる" +#: includes/locations/class-acf-location-page-type.php:112 +msgid "Top Level Page (no parent)" +msgstr "最上位レベルのページ (親ページなし)" -#: core/input.php:130 -msgid "Collapse Details" -msgstr "詳細を縮める" +#: includes/locations/class-acf-location-page-type.php:111 +msgid "Posts Page" +msgstr "投稿ページ" -#: core/input.php:131 -msgid "Validation successful" -msgstr "検証に成功" +#: includes/locations/class-acf-location-page-type.php:110 +msgid "Front Page" +msgstr "フロントページ" -#: core/input.php:132 -msgid "Validation failed" -msgstr "検証に失敗" +#: includes/locations/class-acf-location-page-type.php:22 +msgid "Page Type" +msgstr "ページタイプ" -#: core/input.php:133 -msgid "1 field requires attention" -msgstr "注意が必要なフィールドが 1 個あります" +#: includes/locations/class-acf-location-current-user.php:73 +msgid "Viewing back end" +msgstr "バックエンドで表示" -#: core/input.php:134 -#, php-format -msgid "%d fields require attention" -msgstr "注意が必要なフィールドが %d 個あります" +#: includes/locations/class-acf-location-current-user.php:72 +msgid "Viewing front end" +msgstr "フロントエンドで表示" -#: core/input.php:135 -msgid "Restricted" -msgstr "制限されています" +#: includes/locations/class-acf-location-current-user.php:71 +msgid "Logged in" +msgstr "ログイン済み" -#: core/input.php:533 -#, php-format +#: 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:365 msgid "%s value is required" msgstr "%s の値は必須です" -#: fields/checkbox.php:36 fields/taxonomy.php:752 -msgid "Checkbox" -msgstr "チェックボックス" - -#: fields/checkbox.php:144 -msgid "Toggle All" -msgstr "全て 選択 / 解除" - -#: fields/checkbox.php:208 fields/radio.php:193 fields/select.php:388 -msgid "Choices" -msgstr "選択肢" - -#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 -msgid "Enter each choice on a new line." -msgstr "選択肢を改行で区切って入力してください。" - -#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 -msgid "For more control, you may specify both a value and label like this:" -msgstr "下記のように記述すると、値とラベルの両方を制御することができます:" - -#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 -msgid "red : Red" -msgstr "red : 赤" - -#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150 -#: fields/radio.php:222 fields/select.php:397 fields/text.php:148 fields/textarea.php:145 -#: fields/true_false.php:115 fields/url.php:117 fields/wysiwyg.php:345 -msgid "Default Value" -msgstr "デフォルト値" - -#: fields/checkbox.php:218 fields/select.php:398 -msgid "Enter each default value on a new line" -msgstr "デフォルト値を入力する" - -#: fields/checkbox.php:232 fields/radio.php:237 -msgid "Vertical" -msgstr "垂直" - -#: fields/checkbox.php:233 fields/radio.php:238 -msgid "Horizontal" -msgstr "水平" - -#: fields/checkbox.php:240 -msgid "Toggle" -msgstr "トグル" - -#: fields/checkbox.php:241 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "すべての選択肢をチェックするためのチェックボックスを先頭に追加する" - -#: fields/color_picker.php:36 -msgid "Color Picker" -msgstr "カラーピッカー" - -#: fields/color_picker.php:94 -msgid "Clear" -msgstr "クリア" - -#: fields/color_picker.php:95 -msgid "Default" -msgstr "デフォルト" - -#: fields/color_picker.php:96 -msgid "Select Color" -msgstr "色を選択" - -#: fields/date_picker.php:36 -msgid "Date Picker" -msgstr "デイトピッカー" - -#: fields/date_picker.php:72 -msgid "Done" -msgstr "完了" - -#: fields/date_picker.php:73 -msgid "Today" -msgstr "本日" - -#: fields/date_picker.php:76 -msgid "Show a different month" -msgstr "別の月を表示する" - -#: fields/date_picker.php:149 -msgid "Display Format" -msgstr "表示フォーマット" - -#: fields/date_picker.php:150 -msgid "The format displayed when editing a post" -msgstr "投稿編集中に表示されるフォーマット" - -#: fields/date_picker.php:164 -msgid "Return format" -msgstr "返り値" - -#: fields/date_picker.php:165 -msgid "The format returned via template functions" -msgstr "テンプレート関数で返されるフォーマット" - -#: fields/date_picker.php:180 -msgid "Week Starts On" -msgstr "週の始まり" - -#: fields/email.php:36 -msgid "Email" -msgstr "メール" - -#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 -#: fields/textarea.php:146 fields/url.php:118 fields/wysiwyg.php:346 -msgid "Appears when creating a new post" -msgstr "新規投稿を作成時に表示されます" - -#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 -#: fields/textarea.php:154 fields/url.php:126 -msgid "Placeholder Text" -msgstr "プレースホルダーのテキスト" - -#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 -#: fields/textarea.php:155 fields/url.php:127 -msgid "Appears within the input" -msgstr "入力欄に表示されます" - -#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166 -msgid "Prepend" -msgstr "先頭に追加" - -#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167 -msgid "Appears before the input" -msgstr "入力欄の先頭に表示されます" - -#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175 -msgid "Append" -msgstr "末尾に追加" - -#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176 -msgid "Appears after the input" -msgstr "入力欄の末尾に表示されます" - -#: fields/file.php:36 -msgid "File" -msgstr "ファイル" - -#: fields/file.php:47 -msgid "Edit File" -msgstr "ファイルを編集する" - -#: fields/file.php:48 -msgid "Update File" -msgstr "ファイルを更新する" - -#: fields/file.php:49 pro/fields/gallery.php:55 -msgid "uploaded to this post" -msgstr "この投稿にアップロードされる" - -#: fields/file.php:142 -msgid "File Name" -msgstr "ファイルネーム" - -#: fields/file.php:146 -msgid "File Size" -msgstr "ファイルサイズ" - -#: fields/file.php:169 -msgid "No File selected" -msgstr "ファイルが選択されていません" - -#: fields/file.php:169 -msgid "Add File" -msgstr "ファイルを追加する" - -#: fields/file.php:214 fields/image.php:195 fields/taxonomy.php:821 -msgid "Return Value" -msgstr "返り値" - -#: fields/file.php:215 fields/image.php:196 -msgid "Specify the returned value on front end" -msgstr "フロントエンドへの返り値を指定してください" - -#: fields/file.php:220 -msgid "File Array" -msgstr "ファイル 配列" - -#: fields/file.php:221 -msgid "File URL" -msgstr "ファイル URL" - -#: fields/file.php:222 -msgid "File ID" -msgstr "ファイル ID" - -#: fields/file.php:229 fields/image.php:220 pro/fields/gallery.php:647 -msgid "Library" -msgstr "ライブラリ" - -#: fields/file.php:230 fields/image.php:221 pro/fields/gallery.php:648 -msgid "Limit the media library choice" -msgstr "制限するメディアライブラリを選択" - -#: fields/file.php:236 fields/image.php:227 pro/fields/gallery.php:654 -msgid "Uploaded to post" -msgstr "投稿にアップロードされる" - -#: fields/file.php:243 fields/image.php:234 pro/fields/gallery.php:661 -msgid "Minimum" -msgstr "最小" - -#: fields/file.php:244 fields/file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "アップロード可能なファイルを制限" - -#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 -#: pro/fields/gallery.php:684 pro/fields/gallery.php:717 -msgid "File size" -msgstr "ファイルサイズ" - -#: fields/file.php:254 fields/image.php:267 pro/fields/gallery.php:694 -msgid "Maximum" -msgstr "最大" - -#: fields/file.php:265 fields/image.php:300 pro/fields/gallery.php:727 -msgid "Allowed file types" -msgstr "許可するファイルタイプ" - -#: fields/file.php:266 fields/image.php:301 pro/fields/gallery.php:728 -msgid "Comma separated list. Leave blank for all types" -msgstr "カンマ区切りのリストで入力。全てのタイプを許可する場合は空白のままで" - -#: fields/google-map.php:36 -msgid "Google Map" -msgstr "Googleマップ" - -#: fields/google-map.php:51 -msgid "Locating" -msgstr "場所" - -#: fields/google-map.php:52 -msgid "Sorry, this browser does not support geolocation" -msgstr "ごめんなさい、このブラウザーはgeolocationに対応していません" - -#: fields/google-map.php:135 -msgid "Clear location" -msgstr "位置情報をクリア" - -#: fields/google-map.php:140 -msgid "Find current location" -msgstr "現在の位置情報を検索" - -#: fields/google-map.php:141 -msgid "Search for address..." -msgstr "住所で検索..." - -#: fields/google-map.php:173 fields/google-map.php:184 -msgid "Center" -msgstr "センター" - -#: fields/google-map.php:174 fields/google-map.php:185 -msgid "Center the initial map" -msgstr "マップ初期状態のセンター" - -#: fields/google-map.php:198 -msgid "Zoom" -msgstr "ズーム" - -#: fields/google-map.php:199 -msgid "Set the initial zoom level" -msgstr "マップ初期状態のズームレベル" - -#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262 -#: pro/fields/gallery.php:673 pro/fields/gallery.php:706 -msgid "Height" -msgstr "高さ" - -#: fields/google-map.php:209 -msgid "Customise the map height" -msgstr "マップの高さを調整" - -#: fields/image.php:36 -msgid "Image" -msgstr "画像" - -#: fields/image.php:51 -msgid "Select Image" -msgstr "画像を選択する" - -#: fields/image.php:52 pro/fields/gallery.php:53 -msgid "Edit Image" -msgstr "画像を編集する" - -#: fields/image.php:53 pro/fields/gallery.php:54 -msgid "Update Image" -msgstr "画像を更新する" - -#: fields/image.php:54 -msgid "Uploaded to this post" -msgstr "この投稿にアップロード済み" - -#: fields/image.php:55 -msgid "All images" -msgstr "全ての画像" - -#: fields/image.php:147 -msgid "No image selected" -msgstr "画像が選択されていません" - -#: fields/image.php:147 -msgid "Add Image" -msgstr "画像を追加する" - -#: fields/image.php:201 -msgid "Image Array" -msgstr "画像 配列" - -#: fields/image.php:202 -msgid "Image URL" -msgstr "画像 URL" - -#: fields/image.php:203 -msgid "Image ID" -msgstr "画像 ID" - -#: fields/image.php:210 pro/fields/gallery.php:637 -msgid "Preview Size" -msgstr "プレビューサイズ" - -#: fields/image.php:211 pro/fields/gallery.php:638 -msgid "Shown when entering data" -msgstr "投稿編集中に表示されます" - -#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695 -msgid "Restrict which images can be uploaded" -msgstr "アップロード可能な画像を制限" - -#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665 -#: pro/fields/gallery.php:698 -msgid "Width" -msgstr "幅" - -#: fields/message.php:36 fields/message.php:103 fields/true_false.php:106 -msgid "Message" -msgstr "メッセージ" - -#: fields/message.php:104 -msgid "Please note that all text will first be passed through the wp function " -msgstr "すべてのテキストが最初にWordPressの関数を通過しますのでご注意ください" - -#: fields/message.php:112 -msgid "Escape HTML" -msgstr "HTMLをエスケープ" - -#: fields/message.php:113 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "HTMLマークアップのコードとして表示を許可" - -#: fields/number.php:36 -msgid "Number" -msgstr "数値" - -#: fields/number.php:186 -msgid "Minimum Value" -msgstr "最小値" - -#: fields/number.php:195 -msgid "Maximum Value" -msgstr "最大値" - -#: fields/number.php:204 -msgid "Step Size" -msgstr "ステップサイズ" - -#: fields/number.php:242 -msgid "Value must be a number" -msgstr "値は数値でなければいけません" - -#: fields/number.php:260 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "数値は %d 以上でなければいけません" - -#: fields/number.php:268 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "数値は %d 以下でなければいけません" - -#: fields/oembed.php:36 -msgid "oEmbed" -msgstr "oEmbed" - -#: fields/oembed.php:199 -msgid "Enter URL" -msgstr "URLを入力" - -#: fields/oembed.php:212 -msgid "No embed found for the given URL." -msgstr "指定されたURLには埋め込む内容がありません." - -#: fields/oembed.php:248 fields/oembed.php:259 -msgid "Embed Size" -msgstr "埋め込みサイズ" - -#: fields/page_link.php:206 -msgid "Archives" -msgstr "アーカイブ" - -#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690 -msgid "Filter by Post Type" -msgstr "投稿タイプで絞り込み" - -#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698 -msgid "All post types" -msgstr "全ての投稿タイプ" - -#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704 -msgid "Filter by Taxonomy" -msgstr "タクソノミーで絞り込み" - -#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712 -msgid "All taxonomies" -msgstr "全てのタクソノミー" - -#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765 -#: fields/user.php:452 -msgid "Allow Null?" -msgstr "空の値を許可するか?" - -#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466 -msgid "Select multiple values?" -msgstr "複数の値を選択できるか?" - -#: fields/password.php:36 -msgid "Password" -msgstr "パスワード" - -#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769 -msgid "Post Object" -msgstr "投稿オブジェクト" - -#: fields/post_object.php:457 fields/relationship.php:764 -msgid "Return Format" -msgstr "返り値のフォーマット" - -#: fields/post_object.php:463 fields/relationship.php:770 -msgid "Post ID" -msgstr "投稿 ID" - -#: fields/radio.php:36 -msgid "Radio Button" -msgstr "ラジオボタン" - -#: fields/radio.php:202 -msgid "Other" -msgstr "その他" - -#: fields/radio.php:206 -msgid "Add 'other' choice to allow for custom values" -msgstr "選択肢「その他」を追加する" - -#: fields/radio.php:212 -msgid "Save Other" -msgstr "その他を保存" - -#: fields/radio.php:216 -msgid "Save 'other' values to the field's choices" -msgstr "「その他」の値を選択肢に追加する" - -#: fields/relationship.php:36 -msgid "Relationship" +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "このフィールドグループの表示条件" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "条件判定" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "と" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "ローカル JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "フィールドを複製" + +#: includes/admin/views/html-notice-upgrade.php:31 +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "" +"また、すべてのプレミアムアドオン ( %s) が最新版に更新されていることを確認して" +"ください。" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "" +"このバージョンにはデータベースの改善が含まれており、アップグレードが必要で" +"す。" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "%1$s v%2$sへの更新をありがとうございます。" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "データベースのアップグレードが必要" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "オプションページ" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "ギャラリー" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "柔軟なコンテンツ" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "繰り返し" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "すべてのツールに戻る" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "編集画面で非表示にする項目を選択してください。" + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "画面上で非表示" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "トラックバック送信" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "タグ" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "カテゴリー" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "ページ属性" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "フォーマット" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "投稿者" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "スラッグ" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "リビジョン" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "コメント" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "ディスカッション" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "抜粋" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "コンテンツエディター" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "パーマリンク" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "フィールドグループリストに表示" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "下位のフィールドグループを最初に表示" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "注文番号" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "フィールドの下" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "ラベルの下" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "手順の配置" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "ラベルの配置" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "サイド" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "通常 (コンテンツの後)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "高 (タイトルの後)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "位置" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "シームレス (メタボックスなし)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "標準 (WP メタボックス)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "スタイル" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "タイプ" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "キー" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "順序" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "フィールドを閉じる" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "ID" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "クラス" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "横幅" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "ラッパー属性" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "投稿者向けの手順。データ送信時に表示されます" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "手順" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "フィールドタイプ" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "スペースは不可、アンダースコアとダッシュは使用可能" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "フィールド名" + +#: includes/admin/views/field-group-field.php:122 +msgid "This is the name which will appear on the EDIT page" +msgstr "これは、編集ページに表示される名前です" + +#: includes/admin/views/field-group-field.php:121 +msgid "Field Label" +msgstr "フィールドラベル" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "削除" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "フィールドを削除" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "移動" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "フィールドを別のグループへ移動" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "フィールドを複製" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "フィールドを編集" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "ドラッグして順序を変更" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "このフィールドグループを表示する条件" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "利用可能な更新はありません。" + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "" +"データベースのアップグレードが完了しました。変更点を表示" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "アップグレードタスクを読み込んでいます..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "アップグレードに失敗しました。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "アップグレードが完了しました。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "データをバージョン%sへアップグレード中" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "アップグレードするサイトを1つ以上選択してください。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"データベースのアップグレードが完了しました。ネットワークダッ" +"シュボードに戻る" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "サイトは最新状態です" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "%1$s から %2$s へのデータベースのアップグレードが必要です" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "サイト" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "サイトをアップグレード" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "ルールグループを追加" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "ルール" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "コピーしました" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "クリップボードにコピー" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"以下のコードは選択したフィールドグループのローカルバージョンとして登録に使え" +"ます。ローカルフィールドグループは読み込み時間の短縮やバージョンコントロー" +"ル、動的なフィールド/設定など多くの利点があります。以下のコードをテーマの " +"functions.php や外部ファイルにコピー & ペーストしてください。" + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "フィールドグループを選択" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "%s個のフィールドグループをエクスポートしました。" + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "%s個のフィールドグループをインポートしました" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "空ファイルのインポート" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "不正なファイルの種類" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "ファイルアップロードエラー。もう一度お試しください" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "フィールドグループをインポート" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "同期" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "%sを選択" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "複製" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "この項目を複製" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "説明" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "同期が利用できます" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s件のフィールドグループを同期しました。" + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s件のフィールドグループを複製しました。" + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "使用中 (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "データベースをアップグレード" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "カスタムフィールド" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "フィールドを移動" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "このフィールドの移動先を選択してください" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "ウィンドウを閉じる" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "%1$s フィールドは現在 %2$s フィールドグループにあります" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "移動が完了しました。" + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "有効" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "フィールドキー" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "設定" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "所在地" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "コピー" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(このフィールド)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "チェック済み" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "カスタムフィールドを移動" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "利用可能な切り替えフィールドがありません" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "フィールドグループのタイトルは必須です" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" +msgstr "変更を保存するまでこのフィールドは移動できません" + +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "\"field_\" という文字列はフィールド名の先頭に使うことはできません" + +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "フィールドグループ下書きを更新しました。" + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "フィールドグループを公開予約しました。" + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "フィールドグループを送信しました。" + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "フィールドグループを保存しました。" + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "フィールドグループを公開しました。" + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "フィールドグループを削除しました。" + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "フィールドグループを更新しました。" + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "固定ページ" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "投稿" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" msgstr "関連" -#: fields/relationship.php:48 -msgid "Minimum values reached ( {min} values )" -msgstr "最小値 ( {min} ) に達しました" +#: includes/fields.php:356 +msgid "Choice" +msgstr "選択" -#: fields/relationship.php:49 -msgid "Maximum values reached ( {max} values )" -msgstr "最大値( {max} ) に達しました" +#: includes/fields.php:354 +msgid "Basic" +msgstr "基本" -#: fields/relationship.php:50 -msgid "Loading" -msgstr "読み込み中" +#: includes/fields.php:313 +msgid "Unknown" +msgstr "不明" -#: fields/relationship.php:51 -msgid "No matches found" -msgstr "一致する項目がありません" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "フィールドタイプが存在しません" -#: fields/relationship.php:571 -msgid "Search..." -msgstr "検索..." +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "スパムを検出しました" -#: fields/relationship.php:580 -msgid "Select post type" -msgstr "投稿タイプを選択" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "投稿を更新しました" -#: fields/relationship.php:593 -msgid "Select taxonomy" -msgstr "タクソノミーを選択" +#: includes/forms/form-front.php:106 +msgid "Update" +msgstr "更新" -#: fields/relationship.php:723 -msgid "Search" -msgstr "検索" +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "メールを確認" -#: fields/relationship.php:725 fields/taxonomy.php:36 fields/taxonomy.php:735 -msgid "Taxonomy" -msgstr "タクソノミー" +#: includes/fields.php:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "コンテンツ" -#: fields/relationship.php:732 -msgid "Elements" -msgstr "要素" +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "タイトル" -#: fields/relationship.php:733 -msgid "Selected elements will be displayed in each result" -msgstr "選択した要素が表示されます" +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "フィールドグループを編集" -#: fields/relationship.php:744 -msgid "Minimum posts" -msgstr "最小投稿数" +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "選択範囲が以下より小さい場合" -#: fields/relationship.php:753 -msgid "Maximum posts" -msgstr "最大投稿数" +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "選択範囲が以下より大きい場合" -#: fields/select.php:36 fields/select.php:174 fields/taxonomy.php:757 -msgid "Select" -msgstr "セレクトボックス" +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "値が以下より小さい場合" -#: fields/select.php:434 -msgid "Stylised UI" -msgstr "スタイリッシュなUI" +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "値が以下より大きい場合" -#: fields/select.php:448 -msgid "Use AJAX to lazy load choices?" -msgstr "選択肢をAJAXで遅延ロードするか?" +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "以下の値が含まれる場合" -#: fields/tab.php:36 -msgid "Tab" -msgstr "タブ" +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "値が以下のパターンに一致する場合" -#: fields/tab.php:128 -msgid "Warning" -msgstr "注意" +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 assets/build/js/acf-input.js:903 +#: assets/build/js/acf-input.js:1116 +msgid "Value is not equal to" +msgstr "値が以下に等しくない場合" -#: fields/tab.php:133 -msgid "" -"The tab field will display incorrectly when added to a Table style repeater field or flexible content " -"field layout" -msgstr "" -"このタブは、テーブルスタイルの繰り返しフィールドか柔軟コンテンツフィールドが追加された場合、正しく表示さ" -"れません" +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "値が以下に等しい場合" -#: fields/tab.php:146 -msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together." -msgstr "\"タブ\" を使うとフィールドのグループ化によって編集画面をより整理できます。" +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "値がない場合" -#: fields/tab.php:148 -msgid "" -"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." -msgstr "" -"この\"タブ\" の後に続く(または別の \"タブ\" が定義されるまでの)全てのフィールドは、このフィールドのラ" -"ベルがタブの見出しとなりグループ化されます。" +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "任意の値あり" -#: fields/tab.php:155 -msgid "Placement" -msgstr "タブの配置" +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "キャンセル" -#: fields/tab.php:167 -msgid "End-point" -msgstr "エンドポイント" +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "本当に実行しますか ?" -#: fields/tab.php:168 -msgid "Use this field as an end-point and start a new group of tabs" -msgstr "このフィールドをエンドポイントとして使用し、新規のタブグループを開始する" +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d個のフィールドで確認が必要です" -#: fields/taxonomy.php:565 -#, php-format -msgid "Add new %s " -msgstr "新しい %s を追加" +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1つのフィールドで確認が必要です" -#: fields/taxonomy.php:704 -msgid "None" -msgstr "無" +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "検証失敗" -#: fields/taxonomy.php:736 -msgid "Select the taxonomy to be displayed" -msgstr "表示されるタクソノミーを選択" +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "検証成功" -#: fields/taxonomy.php:745 -msgid "Appearance" -msgstr "外観" +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "制限" -#: fields/taxonomy.php:746 -msgid "Select the appearance of this field" -msgstr "このフィールドの外観を選択" +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "詳細を折りたたむ" -#: fields/taxonomy.php:751 -msgid "Multiple Values" -msgstr "複数値" +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "詳細を展開" -#: fields/taxonomy.php:753 -msgid "Multi Select" -msgstr "複数選択" +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "この投稿へのアップロード" -#: fields/taxonomy.php:755 -msgid "Single Value" -msgstr "単一値" +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "更新" -#: fields/taxonomy.php:756 -msgid "Radio Buttons" -msgstr "ラジオボタン" +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "編集" -#: fields/taxonomy.php:779 -msgid "Create Terms" -msgstr "タームの作成" +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "このページから移動した場合、変更は失われます" -#: fields/taxonomy.php:780 -msgid "Allow new terms to be created whilst editing" -msgstr "編集中の新規ターム作成を許可" +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "ファイル形式は %s である必要があります。" -#: fields/taxonomy.php:793 -msgid "Save Terms" -msgstr "タームの保存" +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "または" -#: fields/taxonomy.php:794 -msgid "Connect selected terms to the post" -msgstr "選択されたタームを投稿に関連付ける" +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "ファイルサイズは %s 以下である必要があります。" -#: fields/taxonomy.php:807 -msgid "Load Terms" -msgstr "タームの読み込み" +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "ファイルサイズは %s 以上である必要があります。" -#: fields/taxonomy.php:808 -msgid "Load value from posts terms" -msgstr "投稿に関連付けられたタームを読み込む" +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "画像の高さは %dpx 以下である必要があります。" -#: fields/taxonomy.php:826 -msgid "Term Object" -msgstr "タームオブジェクト" +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "画像の高さは %dpx 以上である必要があります。" -#: fields/taxonomy.php:827 -msgid "Term ID" -msgstr "ターム ID" +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "画像の幅は %dpx 以下である必要があります。" -#: fields/taxonomy.php:886 -#, php-format -msgid "User unable to add new %s" -msgstr "新規の %s を追加できないユーザーです" +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "画像の幅は %dpx 以上である必要があります。" -#: fields/taxonomy.php:899 -#, php-format -msgid "%s already exists" -msgstr "%s は既に存在しています" +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(タイトルなし)" -#: fields/taxonomy.php:940 -#, php-format -msgid "%s added" -msgstr "%s が追加されました" +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "フルサイズ" -#: fields/taxonomy.php:985 -msgid "Add" -msgstr "追加" +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "大" -#: fields/text.php:36 -msgid "Text" -msgstr "テキスト" +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "中" -#: fields/text.php:184 fields/textarea.php:163 -msgid "Character Limit" -msgstr "制限文字数" +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "サムネイル" -#: fields/text.php:185 fields/textarea.php:164 -msgid "Leave blank for no limit" -msgstr "制限しない場合は空白のままで" +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(ラベルなし)" -#: fields/textarea.php:36 +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "テキストエリアの高さを設定" + +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "行" + +#: includes/fields/class-acf-field-textarea.php:25 msgid "Text Area" msgstr "テキストエリア" -#: fields/textarea.php:172 -msgid "Rows" -msgstr "行数" +#: includes/fields/class-acf-field-checkbox.php:447 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "追加のチェックボックスを先頭に追加して、すべての選択肢を切り替えます" -#: fields/textarea.php:173 -msgid "Sets the textarea height" -msgstr "テキストエリアの高さを指定" +#: includes/fields/class-acf-field-checkbox.php:409 +msgid "Save 'custom' values to the field's choices" +msgstr "フィールドの選択肢として「カスタム」を保存する" -#: fields/textarea.php:182 -msgid "New Lines" -msgstr "改行" +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "「カスタム」値の追加を許可する" -#: fields/textarea.php:183 -msgid "Controls how new lines are rendered" -msgstr "改行をどのように表示するか制御" +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "新規選択肢を追加" -#: fields/textarea.php:187 -msgid "Automatically add paragraphs" -msgstr "自動的に段落に変換" +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "すべて切り替え" -#: fields/textarea.php:188 -msgid "Automatically add <br>" -msgstr "自動的に<br>に変換" +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "アーカイブ URL を許可" -#: fields/textarea.php:189 -msgid "No Formatting" -msgstr "なにもしない" +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "アーカイブ" -#: fields/true_false.php:36 -msgid "True / False" -msgstr "真 / 偽" +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "ページリンク" -#: fields/true_false.php:107 -msgid "eg. Show extra content" -msgstr "例:追加コンテンツを表示する" +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "追加" -#: fields/url.php:36 +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "名前" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s を追加しました" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s はすでに存在しています" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "ユーザーが新規 %s を追加できません" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ターム ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "タームオブジェクト" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "投稿タームから値を読み込む" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "タームを読み込む" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "選択したタームを投稿に関連付ける" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "タームを保存" + +#: includes/fields/class-acf-field-taxonomy.php:718 +msgid "Allow new terms to be created whilst editing" +msgstr "編集中に新しいタームを作成できるようにする" + +#: includes/fields/class-acf-field-taxonomy.php:717 +msgid "Create Terms" +msgstr "タームを追加" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "ラジオボタン" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "単一値" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "複数選択" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "チェックボックス" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "複数値" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "このフィールドの外観を選択" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "外観" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "表示するタクソノミーを選択" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +msgid "Value must be equal to or lower than %d" +msgstr "値は%d文字以下である必要があります" + +#: includes/fields/class-acf-field-number.php:256 +msgid "Value must be equal to or higher than %d" +msgstr "値は%d文字以上である必要があります" + +#: includes/fields/class-acf-field-number.php:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "フィールドの選択肢として「その他」を保存する" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "「その他」の選択肢を追加してカスタム値を許可" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "ラジオボタン" + +#: includes/fields/class-acf-field-accordion.php:105 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"前のアコーディオンを停止するエンドポイントを定義します。このアコーディオンは" +"表示されません。" + +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "" +"他のアコーディオンを閉じずにこのアコーディオンを開くことができるようにする。" + +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "マルチ展開" + +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "このアコーディオンをページの読み込み時に開いた状態で表示します。" + +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "受付中" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "アコーディオン" + +#: 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:217 +msgid "File ID" +msgstr "ファイル ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "ファイルの URL" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "ファイル配列" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "ファイルを追加" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "ファイルが選択されていません" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "ファイル名" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "ファイルを更新" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "ファイルを編集" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "戻り値を指定します" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "AJAX を使用して選択肢を遅延読み込みしますか ?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "新しい行に各デフォルト値を入力してください" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "選択" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "読み込み失敗" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "検索中…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "結果をさらに読み込み中…" + +#: includes/fields/class-acf-field-select.php:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "%d項目のみ選択可能です" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "1項目のみ選択可能です" + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "%d文字を削除してください" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "1文字削除してください" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "%d文字以上を入力してください" + +#: includes/fields/class-acf-field-select.php:110 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "1つ以上の文字を入力してください" + +#: includes/fields/class-acf-field-select.php:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "一致する項目がありません" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "選択" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ユーザー ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "ユーザーオブジェクト" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "ユーザー配列" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "すべてのユーザー権限グループ" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "権限グループで絞り込む" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "色を選択" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "デフォルト" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "選択" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "完了" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "現在" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "タイムゾーン" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "マイクロ秒" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "ミリ秒" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "秒" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "分" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "時" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "時間" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "エンドポイント" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "左揃え" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "上揃え" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "配置" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "タブ" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "値は有効な URL である必要があります" + +#: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "URL" -#: fields/url.php:160 -msgid "Value must be a valid URL" -msgstr "値はURL形式でなければいけません" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "リンク URL" -#: fields/user.php:437 -msgid "Filter by role" -msgstr "ロールでフィルタする" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "リンク配列" -#: fields/user.php:445 -msgid "All user roles" -msgstr "全ての権限グループ" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "新しいウィンドウまたはタブで開く" -#: fields/wysiwyg.php:37 -msgid "Wysiwyg Editor" -msgstr "Wysiwyg エディタ" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "リンクを選択" -#: fields/wysiwyg.php:297 -msgid "Visual" -msgstr "ビジュアル" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "リンク" -#: fields/wysiwyg.php:298 +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "メール" + +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "ステップサイズ" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "最大値" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "最小値" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "範囲" + +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "両方 (配列)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "ラベル" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "値" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "垂直" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "水平" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : Red" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "下記のように記述すると、値とラベルの両方を制御することができます:" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "選択肢を改行で区切って入力してください。" + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "選択肢" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "ボタングループ" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "複数値を選択可能にしますか ?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "空の値を許可しますか ?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "親" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "フィールドがクリックされるまで TinyMCE は初期化されません" + +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "初期化を遅延させますか ?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "メディアアップロードボタンを表示しますか ?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "ツールバー" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "テキストのみ" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "ビジュアルのみ" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "ビジュアルとテキスト" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "タブ" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "クリックして TinyMCE を初期化" + +#: includes/fields/class-acf-field-wysiwyg.php:283 msgctxt "Name for the Text editor tab (formerly HTML)" msgid "Text" msgstr "テキスト" -#: fields/wysiwyg.php:354 -msgid "Tabs" -msgstr "タブ" +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "ビジュアル" -#: fields/wysiwyg.php:359 -msgid "Visual & Text" -msgstr "ビジュアル&テキスト" +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "WYSIWYG エディター" -#: fields/wysiwyg.php:360 -msgid "Visual Only" -msgstr "ビジュアルのみ" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "値は%d文字以内である必要があります" -#: fields/wysiwyg.php:361 -msgid "Text Only" -msgstr "テキストのみ" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "制限しない場合は空白にする" -#: fields/wysiwyg.php:368 -msgid "Toolbar" -msgstr "ツールバー" +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "文字数制限" -#: fields/wysiwyg.php:378 -msgid "Show Media Upload Buttons?" -msgstr "メディアアップロードボタンを表示するか?" +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "入力内容の後に表示" -#: forms/post.php:297 pro/admin/options-page.php:373 -msgid "Edit field group" -msgstr "フィールドグループを編集" +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "追加" -#: pro/acf-pro.php:24 -msgid "Advanced Custom Fields PRO" -msgstr "Advanced Custom Fields PRO" +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "入力内容の前に表示" -#: pro/acf-pro.php:175 -msgid "Flexible Content requires at least 1 layout" -msgstr "柔軟コンテンツは少なくとも1個のレイアウトが必要です" +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "先頭に追加" -#: pro/admin/options-page.php:48 -msgid "Options Page" -msgstr "オプションページ" +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "入力内容の中に表示" -#: pro/admin/options-page.php:83 -msgid "No options pages exist" -msgstr "オプションページはありません" +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "プレースホルダーテキスト" -#: pro/admin/options-page.php:298 -msgid "Options Updated" -msgstr "オプションを更新しました" +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +msgid "Appears when creating a new post" +msgstr "新規投稿作成時に表示" -#: pro/admin/options-page.php:304 -msgid "No Custom Field Groups found for this options page. Create a Custom Field Group" +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "テキスト" + +#: includes/fields/class-acf-field-relationship.php:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "投稿 ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "投稿オブジェクト" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "最大投稿" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "最小投稿" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "アイキャッチ画像" + +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "選択した要素がそれぞれの結果に表示されます" + +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "要素" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "タクソノミー" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "投稿タイプ" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "フィルター" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "すべてのタクソノミー" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "タクソノミーで絞り込み" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "すべての投稿タイプ" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "投稿タイプでフィルター" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "検索…" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "タクソノミーを選択" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "投稿タイプを選択" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "一致する項目がありません" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "読み込み中" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "最大値 ({max}) に達しました" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "関係" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "カンマ区切りのリスト。すべてのタイプを許可する場合は空白のままにします" + +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "許可されたファイルの種類" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "最大" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "ファイルサイズ" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "アップロード可能な画像を制限" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "最小" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "投稿にアップロード" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "メディアライブラリの選択肢を制限" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "ライブラリ" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "プレビューサイズ" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "画像 ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "画像 URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "画像配列" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "フロントエンドへの返り値を指定してください" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "返り値" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "画像を追加" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "画像が選択されていません" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "削除" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "編集" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "すべての画像" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "画像を更新" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "画像を編集" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "画像を選択" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "画像" + +#: includes/fields/class-acf-field-message.php:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "HTML マークアップのコードとして表示を許可" + +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "HTML をエスケープ" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "書式設定なし" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "自動的に <br> を追加" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "自動的に段落追加する" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "改行をどのように表示するか制御" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "改行" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "週の始まり" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "値を保存するときに使用される形式" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "書式を保存" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Wk" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "前へ" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "次へ" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "今日" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "幅" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "埋め込みサイズ" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "無効化時に表示されるテキスト" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "無効化時のテキスト" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "有効時に表示するテキスト" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "アクティブ時のテキスト" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" msgstr "" -"このオプションページにカスタムフィールドグループがありません. カスタムフィールドグループ" -"を作成" -#: pro/admin/settings-updates.php:137 -msgid "Error. Could not connect to update server" -msgstr "エラー 更新サーバーに接続できません" +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "初期値" -#: pro/admin/settings-updates.php:267 pro/admin/settings-updates.php:338 -msgid "Connection Error. Sorry, please try again" -msgstr "接続エラー すみません、もう一度試してみてください" +#: includes/fields/class-acf-field-true_false.php:135 +msgid "Displays text alongside the checkbox" +msgstr "チェックボックスの横にテキストを表示" -#: pro/admin/views/options-page.php:48 -msgid "Publish" -msgstr "公開" +#: includes/fields/class-acf-field-message.php:26 +#: includes/fields/class-acf-field-message.php:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "メッセージ" -#: pro/admin/views/options-page.php:54 -msgid "Save Options" -msgstr "オプションを保存" +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "いいえ" -#: pro/admin/views/settings-updates.php:11 -msgid "Deactivate License" -msgstr "ライセンスのアクティベートを解除" +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "はい" -#: pro/admin/views/settings-updates.php:11 -msgid "Activate License" -msgstr "ライセンスをアクティベート" +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "真/偽" -#: pro/admin/views/settings-updates.php:21 -msgid "License" -msgstr "ライセンス" - -#: pro/admin/views/settings-updates.php:24 -msgid "" -"To unlock updates, please enter your license key below. If you don't have a licence key, please see" -msgstr "" -"アップデートのロックを解除するには、以下にライセンスキーを入力してください。ライセンスキーを持っていない" -"場合は、こちらを参照してください" - -#: pro/admin/views/settings-updates.php:24 -msgid "details & pricing" -msgstr "価格と詳細" - -#: pro/admin/views/settings-updates.php:33 -msgid "License Key" -msgstr "ライセンスキー" - -#: pro/admin/views/settings-updates.php:65 -msgid "Update Information" -msgstr "アップデート情報" - -#: pro/admin/views/settings-updates.php:72 -msgid "Current Version" -msgstr "現在のバージョン" - -#: pro/admin/views/settings-updates.php:80 -msgid "Latest Version" -msgstr "最新のバージョン" - -#: pro/admin/views/settings-updates.php:88 -msgid "Update Available" -msgstr "利用可能なアップデート" - -#: pro/admin/views/settings-updates.php:96 -msgid "Update Plugin" -msgstr "プラグインをアップデート" - -#: pro/admin/views/settings-updates.php:98 -msgid "Please enter your license key above to unlock updates" -msgstr "アップデートのロックを解除するためにライセンスキーを入力してください" - -#: pro/admin/views/settings-updates.php:104 -msgid "Check Again" -msgstr "再確認" - -#: pro/admin/views/settings-updates.php:121 -msgid "Upgrade Notice" -msgstr "アップグレード通知" - -#: pro/api/api-options-page.php:22 pro/api/api-options-page.php:23 -msgid "Options" -msgstr "オプション" - -#: pro/core/updates.php:186 -#, php-format -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/fields/flexible-content.php:36 -msgid "Flexible Content" -msgstr "柔軟コンテンツ" - -#: pro/fields/flexible-content.php:42 pro/fields/repeater.php:43 -msgid "Add Row" -msgstr "行を追加" - -#: pro/fields/flexible-content.php:45 -msgid "layout" -msgstr "レイアウト" - -#: pro/fields/flexible-content.php:46 -msgid "layouts" -msgstr "レイアウト" - -#: pro/fields/flexible-content.php:47 -msgid "remove {layout}?" -msgstr "{layout} を削除しますか?" - -#: pro/fields/flexible-content.php:48 -msgid "This field requires at least {min} {identifier}" -msgstr "このフィールドは{identifier}が最低{min}個は必要です" - -#: pro/fields/flexible-content.php:49 -msgid "This field has a limit of {max} {identifier}" -msgstr "このフィールドは{identifier}が最高{max}個までです" - -#: pro/fields/flexible-content.php:50 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "{identifier}に{label}は最低{min}個必要です" - -#: pro/fields/flexible-content.php:51 -msgid "Maximum {label} limit reached ({max} {identifier})" -msgstr "{label}は最大数に達しました({max} {identifier})" - -#: pro/fields/flexible-content.php:52 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "あと{available}個 {identifier}には {label} を利用できます(最大 {max}個)" - -#: pro/fields/flexible-content.php:53 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "あと{required}個 {identifier}には {label} を利用する必要があります(最小 {max}個)" - -#: pro/fields/flexible-content.php:211 -#, php-format -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "下の \"%s\" ボタンをクリックしてレイアウトの作成を始めてください" - -#: pro/fields/flexible-content.php:369 -msgid "Add layout" -msgstr "レイアウトを追加" - -#: pro/fields/flexible-content.php:372 -msgid "Remove layout" -msgstr "レイアウトを削除" - -#: pro/fields/flexible-content.php:514 -msgid "Reorder Layout" -msgstr "レイアウトを並べ替え" - -#: pro/fields/flexible-content.php:514 -msgid "Reorder" -msgstr "並べ替え" - -#: pro/fields/flexible-content.php:515 -msgid "Delete Layout" -msgstr "レイアウトを削除" - -#: pro/fields/flexible-content.php:516 -msgid "Duplicate Layout" -msgstr "レイアウトを複製" - -#: pro/fields/flexible-content.php:517 -msgid "Add New Layout" -msgstr "新しいレイアウトを追加" - -#: pro/fields/flexible-content.php:561 -msgid "Display" -msgstr "表示" - -#: pro/fields/flexible-content.php:572 pro/fields/repeater.php:399 -msgid "Table" -msgstr "表" - -#: pro/fields/flexible-content.php:573 pro/fields/repeater.php:400 -msgid "Block" -msgstr "ブロック" - -#: pro/fields/flexible-content.php:574 pro/fields/repeater.php:401 +#: includes/fields/class-acf-field-group.php:471 msgid "Row" msgstr "行" -#: pro/fields/flexible-content.php:589 -msgid "Min" -msgstr "最小数" +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "テーブル" -#: pro/fields/flexible-content.php:602 -msgid "Max" -msgstr "最大数" +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "ブロック" -#: pro/fields/flexible-content.php:630 pro/fields/repeater.php:408 -msgid "Button Label" -msgstr "ボタンのラベル" +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "選択したフィールドのレンダリングに使用されるスタイルを指定します" -#: pro/fields/flexible-content.php:639 -msgid "Minimum Layouts" -msgstr "レイアウトの最小数" +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "レイアウト" -#: pro/fields/flexible-content.php:648 -msgid "Maximum Layouts" -msgstr "レイアウトの最大数" - -#: pro/fields/gallery.php:36 -msgid "Gallery" -msgstr "ギャラリー" - -#: pro/fields/gallery.php:52 -msgid "Add Image to Gallery" -msgstr "ギャラリーに画像を追加" - -#: pro/fields/gallery.php:56 -msgid "Maximum selection reached" -msgstr "選択の最大数に到達しました" - -#: pro/fields/gallery.php:335 -msgid "Length" -msgstr "長さ" - -#: pro/fields/gallery.php:355 -msgid "Remove" -msgstr "取り除く" - -#: pro/fields/gallery.php:535 -msgid "Add to gallery" -msgstr "ギャラリーを追加" - -#: pro/fields/gallery.php:539 -msgid "Bulk actions" -msgstr "一括操作" - -#: pro/fields/gallery.php:540 -msgid "Sort by date uploaded" -msgstr "アップロード日で並べ替え" - -#: pro/fields/gallery.php:541 -msgid "Sort by date modified" -msgstr "変更日で並び替え" - -#: pro/fields/gallery.php:542 -msgid "Sort by title" -msgstr "タイトルで並び替え" - -#: pro/fields/gallery.php:543 -msgid "Reverse current order" -msgstr "並び順を逆にする" - -#: pro/fields/gallery.php:561 -msgid "Close" -msgstr "閉じる" - -#: pro/fields/gallery.php:619 -msgid "Minimum Selection" -msgstr "最小選択数" - -#: pro/fields/gallery.php:628 -msgid "Maximum Selection" -msgstr "最大選択数" - -#: pro/fields/gallery.php:809 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s は少なくとも %s個 選択してください" - -#: pro/fields/repeater.php:36 -msgid "Repeater" -msgstr "繰り返しフィールド" - -#: pro/fields/repeater.php:46 -msgid "Minimum rows reached ({min} rows)" -msgstr "最小行数に達しました({min} 行)" - -#: pro/fields/repeater.php:47 -msgid "Maximum rows reached ({max} rows)" -msgstr "最大行数に達しました({max} 行)" - -#: pro/fields/repeater.php:259 -msgid "Drag to reorder" -msgstr "ドラッグして並び替え" - -#: pro/fields/repeater.php:301 -msgid "Add row" -msgstr "行を追加" - -#: pro/fields/repeater.php:302 -msgid "Remove row" -msgstr "行を削除" - -#: pro/fields/repeater.php:350 +#: includes/fields/class-acf-field-group.php:447 msgid "Sub Fields" msgstr "サブフィールド" -#: pro/fields/repeater.php:372 +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "グループ" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "地図の高さをカスタマイズ" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "高さ" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "地図のデフォルトズームレベルを設定" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "ズーム" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "地図のデフォルト中心位置を設定" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "中央" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "住所を検索…" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "現在の場所を検索" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "位置情報をクリア" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "検索" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "テンプレート関数で返されるフォーマット" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "戻り値の形式" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "カスタム:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "投稿編集時に表示される書式" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "ゴミ箱にフィールドが見つかりません" + +#: acf.php:411 +msgid "No Fields found" +msgstr "フィールドが見つかりません" + +#: acf.php:410 +msgid "Search Fields" +msgstr "フィールドを検索" + +#: acf.php:409 +msgid "View Field" +msgstr "フィールドを表示" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "新規フィールド" + +#: acf.php:407 +msgid "Edit Field" +msgstr "フィールドを編集" + +#: acf.php:406 +msgid "Add New Field" +msgstr "新規フィールドを追加" + +#: acf.php:404 +msgid "Field" +msgstr "フィールド" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "フィールド" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "ゴミ箱にフィールドグループが見つかりません" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "フィールドグループが見つかりません" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "フィールドグループを検索" + +#: acf.php:375 +msgid "View Field Group" +msgstr "フィールドグループを表示" + +#: acf.php:374 +msgid "New Field Group" +msgstr "新規フィールドグループ" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "フィールドグループを編集" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "新規フィールドグループを追加" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "新規追加" + +#: acf.php:370 +msgid "Field Group" +msgstr "フィールドグループ" + +#: acf.php:369 includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "フィールドグループ" + +#. Description of the plugin +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"パワフル、プロフェッショナル、直感的なフィールドで WordPress をカスタマイズ。" + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +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:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "再確認" + +#: pro/updates.php:561 +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:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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:815 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "表示" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "行を追加" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "レイアウト" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "レイアウト" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "{identifier}に{label}は最低{min}個必要です" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "" +"あと{available}個 {identifier}には {label} を利用できます(最大 {max}個)" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "" +"あと{required}個 {identifier}には {label} を利用する必要があります(最小 " +"{max}個)" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "柔軟コンテンツは少なくとも1個のレイアウトが必要です" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "下の \"%s\" ボタンをクリックしてレイアウトの作成を始めてください" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "レイアウトを追加" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "レイアウトを削除" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "レイアウトを並べ替え" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "並べ替え" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "レイアウトを削除" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "レイアウトを複製" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "新しいレイアウトを追加" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "最小数" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "最大数" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "ボタンのラベル" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "レイアウトの最小数" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "レイアウトの最大数" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "ギャラリーに画像を追加" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "選択の最大数に到達しました" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "長さ" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "ギャラリーを追加" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "一括操作" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "アップロード日で並べ替え" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "変更日で並び替え" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "タイトルで並び替え" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "並び順を逆にする" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "閉じる" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "最小選択数" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "最大選択数" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "最小行数に達しました({min} 行)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "最大行数に達しました({max} 行)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "最小行数" -#: pro/fields/repeater.php:382 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "最大行数" -#. Plugin Name of the plugin/theme -msgid "Advanced Custom Fields Pro" -msgstr "Advanced Custom Fields Pro" +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" -#. Plugin URI of the plugin/theme -msgid "http://www.advancedcustomfields.com/" -msgstr "http://www.advancedcustomfields.com/" +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" -#. Description of the plugin/theme -msgid "Customise WordPress with powerful, professional and intuitive fields." -msgstr "強力でプロフェッショナル、そして直感的なフィールドで WordPress をカスタマイズ。" +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" -#. Author of the plugin/theme -msgid "elliot condon" -msgstr "エリオット・コンドン" +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" -#. Author URI of the plugin/theme -msgid "http://www.elliotcondon.com/" -msgstr "http://www.elliotcondon.com/" +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "行を追加" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "行を削除" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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:41 +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:76 +msgid "Update Information" +msgstr "アップデート情報" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "現在のバージョン" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "最新のバージョン" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "利用可能なアップデート" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "アップデートのロックを解除するためにライセンスキーを入力してください" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "プラグインをアップデート" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "更新履歴" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "アップグレード通知" + +#~ msgid "Gallery Field" +#~ msgstr "ギャラリーフィールド" + +#~ msgid "Flexible Content Field" +#~ msgstr "柔軟コンテンツフィールド" + +#~ msgid "Repeater Field" +#~ msgstr "繰り返しフィールド" + +#~ msgid "Disabled" +#~ msgstr "無効状態" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "無効状態 (%s)" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "ゴミ箱に移動します。よろしいですか?" + +#~ msgid "checked" +#~ msgstr "チェック済み" + +#~ msgid "Parent fields" +#~ msgstr "親フィールド" + +#~ msgid "Sibling fields" +#~ msgstr "兄弟フィールド" + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "この %s フィールドは今 %s フィールドグループにあります" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "フィールドグループを複製しました。 %s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s個 のフィールドグループを複製しました。" + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "フィールドグループを同期しました。%s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s個 のフィールドグループを同期しました。" + +#~ msgid "Status" +#~ msgstr "状態" + +#~ msgid "See what's new in" +#~ msgstr "新着情報を見る" + +#~ msgid "version" +#~ msgstr "バージョン" + +#~ msgid "Resources" +#~ msgstr "リソース" + +#~ msgid "Getting Started" +#~ msgstr "はじめに" + +#~ msgid "Field Types" +#~ msgstr "フィールドタイプ" + +#~ msgid "Functions" +#~ msgstr "ファンクション" + +#~ msgid "Actions" +#~ msgstr "アクション" + +#~ msgid "'How to' guides" +#~ msgstr "使い方ガイド" + +#~ msgid "Tutorials" +#~ msgstr "チュートリアル" + +#~ msgid "Created by" +#~ msgstr "作成" + +#~ msgid "Synchronise field group" +#~ msgstr "フィールドグループを同期する" + +#~ msgid "Add-ons" +#~ msgstr "アドオン" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "エラー アドオンのリストを読み込めませんでした" + +#~ msgid "Info" +#~ msgstr "お知らせ" + +#~ msgid "What's New" +#~ msgstr "新着情報" + +#, php-format +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "成功 インポートツールは %s個 のフィールドグループを追加しました:%s" + +#, php-format +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "警告 インポートツールは %s個 のフィールドグループが既に存在している" +#~ "のを検出したため無視しました:%s" + +#~ msgid "Upgrade ACF" +#~ msgstr "ACFをアップグレード" + +#~ msgid "Upgrade" +#~ msgstr "アップグレード" + +#~ msgid "Error" +#~ msgstr "エラー" + +#~ msgid "Error." +#~ msgstr "エラー." + +#~ msgid "Required?" +#~ msgstr "必須か?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "フィールドはありません。+ 新規追加ボタンをクリックして最" +#~ "初のフィールドを作成してください。" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "ドラッグアンドドロップで並べ替える" + +#~ msgid "+ Add Field" +#~ msgstr "+ フィールドを追加" + +#~ msgid "Taxonomy Term" +#~ msgstr "タクソノミーターム" + +#~ msgid "Download & Install" +#~ msgstr "ダウンロードしてインストール" + +#~ msgid "Installed" +#~ msgstr "インストール済み" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "ようこそ Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "アップグレードありがとうございます!ACF %s は規模、質ともに向上していま" +#~ "す。気に入ってもらえたら幸いです。" + +#~ msgid "A smoother custom field experience" +#~ msgstr "もっとも快適なカスタムフィールド体験" + +#~ msgid "Improved Usability" +#~ msgstr "改良されたユーザビリティ" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "内蔵した人気のSelect2ライブラリによって、投稿オブジェクトやページリンク、" +#~ "タクソノミーなど多くのフィールドタイプにおける選択のユーザビリティと速度の" +#~ "両方を改善しました。" + +#~ msgid "Improved Design" +#~ msgstr "改良されたデザイン" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "ACFがより良くなるよう、多くのフィールドのデザインを一新しました!目立った" +#~ "変化は、ギャラリーフィールドや関連フィールド、(新しい)oEmbedフィールドで" +#~ "わかるでしょう!" + +#~ msgid "Improved Data" +#~ msgstr "改良されたデータ" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "データ構造を再設計したことでサブフィールドは親フィールドから独立して存在で" +#~ "きるようになりました。これによって親フィールドの内外にフィールドをドラッグ" +#~ "アンドドロップできます!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "さようならアドオン、こんにちはPRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF PRO紹介" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "我々はエキサイティングな方法で有料機能を提供することにしました!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "4つのアドオンをACFのPROバージョンとして組み合わせまし" +#~ "た。個人または開発者ライセンスによって、以前よりお手頃な価格で有料機能を利" +#~ "用できます!" + +#~ msgid "Powerful Features" +#~ msgstr "パワフルな機能" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PROには、繰り返し可能なデータ、柔軟なコンテンツレイアウト、美しいギャ" +#~ "ラリーフィールド、オプションページを作成するなど、パワフルな機能が含まれて" +#~ "います!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "もっとACF PRO の機能を見る。" + +#~ msgid "Easy Upgrading" +#~ msgstr "簡単なアップグレード" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "アップグレードを簡単にするために、ストアアカウントにログイ" +#~ "ンしてACF PROの無料版を請求してください!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "我々は多くの質問に応えるためにアップグレードガイドを用" +#~ "意していますが、もし質問がある場合はヘルプデスクからサ" +#~ "ポートチームに連絡をしてください" + +#~ msgid "Under the Hood" +#~ msgstr "その内部では" + +#~ msgid "Smarter field settings" +#~ msgstr "よりスマートなフィールド設定" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACFはそれぞれのフィールドを独立した投稿オブジェクトとして保存するようにな" +#~ "りました" + +#~ msgid "More AJAX" +#~ msgstr "いっそうAJAXに" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "ページの読み込み速度を高速化するために、より多くのフィールドがAJAXを利用す" +#~ "るようになりました" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "新しいJSON形式の自動エクスポート機能の速度を改善" + +#~ msgid "Better version control" +#~ msgstr "より良いバージョンコントロール" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "新しいJSON形式の自動エクスポート機能は、フィールド設定のバージョンコント" +#~ "ロールを可能にします" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XMLからJSONへ" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "インポート / エクスポートにXML形式より優れているJSON形式が使えます" + +#~ msgid "New Forms" +#~ msgstr "新しいフォーム" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "コメントとウィジェット、全てのユーザーのフォームにフィールドを追加できるよ" +#~ "うになりました!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "新しいフィールドに「oEmbed(埋め込みコンテンツ)」を追加しています" + +#~ msgid "New Gallery" +#~ msgstr "新しいギャラリー" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "ギャラリーフィールドは多くのマイナーチェンジをしています" + +#~ msgid "New Settings" +#~ msgstr "新しい設定" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "フィールドグループの設定に「ラベルの配置」と「説明の配置」を追加しています" + +#~ msgid "Better Front End Forms" +#~ msgstr "より良いフロントエンドフォーム" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "" +#~ "acf_form()は新しい投稿をフロントエンドから作成できるようになりました" + +#~ msgid "Better Validation" +#~ msgstr "より良いバリデーション" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "フォームバリデーションは、JSのみより優れているPHP + AJAXで行われます" + +#~ msgid "Relationship Field" +#~ msgstr "関連フィールド" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "関連フィールドの新しい設定「フィルター」(検索、投稿タイプ、タクソノ" +#~ "ミー)。" + +#~ msgid "Moving Fields" +#~ msgstr "フィールド移動" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "新しいフィールドグループでは、フィールドが親フィールドやフィールドグループ" +#~ "間を移動することができます" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "新しいページリンクの選択肢に「アーカイブグループ」を追加しています" + +#~ msgid "Better Options Pages" +#~ msgstr "より良いオプションページ" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "オプションページの新しい機能として、親と子の両方のメニューページを作ること" +#~ "ができます" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "%s の変更は、きっと気に入っていただけるでしょう。" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "フィールドグループを PHP形式 でエクスポートする" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "エクスポートしたいフィールドグループとエクスポート方法を選んでください。ダ" +#~ "ウンロードボタンでは別のACFをインストールした環境でインポートできるJSON" +#~ "ファイルがエクスポートされます。生成ボタンではテーマ内で利用できるPHPコー" +#~ "ドが生成されます。" + +#~ msgid "Download export file" +#~ msgstr "エクスポートファイルをダウンロード" + +#~ msgid "Generate export code" +#~ msgstr "エクスポートコードを生成" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "インポートしたいACFのJSONファイルを選択してください。下のインポートボタン" +#~ "をクリックすると、ACFはフィールドグループをインポートします。" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields データベースのアップグレード" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "下記のサイトはデータベースのアップグレードが必要です。アップデートしたいサ" +#~ "イトにチェックを入れ、「データベースをアップグレード」をクリックしてくださ" +#~ "い。" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "%s から %s へのデータベースアップグレードが必要なサイト" + +#~ msgid "Upgrade complete" +#~ msgstr "更新完了" + +#~ msgid "Upgrading data to" +#~ msgstr "データをアップグレード" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "%s v%sへのアップグレードありがとうございます!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "素晴らしい新機能を利用する前にデータベースを最新バージョンに更新してくださ" +#~ "い。" + +#~ msgid "See what's new" +#~ msgstr "新着情報を見る" + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "ファイルサイズは %s を超えてはいけません。" + +#~ msgid "Toggle" +#~ msgstr "トグル" + +#~ msgid "Done" +#~ msgstr "完了" + +#~ msgid "Today" +#~ msgstr "本日" + +#~ msgid "Show a different month" +#~ msgstr "別の月を表示する" + +#~ msgid "Return format" +#~ msgstr "返り値" + +#~ msgid "uploaded to this post" +#~ msgstr "この投稿にアップロードされる" + +#~ msgid "File Name" +#~ msgstr "ファイルネーム" + +#~ msgid "File Size" +#~ msgstr "ファイルサイズ" + +#~ msgid "No File selected" +#~ msgstr "ファイルが選択されていません" + +#~ msgid "Locating" +#~ msgstr "場所" + +#~ msgid "Customise the map height" +#~ msgstr "マップの高さを調整" + +#~ msgid "Shown when entering data" +#~ msgstr "投稿編集中に表示されます" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "すべてのテキストが最初にWordPressの関数を通過しますのでご注意ください" + +#~ msgid "No embed found for the given URL." +#~ msgstr "指定されたURLには埋め込む内容がありません." + +#~ msgid "Other" +#~ msgstr "その他" + +#~ msgid "Save Other" +#~ msgstr "その他を保存" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "最小値 ( {min} ) に達しました" + +#~ msgid "Select" +#~ msgstr "セレクトボックス" + +#~ msgid "Stylised UI" +#~ msgstr "スタイリッシュなUI" + +#~ msgid "Warning" +#~ msgstr "注意" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "このタブは、テーブルスタイルの繰り返しフィールドか柔軟コンテンツフィールド" +#~ "が追加された場合、正しく表示されません" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "\"タブ\" を使うとフィールドのグループ化によって編集画面をより整理できま" +#~ "す。" + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "この\"タブ\" の後に続く(または別の \"タブ\" が定義されるまでの)全ての" +#~ "フィールドは、このフィールドのラベルがタブの見出しとなりグループ化されま" +#~ "す。" + +#~ msgid "End-point" +#~ msgstr "エンドポイント" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "" +#~ "このフィールドをエンドポイントとして使用し、新規のタブグループを開始する" + +#, php-format +#~ msgid "Add new %s " +#~ msgstr "新しい %s を追加" + +#~ msgid "None" +#~ msgstr "無" + +#~ msgid "eg. Show extra content" +#~ msgstr "例:追加コンテンツを表示する" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "接続エラー すみません、もう一度試してみてください" + +#~ msgid "Save Options" +#~ msgstr "オプションを保存" + +#~ msgid "License" +#~ msgstr "ライセンス" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "アップデートのロックを解除するには、以下にライセンスキーを入力してくださ" +#~ "い。ライセンスキーを持っていない場合は、こちらを参照してください" + +#~ msgid "details & pricing" +#~ msgstr "価格と詳細" + +#, php-format +#~ 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 "" +#~ "アップデートを有効にするには、アップデートページにライ" +#~ "センスキーを入力してください。ライセンスキーを持っていない場合は、こちらを" +#~ "詳細と価格参照してください" + +#~ msgid "remove {layout}?" +#~ msgstr "{layout} を削除しますか?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "このフィールドは{identifier}が最低{min}個は必要です" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "このフィールドは{identifier}が最高{max}個までです" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "{label}は最大数に達しました({max} {identifier})" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s は少なくとも %s個 選択してください" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "強力でプロフェッショナル、そして直感的なフィールドで WordPress をカスタマ" +#~ "イズ。" + +#~ msgid "elliot condon" +#~ msgstr "エリオット・コンドン" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" #~ msgid "Hide / Show All" #~ msgstr "全て 非表示 / 表示" @@ -2514,25 +4153,28 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "フィールドグループは、順番が小さいほうから大きいほうへ作成されます" #~ 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)" +#~ "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 "" -#~ "編集画面に複数のフィールドグループが表示される場合、最初の(=順番の最も小さい)フィールドグループのオ" -#~ "プションが使用されます。" +#~ "編集画面に複数のフィールドグループが表示される場合、最初の(=順番の最も小" +#~ "さい)フィールドグループのオプションが使用されます。" #~ msgid "ACF PRO Required" #~ msgstr "ACF PROが必要です" #~ msgid "" -#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons " -#~ "(%s) which are no longer compatible with ACF." +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." #~ msgstr "" -#~ "あなたに注意すべき問題があります:有料アドオン(%s)を利用したこのウェブサイトにACFはもはや対応してい" -#~ "ません。" +#~ "あなたに注意すべき問題があります:有料アドオン(%s)を利用したこのウェブサ" +#~ "イトにACFはもはや対応していません。" -#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!" +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" #~ msgstr "" -#~ "慌てないでください、プラグインをロールバックすることで今までどおりACFを使用し続けることができます!" +#~ "慌てないでください、プラグインをロールバックすることで今までどおりACFを使" +#~ "用し続けることができます!" #~ msgid "Roll back to ACF v%s" #~ msgstr "ACF v%sにロールバックする" @@ -2559,7 +4201,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Load & Save Terms to Post" #~ msgstr "ターム情報の読込/保存" -#~ msgid "Load value based on the post's terms and update the post's terms on save" +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" #~ msgstr "投稿ターム情報を読み込み、保存時に反映させる" #~ msgid "Top Level Page (parent of 0)" @@ -2586,14 +4229,10 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "No ACF groups selected" #~ msgstr "ACF グループが選択されていません" -#~ msgid "Repeater Field" -#~ msgstr "繰り返しフィールド" - -#~ msgid "Create infinite rows of repeatable data with this versatile interface!" -#~ msgstr "繰り返し挿入可能なフォームを、すてきなインターフェースで作成します。" - -#~ msgid "Gallery Field" -#~ msgstr "ギャラリーフィールド" +#~ msgid "" +#~ "Create infinite rows of repeatable data with this versatile interface!" +#~ msgstr "" +#~ "繰り返し挿入可能なフォームを、すてきなインターフェースで作成します。" #~ msgid "Create image galleries in a simple and intuitive interface!" #~ msgstr "画像ギャラリーを、シンプルで直感的なインターフェースで作成します。" @@ -2601,11 +4240,9 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Create global data to use throughout your website!" #~ msgstr "ウェブサイト全体で使用できるグローバルデータを作成します。" -#~ msgid "Flexible Content Field" -#~ msgstr "柔軟コンテンツフィールド" - #~ msgid "Create unique designs with a flexible content layout manager!" -#~ msgstr "柔軟なコンテンツレイアウト管理により、すてきなデザインを作成します。" +#~ msgstr "" +#~ "柔軟なコンテンツレイアウト管理により、すてきなデザインを作成します。" #~ msgid "Gravity Forms Field" #~ msgstr "Gravity Forms フィールド" @@ -2639,16 +4276,17 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "Advanced Custom Fields" #~ msgid "" -#~ "The following Add-ons are available to increase the functionality of the Advanced Custom Fields " -#~ "plugin." -#~ msgstr "Advanced Custom Fields プラグインに機能を追加するアドオンが利用できます。" +#~ "The following Add-ons are available to increase the functionality of the " +#~ "Advanced Custom Fields plugin." +#~ msgstr "" +#~ "Advanced Custom Fields プラグインに機能を追加するアドオンが利用できます。" #~ msgid "" -#~ "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does " -#~ "not receive updates)." +#~ "Each Add-on can be installed as a separate plugin (receives updates) or " +#~ "included in your theme (does not receive updates)." #~ msgstr "" -#~ "それぞれのアドオンは、個別のプラグインとしてインストールする(管理画面で更新できる)か、テーマに含める" -#~ "(管理画面で更新できない)かしてください。" +#~ "それぞれのアドオンは、個別のプラグインとしてインストールする(管理画面で更" +#~ "新できる)か、テーマに含める(管理画面で更新できない)かしてください。" #~ msgid "Purchase & Install" #~ msgstr "購入してインストールする" @@ -2662,7 +4300,9 @@ msgstr "http://www.elliotcondon.com/" #, fuzzy #~ msgid "Select the field groups to be exported" -#~ msgstr "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリックしてください" +#~ msgstr "" +#~ "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリック" +#~ "してください" #, fuzzy #~ msgid "Export to XML" @@ -2672,19 +4312,25 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Export to PHP" #~ msgstr "フィールドグループを PHP 形式でエクスポートする" -#~ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin." +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." #~ msgstr "" -#~ "ACF は .xml 形式のエクスポートファイルを作成します。WP のインポートプラグインと互換性があります。" +#~ "ACF は .xml 形式のエクスポートファイルを作成します。WP のインポートプラグ" +#~ "インと互換性があります。" #~ msgid "" -#~ "Imported field groups will appear in the list of editable field groups. This is useful for " -#~ "migrating fields groups between Wp websites." +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." #~ msgstr "" -#~ "インポートしたフィールドグループは、編集可能なフィールドグループの一覧に表示されます。WP ウェブサイト" -#~ "間でフィールドグループを移行するのに役立ちます。" +#~ "インポートしたフィールドグループは、編集可能なフィールドグループの一覧に表" +#~ "示されます。WP ウェブサイト間でフィールドグループを移行するのに役立ちま" +#~ "す。" #~ msgid "Select field group(s) from the list and click \"Export XML\"" -#~ msgstr "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリックしてください" +#~ msgstr "" +#~ "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリック" +#~ "してください" #~ msgid "Save the .xml file when prompted" #~ msgstr "指示に従って .xml ファイルを保存してください" @@ -2693,7 +4339,9 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "ツール » インポートと進み、WordPress を選択してください" #~ msgid "Install WP import plugin if prompted" -#~ msgstr "(インストールを促された場合は) WP インポートプラグインをインストールしてください" +#~ msgstr "" +#~ "(インストールを促された場合は) WP インポートプラグインをインストールしてく" +#~ "ださい" #~ msgid "Upload and import your exported .xml file" #~ msgstr "エクスポートした .xml ファイルをアップロードし、インポートする" @@ -2708,23 +4356,27 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "ACF は、テーマに含める PHP コードを作成します" #~ msgid "" -#~ "Registered field groups will not appear in the list of editable field groups. This is useful " -#~ "for including fields in themes." +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." #~ msgstr "" -#~ "登録したフィールドグループは、編集可能なフィールドグループの一覧に表示されません。テーマに" -#~ "フィールドを含めるときに役立ちます。" +#~ "登録したフィールドグループは、編集可能なフィールドグループの一覧に表示" +#~ "されません。テーマにフィールドを含めるときに役立ちます。" #~ msgid "" -#~ "Please note that if you export and register field groups within the same WP, you will see duplicate " -#~ "fields on your edit screens. To fix this, please move the original field group to the trash or " -#~ "remove the code from your functions.php file." +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." #~ msgstr "" -#~ "同一の WP でフィールドグループをエクスポートして登録する場合は、編集画面で重複フィールドになることに" -#~ "注意してください。これを修正するには、元のフィールドグループをゴミ箱へ移動するか、functions.php ファ" -#~ "イルからこのコードを除去してください。" +#~ "同一の WP でフィールドグループをエクスポートして登録する場合は、編集画面で" +#~ "重複フィールドになることに注意してください。これを修正するには、元のフィー" +#~ "ルドグループをゴミ箱へ移動するか、functions.php ファイルからこのコードを除" +#~ "去してください。" #~ msgid "Select field group(s) from the list and click \"Create PHP\"" -#~ msgstr "一覧からフィールドグループを選択し、\"PHP 形式のデータを作成する\" をクリックしてください。" +#~ msgstr "" +#~ "一覧からフィールドグループを選択し、\"PHP 形式のデータを作成する\" をク" +#~ "リックしてください。" #~ msgid "Copy the PHP code generated" #~ msgstr "生成された PHP コードをコピーし、" @@ -2732,8 +4384,10 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Paste into your functions.php file" #~ msgstr "functions.php に貼り付けてください" -#~ msgid "To activate any Add-ons, edit and use the code in the first few lines." -#~ msgstr "アドオンを有効化するには、最初の何行かのコードを編集して使用してください" +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "アドオンを有効化するには、最初の何行かのコードを編集して使用してください" #~ msgid "Notes" #~ msgstr "注意" @@ -2742,19 +4396,21 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "テーマに含める" #~ msgid "" -#~ "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin " -#~ "inside your theme and add the following code to your functions.php file:" +#~ "The Advanced Custom Fields plugin can be included within a theme. To do " +#~ "so, move the ACF plugin inside your theme and add the following code to " +#~ "your functions.php file:" #~ msgstr "" -#~ "Advanced Custom Fields プラグインは、テーマに含めることができます。プラグインをテーマ内に移動し、" -#~ "functions.php に下記コードを追加してください。" +#~ "Advanced Custom Fields プラグインは、テーマに含めることができます。プラグ" +#~ "インをテーマ内に移動し、functions.php に下記コードを追加してください。" #~ msgid "" -#~ "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add " -#~ "the following code to your functions.php file before the include_once code:" +#~ "To remove all visual interfaces from the ACF plugin, you can use a " +#~ "constant to enable lite mode. Add the following code to your functions." +#~ "php file before the include_once code:" #~ msgstr "" -#~ "Advanced Custom Fields プラグインのビジュアルインターフェースを取り除くには、定数を利用して「ライト" -#~ "モード」を有効にすることができます。functions.php の include_once よりもに下記のコードを追加" -#~ "してください。" +#~ "Advanced Custom Fields プラグインのビジュアルインターフェースを取り除くに" +#~ "は、定数を利用して「ライトモード」を有効にすることができます。functions." +#~ "php の include_once よりもに下記のコードを追加してください。" #, fuzzy #~ msgid "Back to export" @@ -2765,34 +4421,44 @@ msgstr "http://www.elliotcondon.com/" #~ " * Install Add-ons\n" #~ " * \n" #~ " * The following code will include all 4 premium Add-Ons in your theme.\n" -#~ " * Please do not attempt to include a file which does not exist. This will produce an error.\n" +#~ " * Please do not attempt to include a file which does not exist. This " +#~ "will produce an error.\n" #~ " * \n" #~ " * All fields must be included during the 'acf/register_fields' action.\n" -#~ " * Other types of Add-ons (like the options page) can be included outside of this action.\n" +#~ " * Other types of Add-ons (like the options page) can be included " +#~ "outside of this action.\n" #~ " * \n" -#~ " * The following code assumes you have a folder 'add-ons' inside your theme.\n" +#~ " * The following code assumes you have a folder 'add-ons' inside your " +#~ "theme.\n" #~ " *\n" #~ " * IMPORTANT\n" -#~ " * Add-ons may be included in a premium theme as outlined in the terms and conditions.\n" +#~ " * Add-ons may be included in a premium theme as outlined in the terms " +#~ "and conditions.\n" #~ " * However, they are NOT to be included in a premium / free plugin.\n" -#~ " * For more information, please read http://www.advancedcustomfields.com/terms-conditions/\n" +#~ " * For more information, please read http://www.advancedcustomfields.com/" +#~ "terms-conditions/\n" #~ " */" #~ msgstr "" #~ "/**\n" #~ " * Install Add-ons\n" #~ " * \n" #~ " * The following code will include all 4 premium Add-Ons in your theme.\n" -#~ " * Please do not attempt to include a file which does not exist. This will produce an error.\n" +#~ " * Please do not attempt to include a file which does not exist. This " +#~ "will produce an error.\n" #~ " * \n" #~ " * All fields must be included during the 'acf/register_fields' action.\n" -#~ " * Other types of Add-ons (like the options page) can be included outside of this action.\n" +#~ " * Other types of Add-ons (like the options page) can be included " +#~ "outside of this action.\n" #~ " * \n" -#~ " * The following code assumes you have a folder 'add-ons' inside your theme.\n" +#~ " * The following code assumes you have a folder 'add-ons' inside your " +#~ "theme.\n" #~ " *\n" #~ " * IMPORTANT\n" -#~ " * Add-ons may be included in a premium theme as outlined in the terms and conditions.\n" +#~ " * Add-ons may be included in a premium theme as outlined in the terms " +#~ "and conditions.\n" #~ " * However, they are NOT to be included in a premium / free plugin.\n" -#~ " * For more information, please read http://www.advancedcustomfields.com/terms-conditions/\n" +#~ " * For more information, please read http://www.advancedcustomfields.com/" +#~ "terms-conditions/\n" #~ " */" #, fuzzy @@ -2800,19 +4466,20 @@ msgstr "http://www.elliotcondon.com/" #~ "/**\n" #~ " * Register Field Groups\n" #~ " *\n" -#~ " * The register_field_group function accepts 1 array which holds the relevant data to register a " -#~ "field group\n" -#~ " * You may edit the array as you see fit. However, this may result in errors if the array is not " -#~ "compatible with ACF\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" #~ " */" #~ msgstr "" #~ "/**\n" #~ " * フィールドグループを登録する\n" -#~ " * register_field_group 関数は、フィールドグループを登録するのに関係するデータを持っている一つの配列" -#~ "を受け付けます。\n" -#~ " * 配列を好きなように編集することができます。しかし、配列が ACF と互換性の無い場合、エラーになってし" -#~ "まいます。\n" -#~ " * このコードは、functions.php ファイルを読み込む度に実行する必要があります。\n" +#~ " * register_field_group 関数は、フィールドグループを登録するのに関係する" +#~ "データを持っている一つの配列を受け付けます。\n" +#~ " * 配列を好きなように編集することができます。しかし、配列が ACF と互換性の" +#~ "無い場合、エラーになってしまいます。\n" +#~ " * このコードは、functions.php ファイルを読み込む度に実行する必要がありま" +#~ "す。\n" #~ " */" #~ msgid "No field groups were selected" @@ -2831,8 +4498,10 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Thank you for updating to the latest version!" #~ msgstr "最新版への更新ありがとうございます。" -#~ msgid "is more polished and enjoyable than ever before. We hope you like it." -#~ msgstr "は以前よりも洗練され、より良くなりました。気に入ってもらえると嬉しいです。" +#~ msgid "" +#~ "is more polished and enjoyable than ever before. We hope you like it." +#~ msgstr "" +#~ "は以前よりも洗練され、より良くなりました。気に入ってもらえると嬉しいです。" #~ msgid "What’s New" #~ msgstr "更新情報" @@ -2845,26 +4514,32 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "アクティベーションコードから、プラグインに変更されました。" #~ msgid "" -#~ "Add-ons are now activated by downloading and installing individual plugins. Although these plugins " -#~ "will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in " -#~ "the usual way." +#~ "Add-ons are now activated by downloading and installing individual " +#~ "plugins. Although these plugins will not be hosted on the wordpress.org " +#~ "repository, each Add-on will continue to receive updates in the usual way." #~ msgstr "" -#~ "アドオンは、個別のプラグインをダウンロードしてインストールしてください。wordpress.org リポジトリには" -#~ "ありませんが、管理画面でこれらのアドオンの更新を行う事が出来ます。" +#~ "アドオンは、個別のプラグインをダウンロードしてインストールしてください。" +#~ "wordpress.org リポジトリにはありませんが、管理画面でこれらのアドオンの更新" +#~ "を行う事が出来ます。" #~ msgid "All previous Add-ons have been successfully installed" #~ msgstr "今まで使用していたアドオンがインストールされました。" #~ msgid "This website uses premium Add-ons which need to be downloaded" #~ msgstr "" -#~ "このウェブサイトではプレミアムアドオンが使用されており、アドオンをダウンロードする必要があります。" +#~ "このウェブサイトではプレミアムアドオンが使用されており、アドオンをダウン" +#~ "ロードする必要があります。" #, fuzzy #~ msgid "Download your activated Add-ons" #~ msgstr "アドオンを有効化する" -#~ msgid "This website does not use premium Add-ons and will not be affected by this change." -#~ msgstr "このウェブサイトではプレミアムアドオンを使用しておらず、この変更に影響されません。" +#~ msgid "" +#~ "This website does not use premium Add-ons and will not be affected by " +#~ "this change." +#~ msgstr "" +#~ "このウェブサイトではプレミアムアドオンを使用しておらず、この変更に影響され" +#~ "ません。" #~ msgid "Easier Development" #~ msgstr "開発を容易に" @@ -2894,11 +4569,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "カスタムフィールド" #~ msgid "" -#~ "Creating your own field type has never been easier! Unfortunately, version 3 field types are not " -#~ "compatible with version 4." +#~ "Creating your own field type has never been easier! Unfortunately, " +#~ "version 3 field types are not compatible with version 4." #~ msgstr "" -#~ "独自のフィールドタイプが簡単に作成できます。残念ですが、バージョン 3 とバージョン 4 には互換性があり" -#~ "ません。" +#~ "独自のフィールドタイプが簡単に作成できます。残念ですが、バージョン 3 と" +#~ "バージョン 4 には互換性がありません。" #~ msgid "Migrating your field types is easy, please" #~ msgstr "フィールドタイプをマイグレーションするのは簡単です。" @@ -2913,8 +4588,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "アクションとフィルター" #~ msgid "" -#~ "All actions & filters have received a major facelift to make customizing ACF even easier! Please" -#~ msgstr "カスタマイズを簡単にするため、すべてのアクションとフィルターを改装しました。" +#~ "All actions & filters have received a major facelift to make customizing " +#~ "ACF even easier! Please" +#~ msgstr "" +#~ "カスタマイズを簡単にするため、すべてのアクションとフィルターを改装しまし" +#~ "た。" #, fuzzy #~ msgid "read this guide" @@ -2939,21 +4617,23 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "データベース更新" #~ msgid "" -#~ "Absolutely no changes have been made to the database between versions 3 and 4. This " -#~ "means you can roll back to version 3 without any issues." +#~ "Absolutely no changes have been made to the database " +#~ "between versions 3 and 4. This means you can roll back to version 3 " +#~ "without any issues." #~ msgstr "" -#~ "バージョン 3 と 4 でデータベースの更新はありません。問題が発生した場合、バージョン 3 へのロールバック" -#~ "を行うことができます。" +#~ "バージョン 3 と 4 でデータベースの更新はありません。問題が発生した場合、" +#~ "バージョン 3 へのロールバックを行うことができます。" #~ msgid "Potential Issues" #~ msgstr "潜在的な問題" #~ msgid "" -#~ "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not " -#~ "operate correctly. It is important that you read the full" +#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "filters, your website may not operate correctly. It is important that you " +#~ "read the full" #~ msgstr "" -#~ "アドオン、フィールドタイプ、アクション/フィルターに関する変更のため、ウェブサイトが正常に動作しない" -#~ "可能性があります。" +#~ "アドオン、フィールドタイプ、アクション/フィルターに関する変更のため、ウェ" +#~ "ブサイトが正常に動作しない可能性があります。" #~ msgid "Migrating from v3 to v4" #~ msgstr "バージョン 3 から 4 への移行をごらんください。" @@ -2965,7 +4645,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "非常に重要" #~ msgid "" -#~ "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest" +#~ "If you updated the ACF plugin without prior knowledge of such changes, " +#~ "please roll back to the latest" #~ msgstr "予備知識無しに更新してしまった場合は、" #~ msgid "version 3" @@ -2978,10 +4659,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "ありがとうございます" #~ msgid "" -#~ "A BIG thank you to everyone who has helped test the version 4 beta and for all the " -#~ "support I have received." +#~ "A BIG thank you to everyone who has helped test the " +#~ "version 4 beta and for all the support I have received." #~ msgstr "" -#~ "バージョン 4 ベータのテストに協力してくださった皆さん、サポートしてくださった皆さんに感謝します。" +#~ "バージョン 4 ベータのテストに協力してくださった皆さん、サポートしてくだ" +#~ "さった皆さんに感謝します。" #~ msgid "Without you all, this release would not have been possible!" #~ msgstr "皆さんの助けが無ければ、リリースすることはできなかったでしょう。" @@ -2993,25 +4675,26 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Learn more" #~ msgstr "詳細を見る" -#~ msgid "Overview" -#~ msgstr "概要" +#~ msgid "" +#~ "Previously, all Add-ons were unlocked via an activation code (purchased " +#~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " +#~ "plugins which need to be individually downloaded, installed and updated." +#~ msgstr "" +#~ "今までは、アドオンはアクティベーションコードでロック解除していました。バー" +#~ "ジョン 4 では、アドオンは個別のプラグインとしてダウンロードしてインストー" +#~ "ルする必要があります。" #~ msgid "" -#~ "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). " -#~ "New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed " -#~ "and updated." -#~ msgstr "" -#~ "今までは、アドオンはアクティベーションコードでロック解除していました。バージョン 4 では、アドオンは個" -#~ "別のプラグインとしてダウンロードしてインストールする必要があります。" - -#~ msgid "This page will assist you in downloading and installing each available Add-on." +#~ "This page will assist you in downloading and installing each available " +#~ "Add-on." #~ msgstr "このページは、アドオンのダウンロードやインストールを手助けします。" #, fuzzy #~ msgid "Available Add-ons" #~ msgstr "アドオンを有効化する" -#~ msgid "The following Add-ons have been detected as activated on this website." +#~ msgid "" +#~ "The following Add-ons have been detected as activated on this website." #~ msgstr "以下のアドオンがこのウェブサイトで有効になっています。" #~ msgid "Activation Code" @@ -3033,10 +4716,13 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Plugins > Add New > Upload" #~ msgstr "プラグイン > 新規追加 > アップロード" -#~ msgid "Use the uploader to browse, select and install your Add-on (.zip file)" +#~ msgid "" +#~ "Use the uploader to browse, select and install your Add-on (.zip file)" #~ msgstr "アドオンのファイルを選択してインストールする" -#~ msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link" +#~ msgid "" +#~ "Once the plugin has been uploaded and installed, click the 'Activate " +#~ "Plugin' link" #~ msgstr "アップロードできたら、有効化をクリックする" #~ msgid "The Add-on is now installed and activated!" @@ -3062,7 +4748,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "フィールドオプション「タクソノミー」を変更" #~ msgid "Moving user custom fields from wp_options to wp_usermeta'" -#~ msgstr "ユーザーのカスタムフィールドを wp_options から wp_usermeta に変更する" +#~ msgstr "" +#~ "ユーザーのカスタムフィールドを wp_options から wp_usermeta に変更する" #~ msgid "blue : Blue" #~ msgstr "blue : 青" @@ -3073,8 +4760,11 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Save format" #~ msgstr "フォーマットを保存する" -#~ msgid "This format will determin the value saved to the database and returned via the API" -#~ msgstr "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します" +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "" +#~ "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します" #~ msgid "\"yymmdd\" is the most versatile save format. Read more about" #~ msgstr "最も良く用いられるフォーマットは \"yymmdd\" です。詳細は" @@ -3085,7 +4775,9 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "This format will be seen by the user when entering a value" #~ msgstr "ユーザーが値を入力するときのフォーマット" -#~ msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more about" +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" #~ msgstr "よく使用されるのは、\"dd/mm/yy\" や \"mm/dd/yy\" です。詳細は" #~ msgid "Dummy" @@ -3161,8 +4853,8 @@ msgstr "http://www.elliotcondon.com/" #~ msgstr "投稿タイプ" #~ msgid "" -#~ "All fields proceeding this \"tab field\" (or until another \"tab field\" is defined) will appear " -#~ "grouped on the edit screen." +#~ "All fields proceeding this \"tab field\" (or until another \"tab field\" " +#~ "is defined) will appear grouped on the edit screen." #~ msgstr "タブフィールドでフィールドを区切り、グループ化して表示します。" #~ msgid "You can use multiple tabs to break up your fields into sections." diff --git a/lang/acf-ko_KR.mo b/lang/acf-ko_KR.mo new file mode 100644 index 0000000..712e95a Binary files /dev/null and b/lang/acf-ko_KR.mo differ diff --git a/lang/acf-ko_KR.po b/lang/acf-ko_KR.po new file mode 100644 index 0000000..da2876c --- /dev/null +++ b/lang/acf-ko_KR.po @@ -0,0 +1,3003 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "‘%s’은(는) 유효한 이매일 주소가 아닙니다" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "색상 값" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "기본 색상 선택하기" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "색상 지우기" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "블록" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "옵션" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "사용자" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "메뉴 항목" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "위젯" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "첨부" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "택소노미" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "글" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON 필드 그룹 (최신)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "원본 필드 그룹" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "최근 업대이트: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "죄송합니다. 이 필드 그룹은 차이점 비교를 사용할 수 없어요." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "유효하지 않은 필드 그룹 ID에요." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "유효하지 않은 필드 그룹 매개변수에요." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "저장 대기 중" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "저장했어요" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "가져오기" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "변경사항 검토하기" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "위치해요: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "플러그인에 위치해요: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "테마에 위치해요: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "변형" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "변경사항 동기화하기" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "차이 부르는 중" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "지역 JSON 변경 검토하기" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "웹 사이트 방문하기" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "세부 정보보기" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "버전 %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "정보" + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" +"상담 창구가 있어요. 상담 창구의 지원 전" +"문가가 보다 깊이 있고 기술적인 문제에 대한 도움을 드릴 거에요." + +#: includes/admin/admin.php:156 +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:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" +"문서가 있어요. 광범위한 문서에는 발생할 " +"수 있는 대부분의 상황에 대한 참조와 지침을 포함하고 있어요." + +#: includes/admin/admin.php:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "도움말 & 지원" + +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "지원이 필요하다면 도움말 & 지원탭을 이용하여 연락하기 바래요." + +#: includes/admin/admin.php:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "필드를 부르는 중에 오류가 있어요." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s 값이 필요합니다" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "이 필드를 보이는 경우" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "조건부 논리" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "그리고" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "로컬 JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "복제 필드" + +#: includes/admin/views/html-notice-upgrade.php:31 +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "최신 버전 프리미엄 애드온 (%s)의 업대이트를 확인하기 바랍니다." + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "이 버전은 대이터배이스 개선을 포함하고 있어 업그래이드가 필요합니다." + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "대이터배이스 업그래이드가 필요합니다" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "옵션 패이지" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "갤러리" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "유연한 콘텐츠" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "리피터" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "모든 도구로 돌아감" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "편집 화면에서 숨기려면 항목을 선택하세요." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "화면 숨기기" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "트랙백 보내기" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "태그" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "카테고리" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "패이지 속성" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "형식" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "글쓴이" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "슬러그" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "리비전" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "댓글" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "토론" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "요약" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "콘텐츠 편집기" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "퍼머링크" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "필드 그룹 목록에 보이기" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "순서가 낮은 필드 그룹이 먼저 나타납니다" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "정렬 번호" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "필드 아래" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "라벨 아래" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "지침 배치" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "라벨 배치" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "측면" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "일반 (콘텐츠 다음)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "상단 (제목 다음)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "위치" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "매끄럽게 (메타 상자가 없습니다)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "표준 (워프 메타 상자)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "스타일" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "유형" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "키" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "정렬하기" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "필드 닫기" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "클래스" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "넓이" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "덮개 속성" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "글쓴이를 위한 지침입니다. 자료를 제출할 때 보이기" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "지침" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "필드 유형" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "공백이 없는 단일 단어입니다. 밑줄과 대시를 허용했습니다." + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "필드 이름" + +#: includes/admin/views/field-group-field.php:122 +msgid "This is the name which will appear on the EDIT page" +msgstr "이것은 편집하기 패이지에 보일 이름입니다." + +#: includes/admin/views/field-group-field.php:121 +msgid "Field Label" +msgstr "필드 레이블" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "지우기" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "필드 지우기" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "이동하기" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "다름 그룹으로 필드 이동하기" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "필드 복제하기" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "필드 편집하기" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "재정렬하려면 끌기" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "이 필드 그룹이면 보이기" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "사용 가능한 업대이트가 없습니다." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "" +"대이터배이스 업그래이드를 완료했습니다. 새로운 기능 보기 " + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "업그래이드 작업을 읽기 ..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "업그래이드에 실패했습니다." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "업그래이드를 완료했습니다." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "버전 %s(으)로 자료를 업그래이드하기" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "업그래이드 할 사이트를 하나 이상 선택하기 바랍니다." + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"대이터배이스 업그래이드를 완료했습니다. 네트워크 알림판으로 " +"돌아 가기 " + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "사이트가 최신 상태입니다" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "사이트" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "사이트 업그래이드하기" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "그룹 규칙 추가하기" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "규칙" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "복사했습니다" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "클립보드에 복사하기" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"다음 코드를 사용하여 선택한 필드 그룹의 로컬 버전을 등록 할 수 있습니다. 로" +"컬 필드 그룹은 빠른 로드 시간, 버전 관리와 동적 필드 설정과 같은 많은 이점을 " +"제공 할 수 있습니다. 다음 코드를 복사하여 테마의 “functions.php” 파일에 붙여 " +"넣거나 외부 파일에 포함하ㅋㅊ뇨." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "필드 그룹 선택하기" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "%s개의 필드 그룹을 내보냈습니다." + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "%s개의 필드 그룹을 가져왔습니다" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "빈 파일 가져 오기" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "잘못된 파일 형식" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "파일 업로드 중 오류가 발생하였습니다. 다시 시도하기 바랍니다" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "필드 그룹 가져오기" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "동기화하기" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "%s 선택하기" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "복제하기" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "이 항목 복제하기" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "설명" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "동기화를 사용할 수 있습니다" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "" +"필드 그룹을 동기화했습니다.\n" +"%s개의 필드 그룹을 동기화했습니다." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "" +"필드 그룹을 복사했습니다.\n" +"%s개의 필드 그룹을 복사했습니다." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "활성 (%s) " + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "대이터배이스 업그래이드하기" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "필드 꾸미기" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "필드 이동하기" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "이 필드의 목적지를 선택하기 바랍니다" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "창 닫기" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "이동을 완료했습니다." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "활성화하기" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "필드 키" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "설정" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "위치" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "복사하기" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(이 필드)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "확인했습니다" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "사용자 필드 이동하기" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "토글 필드를 사용할 수 없습니다" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "필드 그룹 제목이 필요합니다" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" +msgstr "변경 사항을 저장할 때까지 이 필드를 이동할 수 없습니다" + +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "“field_”는 필드 이름의 시작에 사용할 수 없습니다" + +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "필드 그룹 초안을 업대이트했습니다." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "예정한 필드 그룹입니다." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "필드 그룹을 등록했습니다." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "필드 그룹을 저장했습니다." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "필드 그룹을 발행했습니다." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "필드 그룹을 삭제했습니다." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "필드 그룹을 업대이트했습니다." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "패이지" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "글" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "관계형" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "선택하기" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "기본" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "알 수 없습니다" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "콘텐츠" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "제목" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "필드 그룹 편집하기" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "작게 선택했습니다" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "크게 선택했습니다" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "작은 값을 선택했습니다" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "큰 값을 선택했습니다" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "값을 포함합니다" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "값 일치 패턴" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 assets/build/js/acf-input.js:903 +#: assets/build/js/acf-input.js:1116 +msgid "Value is not equal to" +msgstr "값이 같지 않습니다" + +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "값이 동일합니다" + +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "값이 없습니다" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "값이 있습니다" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "취소하기" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "확실한가요?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d 필드는 주의가 필요합니다" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 필드 주의 필요" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "검증을 실패했습니다" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "검증을 성공했습니다" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "제한했습니다" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "세부정보 접기" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "세부정보 확장하기" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "글에 업로드" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "업대이트하기" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "편집하기" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "패이지를 벗어나면 변경 한 내용이 손실 됩니다" + +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "파일 형식은 %s 여야 합니다." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "또는" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "파일 크기는 %s을(를) 초과하지 않아야 합니다." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "파일 크기는 %s 이상 이어야 합니다." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "이미지 높이는 %d픽셀 를 초과하지 않아야 합니다." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "이미지 높이는 %d픽셀 이상 이어야 합니다." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "이미지 넓이는 %d픽셀을 초과하지 않아야 합니다." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "이미지 넓이는 %d픽셀 이상이어야 합니다." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(제목이 없습니다)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "전체 크기" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "대형" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "중간" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "썸내일" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(라벨이 없습니다)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "문자 영역의 높이를 설정하기" + +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "행" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "문자 영역" + +#: includes/fields/class-acf-field-checkbox.php:447 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "모든 선택 항목을 전환하려면 추가 확인란을 추가하십시오" + +#: includes/fields/class-acf-field-checkbox.php:409 +msgid "Save 'custom' values to the field's choices" +msgstr "선택한 필드에 ‘사용자 정의’값 저장하기" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "추가한 ‘사용자 정의’ 값 허용하기" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "새로운 선택 추가하기" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "모두 토글하기" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "보관소 URLs 허용하기" + +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "보관소" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "패이지 링크" + +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "추가하기" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "이름" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s을(를) 추가했습니다" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s이(가) 이미 존재합니다" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "사용자가 새로운 %s를 추가 할 수 없습니다" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "조건 ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "조건 개체" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "글 용어에서 값 로드하기" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "용어 로드하기" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "글에 선택한 조건을 연결하기" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "조건 저장하기" + +#: includes/fields/class-acf-field-taxonomy.php:718 +msgid "Allow new terms to be created whilst editing" +msgstr "편집하는 동안 생성할 새로운 조건을 허용하기" + +#: includes/fields/class-acf-field-taxonomy.php:717 +msgid "Create Terms" +msgstr "조건 만들기" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "라디오 버튼" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "단일 값" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "다중 선택" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "확인상자" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "복수 값" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "이 필드의 외관 선택하기" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "외관" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "보일 할 분류를 선택하기" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +msgid "Value must be equal to or lower than %d" +msgstr "값은 %d와(과) 같거나 작아야 합니다." + +#: includes/fields/class-acf-field-number.php:256 +msgid "Value must be equal to or higher than %d" +msgstr "값은 %d와(과) 같거나 큰 값이어야만 합니다" + +#: includes/fields/class-acf-field-number.php:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "선택한 필드에 ‘다른’ 값 저장하기" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "사용자 정의 값을 허용하는 ‘기타’ 선택 사항 추가하기" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "라디오 버튼" + +#: includes/fields/class-acf-field-accordion.php:105 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"중지한 이전 아코디언의 엔드 포인트를 정의합니다. 이 아코디언은 보이지 않을 것" +"입니다." + +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "다른 것을 닫지 않고 열 수 있도록 아코디언을 허용합니다." + +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "다중 확장" + +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "이 아코디언은 패이지 로드시 열린 것으로 보입니다." + +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "열기" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "아코디언" + +#: 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:217 +msgid "File ID" +msgstr "파일 ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "파일 URL" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "파일 배열" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "파일 추가하기" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "선택한 파일이 없습니다" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "파일 이름" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "파일 업대이트하기" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "파일 편집하기" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "반환할 값 지정하기" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "지연 선택에 AJAX를 사용할까요?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "새로운 줄에 기본 값 입력하기" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "선택하기" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "로드를 실패했습니다" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "검색하기…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "더 많은 결과 부르기…" + +#: includes/fields/class-acf-field-select.php:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "%d 항목만 선택할 수 있습니다" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "1 항목만 선택할 수 있습니다" + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "%d글자를 지우기 바랍니다" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "1글자를 지우기 바랍니다" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "%d 또는 이상의 글자를 입력하기 바랍니다" + +#: includes/fields/class-acf-field-select.php:110 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "1 또는 이상의 글자를 입력하기 바랍니다" + +#: includes/fields/class-acf-field-select.php:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "일치하는 항목을 찾을 수 없습니다" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "선택하기" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "사용자 ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "사용자 개체" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "사용자 배열" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "모든 사용자 역할" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "역할로 필터하기" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "색상 선택하기" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "기본" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "후" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "오후" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "전" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "오전" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "선택하기" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "완료" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "지금" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "시간대" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "마이크로초" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "밀리초" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "초" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "분" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "시간" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "시간" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "엔드포인트" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "왼쪽에 정렬합니다" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "상단에 정렬합니다" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "배치" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "탭" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "값은 유효한 URL 이어야 합니다" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "링크 URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "링크 배열" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "새로운 창/탭에서 열립니다" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "크기 단계" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "최대 값" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "최소 값" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "범위" + +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "둘 다(배열)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "라벨" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "값" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "수직" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "수평" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "적색 : 적색" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "더 많은 제어를 위해 다음과 같이 값과 레이블을 모두 지정할 수 있습니다:" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "새 행에 각 선택을 입력합니다." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "선택하기" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "버튼 그룹" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "여러 값을 선택할까요?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Null을 허용할까요?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "부모" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "TinyMCE는 필드를 누를 때까지 초기화하지 않을 것입니다" + +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "초기화를 지연할까요?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "미디어 업로드 버튼을 보일까요?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "도구모음" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "텍스트 만" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "비주얼 만" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "비주얼 & 텍스트" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "탭" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "TinyMCS 초기화하려면 누릅니다" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "텍스트" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "비주얼" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "위지윅 편집기" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "%d자를 초과하지 않아야 합니다" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "무제한으로 비워두기" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "글자 수 제한" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "입력란 뒤에 보입니다." + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "추가하기" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "입력란 전에 보입니다" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "머리말" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "입력란 내에 보입니다" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "텍스트 자리 표시자" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "글 ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "글 개체" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "최대 글" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "최소 글" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "특성 이미지" + +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "선택한 요소를 각 결과에 표시합니다" + +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "요소" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "분류" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "글 유형" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "필터" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "모든 분류" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "분류로 필터하기" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "모든 글 유형" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "글 유형으로 필터하기" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "검색하기..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "분류 선택하기" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "글 유형 선택하기" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "일치하는 항목을 찾을 수 없습니다" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "로드중" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "최대 값에 도달했습니다 ({max} 값)" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "관계" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "쉼표로 구분하는 목록입니다. 모든 유형을 빈 값으로 처리했습니다." + +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "허용한 파일 형식" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "최대" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "파일 크기" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "업로드 할 수 있는 이미지 제한하기" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "최소" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "글을 업로드했습니다" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "미디어 라이브러리 선택 제한하기" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "라이브러리" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "미리보기 크기" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "이미지 ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "이미지 URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "이미지 배열" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "프론트 엔드에 반환 값 지정하기" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "값 반환하기" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "이미지 추가하기" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "선택한 이미지가 없습니다" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "제거하기" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "편집하기" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "모든 이미지" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "이미지 업대이트하기" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "이미지 편집하기" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "이미지 선택하기" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "이미지" + +#: includes/fields/class-acf-field-message.php:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "렌더링 대신 보이는 텍스트로 HTML 마크 업을 허용하기" + +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "HTML 이탈하기" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "서식이 없습니다" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "<br> 자동 추가하기" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "단락 자동 추가하기" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "새 줄을 렌더링하는 방법을 제어합니다" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "새로운 줄" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "한 주의 시작일" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "값을 저장할 때 사용하는 형식입니다" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "형식 저장하기" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "주" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "이전" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "다음" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "오늘" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "넓이" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "임베드 크기" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "비활성 텍스트 표시" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "텍스트 끄기" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "활성일 때 보이는 텍스트" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "텍스트 켜기" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "기본 값" + +#: 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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "안내문" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "아니오" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "예" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "참 / 거짓" + +#: includes/fields/class-acf-field-group.php:471 +msgid "Row" +msgstr "열" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "태이블" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "블록" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "선택한 필드를 렌더링하는 데 사용하는 스타일 지정하기" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "래이아웃" + +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "하위 필드" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "그룹" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "사용자 정의 지도 높이" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "높이" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "초기화 줌 레벨 설정하기" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "줌" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "초기화 지도 중앙" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "중앙" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "주소를 검색하기..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "현재 위치 찾기" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "위치 지우기" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "검색하기" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "템플릿 함수를 통해 반환되는 형식" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "반환 형식" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "사용자 정의:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "글을 편집 할 때 보이는 형식" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "휴지통에 필드가 없습니다" + +#: acf.php:411 +msgid "No Fields found" +msgstr "필드를 찾을 수 없습니다" + +#: acf.php:410 +msgid "Search Fields" +msgstr "필드 검색하기" + +#: acf.php:409 +msgid "View Field" +msgstr "필드 보기" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "새로운 필드" + +#: acf.php:407 +msgid "Edit Field" +msgstr "필드 편집하기" + +#: acf.php:406 +msgid "Add New Field" +msgstr "새로운 필드 추가하기" + +#: acf.php:404 +msgid "Field" +msgstr "필드" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "필드" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "휴지통에서 필드 그룹을 찾을 수 없습니다" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "필드 그룹을 찾을 수 없습니다" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "필드 그룹 검색하기" + +#: acf.php:375 +msgid "View Field Group" +msgstr "필드 그룹 보기" + +#: acf.php:374 +msgid "New Field Group" +msgstr "새 필드 그룹" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "필드 그룹 편집하기" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "새 필드 그룹 추가하기" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "새로 추가하기" + +#: acf.php:370 +msgid "Field Group" +msgstr "필드 그룹" + +#: acf.php:369 includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "필드 그룹" + +#. Description of the plugin +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "강력하고, 전문적이며 직관적인 필드로 워드프레스를 사용자 정의합니다." + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com/" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "고급 사용자 정의 필드" diff --git a/lang/acf-nb_NO.mo b/lang/acf-nb_NO.mo index ab68384..18977b7 100644 Binary files a/lang/acf-nb_NO.mo and b/lang/acf-nb_NO.mo differ diff --git a/lang/acf-nb_NO.po b/lang/acf-nb_NO.po index bd828b5..2e68895 100644 --- a/lang/acf-nb_NO.po +++ b/lang/acf-nb_NO.po @@ -1,1165 +1,1104 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2017-06-27 15:33+1000\n" -"PO-Revision-Date: 2018-02-06 10:06+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: \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: Poedit 1.8.1\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:63 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "Begynn en ny grupe faner ved denne fanen." -#: acf.php:355 includes/admin/admin.php:117 -msgid "Field Groups" -msgstr "Feltgrupper" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "Ny fanegruppe" -#: acf.php:356 -msgid "Field Group" -msgstr "Feltgruppe" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:357 acf.php:389 includes/admin/admin.php:118 -#: pro/fields/class-acf-field-flexible-content.php:574 -msgid "Add New" -msgstr "Legg til ny" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "Lagre annet valg" -#: acf.php:358 -msgid "Add New Field Group" -msgstr "Legg til ny feltgruppe" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "Tillat andre valg" -#: acf.php:359 -msgid "Edit Field Group" -msgstr "Rediger feltgruppe" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "Legg til veksle alle" -#: acf.php:360 -msgid "New Field Group" -msgstr "Ny feltgruppe" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Lagee tilpassede verdier" -#: acf.php:361 -msgid "View Field Group" -msgstr "Vis feltgruppe" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Tilllat tilpassede verdier" -#: acf.php:362 -msgid "Search Field Groups" -msgstr "Søk i feltgrupper" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:363 -msgid "No Field Groups found" -msgstr "Ingen feltgrupper funnet" +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Oppdateringer" -#: acf.php:364 -msgid "No Field Groups found in Trash" -msgstr "Ingen feltgrupper funnet i papirkurven" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" -#: acf.php:387 includes/admin/admin-field-group.php:182 -#: includes/admin/admin-field-group.php:275 -#: includes/admin/admin-field-groups.php:510 -#: pro/fields/class-acf-field-clone.php:857 -msgid "Fields" -msgstr "Felt" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Lagre endringer" -#: acf.php:388 -msgid "Field" -msgstr "Felt" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Tittel for feltgruppe" -#: acf.php:390 -msgid "Add New Field" -msgstr "Legg til nytt felt" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Legg til tittel" -#: acf.php:391 -msgid "Edit Field" -msgstr "Rediger felt" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -#: acf.php:392 includes/admin/views/field-group-fields.php:41 -#: includes/admin/views/settings-info.php:105 -msgid "New Field" -msgstr "Nytt felt" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "Legg til feltgruppe" -#: acf.php:393 -msgid "View Field" -msgstr "Vis felt" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -#: acf.php:394 -msgid "Search Fields" -msgstr "Søkefelt" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Legg til din første feltgruppe" -#: acf.php:395 -msgid "No Fields found" -msgstr "Ingen felter funnet" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Oppgrader nå" -#: acf.php:396 -msgid "No Fields found in Trash" -msgstr "Ingen felt funnet i papirkurven" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Sider for innstillinger" -#: acf.php:435 includes/admin/admin-field-group.php:390 -#: includes/admin/admin-field-groups.php:567 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "ACF-blokker" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Gallerifelt" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Felksibelt innholdsfelt" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Gjentakende felt" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Slett feltgruppe" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Opprettet %1$s kl %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "Gruppeinnstillinger" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "#" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "Legg til felt" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Presentasjon" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validering" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Eksporter feltgrupper - Generer PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Eksporter som JSON" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "Feltgruppe deaktivert." +msgstr[1] "%s feltgrupper deaktivert." + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "Feltgruppe aktivert" +msgstr[1] "%s feltgrupper aktivert." + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Deaktiver" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Deaktiver dette elementet" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Aktiver" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Aktiver dette elementet" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "Flytte feltgruppe til papirkurven?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" msgid "Inactive" msgstr "Inaktiv" -#: acf.php:440 -#, php-format -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inaktiv (%s)" -msgstr[1] "Inaktive (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" -#: includes/admin/admin-field-group.php:68 -#: includes/admin/admin-field-group.php:69 -#: includes/admin/admin-field-group.php:71 -msgid "Field group updated." -msgstr "Feltgruppe oppdatert." +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" +"Advanced Custom Fields og Advanced Custom Fields PRO bør ikke være aktiverte " +"samtidig. Vi har automatisk deaktivert Advanced Custom Fields PRO." -#: includes/admin/admin-field-group.php:70 -msgid "Field group deleted." -msgstr "Feltgruppe slettet." +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" +"Advanced Custom Fields og Advanced Custom Fields PRO bør ikke være aktiverte " +"samtidig. Vi har automatisk deaktivert Advanced Custom Fields." -#: includes/admin/admin-field-group.php:73 -msgid "Field group published." -msgstr "Feltgruppe publisert." +#: 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/admin/admin-field-group.php:74 -msgid "Field group saved." -msgstr "Feltgruppe lagret." +#: includes/fields/class-acf-field-user.php:537 +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/admin/admin-field-group.php:75 -msgid "Field group submitted." -msgstr "Feltgruppe sendt inn." +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s må ha en gyldig bruker-ID." -#: includes/admin/admin-field-group.php:76 -msgid "Field group scheduled for." -msgstr "Feltgruppe planlagt for" +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Ugyldig forespørsel." -#: includes/admin/admin-field-group.php:77 -msgid "Field group draft updated." -msgstr "Feltgruppekladd oppdatert." +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "%1$s er ikke en av %2$s" -#: includes/admin/admin-field-group.php:183 -msgid "Location" -msgstr "Sted" +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s må ha en gyldig vedlegg-ID." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Aktiver gjennomsiktighet" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galleri (kun Pro)" #: includes/admin/admin-field-group.php:184 -msgid "Settings" -msgstr "Innstillinger" +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Klone (kun Pro)" -#: includes/admin/admin-field-group.php:269 -msgid "Move to trash. Are you sure?" -msgstr "Flytt til papirkurven. Er du sikker?" +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Fleksibelt innhold (kun Pro)" -#: includes/admin/admin-field-group.php:270 -msgid "checked" -msgstr "avkrysset" +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Gjentaker (kun Pro)" -#: includes/admin/admin-field-group.php:271 -msgid "No toggle fields available" -msgstr "Ingen av/på- felter tilgjengelig" - -#: includes/admin/admin-field-group.php:272 -msgid "Field group title is required" -msgstr "Feltgruppetittel er påkrevd" - -#: includes/admin/admin-field-group.php:273 -#: includes/api/api-field-group.php:732 -msgid "copy" -msgstr "kopier" - -#: includes/admin/admin-field-group.php:274 -#: includes/admin/views/field-group-field-conditional-logic.php:54 -#: includes/admin/views/field-group-field-conditional-logic.php:154 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3970 -msgid "or" -msgstr "eller" - -#: includes/admin/admin-field-group.php:276 -msgid "Parent fields" -msgstr "Foreldrefelter" - -#: includes/admin/admin-field-group.php:277 -msgid "Sibling fields" -msgstr "Søskenfelter" - -#: includes/admin/admin-field-group.php:278 -msgid "Move Custom Field" -msgstr "Flytt egendefinert felt" - -#: includes/admin/admin-field-group.php:279 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Dette feltet kan ikke flyttes før endringene er lagret" - -#: includes/admin/admin-field-group.php:280 -msgid "Null" -msgstr "Null" - -#: includes/admin/admin-field-group.php:281 includes/input.php:257 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"Endringene du har gjort vil gå tapt dersom du navigerer vekk fra denne siden" - -#: includes/admin/admin-field-group.php:282 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "Strengen \"field_\" kan ikke brukes som starten på et feltnavn" - -#: includes/admin/admin-field-group.php:360 -msgid "Field Keys" -msgstr "Feltnøkler" - -#: includes/admin/admin-field-group.php:390 -#: includes/admin/views/field-group-options.php:9 +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" msgid "Active" msgstr "Aktiv" -#: includes/admin/admin-field-group.php:801 -msgid "Move Complete." -msgstr "Flytting komplett." +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'‌‌%s' er ikke en gyldig e-postadresse." -#: includes/admin/admin-field-group.php:802 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "%s feltet finnes nå i %s feltgruppen" +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Fargeverdi" -#: includes/admin/admin-field-group.php:803 -msgid "Close Window" -msgstr "Lukk vinduet" +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Velg standardfarge" -#: includes/admin/admin-field-group.php:844 -msgid "Please select the destination for this field" -msgstr "Vennligst velg målet for dette feltet" +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Fjern farge" -#: includes/admin/admin-field-group.php:851 -msgid "Move Field" -msgstr "Flytt felt" +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blokker" -#: includes/admin/admin-field-groups.php:74 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktive (%s)" -msgstr[1] "Aktive (%s)" +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Alternativer" -#: includes/admin/admin-field-groups.php:142 -#, php-format -msgid "Field group duplicated. %s" -msgstr "Feltgruppe duplisert. %s" +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Brukere" -#: includes/admin/admin-field-groups.php:146 -#, php-format -msgid "%s field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s feltgruppe duplisert." -msgstr[1] "%s feltgrupper duplisert." +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menyelementer" -#: includes/admin/admin-field-groups.php:227 -#, php-format -msgid "Field group synchronised. %s" -msgstr "Feltgruppe synkronisert. %s" +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgeter" -#: includes/admin/admin-field-groups.php:231 -#, php-format -msgid "%s field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "%s feltgruppe synkronisert." -msgstr[1] "%s feltgrupper synkronisert." +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Vedlegg" -#: includes/admin/admin-field-groups.php:394 -#: includes/admin/admin-field-groups.php:557 -msgid "Sync available" -msgstr "Synkronisering tilgjengelig" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taksonomier" -#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 -#: pro/fields/class-acf-field-gallery.php:370 -msgid "Title" -msgstr "Tittel" +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Innlegg" -#: includes/admin/admin-field-groups.php:508 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/install-network.php:21 -#: includes/admin/views/install-network.php:29 -#: pro/fields/class-acf-field-gallery.php:397 -msgid "Description" -msgstr "Beskrivelse" +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON-feltgrupper (nyere)" -#: includes/admin/admin-field-groups.php:509 -msgid "Status" -msgstr "Status" +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Originale feltgrupper" -#. Description of the plugin/theme -#: includes/admin/admin-field-groups.php:607 -msgid "Customise WordPress with powerful, professional and intuitive fields." -msgstr "Tilpass WordPress med kraftige, profesjonelle og intuitive felt." +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Sist oppdatert: %s" -#: includes/admin/admin-field-groups.php:609 -#: includes/admin/settings-info.php:76 -#: pro/admin/views/html-settings-updates.php:111 -msgid "Changelog" -msgstr "Endringslogg" - -#: includes/admin/admin-field-groups.php:614 -#, php-format -msgid "See what's new in version %s." -msgstr "Se hva som er nytt i %s-utgaven." - -#: includes/admin/admin-field-groups.php:617 -msgid "Resources" -msgstr "Ressurser" - -#: includes/admin/admin-field-groups.php:619 -msgid "Website" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." msgstr "" -#: includes/admin/admin-field-groups.php:620 -msgid "Documentation" -msgstr "Dokumentasjon" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Ugyldig ID for feltgruppe." -#: includes/admin/admin-field-groups.php:621 -msgid "Support" -msgstr "Support" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Ugyldige parametere for feltgruppe." -#: includes/admin/admin-field-groups.php:623 -#, fuzzy -msgid "Pro" -msgstr "Farvel Tillegg. Hei PRO" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Venter på lagring" -#: includes/admin/admin-field-groups.php:628 -#, php-format -msgid "Thank you for creating with ACF." -msgstr "Takk for at du bygger med ACF." +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Lagret" -#: includes/admin/admin-field-groups.php:668 -msgid "Duplicate this item" -msgstr "Dupliser dette elementet" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importer" -#: includes/admin/admin-field-groups.php:668 -#: includes/admin/admin-field-groups.php:684 -#: includes/admin/views/field-group-field.php:49 -#: pro/fields/class-acf-field-flexible-content.php:573 -msgid "Duplicate" -msgstr "Dupliser" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Gjennomgå endringer" -#: includes/admin/admin-field-groups.php:701 -#: includes/fields/class-acf-field-google-map.php:132 -#: includes/fields/class-acf-field-relationship.php:737 -msgid "Search" -msgstr "Søk" +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Plassert i: %s" -#: includes/admin/admin-field-groups.php:760 -#, php-format -msgid "Select %s" -msgstr "Velg %s" +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Plassert i utvidelse: %s" -#: includes/admin/admin-field-groups.php:768 -msgid "Synchronise field group" -msgstr "Synkroniser feltgruppe" +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Plassert i tema: %s" -#: includes/admin/admin-field-groups.php:768 -#: includes/admin/admin-field-groups.php:798 -msgid "Sync" -msgstr "Synkroniser" +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Forskjellig" -#: includes/admin/admin-field-groups.php:780 -msgid "Apply" -msgstr "" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Synkroniseringsendringer" -#: includes/admin/admin-field-groups.php:798 -#, fuzzy -msgid "Bulk Actions" -msgstr "Massehandlinger" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Laster diff" -#: includes/admin/admin.php:113 -#: includes/admin/views/field-group-options.php:118 -msgid "Custom Fields" -msgstr "Egendefinerte felt" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Se over lokale endinger for JSON" -#: includes/admin/install-network.php:88 includes/admin/install.php:70 -#: includes/admin/install.php:121 -msgid "Upgrade Database" -msgstr "Oppgrader database" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Besøk nettsted" -#: includes/admin/install-network.php:140 -msgid "Review sites & upgrade" -msgstr "Gå igjennom nettsteder og oppgrader" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Vis detaljer" -#: includes/admin/install.php:187 -msgid "Error validating request" -msgstr "Kunne ikke validere forespørselen" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versjon %s" -#: includes/admin/install.php:210 includes/admin/views/install.php:105 -msgid "No updates available." -msgstr "Ingen oppdateringer tilgjengelige." - -#: includes/admin/settings-addons.php:51 -#: includes/admin/views/settings-addons.php:3 -msgid "Add-ons" -msgstr "Tillegg" - -#: includes/admin/settings-addons.php:87 -msgid "Error. Could not load add-ons list" -msgstr "Feil. Kunne ikke laste liste over tillegg" - -#: includes/admin/settings-info.php:50 -msgid "Info" +#: includes/admin/admin.php:169 +msgid "Information" msgstr "Informasjon" -#: includes/admin/settings-info.php:75 -msgid "What's New" -msgstr "Hva er nytt" +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" -#: includes/admin/settings-tools.php:50 -#: includes/admin/views/settings-tools-export.php:19 -#: includes/admin/views/settings-tools.php:31 -msgid "Tools" -msgstr "Verktøy" +#: includes/admin/admin.php:156 +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/settings-tools.php:147 includes/admin/settings-tools.php:380 -msgid "No field groups selected" -msgstr "Ingen feltgrupper valgt" +#: includes/admin/admin.php:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" -#: includes/admin/settings-tools.php:184 -#: includes/fields/class-acf-field-file.php:174 -msgid "No file selected" -msgstr "Ingen fil valgt" +#: includes/admin/admin.php:149 +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/settings-tools.php:197 -msgid "Error uploading file. Please try again" -msgstr "Feil ved opplasting av fil. Vennligst prøv igjen" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Hjelp og brukerstøtte" -#: includes/admin/settings-tools.php:206 -msgid "Incorrect file type" -msgstr "Feil filtype" +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" -#: includes/admin/settings-tools.php:223 -msgid "Import file empty" -msgstr "Importfil tom" +#: includes/admin/admin.php:134 +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/settings-tools.php:331 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Importerte 1 feltgruppe" -msgstr[1] "Importerte %s feltgrupper" +#: includes/admin/admin.php:132 +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/views/field-group-field-conditional-logic.php:28 -msgid "Conditional Logic" -msgstr "Betinget logikk" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Oversikt" -#: includes/admin/views/field-group-field-conditional-logic.php:54 +#: 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:361 +msgid "Error loading field." +msgstr "Feil ved lasting av felt." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s verdi er påkrevd" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 msgid "Show this field if" msgstr "Vis dette feltet hvis" -#: includes/admin/views/field-group-field-conditional-logic.php:103 -#: includes/locations.php:243 -msgid "is equal to" -msgstr "er lik" +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Betinget logikk" -#: includes/admin/views/field-group-field-conditional-logic.php:104 -#: includes/locations.php:244 -msgid "is not equal to" -msgstr "er ikke lik" - -#: includes/admin/views/field-group-field-conditional-logic.php:141 -#: includes/admin/views/html-location-rule.php:80 +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "og" -#: includes/admin/views/field-group-field-conditional-logic.php:156 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Legg til regelgruppe" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Lokal JSON" -#: includes/admin/views/field-group-field.php:41 -#: pro/fields/class-acf-field-flexible-content.php:420 -#: pro/fields/class-acf-field-repeater.php:358 -msgid "Drag to reorder" -msgstr "Dra for å endre rekkefølge" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Klonefelt" -#: includes/admin/views/field-group-field.php:45 -#: includes/admin/views/field-group-field.php:48 -msgid "Edit field" -msgstr "Rediger felt" - -#: includes/admin/views/field-group-field.php:48 -#: includes/fields/class-acf-field-image.php:140 -#: includes/fields/class-acf-field-link.php:152 -#: pro/fields/class-acf-field-gallery.php:357 -msgid "Edit" -msgstr "Rediger" - -#: includes/admin/views/field-group-field.php:49 -msgid "Duplicate field" -msgstr "Dupliser felt" - -#: includes/admin/views/field-group-field.php:50 -msgid "Move field to another group" -msgstr "Flytt felt til en annen gruppe" - -#: includes/admin/views/field-group-field.php:50 -msgid "Move" -msgstr "Flytt" - -#: includes/admin/views/field-group-field.php:51 -msgid "Delete field" -msgstr "Slett felt" - -#: includes/admin/views/field-group-field.php:51 -#: pro/fields/class-acf-field-flexible-content.php:572 -msgid "Delete" -msgstr "Slett" - -#: includes/admin/views/field-group-field.php:67 -msgid "Field Label" -msgstr "Feltetikett" - -#: includes/admin/views/field-group-field.php:68 -msgid "This is the name which will appear on the EDIT page" -msgstr "Dette navnet vil vises på REDIGERING-siden" - -#: includes/admin/views/field-group-field.php:78 -msgid "Field Name" -msgstr "Feltnavn" - -#: includes/admin/views/field-group-field.php:79 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Enkeltord, ingen mellomrom. Understreker og streker tillatt" - -#: includes/admin/views/field-group-field.php:89 -msgid "Field Type" -msgstr "Felttype" - -#: includes/admin/views/field-group-field.php:101 -#: includes/fields/class-acf-field-tab.php:102 -msgid "Instructions" -msgstr "Instruksjoner" - -#: includes/admin/views/field-group-field.php:102 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instruksjoner for forfattere. Vises når du sender inn data" - -#: includes/admin/views/field-group-field.php:111 -msgid "Required?" -msgstr "Påkrevd?" - -#: includes/admin/views/field-group-field.php:134 -msgid "Wrapper Attributes" -msgstr "Omslags-attributter" - -#: includes/admin/views/field-group-field.php:140 -msgid "width" -msgstr "bredde" - -#: includes/admin/views/field-group-field.php:155 -msgid "class" -msgstr "klasse" - -#: includes/admin/views/field-group-field.php:168 -msgid "id" -msgstr "id" - -#: includes/admin/views/field-group-field.php:180 -msgid "Close Field" -msgstr "Lukk felt" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Rekkefølge" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-checkbox.php:317 -#: includes/fields/class-acf-field-radio.php:321 -#: includes/fields/class-acf-field-select.php:530 -#: pro/fields/class-acf-field-flexible-content.php:599 -msgid "Label" -msgstr "Etikett" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:970 -#: pro/fields/class-acf-field-flexible-content.php:612 -msgid "Name" -msgstr "Navn" - -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" +#: includes/admin/views/html-notice-upgrade.php:31 +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/field-group-fields.php:8 +#: includes/admin/views/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Oppdatering av database er påkrevd" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Side for alternativer" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galleri" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Fleksibelt Innhold" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Gjentaker" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Tilbake til alle verktøy" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "Velg elementer for å skjule dem på redigeringsskjermen." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Skjul på skjerm" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Send tilbakesporinger" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Stikkord" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Kategorier" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Sideattributter" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Forfatter" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Identifikator" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisjoner" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Kommentarer" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Diskusjon" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Utdrag" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Redigeringverktøy for innhold" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalenke" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Vist i feltgruppeliste" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Feltgrupper med en lavere rekkefølge vil vises først" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Ordre Nr." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Under felter" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Under etiketter" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Instruksjonsplassering" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Etikettplassering" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Sideordnet" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (etter innhold)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Høy (etter tittel)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posisjon" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Sømløs (ingen metaboks)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (WP metaboks)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Stil" + +#: includes/admin/views/field-group-fields.php:44 msgid "Type" msgstr "Type" -#: includes/admin/views/field-group-fields.php:14 -msgid "" -"No fields. Click the + Add Field button to create your " -"first field." +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Nøkkel" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Rekkefølge" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Stengt felt" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "klasse" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "bredde" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Attributter for innpakning" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Obligatorisk" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instruksjoner for forfattere. Vist ved innsending av data" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instruksjoner" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Felttype" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Enkelt ord, ingen mellomrom. Understrekning og bindestreker tillatt" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Feltnavn" + +#: includes/admin/views/field-group-field.php:122 +msgid "This is the name which will appear on the EDIT page" +msgstr "Dette er navnet som vil vises på redigeringssiden" + +#: includes/admin/views/field-group-field.php:121 +msgid "Field Label" +msgstr "Feltetikett" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Slett" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Slett felt" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Flytt" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Flytt felt til annen gruppe" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Dupliser felt" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Rediger felt" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Dra for å endre rekkefølge" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Vis denne feltgruppen hvis" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Ingen oppdateringer tilgjengelig." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" msgstr "" -"Ingen felt. Klikk på + Legg til felt knappen for å lage " -"ditt første felt." +"Oppgradering av database fullført. Se hva som er nytt" -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Legg til felt" +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leser oppgraderingsoppgaver..." -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Regler" +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Oppgradering milsyktes." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Oppgradering fullført." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Oppgraderer data til versjon %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Vennligst velg minst ett nettsted å oppgradere." + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Databaseoppgradering fullført. Tilbake til kontrollpanelet " +"for nettverket" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Nettstedet er oppdatert" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Nettsted" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Oppgrader nettsteder" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Legg til regelgruppe" #: includes/admin/views/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 redigeringsvinduer som vil bruke " -"disse feltene." +"Lag et sett regler for å bestemme hvilke skjermer som skal bruke disse " +"avanserte egendefinerte feltene" -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Stil" +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Regler" -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Standard (WP Metabox)" +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Kopiert" -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Sømløs (ingen metabox)" +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Kopier til utklippstavle" -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Posisjon" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Høy (etter tittel)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normal (etter innhold)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Side" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Etikettplassering" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:116 -msgid "Top aligned" -msgstr "Toppjustert" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:117 -msgid "Left aligned" -msgstr "Venstrejustert" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Instruksjonsplassering" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Nedenfor etiketter" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Nedenfor felt" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Rekkefølge" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "Feltgrupper med lavere rekkefølge vises først" - -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Vist i feltgruppeliste" - -#: includes/admin/views/field-group-options.php:107 -msgid "Hide on screen" -msgstr "Skjul på skjermen" - -#: includes/admin/views/field-group-options.php:108 -msgid "Select items to hide them from the edit screen." -msgstr "Velg elementer som skal skjules fra redigeringsvinduet." - -#: includes/admin/views/field-group-options.php:108 -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 "" -"Hvis flere feltgrupper vises i et redigeringsvindu, vil den første " -"feltgruppens alternativer benyttes. (Den med laveste nummer i rekkefølgen)" - -#: includes/admin/views/field-group-options.php:115 -msgid "Permalink" -msgstr "Permalenke" - -#: includes/admin/views/field-group-options.php:116 -msgid "Content Editor" -msgstr "Innholdsredigerer" - -#: includes/admin/views/field-group-options.php:117 -msgid "Excerpt" -msgstr "Utdrag" - -#: includes/admin/views/field-group-options.php:119 -msgid "Discussion" -msgstr "Diskusjon" - -#: includes/admin/views/field-group-options.php:120 -msgid "Comments" -msgstr "Kommentarer" - -#: includes/admin/views/field-group-options.php:121 -msgid "Revisions" -msgstr "Revisjoner" - -#: includes/admin/views/field-group-options.php:122 -msgid "Slug" -msgstr "URL-tamp" - -#: includes/admin/views/field-group-options.php:123 -msgid "Author" -msgstr "Forfatter" - -#: includes/admin/views/field-group-options.php:124 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/field-group-options.php:125 -msgid "Page Attributes" -msgstr "Sideattributter" - -#: includes/admin/views/field-group-options.php:126 -#: includes/fields/class-acf-field-relationship.php:751 -msgid "Featured Image" -msgstr "Fremhevet bilde" - -#: includes/admin/views/field-group-options.php:127 -msgid "Categories" -msgstr "Kategorier" - -#: includes/admin/views/field-group-options.php:128 -msgid "Tags" -msgstr "Merkelapper" - -#: includes/admin/views/field-group-options.php:129 -msgid "Send Trackbacks" -msgstr "Send tilbakesporinger" - -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Vis feltgruppen hvis" - -#: includes/admin/views/install-network.php:4 -msgid "Upgrade Sites" -msgstr "Oppgrader nettsteder" - -#: includes/admin/views/install-network.php:9 -#: includes/admin/views/install.php:3 -msgid "Advanced Custom Fields Database Upgrade" -msgstr "Databaseoppgradering for Advanced Custom Fields" - -#: includes/admin/views/install-network.php:11 -#, php-format -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 databaseoppgradering. Kryss av for de du vil " -"oppdatere og klikk deretter %s." - -#: includes/admin/views/install-network.php:20 -#: includes/admin/views/install-network.php:28 -msgid "Site" -msgstr "Nettsted" - -#: includes/admin/views/install-network.php:48 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Siden krever databaseoppgradering fra%s til%s" - -#: includes/admin/views/install-network.php:50 -msgid "Site is up to date" -msgstr "Nettstedet er oppdatert" - -#: includes/admin/views/install-network.php:63 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Databaseoppgradering er fullført. Gå tilbake til " -"nettverksdashboard" - -#: includes/admin/views/install-network.php:102 -#: includes/admin/views/install-notice.php:42 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Det anbefales sterkt at du sikkerhetskopierer databasen før du fortsetter. " -"Er du sikker på at du vil kjøre oppdateringen nå?" - -#: includes/admin/views/install-network.php:158 -msgid "Upgrade complete" -msgstr "Oppgradering komplett" - -#: includes/admin/views/install-network.php:162 -#: includes/admin/views/install.php:9 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Oppgradere data til versjon%s" - -#: includes/admin/views/install-notice.php:8 -#: pro/fields/class-acf-field-repeater.php:36 -msgid "Repeater" -msgstr "Gjentaker" - -#: includes/admin/views/install-notice.php:9 -#: pro/fields/class-acf-field-flexible-content.php:36 -msgid "Flexible Content" -msgstr "Fleksibelt innhold" - -#: includes/admin/views/install-notice.php:10 -#: pro/fields/class-acf-field-gallery.php:36 -msgid "Gallery" -msgstr "Galleri" - -#: includes/admin/views/install-notice.php:11 -#: pro/locations/class-acf-location-options-page.php:13 -msgid "Options Page" -msgstr "Alternativer-side" - -#: includes/admin/views/install-notice.php:26 -msgid "Database Upgrade Required" -msgstr "Databaseoppgradering er påkrevd" - -#: includes/admin/views/install-notice.php:28 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Takk for at du oppgraderte til %s v%s!" - -#: includes/admin/views/install-notice.php:28 -msgid "" -"Before you start using the new awesome features, please update your database " -"to the newest version." -msgstr "" -"Før du begynner å bruke de nye funksjonene, må du oppdatere din database til " -"den nyeste versjonen." - -#: includes/admin/views/install-notice.php:31 -#, php-format -msgid "" -"Please also ensure any premium add-ons (%s) have first been updated to the " -"latest version." -msgstr "" - -#: includes/admin/views/install.php:7 -msgid "Reading upgrade tasks..." -msgstr "Leser oppgraderingsoppgaver ..." - -#: includes/admin/views/install.php:11 -#, php-format -msgid "Database Upgrade complete. See what's new" -msgstr "" -"Databaseoppgradering er fullført. Se hva som er nytt" - -#: includes/admin/views/settings-addons.php:17 -msgid "Download & Install" -msgstr "Last ned og installer" - -#: includes/admin/views/settings-addons.php:36 -msgid "Installed" -msgstr "Installert" - -#: includes/admin/views/settings-info.php:3 -msgid "Welcome to Advanced Custom Fields" -msgstr "Velkommen til Advanced Custom Fields" - -#: includes/admin/views/settings-info.php:4 -#, php-format -msgid "" -"Thank you for updating! ACF %s is bigger and better than ever before. We " -"hope you like it." -msgstr "" -"Takk for at du oppdaterte! ACF %s er større og bedre enn noen gang før. Vi " -"håper du liker det." - -#: includes/admin/views/settings-info.php:17 -msgid "A smoother custom field experience" -msgstr "En velfungerende opplevelse av egendefinerte felter" - -#: includes/admin/views/settings-info.php:22 -msgid "Improved Usability" -msgstr "Forbedret brukervennlighet" - -#: includes/admin/views/settings-info.php:23 -msgid "" -"Including the popular Select2 library has improved both usability and speed " -"across a number of field types including post object, page link, taxonomy " -"and select." -msgstr "" -"Å inkludere det populære Select2-biblioteket har økt både brukervennlighet " -"og lastetid for flere felttyper, inkludert innleggsobjekter, sidelinker, " -"taksonomi og nedtrekksmenyer." - -#: includes/admin/views/settings-info.php:27 -msgid "Improved Design" -msgstr "Forbedret design" - -#: includes/admin/views/settings-info.php:28 -msgid "" -"Many fields have undergone a visual refresh to make ACF look better than " -"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " -"(new) fields!" -msgstr "" -"Mange felter har fått en visuell oppfriskning så ACF ser bedre ut enn på " -"lenge! Nevneverdige endringer sees på galleri-, relasjons- og oEmbedfelter!" - -#: includes/admin/views/settings-info.php:32 -msgid "Improved Data" -msgstr "Forbedret data" - -#: includes/admin/views/settings-info.php:33 -msgid "" -"Redesigning the data architecture has allowed sub fields to live " -"independently from their parents. This allows you to drag and drop fields in " -"and out of parent fields!" -msgstr "" -"Omskriving av dataarkitekturen tillater underfelter å leve uavhengig av " -"foreldrene sine. Det betyr at du kan dra og slippe felter til og fra " -"foreldrefeltene sine!" - -#: includes/admin/views/settings-info.php:39 -msgid "Goodbye Add-ons. Hello PRO" -msgstr "Farvel Tillegg. Hei PRO" - -#: includes/admin/views/settings-info.php:44 -msgid "Introducing ACF PRO" -msgstr "Vi presenterer ACF PRO" - -#: includes/admin/views/settings-info.php:45 -msgid "" -"We're changing the way premium functionality is delivered in an exciting way!" -msgstr "Vi endrer måten premium-funksjonalitet leveres på en spennende måte!" - -#: includes/admin/views/settings-info.php:46 -#, php-format -msgid "" -"All 4 premium add-ons have been combined into a new Pro " -"version of ACF. With both personal and developer licenses available, " -"premium functionality is more affordable and accessible than ever before!" -msgstr "" -"Alle fire premium-tilleggene har blitt kombinert i en ny Pro-" -"versjon av ACF. Med både personlig- og utviklerlisenser tilgjengelig er " -"premiumfunksjonalitet billigere og mer tilgjengelig enn noensinne!" - -#: includes/admin/views/settings-info.php:50 -msgid "Powerful Features" -msgstr "Kraftige funksjoner" - -#: includes/admin/views/settings-info.php:51 -msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content " -"layouts, a beautiful gallery field and the ability to create extra admin " -"options pages!" -msgstr "" -"ACF PRO inneholder kraftige funksjoner som repeterende data, fleksible " -"innholdsstrukturer, et vakkert gallerifelt og muligheten til å lage ekstra " -"administrasjonsegenskapssider!" - -#: includes/admin/views/settings-info.php:52 -#, php-format -msgid "Read more about ACF PRO features." -msgstr "Les mer om ACF PRO-funksjonaliteten." - -#: includes/admin/views/settings-info.php:56 -msgid "Easy Upgrading" -msgstr "Enkel oppgradering" - -#: includes/admin/views/settings-info.php:57 -#, php-format -msgid "" -"To help make upgrading easy, login to your store account " -"and claim a free copy of ACF PRO!" -msgstr "" -"For å gjøre oppgradering enklere, Logg inn på din konto " -"og hent en gratis kopi av ACF PRO!" - -#: includes/admin/views/settings-info.php:58 -#, php-format -msgid "" -"We also wrote an upgrade guide to answer any questions, " -"but if you do have one, please contact our support team via the help desk" -msgstr "" -"Vi har også skrevet en oppgraderingsveiledning for å " -"besvare de fleste spørsmål, men skulle du fortsatt ha et spørsmål, ta " -"kontakt med via helpdesken" - -#: includes/admin/views/settings-info.php:66 -msgid "Under the Hood" -msgstr "Under panseret" - -#: includes/admin/views/settings-info.php:71 -msgid "Smarter field settings" -msgstr "Smartere feltinnstillinger" - -#: includes/admin/views/settings-info.php:72 -msgid "ACF now saves its field settings as individual post objects" -msgstr "ACF lagrer nå feltegenskapene som individuelle innleggsobjekter" - -#: includes/admin/views/settings-info.php:76 -msgid "More AJAX" -msgstr "Mer AJAX" - -#: includes/admin/views/settings-info.php:77 -msgid "More fields use AJAX powered search to speed up page loading" -msgstr "Flere felter bruker AJAX-drevet søk for å kutte ned innlastingstiden" - -#: includes/admin/views/settings-info.php:81 -msgid "Local JSON" -msgstr "Lokal JSON" - -#: includes/admin/views/settings-info.php:82 -msgid "New auto export to JSON feature improves speed" -msgstr "Ny automatisk eksport til JSON sparer tid" - -#: includes/admin/views/settings-info.php:88 -msgid "Better version control" -msgstr "Bedre versjonskontroll" - -#: includes/admin/views/settings-info.php:89 -msgid "" -"New auto export to JSON feature allows field settings to be version " -"controlled" -msgstr "Ny autoeksport til JSON lar feltinnstillinger bli versjonskontrollert" - -#: includes/admin/views/settings-info.php:93 -msgid "Swapped XML for JSON" -msgstr "Byttet XML mot JSON" - -#: includes/admin/views/settings-info.php:94 -msgid "Import / Export now uses JSON in favour of XML" -msgstr "Import / eksport bruker nå JSON istedenfor XML" - -#: includes/admin/views/settings-info.php:98 -msgid "New Forms" -msgstr "Nye skjemaer" - -#: includes/admin/views/settings-info.php:99 -msgid "Fields can now be mapped to comments, widgets and all user forms!" -msgstr "" -"Feltene kan nå tilordnes til kommentarer, widgets og alle brukerskjemaer!" - -#: includes/admin/views/settings-info.php:106 -msgid "A new field for embedding content has been added" -msgstr "Et nytt felt for å bygge inn innhold er lagt til" - -#: includes/admin/views/settings-info.php:110 -msgid "New Gallery" -msgstr "Nytt galleri" - -#: includes/admin/views/settings-info.php:111 -msgid "The gallery field has undergone a much needed facelift" -msgstr "Gallerietfeltet har gjennomgått en sårt tiltrengt ansiktsløftning" - -#: includes/admin/views/settings-info.php:115 -msgid "New Settings" -msgstr "Nye innstillinger" - -#: includes/admin/views/settings-info.php:116 -msgid "" -"Field group settings have been added for label placement and instruction " -"placement" -msgstr "" -"Feltgruppeinnstillinger er lagt til for etikettplassering og " -"instruksjonsplassering" - -#: includes/admin/views/settings-info.php:122 -msgid "Better Front End Forms" -msgstr "Bedre frontend-skjemaer" - -#: includes/admin/views/settings-info.php:123 -msgid "acf_form() can now create a new post on submission" -msgstr "acf_form() kan nå lage et nytt innlegg ved innsending" - -#: includes/admin/views/settings-info.php:127 -msgid "Better Validation" -msgstr "Bedre validering" - -#: includes/admin/views/settings-info.php:128 -msgid "Form validation is now done via PHP + AJAX in favour of only JS" -msgstr "Skjemavalidering skjer nå via PHP + AJAX framfor kun JavaScript" - -#: includes/admin/views/settings-info.php:132 -msgid "Relationship Field" -msgstr "Relasjonsfelt" - -#: includes/admin/views/settings-info.php:133 -msgid "" -"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" -msgstr "" -"Nye relasjonsfeltinnstillinger for 'Filtre' (søk, innleggstype, taksonomi)" - -#: includes/admin/views/settings-info.php:139 -msgid "Moving Fields" -msgstr "Flytte felt" - -#: includes/admin/views/settings-info.php:140 -msgid "" -"New field group functionality allows you to move a field between groups & " -"parents" -msgstr "" -"Ny feltgruppe-funksonalitet gir deg mulighet til å flytte felt mellom " -"grupper og foreldre" - -#: includes/admin/views/settings-info.php:144 -#: includes/fields/class-acf-field-page_link.php:36 -msgid "Page Link" -msgstr "Sidekobling" - -#: includes/admin/views/settings-info.php:145 -msgid "New archives group in page_link field selection" -msgstr "Ny arkiver gruppe i page_link feltvalg" - -#: includes/admin/views/settings-info.php:149 -msgid "Better Options Pages" -msgstr "Bedre sider for innstillinger" - -#: includes/admin/views/settings-info.php:150 -msgid "" -"New functions for options page allow creation of both parent and child menu " -"pages" -msgstr "" -"Nye funksjoner på Valg-siden tillater oppretting av menysider for både " -"foreldre og barn" - -#: includes/admin/views/settings-info.php:159 -#, php-format -msgid "We think you'll love the changes in %s." -msgstr "Vi tror du vil elske endringene i %s." - -#: includes/admin/views/settings-tools-export.php:23 -msgid "Export Field Groups to PHP" -msgstr "Eksporter feltgrupper til PHP" - -#: includes/admin/views/settings-tools-export.php:27 +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -1167,1642 +1106,2001 @@ msgid "" "the following code to your theme's functions.php file or include it within " "an external file." msgstr "" -"Følgende kode kan brukes for å registrere en lokal versjon av de(n) valgte " -"feltgruppen(e). En lokal feltgruppe kan gi mange fordeler som raskere " -"lastetid, versjonskontroll og dynamiske felter/innstillinger. Kopier og lim " -"inn den følgende koden i ditt temas functions.php-fil, eller inkluder det " -"med en ekstern fil." +"Den følgende koden kan brukes for å registrere lokale versjoner av valgte " +"feltgruppe(r). En lokal feltgruppe kan gi mange fordeler slik som raskere " +"innlastingstid, versjonskontroll og dynamiske felt/innstillinger. Enkelt " +"kopier og lim inn følgende kode i ditt temas functions.php-fil eller " +"inkluder den i en ekstern fil." -#: includes/admin/views/settings-tools.php:5 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 "" +"Velg de feltgruppene du ønsker å eksportere og velgs så din eksportmetode. " +"Eksporter som JSON til en json-fil som du senere kan importere til en annen " +"ACF-installasjon. Bruk Generer PHP-knappen til å eksportere til PHP-kode som " +"du kan sette inn i ditt tema." + +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 msgid "Select Field Groups" msgstr "Velg feltgrupper" -#: includes/admin/views/settings-tools.php:35 +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Eksporterte 1 feltgruppe." +msgstr[1] "Eksportert %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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/views/settings-tools.php:38 +#: includes/admin/tools/class-acf-admin-tool-import.php:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Importerte 1 feltgruppe" +msgstr[1] "Importerte %s feltgrupper" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Importfil tom" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Feil filtype" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Filopplastingsfeil. Vennligst forsøk på nytt" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" msgstr "" -"Velg feltgruppene du vil eksportere og velg eksporteringsmetode. Bruk " -"nedlastingsknappen for å eksportere til en .json-fil du kan importere i en " -"annen installasjon av ACF. Bruk genererknappen for å eksportere PHP-kode du " -"kan legge inn i ditt tema." +"Velg den ACF JSON-fil du ønsker å importere. Når du klikker på import-" +"knappen nedenfor vil ACF importere feltgruppene" -#: includes/admin/views/settings-tools.php:50 -msgid "Download export file" -msgstr "Last ned eksportfil" - -#: includes/admin/views/settings-tools.php:51 -msgid "Generate export code" -msgstr "Generer eksportkode" - -#: includes/admin/views/settings-tools.php:64 +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 msgid "Import Field Groups" msgstr "Importer feltgrupper" -#: includes/admin/views/settings-tools.php:67 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." -msgstr "" -"Velg ACF JSON-filen du vil importere. Når du klikker importerknappen under, " -"vil ACF importere feltgruppene." - -#: includes/admin/views/settings-tools.php:77 -#: includes/fields/class-acf-field-file.php:46 -msgid "Select File" -msgstr "Velg fil" - -#: includes/admin/views/settings-tools.php:86 -msgid "Import" -msgstr "Importer" - -#: includes/api/api-helpers.php:856 -msgid "Thumbnail" -msgstr "Miniatyrbilde" - -#: includes/api/api-helpers.php:857 -msgid "Medium" -msgstr "Medium" - -#: includes/api/api-helpers.php:858 -msgid "Large" -msgstr "Stor" - -#: includes/api/api-helpers.php:907 -msgid "Full Size" -msgstr "Full størrelse" - -#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1837 -#: pro/fields/class-acf-field-clone.php:1042 -msgid "(no title)" -msgstr "(ingen tittel)" - -#: includes/api/api-helpers.php:1874 -#: includes/fields/class-acf-field-page_link.php:284 -#: includes/fields/class-acf-field-post_object.php:283 -#: includes/fields/class-acf-field-taxonomy.php:992 -msgid "Parent" -msgstr "Forelder" - -#: includes/api/api-helpers.php:3891 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "Bildebredde må være minst %dpx." - -#: includes/api/api-helpers.php:3896 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "Bildebredden må ikke overstige %dpx." - -#: includes/api/api-helpers.php:3912 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "Bildehøyden må være minst %dpx." - -#: includes/api/api-helpers.php:3917 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "Bilde høyde må ikke overstige %dpx." - -#: includes/api/api-helpers.php:3935 -#, php-format -msgid "File size must be at least %s." -msgstr "Filstørrelse må være minst %s." - -#: includes/api/api-helpers.php:3940 -#, php-format -msgid "File size must must not exceed %s." -msgstr "Filstørrelsen må ikke overstige %s." - -#: includes/api/api-helpers.php:3974 -#, php-format -msgid "File type must be %s." -msgstr "Filtypen må være %s." - -#: includes/fields.php:144 -msgid "Basic" -msgstr "Grunnleggende" - -#: includes/fields.php:145 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Innhold" - -#: includes/fields.php:146 -msgid "Choice" -msgstr "Valg" - -#: includes/fields.php:147 -msgid "Relational" -msgstr "Relaterte" - -#: includes/fields.php:148 -msgid "jQuery" -msgstr "jQuery" - -#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:286 -#: includes/fields/class-acf-field-group.php:485 -#: includes/fields/class-acf-field-radio.php:300 -#: pro/fields/class-acf-field-clone.php:889 -#: pro/fields/class-acf-field-flexible-content.php:569 -#: pro/fields/class-acf-field-flexible-content.php:618 -#: pro/fields/class-acf-field-repeater.php:514 -msgid "Layout" -msgstr "Oppsett" - -#: includes/fields.php:305 -msgid "Field type does not exist" -msgstr "Felttype eksisterer ikke" - -#: includes/fields.php:305 -#, fuzzy -msgid "Unknown" -msgstr "Ukjent feltgruppe" - -#: includes/fields/class-acf-field-checkbox.php:36 -#: includes/fields/class-acf-field-taxonomy.php:786 -msgid "Checkbox" -msgstr "Avkryssingsboks" - -#: includes/fields/class-acf-field-checkbox.php:150 -msgid "Toggle All" -msgstr "Velg/avvelg alle" - -#: includes/fields/class-acf-field-checkbox.php:207 -msgid "Add new choice" -msgstr "Legg til nytt valg" - -#: includes/fields/class-acf-field-checkbox.php:246 -#: includes/fields/class-acf-field-radio.php:250 -#: includes/fields/class-acf-field-select.php:466 -msgid "Choices" -msgstr "Valg" - -#: includes/fields/class-acf-field-checkbox.php:247 -#: includes/fields/class-acf-field-radio.php:251 -#: includes/fields/class-acf-field-select.php:467 -msgid "Enter each choice on a new line." -msgstr "Skriv inn hvert valg på en ny linje." - -#: includes/fields/class-acf-field-checkbox.php:247 -#: includes/fields/class-acf-field-radio.php:251 -#: includes/fields/class-acf-field-select.php:467 -msgid "For more control, you may specify both a value and label like this:" -msgstr "For mer kontroll, kan du angi både en verdi og merke som dette:" - -#: includes/fields/class-acf-field-checkbox.php:247 -#: includes/fields/class-acf-field-radio.php:251 -#: includes/fields/class-acf-field-select.php:467 -msgid "red : Red" -msgstr "svart : Svart" - -#: includes/fields/class-acf-field-checkbox.php:255 -msgid "Allow Custom" -msgstr "Tillat egendefinert" - -#: includes/fields/class-acf-field-checkbox.php:260 -msgid "Allow 'custom' values to be added" -msgstr "Tillat at \"egendefinerte\" verdier legges til" - -#: includes/fields/class-acf-field-checkbox.php:266 -msgid "Save Custom" -msgstr "Lagre egendefinert" - -#: includes/fields/class-acf-field-checkbox.php:271 -msgid "Save 'custom' values to the field's choices" -msgstr "Lagre \"egendefinerte\" verdier som alternativer i feltets valg" - -#: includes/fields/class-acf-field-checkbox.php:277 -#: includes/fields/class-acf-field-color_picker.php:146 -#: includes/fields/class-acf-field-email.php:133 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-radio.php:291 -#: includes/fields/class-acf-field-select.php:475 -#: includes/fields/class-acf-field-text.php:142 -#: includes/fields/class-acf-field-textarea.php:139 -#: includes/fields/class-acf-field-true_false.php:150 -#: includes/fields/class-acf-field-url.php:114 -#: includes/fields/class-acf-field-wysiwyg.php:436 -msgid "Default Value" -msgstr "Standardverdi" - -#: includes/fields/class-acf-field-checkbox.php:278 -#: includes/fields/class-acf-field-select.php:476 -msgid "Enter each default value on a new line" -msgstr "Skriv inn hver standardverdi på en ny linje" - -#: includes/fields/class-acf-field-checkbox.php:292 -#: includes/fields/class-acf-field-radio.php:306 -msgid "Vertical" -msgstr "Vertikal" - -#: includes/fields/class-acf-field-checkbox.php:293 -#: includes/fields/class-acf-field-radio.php:307 -msgid "Horizontal" -msgstr "Horisontal" - -#: includes/fields/class-acf-field-checkbox.php:300 -msgid "Toggle" -msgstr "Veksle" - -#: includes/fields/class-acf-field-checkbox.php:301 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Legg til ekstra avkryssingsboks for å velge alle alternativer" - -#: includes/fields/class-acf-field-checkbox.php:310 -#: includes/fields/class-acf-field-file.php:219 -#: includes/fields/class-acf-field-image.php:206 -#: includes/fields/class-acf-field-link.php:180 -#: includes/fields/class-acf-field-radio.php:314 -#: includes/fields/class-acf-field-taxonomy.php:839 -msgid "Return Value" -msgstr "Returverdi" - -#: includes/fields/class-acf-field-checkbox.php:311 -#: includes/fields/class-acf-field-file.php:220 -#: includes/fields/class-acf-field-image.php:207 -#: includes/fields/class-acf-field-link.php:181 -#: includes/fields/class-acf-field-radio.php:315 -msgid "Specify the returned value on front end" -msgstr "Angi verdien returnert på frontend" - -#: includes/fields/class-acf-field-checkbox.php:316 -#: includes/fields/class-acf-field-radio.php:320 -#: includes/fields/class-acf-field-select.php:529 -msgid "Value" -msgstr "Verdi" - -#: includes/fields/class-acf-field-checkbox.php:318 -#: includes/fields/class-acf-field-radio.php:322 -#: includes/fields/class-acf-field-select.php:531 -msgid "Both (Array)" -msgstr "Begge (Array)" - -#: includes/fields/class-acf-field-color_picker.php:36 -msgid "Color Picker" -msgstr "Fargevelger" - -#: includes/fields/class-acf-field-color_picker.php:83 -msgid "Clear" -msgstr "Fjern" - -#: includes/fields/class-acf-field-color_picker.php:84 -msgid "Default" -msgstr "Standardverdi" - -#: includes/fields/class-acf-field-color_picker.php:85 -msgid "Select Color" -msgstr "Velg farge" - -#: includes/fields/class-acf-field-color_picker.php:86 -msgid "Current Color" -msgstr "Nåværende farge" - -#: includes/fields/class-acf-field-date_picker.php:36 -msgid "Date Picker" -msgstr "Datovelger" - -#: includes/fields/class-acf-field-date_picker.php:44 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Fullført" - -#: includes/fields/class-acf-field-date_picker.php:45 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Idag" - -#: includes/fields/class-acf-field-date_picker.php:46 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Neste" - -#: includes/fields/class-acf-field-date_picker.php:47 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Forrige" - -#: includes/fields/class-acf-field-date_picker.php:48 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "uke" - -#: includes/fields/class-acf-field-date_picker.php:223 -#: includes/fields/class-acf-field-date_time_picker.php:197 -#: includes/fields/class-acf-field-time_picker.php:127 -msgid "Display Format" -msgstr "Visningsformat" - -#: includes/fields/class-acf-field-date_picker.php:224 -#: includes/fields/class-acf-field-date_time_picker.php:198 -#: includes/fields/class-acf-field-time_picker.php:128 -msgid "The format displayed when editing a post" -msgstr "Visningsformat når du redigerer et innlegg" - -#: includes/fields/class-acf-field-date_picker.php:232 -#: includes/fields/class-acf-field-date_picker.php:263 -#: includes/fields/class-acf-field-date_time_picker.php:207 -#: includes/fields/class-acf-field-date_time_picker.php:224 -#: includes/fields/class-acf-field-time_picker.php:135 -#: includes/fields/class-acf-field-time_picker.php:150 -#, fuzzy -msgid "Custom:" -msgstr "Advanced Custom Fields" - -#: includes/fields/class-acf-field-date_picker.php:242 -msgid "Save Format" -msgstr "Lagre format" - -#: includes/fields/class-acf-field-date_picker.php:243 -msgid "The format used when saving a value" -msgstr "Formatet som brukes når du lagrer en verdi" - -#: includes/fields/class-acf-field-date_picker.php:253 -#: includes/fields/class-acf-field-date_time_picker.php:214 -#: includes/fields/class-acf-field-post_object.php:447 -#: includes/fields/class-acf-field-relationship.php:778 -#: includes/fields/class-acf-field-select.php:524 -#: includes/fields/class-acf-field-time_picker.php:142 -msgid "Return Format" -msgstr "Format som skal returneres" - -#: includes/fields/class-acf-field-date_picker.php:254 -#: includes/fields/class-acf-field-date_time_picker.php:215 -#: includes/fields/class-acf-field-time_picker.php:143 -msgid "The format returned via template functions" -msgstr "Formatet som returneres via malfunksjoner" - -#: includes/fields/class-acf-field-date_picker.php:272 -#: includes/fields/class-acf-field-date_time_picker.php:231 -msgid "Week Starts On" -msgstr "Uken starter på" - -#: includes/fields/class-acf-field-date_time_picker.php:36 -msgid "Date Time Picker" -msgstr "Dato/tid-velger" - -#: includes/fields/class-acf-field-date_time_picker.php:44 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Velg tid" - -#: includes/fields/class-acf-field-date_time_picker.php:45 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tid" - -#: includes/fields/class-acf-field-date_time_picker.php:46 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Time" - -#: includes/fields/class-acf-field-date_time_picker.php:47 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minutt" - -#: includes/fields/class-acf-field-date_time_picker.php:48 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekund" - -#: includes/fields/class-acf-field-date_time_picker.php:49 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekund" - -#: includes/fields/class-acf-field-date_time_picker.php:50 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekund" - -#: includes/fields/class-acf-field-date_time_picker.php:51 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tidssone" - -#: includes/fields/class-acf-field-date_time_picker.php:52 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nå" - -#: includes/fields/class-acf-field-date_time_picker.php:53 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Fullført" - -#: includes/fields/class-acf-field-date_time_picker.php:54 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Velg" - -#: includes/fields/class-acf-field-date_time_picker.php:56 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:57 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:60 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:61 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-email.php:36 -msgid "Email" -msgstr "Epost" - -#: includes/fields/class-acf-field-email.php:134 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-radio.php:292 -#: includes/fields/class-acf-field-text.php:143 -#: includes/fields/class-acf-field-textarea.php:140 -#: includes/fields/class-acf-field-url.php:115 -#: includes/fields/class-acf-field-wysiwyg.php:437 -msgid "Appears when creating a new post" -msgstr "Vises når du oppretter et nytt innlegg" - -#: includes/fields/class-acf-field-email.php:142 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:134 -#: includes/fields/class-acf-field-text.php:151 -#: includes/fields/class-acf-field-textarea.php:148 -#: includes/fields/class-acf-field-url.php:123 -msgid "Placeholder Text" -msgstr "Plassholdertekst" - -#: includes/fields/class-acf-field-email.php:143 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:135 -#: includes/fields/class-acf-field-text.php:152 -#: includes/fields/class-acf-field-textarea.php:149 -#: includes/fields/class-acf-field-url.php:124 -msgid "Appears within the input" -msgstr "Vises i inndataene" - -#: includes/fields/class-acf-field-email.php:151 -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-password.php:143 -#: includes/fields/class-acf-field-text.php:160 -msgid "Prepend" -msgstr "Sett inn foran" - -#: includes/fields/class-acf-field-email.php:152 -#: includes/fields/class-acf-field-number.php:164 -#: includes/fields/class-acf-field-password.php:144 -#: includes/fields/class-acf-field-text.php:161 -msgid "Appears before the input" -msgstr "Vises før inndata" - -#: includes/fields/class-acf-field-email.php:160 -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-password.php:152 -#: includes/fields/class-acf-field-text.php:169 -msgid "Append" -msgstr "Tilføy" - -#: includes/fields/class-acf-field-email.php:161 -#: includes/fields/class-acf-field-number.php:173 -#: includes/fields/class-acf-field-password.php:153 -#: includes/fields/class-acf-field-text.php:170 -msgid "Appears after the input" -msgstr "Vises etter inndata" - -#: includes/fields/class-acf-field-file.php:36 -msgid "File" -msgstr "Fil" - -#: includes/fields/class-acf-field-file.php:47 -msgid "Edit File" -msgstr "Rediger fil" - -#: includes/fields/class-acf-field-file.php:48 -msgid "Update File" -msgstr "Oppdater fil" - -#: includes/fields/class-acf-field-file.php:49 -#: includes/fields/class-acf-field-image.php:54 includes/media.php:57 -#: pro/fields/class-acf-field-gallery.php:55 -msgid "Uploaded to this post" -msgstr "Lastet opp til dette innlegget" - -#: includes/fields/class-acf-field-file.php:145 -msgid "File name" -msgstr "Filnavn" - -#: includes/fields/class-acf-field-file.php:149 -#: includes/fields/class-acf-field-file.php:252 -#: includes/fields/class-acf-field-file.php:263 -#: includes/fields/class-acf-field-image.php:266 -#: includes/fields/class-acf-field-image.php:295 -#: pro/fields/class-acf-field-gallery.php:705 -#: pro/fields/class-acf-field-gallery.php:734 -msgid "File size" -msgstr "Filstørrelse" - -#: includes/fields/class-acf-field-file.php:174 -msgid "Add File" -msgstr "Legg til fil" - -#: includes/fields/class-acf-field-file.php:225 -msgid "File Array" -msgstr "Filtabell" - -#: includes/fields/class-acf-field-file.php:226 -msgid "File URL" -msgstr "Fil-URL" - -#: includes/fields/class-acf-field-file.php:227 -msgid "File ID" -msgstr "Fil-ID" - -#: includes/fields/class-acf-field-file.php:234 -#: includes/fields/class-acf-field-image.php:231 -#: pro/fields/class-acf-field-gallery.php:670 -msgid "Library" -msgstr "Bibliotek" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:232 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "Limit the media library choice" -msgstr "Begrense valg av mediebibliotek" - -#: includes/fields/class-acf-field-file.php:240 -#: includes/fields/class-acf-field-image.php:237 -#: includes/locations/class-acf-location-attachment.php:105 -#: includes/locations/class-acf-location-comment.php:83 -#: includes/locations/class-acf-location-nav-menu.php:106 -#: includes/locations/class-acf-location-taxonomy.php:83 -#: includes/locations/class-acf-location-user-form.php:91 -#: includes/locations/class-acf-location-user-role.php:108 -#: includes/locations/class-acf-location-widget.php:87 -#: pro/fields/class-acf-field-gallery.php:676 -msgid "All" -msgstr "Alle" - -#: includes/fields/class-acf-field-file.php:241 -#: includes/fields/class-acf-field-image.php:238 -#: pro/fields/class-acf-field-gallery.php:677 -msgid "Uploaded to post" -msgstr "Lastet opp til innlegg" - -#: includes/fields/class-acf-field-file.php:248 -#: includes/fields/class-acf-field-image.php:245 -#: pro/fields/class-acf-field-gallery.php:684 -msgid "Minimum" -msgstr "Minimum" - -#: includes/fields/class-acf-field-file.php:249 -#: includes/fields/class-acf-field-file.php:260 -msgid "Restrict which files can be uploaded" -msgstr "Begrense hvilke filer som kan lastes opp" - -#: includes/fields/class-acf-field-file.php:259 -#: includes/fields/class-acf-field-image.php:274 -#: pro/fields/class-acf-field-gallery.php:713 -msgid "Maximum" -msgstr "Maksimum" - -#: includes/fields/class-acf-field-file.php:270 -#: includes/fields/class-acf-field-image.php:303 -#: pro/fields/class-acf-field-gallery.php:742 -msgid "Allowed file types" -msgstr "Tillatte filtyper" - -#: includes/fields/class-acf-field-file.php:271 -#: includes/fields/class-acf-field-image.php:304 -#: pro/fields/class-acf-field-gallery.php:743 -msgid "Comma separated list. Leave blank for all types" -msgstr "Kommaseparert liste. Tomt for alle typer" - -#: includes/fields/class-acf-field-google-map.php:36 -msgid "Google Map" -msgstr "Google-kart" - -#: includes/fields/class-acf-field-google-map.php:51 -msgid "Locating" -msgstr "Lokaliserer" - -#: includes/fields/class-acf-field-google-map.php:52 -msgid "Sorry, this browser does not support geolocation" -msgstr "Beklager, støtter denne nettleseren ikke geolokasjon" - -#: includes/fields/class-acf-field-google-map.php:133 -msgid "Clear location" -msgstr "Tøm plassering" - -#: includes/fields/class-acf-field-google-map.php:134 -msgid "Find current location" -msgstr "Finn nåværende posisjon" - -#: includes/fields/class-acf-field-google-map.php:137 -msgid "Search for address..." -msgstr "Søk etter adresse" - -#: includes/fields/class-acf-field-google-map.php:167 -#: includes/fields/class-acf-field-google-map.php:178 -msgid "Center" -msgstr "Sentrer" - -#: includes/fields/class-acf-field-google-map.php:168 -#: includes/fields/class-acf-field-google-map.php:179 -msgid "Center the initial map" -msgstr "Sentrer det første kartet" - -#: includes/fields/class-acf-field-google-map.php:190 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:191 -msgid "Set the initial zoom level" -msgstr "Angi initielt zoom-nivå" - -#: includes/fields/class-acf-field-google-map.php:200 -#: includes/fields/class-acf-field-image.php:257 -#: includes/fields/class-acf-field-image.php:286 -#: includes/fields/class-acf-field-oembed.php:297 -#: pro/fields/class-acf-field-gallery.php:696 -#: pro/fields/class-acf-field-gallery.php:725 -msgid "Height" -msgstr "Høyde" - -#: includes/fields/class-acf-field-google-map.php:201 -msgid "Customise the map height" -msgstr "Tilpasse karthøyde" - -#: includes/fields/class-acf-field-group.php:36 -#, fuzzy -msgid "Group" -msgstr "Gruppe (viser valgt felt i en gruppe innenfor dette feltet)" - -#: includes/fields/class-acf-field-group.php:469 -#: pro/fields/class-acf-field-repeater.php:453 -msgid "Sub Fields" -msgstr "Underfelt" - -#: includes/fields/class-acf-field-group.php:486 -#: pro/fields/class-acf-field-clone.php:890 -msgid "Specify the style used to render the selected fields" -msgstr "Angi stilen som brukes til å gjengi de valgte feltene" - -#: includes/fields/class-acf-field-group.php:491 -#: pro/fields/class-acf-field-clone.php:895 -#: pro/fields/class-acf-field-flexible-content.php:629 -#: pro/fields/class-acf-field-repeater.php:522 -msgid "Block" -msgstr "Blokk" - -#: includes/fields/class-acf-field-group.php:492 -#: pro/fields/class-acf-field-clone.php:896 -#: pro/fields/class-acf-field-flexible-content.php:628 -#: pro/fields/class-acf-field-repeater.php:521 -msgid "Table" -msgstr "Tabell" - -#: includes/fields/class-acf-field-group.php:493 -#: pro/fields/class-acf-field-clone.php:897 -#: pro/fields/class-acf-field-flexible-content.php:630 -#: pro/fields/class-acf-field-repeater.php:523 -msgid "Row" -msgstr "Rad" - -#: includes/fields/class-acf-field-image.php:36 -msgid "Image" -msgstr "Bilde" - -#: includes/fields/class-acf-field-image.php:51 -msgid "Select Image" -msgstr "Velg bilde" - -#: includes/fields/class-acf-field-image.php:52 -#: pro/fields/class-acf-field-gallery.php:53 -msgid "Edit Image" -msgstr "Rediger bilde" - -#: includes/fields/class-acf-field-image.php:53 -#: pro/fields/class-acf-field-gallery.php:54 -msgid "Update Image" -msgstr "Oppdater bilde" - -#: includes/fields/class-acf-field-image.php:55 -msgid "All images" -msgstr "Alle bilder" - -#: includes/fields/class-acf-field-image.php:142 -#: includes/fields/class-acf-field-link.php:153 includes/input.php:267 -#: pro/fields/class-acf-field-gallery.php:358 -#: pro/fields/class-acf-field-gallery.php:546 -msgid "Remove" -msgstr "Fjern" - -#: includes/fields/class-acf-field-image.php:158 -msgid "No image selected" -msgstr "Ingen bilde valgt" - -#: includes/fields/class-acf-field-image.php:158 -msgid "Add Image" -msgstr "Legg til bilde" - -#: includes/fields/class-acf-field-image.php:212 -msgid "Image Array" -msgstr "Filtabell" - -#: includes/fields/class-acf-field-image.php:213 -msgid "Image URL" -msgstr "Bilde-URL" - -#: includes/fields/class-acf-field-image.php:214 -msgid "Image ID" -msgstr "Bilde-ID" - -#: includes/fields/class-acf-field-image.php:221 -msgid "Preview Size" -msgstr "Forhåndsvisningsstørrelse" - -#: includes/fields/class-acf-field-image.php:222 -msgid "Shown when entering data" -msgstr "Vises når du skriver inn data" - -#: includes/fields/class-acf-field-image.php:246 -#: includes/fields/class-acf-field-image.php:275 -#: pro/fields/class-acf-field-gallery.php:685 -#: pro/fields/class-acf-field-gallery.php:714 -msgid "Restrict which images can be uploaded" -msgstr "Begrense hvilke bilder som kan lastes opp" - -#: includes/fields/class-acf-field-image.php:249 -#: includes/fields/class-acf-field-image.php:278 -#: includes/fields/class-acf-field-oembed.php:286 -#: pro/fields/class-acf-field-gallery.php:688 -#: pro/fields/class-acf-field-gallery.php:717 -msgid "Width" -msgstr "Bredde" - -#: includes/fields/class-acf-field-link.php:36 -#, fuzzy -msgid "Link" -msgstr "Sidekobling" - -#: includes/fields/class-acf-field-link.php:146 -#, fuzzy -msgid "Select Link" -msgstr "Velg fil" - -#: includes/fields/class-acf-field-link.php:151 -msgid "Opens in a new window/tab" -msgstr "" - -#: includes/fields/class-acf-field-link.php:186 -#, fuzzy -msgid "Link Array" -msgstr "Filtabell" - -#: includes/fields/class-acf-field-link.php:187 -#, fuzzy -msgid "Link URL" -msgstr "Fil-URL" - -#: includes/fields/class-acf-field-message.php:36 -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-true_false.php:141 -msgid "Message" -msgstr "Melding" - -#: includes/fields/class-acf-field-message.php:124 -#: includes/fields/class-acf-field-textarea.php:176 -msgid "New Lines" -msgstr "Linjeskift" - -#: includes/fields/class-acf-field-message.php:125 -#: includes/fields/class-acf-field-textarea.php:177 -msgid "Controls how new lines are rendered" -msgstr "Kontroller hvordan linjeskift gjengis" - -#: includes/fields/class-acf-field-message.php:129 -#: includes/fields/class-acf-field-textarea.php:181 -msgid "Automatically add paragraphs" -msgstr "Automatisk legge til avsnitt" - -#: includes/fields/class-acf-field-message.php:130 -#: includes/fields/class-acf-field-textarea.php:182 -msgid "Automatically add <br>" -msgstr "Legg til <br>" - -#: includes/fields/class-acf-field-message.php:131 -#: includes/fields/class-acf-field-textarea.php:183 -msgid "No Formatting" -msgstr "Ingen formatering" - -#: includes/fields/class-acf-field-message.php:138 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:139 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Tillat HTML-kode til å vise oppføringsteksten i stedet for gjengivelse" - -#: includes/fields/class-acf-field-number.php:36 -msgid "Number" -msgstr "Tall" - -#: includes/fields/class-acf-field-number.php:181 -msgid "Minimum Value" -msgstr "Minste verdi" - -#: includes/fields/class-acf-field-number.php:190 -msgid "Maximum Value" -msgstr "Maksimal verdi" - -#: includes/fields/class-acf-field-number.php:199 -msgid "Step Size" -msgstr "Størrelse trinn" - -#: includes/fields/class-acf-field-number.php:237 -msgid "Value must be a number" -msgstr "Verdien må være et tall" - -#: includes/fields/class-acf-field-number.php:255 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "Verdien må være lik eller høyere enn %d" - -#: includes/fields/class-acf-field-number.php:263 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "Verdien må være lik eller lavere enn %d" - -#: includes/fields/class-acf-field-oembed.php:36 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:237 -msgid "Enter URL" -msgstr "Skriv inn URL" - -#: includes/fields/class-acf-field-oembed.php:250 -#: includes/fields/class-acf-field-taxonomy.php:904 -msgid "Error." -msgstr "Feil." - -#: includes/fields/class-acf-field-oembed.php:250 -msgid "No embed found for the given URL." -msgstr "Fant ingen innbygging for den gitte URL-en." - -#: includes/fields/class-acf-field-oembed.php:283 -#: includes/fields/class-acf-field-oembed.php:294 -msgid "Embed Size" -msgstr "Embed-størrelse" - -#: includes/fields/class-acf-field-page_link.php:192 -msgid "Archives" -msgstr "Arkiv" - -#: includes/fields/class-acf-field-page_link.php:500 -#: includes/fields/class-acf-field-post_object.php:399 -#: includes/fields/class-acf-field-relationship.php:704 -msgid "Filter by Post Type" -msgstr "Filtrer etter innleggstype" - -#: includes/fields/class-acf-field-page_link.php:508 -#: includes/fields/class-acf-field-post_object.php:407 -#: includes/fields/class-acf-field-relationship.php:712 -msgid "All post types" -msgstr "Alle innleggstyper" - -#: includes/fields/class-acf-field-page_link.php:514 -#: includes/fields/class-acf-field-post_object.php:413 -#: includes/fields/class-acf-field-relationship.php:718 -msgid "Filter by Taxonomy" -msgstr "Filtrer etter taksonomi" - -#: includes/fields/class-acf-field-page_link.php:522 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-relationship.php:726 -msgid "All taxonomies" -msgstr "Alle taksonomier" - -#: includes/fields/class-acf-field-page_link.php:528 -#: includes/fields/class-acf-field-post_object.php:427 -#: includes/fields/class-acf-field-radio.php:259 -#: includes/fields/class-acf-field-select.php:484 -#: includes/fields/class-acf-field-taxonomy.php:799 -#: includes/fields/class-acf-field-user.php:423 -msgid "Allow Null?" -msgstr "Tillat Null?" - -#: includes/fields/class-acf-field-page_link.php:538 -msgid "Allow Archives URLs" -msgstr "Tillat arkiv-URL-er" - -#: includes/fields/class-acf-field-page_link.php:548 -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-select.php:494 -#: includes/fields/class-acf-field-user.php:433 -msgid "Select multiple values?" -msgstr "Velg flere verdier?" - -#: includes/fields/class-acf-field-password.php:36 -msgid "Password" -msgstr "Passord" - -#: includes/fields/class-acf-field-post_object.php:36 -#: includes/fields/class-acf-field-post_object.php:452 -#: includes/fields/class-acf-field-relationship.php:783 -msgid "Post Object" -msgstr "Innleggsobjekt" - -#: includes/fields/class-acf-field-post_object.php:453 -#: includes/fields/class-acf-field-relationship.php:784 -msgid "Post ID" -msgstr "ID for innlegg" - -#: includes/fields/class-acf-field-radio.php:36 -msgid "Radio Button" -msgstr "Radioknapp" - -#: includes/fields/class-acf-field-radio.php:269 -msgid "Other" -msgstr "Andre" - -#: includes/fields/class-acf-field-radio.php:274 -msgid "Add 'other' choice to allow for custom values" -msgstr "Legg til 'andre'-valg for å tillate egendefinerte verdier" - -#: includes/fields/class-acf-field-radio.php:280 -msgid "Save Other" -msgstr "Lagre annen" - -#: includes/fields/class-acf-field-radio.php:285 -msgid "Save 'other' values to the field's choices" -msgstr "Lagre 'andre'-verdier til feltets valg" - -#: includes/fields/class-acf-field-relationship.php:36 -msgid "Relationship" -msgstr "Forhold" - -#: includes/fields/class-acf-field-relationship.php:48 -msgid "Minimum values reached ( {min} values )" -msgstr "Minimumsverdier nådd ({min} verdier)" - -#: includes/fields/class-acf-field-relationship.php:49 -msgid "Maximum values reached ( {max} values )" -msgstr "Maksimumsverdier nådd ( {max} verdier )" - -#: includes/fields/class-acf-field-relationship.php:50 -msgid "Loading" -msgstr "Laster" - -#: includes/fields/class-acf-field-relationship.php:51 -msgid "No matches found" -msgstr "Fant ingen treff" - -#: includes/fields/class-acf-field-relationship.php:585 -msgid "Search..." -msgstr "Søk …" - -#: includes/fields/class-acf-field-relationship.php:594 -msgid "Select post type" -msgstr "Velg innleggstype" - -#: includes/fields/class-acf-field-relationship.php:607 -msgid "Select taxonomy" -msgstr "Velg taksonomi" - -#: includes/fields/class-acf-field-relationship.php:732 -msgid "Filters" -msgstr "Filtre" - -#: includes/fields/class-acf-field-relationship.php:738 -#: includes/locations/class-acf-location-post-type.php:27 -msgid "Post Type" -msgstr "Innleggstype" - -#: includes/fields/class-acf-field-relationship.php:739 -#: includes/fields/class-acf-field-taxonomy.php:36 -#: includes/fields/class-acf-field-taxonomy.php:769 -msgid "Taxonomy" -msgstr "Taksonomi" - -#: includes/fields/class-acf-field-relationship.php:746 -msgid "Elements" -msgstr "Elementer" - -#: includes/fields/class-acf-field-relationship.php:747 -msgid "Selected elements will be displayed in each result" -msgstr "Valgte elementer vises i hvert resultat" - -#: includes/fields/class-acf-field-relationship.php:758 -msgid "Minimum posts" -msgstr "Minimum antall innlegg" - -#: includes/fields/class-acf-field-relationship.php:767 -msgid "Maximum posts" -msgstr "Maksimalt antall innlegg" - -#: includes/fields/class-acf-field-relationship.php:871 -#: pro/fields/class-acf-field-gallery.php:815 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s krever minst %s valgt" -msgstr[1] "%s krever minst %s valgte" - -#: includes/fields/class-acf-field-select.php:36 -#: includes/fields/class-acf-field-taxonomy.php:791 -msgctxt "noun" -msgid "Select" -msgstr "Valg" - -#: includes/fields/class-acf-field-select.php:49 -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:50 -#, php-format -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 nedpiltastene for å navigere." - -#: includes/fields/class-acf-field-select.php:51 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Fant ingen treff" - -#: includes/fields/class-acf-field-select.php:52 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Vennligst fyll inn ett eller flere tegn" - -#: includes/fields/class-acf-field-select.php:53 -#, php-format -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Vennligst fyll inn %d eller flere tegn" - -#: includes/fields/class-acf-field-select.php:54 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Vennligst slett ett tegn" - -#: includes/fields/class-acf-field-select.php:55 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Vennligst slett %d tegn" - -#: includes/fields/class-acf-field-select.php:56 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Du kan bare velge ett element" - -#: includes/fields/class-acf-field-select.php:57 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Du kan bare velge %d elementer" - -#: includes/fields/class-acf-field-select.php:58 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Laster flere resultater …" - -#: includes/fields/class-acf-field-select.php:59 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Søker…" - -#: includes/fields/class-acf-field-select.php:60 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Lasting mislyktes" - -#: includes/fields/class-acf-field-select.php:270 includes/media.php:54 -msgctxt "verb" -msgid "Select" -msgstr "Velg" - -#: includes/fields/class-acf-field-select.php:504 -#: includes/fields/class-acf-field-true_false.php:159 -msgid "Stylised UI" -msgstr "Stilisert brukergrensesnitt" - -#: includes/fields/class-acf-field-select.php:514 -msgid "Use AJAX to lazy load choices?" -msgstr "Bruk AJAX for å laste valg i bakgrunnen ved behov?" - -#: includes/fields/class-acf-field-select.php:525 -msgid "Specify the value returned" -msgstr "Angi verdien som returneres" - -#: includes/fields/class-acf-field-separator.php:36 -msgid "Separator" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:36 -msgid "Tab" -msgstr "Tab" - -#: includes/fields/class-acf-field-tab.php:96 -msgid "" -"The tab field will display incorrectly when added to a Table style repeater " -"field or flexible content field layout" -msgstr "" -"Fane-feltet vises ikke korrekt når det plasseres i et repeterende felt med " -"tabell-visning eller i et fleksibelt innholdsfelt" - -#: includes/fields/class-acf-field-tab.php:97 -msgid "" -"Use \"Tab Fields\" to better organize your edit screen by grouping fields " -"together." -msgstr "Bruk \"Fane-felt\" til å gruppere felter" - -#: includes/fields/class-acf-field-tab.php:98 -msgid "" -"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." -msgstr "" -"Alle felter som kommer etter dette \"fane-feltet\" (eller til et annet " -"\"fane-felt\" defineres) blir gruppert under overskriften til dette fane-" -"feltet." - -#: includes/fields/class-acf-field-tab.php:112 -msgid "Placement" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Synk" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Velg %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Dupliser" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Dupliser dette elementet" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Beskrivelse" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synk tilgjengelig" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Feltgruppe synkronisert." +msgstr[1] "%s feltgrupper synkronisert." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Feltgruppe duplisert" +msgstr[1] "%s feltgrupper duplisert." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktiv (%s)" +msgstr[1] "Aktive(%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Oppgrader database" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Egendefinerte felt" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Flytt felt" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Vennligst velg destinasjon for dette feltet" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Lukk vindu" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Flytting fullført." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Aktiv" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Feltnøkler" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Innstillinger" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" msgstr "Plassering" -#: includes/fields/class-acf-field-tab.php:124 -msgid "End-point" -msgstr "Avslutning" - -#: includes/fields/class-acf-field-tab.php:125 -msgid "Use this field as an end-point and start a new group of tabs" -msgstr "Bruk dette feltet som en avslutning eller start en ny fane-gruppe" - -#: includes/fields/class-acf-field-taxonomy.php:719 -#: includes/fields/class-acf-field-true_false.php:95 -#: includes/fields/class-acf-field-true_false.php:184 includes/input.php:266 -#: pro/admin/views/html-settings-updates.php:103 -msgid "No" -msgstr "Nei" - -#: includes/fields/class-acf-field-taxonomy.php:738 -msgid "None" -msgstr "Ingen" - -#: includes/fields/class-acf-field-taxonomy.php:770 -msgid "Select the taxonomy to be displayed" -msgstr "Velg taksonomien som skal vises" - -#: includes/fields/class-acf-field-taxonomy.php:779 -msgid "Appearance" -msgstr "Utseende" - -#: includes/fields/class-acf-field-taxonomy.php:780 -msgid "Select the appearance of this field" -msgstr "Velg utseendet på dette feltet" - -#: includes/fields/class-acf-field-taxonomy.php:785 -msgid "Multiple Values" -msgstr "Flere verdier" - -#: includes/fields/class-acf-field-taxonomy.php:787 -msgid "Multi Select" -msgstr "Flervalgsboks" - -#: includes/fields/class-acf-field-taxonomy.php:789 -msgid "Single Value" -msgstr "Enkeltverdi" - -#: includes/fields/class-acf-field-taxonomy.php:790 -msgid "Radio Buttons" -msgstr "Radioknapper" - -#: includes/fields/class-acf-field-taxonomy.php:809 -msgid "Create Terms" -msgstr "Opprett termer" - -#: includes/fields/class-acf-field-taxonomy.php:810 -msgid "Allow new terms to be created whilst editing" -msgstr "Tillat at nye termer opprettes under redigering" - -#: includes/fields/class-acf-field-taxonomy.php:819 -msgid "Save Terms" -msgstr "Lagre termer" - -#: includes/fields/class-acf-field-taxonomy.php:820 -msgid "Connect selected terms to the post" -msgstr "Koble valgte termer til innlegget" - -#: includes/fields/class-acf-field-taxonomy.php:829 -msgid "Load Terms" -msgstr "Hent termer" - -#: includes/fields/class-acf-field-taxonomy.php:830 -msgid "Load value from posts terms" -msgstr "Hent verdier fra andre innleggstermer" - -#: includes/fields/class-acf-field-taxonomy.php:844 -msgid "Term Object" -msgstr "Term-objekt" - -#: includes/fields/class-acf-field-taxonomy.php:845 -msgid "Term ID" -msgstr "Term-ID" - -#: includes/fields/class-acf-field-taxonomy.php:904 -#, php-format -msgid "User unable to add new %s" -msgstr "Brukeren kan ikke legge til ny %s" - -#: includes/fields/class-acf-field-taxonomy.php:917 -#, php-format -msgid "%s already exists" -msgstr "%s eksisterer allerede" - -#: includes/fields/class-acf-field-taxonomy.php:958 -#, php-format -msgid "%s added" -msgstr "%s lagt til" - -#: includes/fields/class-acf-field-taxonomy.php:1003 -msgid "Add" -msgstr "Legg til" - -#: includes/fields/class-acf-field-text.php:36 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-text.php:178 -#: includes/fields/class-acf-field-textarea.php:157 -msgid "Character Limit" -msgstr "Karakterbegrensning" - -#: includes/fields/class-acf-field-text.php:179 -#: includes/fields/class-acf-field-textarea.php:158 -msgid "Leave blank for no limit" -msgstr "La stå tomt for ingen grense" - -#: includes/fields/class-acf-field-textarea.php:36 -msgid "Text Area" -msgstr "Tekstområde" - -#: includes/fields/class-acf-field-textarea.php:166 -msgid "Rows" -msgstr "Rader" - -#: includes/fields/class-acf-field-textarea.php:167 -msgid "Sets the textarea height" -msgstr "Setter textarea-høyde" - -#: includes/fields/class-acf-field-time_picker.php:36 -msgid "Time Picker" -msgstr "Tidsvelger" - -#: includes/fields/class-acf-field-true_false.php:36 -msgid "True / False" -msgstr "Sann / Usann" - -#: includes/fields/class-acf-field-true_false.php:94 -#: includes/fields/class-acf-field-true_false.php:174 includes/input.php:265 -#: pro/admin/views/html-settings-updates.php:93 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:142 -msgid "Displays text alongside the checkbox" -msgstr "Viser tekst ved siden av avkryssingsboksen" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "On Text" -msgstr "På tekst" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when active" -msgstr "Teksten som vises når aktiv" - -#: includes/fields/class-acf-field-true_false.php:180 -msgid "Off Text" -msgstr "Av tekst" - -#: includes/fields/class-acf-field-true_false.php:181 -msgid "Text shown when inactive" -msgstr "Teksten som vises når inaktiv" - -#: includes/fields/class-acf-field-url.php:36 -msgid "Url" -msgstr "URL" - -#: includes/fields/class-acf-field-url.php:165 -msgid "Value must be a valid URL" -msgstr "Feltet må inneholde en gyldig URL" - -#: includes/fields/class-acf-field-user.php:36 includes/locations.php:95 -msgid "User" -msgstr "Bruker" - -#: includes/fields/class-acf-field-user.php:408 -msgid "Filter by role" -msgstr "Filtrer etter rolle" - -#: includes/fields/class-acf-field-user.php:416 -msgid "All user roles" -msgstr "Alle brukerroller" - -#: includes/fields/class-acf-field-wysiwyg.php:36 -msgid "Wysiwyg Editor" -msgstr "WYSIWYG Editor" - -#: includes/fields/class-acf-field-wysiwyg.php:385 -msgid "Visual" -msgstr "Visuell" - -#: includes/fields/class-acf-field-wysiwyg.php:386 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:392 -msgid "Click to initialize TinyMCE" -msgstr "Klikk for å initialisere TinyMCE" - -#: includes/fields/class-acf-field-wysiwyg.php:445 -msgid "Tabs" -msgstr "Faner" - -#: includes/fields/class-acf-field-wysiwyg.php:450 -msgid "Visual & Text" -msgstr "Visuell og tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:451 -msgid "Visual Only" -msgstr "Bare visuell" - -#: includes/fields/class-acf-field-wysiwyg.php:452 -msgid "Text Only" -msgstr "Bare tekst" - -#: includes/fields/class-acf-field-wysiwyg.php:459 -msgid "Toolbar" -msgstr "Verktøylinje" - -#: includes/fields/class-acf-field-wysiwyg.php:469 -msgid "Show Media Upload Buttons?" -msgstr "Vise knapper for mediaopplasting?" - -#: includes/fields/class-acf-field-wysiwyg.php:479 -msgid "Delay initialization?" -msgstr "Utsette initialisering?" - -#: includes/fields/class-acf-field-wysiwyg.php:480 -msgid "TinyMCE will not be initalized until field is clicked" -msgstr "TinyMCE blir ikke initialisert før feltet klikkes" - -#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 -#: pro/admin/admin-options-page.php:304 -msgid "Edit field group" -msgstr "Rediger feltgruppe" - -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Valider epot" - -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81 -msgid "Update" -msgstr "Oppdater" - -#: includes/forms/form-front.php:104 -msgid "Post updated" -msgstr "Innlegg oppdatert" - -#: includes/forms/form-front.php:229 -msgid "Spam Detected" -msgstr "Søppel avdekket" - -#: includes/input.php:258 -msgid "Expand Details" -msgstr "Utvid detaljer" - -#: includes/input.php:259 -msgid "Collapse Details" -msgstr "Skjul detaljer" - -#: includes/input.php:260 -msgid "Validation successful" -msgstr "Vellykket validering" - -#: includes/input.php:261 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Validering mislyktes" - -#: includes/input.php:262 -msgid "1 field requires attention" -msgstr "1 felt må ses på" - -#: includes/input.php:263 -#, php-format -msgid "%d fields require attention" -msgstr "%d felter må ses på" - -#: includes/input.php:264 -msgid "Restricted" -msgstr "Begrenset" - -#: includes/input.php:268 -msgid "Cancel" -msgstr "" - -#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 -msgid "Post" -msgstr "Innlegg" - -#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "kopi" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(dette feltet)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Avkrysset" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Flytt egendefinert felt" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Ingen vekslefelt er tilgjengelige" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Feltgruppetittel er obligatorisk" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Kladd for feltgruppe oppdatert." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Feltgruppe planlagt til." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Feltgruppe innsendt." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Feltgruppe lagret" + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Feltgruppe publisert." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Feltgruppe slettet." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Feltgruppe oppdatert." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 msgid "Page" msgstr "Side" -#: includes/locations.php:96 -msgid "Forms" -msgstr "Skjemaer" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Innlegg" -#: includes/locations/class-acf-location-attachment.php:27 -msgid "Attachment" -msgstr "Vedlegg" +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" -#: includes/locations/class-acf-location-attachment.php:113 -#, php-format -msgid "All %s formats" -msgstr "" +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relasjonell" -#: includes/locations/class-acf-location-comment.php:27 -msgid "Comment" -msgstr "Kommentar" +#: includes/fields.php:356 +msgid "Choice" +msgstr "Valg" -#: includes/locations/class-acf-location-current-user-role.php:27 -msgid "Current User Role" -msgstr "Rolle nåværende bruker" +#: includes/fields.php:354 +msgid "Basic" +msgstr "Grunnleggende" -#: includes/locations/class-acf-location-current-user-role.php:114 -msgid "Super Admin" -msgstr "Superadmin" +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Ukjent" -#: includes/locations/class-acf-location-current-user.php:27 -msgid "Current User" -msgstr "Nåværende bruker" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Felttype eksisterer ikke" -#: includes/locations/class-acf-location-current-user.php:101 -msgid "Logged in" -msgstr "Logget inn" +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Spam oppdaget" -#: includes/locations/class-acf-location-current-user.php:102 -msgid "Viewing front end" -msgstr "Ser forside" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Innlegg oppdatert" -#: includes/locations/class-acf-location-current-user.php:103 -msgid "Viewing back end" -msgstr "Ser adminside" +#: includes/forms/form-front.php:106 +msgid "Update" +msgstr "Oppdater" -#: includes/locations/class-acf-location-nav-menu-item.php:27 -msgid "Menu Item" -msgstr "" +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "Valider e-post" -#: includes/locations/class-acf-location-nav-menu.php:27 -msgid "Menu" -msgstr "" +#: includes/fields.php:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Innhold" -#: includes/locations/class-acf-location-nav-menu.php:113 -#, fuzzy -msgid "Menu Locations" -msgstr "Sted" +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Tittel" -#: includes/locations/class-acf-location-nav-menu.php:123 -msgid "Menus" -msgstr "" +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Rediger feltgruppe" -#: includes/locations/class-acf-location-page-parent.php:27 -msgid "Page Parent" -msgstr "Sideforelder" +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Valget er mindre enn" -#: includes/locations/class-acf-location-page-template.php:27 -msgid "Page Template" -msgstr "Sidemal" +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Valget er større enn" -#: includes/locations/class-acf-location-page-template.php:102 -#: includes/locations/class-acf-location-post-template.php:156 -msgid "Default Template" -msgstr "Standardmal" +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Verdi er mindre enn" -#: includes/locations/class-acf-location-page-type.php:27 -msgid "Page Type" -msgstr "Sidetype" +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Verdi er større enn" -#: includes/locations/class-acf-location-page-type.php:149 -msgid "Front Page" -msgstr "Forside" +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Verdi inneholder" -#: includes/locations/class-acf-location-page-type.php:150 -msgid "Posts Page" -msgstr "Innleggsside" +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Verdi passer til mønster" -#: includes/locations/class-acf-location-page-type.php:151 -msgid "Top Level Page (no parent)" -msgstr "Toppnivåside (ingen forelder)" +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/locations/class-acf-location-page-type.php:152 -msgid "Parent Page (has children)" -msgstr "Foreldreside (har barn)" +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "Verdi er lik" -#: includes/locations/class-acf-location-page-type.php:153 -msgid "Child Page (has parent)" -msgstr "Barn-side (har foreldre)" +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Har ingen verdi" -#: includes/locations/class-acf-location-post-category.php:27 -msgid "Post Category" -msgstr "Innleggskategori" +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Har en verdi" -#: includes/locations/class-acf-location-post-format.php:27 -msgid "Post Format" -msgstr "Innleggsformat" +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Avbryt" -#: includes/locations/class-acf-location-post-status.php:27 -msgid "Post Status" -msgstr "Innleggsstatus" +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Er du sikker?" -#: includes/locations/class-acf-location-post-taxonomy.php:27 -msgid "Post Taxonomy" -msgstr "Innleggstaksonomi" +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d felt krever oppmerksomhet" -#: includes/locations/class-acf-location-post-template.php:29 -#, fuzzy -msgid "Post Template" -msgstr "Sidemal" +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 felt krever oppmerksomhet" -#: includes/locations/class-acf-location-taxonomy.php:27 -msgid "Taxonomy Term" -msgstr "Taksonomi-term" +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validering feilet" -#: includes/locations/class-acf-location-user-form.php:27 -msgid "User Form" -msgstr "Brukerskjema" +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validering vellykket" -#: includes/locations/class-acf-location-user-form.php:92 -msgid "Add / Edit" -msgstr "Legg til / Rediger" +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Begrenset" -#: includes/locations/class-acf-location-user-form.php:93 -msgid "Register" -msgstr "Registrer" +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Trekk sammen detaljer" -#: includes/locations/class-acf-location-user-role.php:27 -msgid "User Role" -msgstr "Brukerrolle" +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Utvid detaljer" -#: includes/locations/class-acf-location-widget.php:27 -msgid "Widget" -msgstr "Widget" +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Lastet opp til dette innlegget" -#: includes/media.php:55 +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Oppdater" + +#: includes/media.php:49 msgctxt "verb" msgid "Edit" msgstr "Rediger" -#: includes/media.php:56 +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "Filtype må være %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "eller" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Filstørrelsen må ikke overstige %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "Filstørrelse må minst være %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Bildehøyde må ikke overstige %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Bildehøyde må være minst %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Bildebredde må ikke overstige %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Bildebredde må være minst %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(ingen tittel)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Full størrelse" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Stor" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Middels" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatyrbilde" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(ingen etikett)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Setter høyde på tekstområde" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +msgid "Save 'custom' values to the field's choices" +msgstr "Lagre \"egendefinerte\" verdier til feltvalg" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "Tillat 'egendefinerte' verdier til å bli lagt til" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Legg til nytt valg" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Veksle alle" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Tillat arkiv-URLer" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Legg til " + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Navn" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s lagt til" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s finnes allerede" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Bruker kan ikke legge til ny %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Term-ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Term-objekt" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Last verdi fra innleggstermer" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Last termer" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Koble valgte termer til innlegget" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Lagre termer" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Lag termer" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radioknapper" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Enkeltverdi" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Flervalg" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Avkrysningsboks" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Flere verdier" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Velg visning av dette feltet" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Utseende" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Velg taksonomi som skal vises" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Ingen %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "Lagre \"andre\" verdier til feltets valg" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Legg \"andre\"-valget for å tillate egendefinerte verdier" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radioknapp" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +msgid "Allow this accordion to open without closing others." +msgstr "Tillat dette trekkspillet å åpne uten å lukke andre." + +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Fler-utvid" + +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "Vis dette trekkspillet som åpent ved sidelastingen." + +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Åpne" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Trekkspill" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Begrens hvilke filer som kan lastes opp" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "Fil-ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL til fil" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Filrekke" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Legg til fil" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ingen fil valgt" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Filnavn" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Oppdater fil" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Rediger fil" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Angi returnert verdi" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Bruk ajax for lat lastingsvalg?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Angi hver standardverdi på en ny linje" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 msgctxt "verb" -msgid "Update" -msgstr "Oppdater" +msgid "Select" +msgstr "Velg" -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "%s verdi som kreves" +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Innlasting feilet" -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Søker…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Laster flere resultat…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Vennligst slett %d tegn" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Vennligst slett 1 tegn" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Ingen treff funnet" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Velg" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "Bruker-ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Bruker-objekt" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Bruker-rekke" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Alle brukerroller" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrer etter rolle" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Velg farge" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Standard" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Velg" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Utført" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Nå" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Tidssone" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekund" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisekund" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Sekund" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minutt" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Time" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Tid" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Endepunkt" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Venstrejustert" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Toppjustert" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Plassering" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Fane" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Verdien må være en gyldig URL" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Lenke-URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Lenkerekke" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Åpnes i en ny fane" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Trinnstørrelse" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maksimumsverdi" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Begge (rekke)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etikett" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Verdi" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertikal" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horisontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rød : Rød" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Valg" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Knappegruppe" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Velge flere verdier?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Tillat null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Forelder" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Forsinke initialisering?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Vis opplastingsknapper for mediefiler?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Verktøylinje" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Kun tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Kun visuell" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visuell og tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Faner" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Klikk for å initialisere TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visuell" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg redigeringsverktøy" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Verdi må ikke overstige %d tegn" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "La være tom for ingen begrensning" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Tegnbegrensing" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Vises etter input" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Tilføy" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Vises før input" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Legg til foran" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Vises innenfor input" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Plassholder-tekst" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Innleggs-ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Innleggsobjekt" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maksimum antall innlegg" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum antall innlegg" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Fremhevet bilde" + +#: includes/fields/class-acf-field-relationship.php:675 +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:674 +msgid "Elements" +msgstr "Elementer" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taksonomi" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Innholdstype" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtre" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Alle taksonomier" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrer etter taksonomi" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Alle innholdstyper" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrer etter innholdstype" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Søk..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Velg taksonomi" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Velg innholdstype" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Ingen treff funnet" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Laster" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maksimal verdi nådd ( {max} verdier )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Forhold" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tillatte filtyper" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maksimum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Filstørrelse" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Begrens hvilke bilder som kan lastes opp" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Lastet opp til innlegget" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Begrens mediabibilotekutvalget" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Bibliotek" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Forhåndsvis størrelse" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Bilde-ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Bilde-URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Bilderekke" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Angi den returnerte verdien på fremsiden" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Returverdi" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Legg til bilde" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Intet bilde valgt" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Fjern" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Rediger" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Alle bilder" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Oppdater bilde" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Rediger bilde" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Unnslipp HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Ingen formatering" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Legg automatisk til <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Legg til avsnitt automatisk" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Kontrollerer hvordan nye linjer er gjengitt" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nye linjer" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Uken starter på" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Lagringsformat" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Uke" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Forrige" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Neste" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "I dag" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Bredde" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Innbyggingsstørrelse" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Tekst vist når inaktiv" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Tekst for av" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Tekst vist når aktiv" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Tekst for på" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Stilisert UI" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Standardverdi" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Melding" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Nei" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Rad" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabell" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Blokk" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Spesifiser stil brukt til å gjengi valgte felt" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Oppsett" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Egendefinerte karthøyde" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Høyde" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Velg første zoomnivå" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Forstørr" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Sentrer det opprinnelige kartet" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Midtstill" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Søk etter adresse..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Finn gjeldende plassering" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Fjern plassering" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Søk" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Formatet returnert via malfunksjoner" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Returformat" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Egendefinert:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "Format som vises når innlegg redigeres" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inaktiv (%s)" +msgstr[1] "Inaktive (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Ingen felt funnet i papirkurven" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Ingen felter funnet" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Søk felt" + +#: acf.php:409 +msgid "View Field" +msgstr "Vis felt" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nytt felt" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Rediger felt" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Legg til nytt felt" + +#: acf.php:404 +msgid "Field" +msgstr "Felt" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Felter" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Ingen feltgrupper funnet i papirkurven" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Ingen feltgrupper funnet" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Søk feltgrupper" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Vis feltgruppe" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Ny feltgruppe" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Rediger feltgruppe" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Legg til ny feltgruppe" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Legg til ny" + +#: acf.php:370 +msgid "Field Group" +msgstr "Feltgruppe" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Avanserte egendefinerte felt" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields Pro" -#: pro/admin/admin-options-page.php:196 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Sjekk igjen" + +#: pro/updates.php:561 +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:202 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -2810,29 +3108,381 @@ msgstr "" "Ingen egendefinerte feltgrupper funnet for denne valg-siden. Opprette en egendefinert feltgruppe" -#: pro/admin/admin-settings-updates.php:78 +#: pro/admin/admin-updates.php:52 msgid "Error. Could not connect to update server" msgstr "Feil. Kan ikke koble til oppdateringsserveren" -#: pro/admin/admin-settings-updates.php:162 -#: pro/admin/views/html-settings-updates.php:17 -msgid "Updates" -msgstr "Oppdateringer" +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" -#: pro/admin/views/html-settings-updates.php:11 +#: pro/admin/admin-updates.php:196 +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 "Klone" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Vis" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +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:864 +msgid "Labels will be displayed as %s" +msgstr "Etiketter vises som %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefiks feltetiketter" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Verdier vil bli lagret som %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefiks feltnavn" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Ukjent felt" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Ukjent feltgruppe" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle felt fra %s feltgruppe" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Legg til rad" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "oppsett" +msgstr[1] "oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} tilgjengelig (maks {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} kreves (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Fleksibelt innholdsfelt krever minst en layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:413 +msgid "Add layout" +msgstr "Legg til oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Fjern oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Klikk for å veksle" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Endre rekkefølge på oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Endre rekkefølge" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Slett oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliser oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Legg til nytt oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Minimum" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Maksimum" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Knappetikett" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Minimum oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maksimum oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "Legg bildet til galleri" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maksimalt utvalg nådd" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lengde" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Bildetekst" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alternativ tekst" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Legg til galleri" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Massehandlinger" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sorter etter dato lastet opp" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sorter etter dato endret" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sorter etter tittel" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Snu gjeldende rekkefølge" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Lukk" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Sett inn" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Angi hvor nye vedlegg er lagt" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Tilføy til slutten" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Sett inn foran" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimum antall valg" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maksimum antall valg" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimum antall rader nådd ({min} rader)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maksimum antall rader nådd ({max} rader)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Sammenfoldet" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Minimum antall rader" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Maksimum antall rader" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Legg til rad" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Fjern rad" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "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:11 +#: pro/admin/views/html-settings-updates.php:6 msgid "Activate License" msgstr "Aktiver lisens" -#: pro/admin/views/html-settings-updates.php:21 +#: pro/admin/views/html-settings-updates.php:16 msgid "License Information" msgstr "Lisensinformasjon" -#: pro/admin/views/html-settings-updates.php:24 -#, php-format +#: 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 & pricingdetaljer og priser dersom du ikke har " "lisensnøkkel." -#: pro/admin/views/html-settings-updates.php:33 +#: pro/admin/views/html-settings-updates.php:41 msgid "License Key" msgstr "Lisensnøkkel" -#: pro/admin/views/html-settings-updates.php:65 +#: 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:76 msgid "Update Information" msgstr "Oppdateringsinformasjon" -#: pro/admin/views/html-settings-updates.php:72 +#: pro/admin/views/html-settings-updates.php:83 msgid "Current Version" msgstr "Gjeldende versjon" -#: pro/admin/views/html-settings-updates.php:80 +#: pro/admin/views/html-settings-updates.php:91 msgid "Latest Version" msgstr "Siste versjon" -#: pro/admin/views/html-settings-updates.php:88 +#: pro/admin/views/html-settings-updates.php:99 msgid "Update Available" msgstr "Oppdatering tilgjengelig" -#: pro/admin/views/html-settings-updates.php:96 -msgid "Update Plugin" -msgstr "Oppdater plugin" - -#: pro/admin/views/html-settings-updates.php:98 +#: pro/admin/views/html-settings-updates.php:111 msgid "Please enter your license key above to unlock updates" msgstr "Oppgi lisensnøkkelen ovenfor for låse opp oppdateringer" -#: pro/admin/views/html-settings-updates.php:104 -msgid "Check Again" -msgstr "Sjekk igjen" +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Oppdater plugin" -#: pro/admin/views/html-settings-updates.php:121 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Endringslogg" + +#: pro/admin/views/html-settings-updates.php:134 msgid "Upgrade Notice" msgstr "Oppgraderingsvarsel" -#: pro/fields/class-acf-field-clone.php:36 -msgctxt "noun" -msgid "Clone" -msgstr "Klone" +#~ msgid "Inactive" +#~ msgstr "Inaktiv" -#: pro/fields/class-acf-field-clone.php:858 -msgid "Select one or more fields you wish to clone" -msgstr "Velg ett eller flere felt du ønsker å klone" +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Flytt til papirkurven. Er du sikker?" -#: pro/fields/class-acf-field-clone.php:875 -msgid "Display" -msgstr "Vis" +#~ msgid "checked" +#~ msgstr "avkrysset" -#: pro/fields/class-acf-field-clone.php:876 -msgid "Specify the style used to render the clone field" -msgstr "Angi stil som brukes til å gjengi klone-feltet" +#~ msgid "Parent fields" +#~ msgstr "Foreldrefelter" -#: pro/fields/class-acf-field-clone.php:881 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Gruppe (viser valgt felt i en gruppe innenfor dette feltet)" +#~ msgid "Sibling fields" +#~ msgstr "Søskenfelter" -#: pro/fields/class-acf-field-clone.php:882 -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:903 #, php-format -msgid "Labels will be displayed as %s" -msgstr "Etiketter vises som %s" +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "%s feltet finnes nå i %s feltgruppen" -#: pro/fields/class-acf-field-clone.php:906 -msgid "Prefix Field Labels" -msgstr "Prefiks feltetiketter" - -#: pro/fields/class-acf-field-clone.php:917 #, php-format -msgid "Values will be saved as %s" -msgstr "Verdier vil bli lagret som %s" +#~ msgid "Field group duplicated. %s" +#~ msgstr "Feltgruppe duplisert. %s" -#: pro/fields/class-acf-field-clone.php:920 -msgid "Prefix Field Names" -msgstr "Prefiks feltnavn" - -#: pro/fields/class-acf-field-clone.php:1038 -msgid "Unknown field" -msgstr "Ukjent felt" - -#: pro/fields/class-acf-field-clone.php:1077 -msgid "Unknown field group" -msgstr "Ukjent feltgruppe" - -#: pro/fields/class-acf-field-clone.php:1081 #, php-format -msgid "All fields from %s field group" -msgstr "Alle felt fra %s feltgruppe" +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s feltgruppe duplisert." +#~ msgstr[1] "%s feltgrupper duplisert." -#: pro/fields/class-acf-field-flexible-content.php:42 -#: pro/fields/class-acf-field-repeater.php:230 -#: pro/fields/class-acf-field-repeater.php:534 -msgid "Add Row" -msgstr "Legg til rad" - -#: pro/fields/class-acf-field-flexible-content.php:45 -msgid "layout" -msgstr "oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:46 -msgid "layouts" -msgstr "oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:47 -msgid "remove {layout}?" -msgstr "fjern {oppsett}?" - -#: pro/fields/class-acf-field-flexible-content.php:48 -msgid "This field requires at least {min} {identifier}" -msgstr "Dette feltet krever minst {min} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:49 -msgid "This field has a limit of {max} {identifier}" -msgstr "Dette feltet har en grense på {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:50 -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:51 -msgid "Maximum {label} limit reached ({max} {identifier})" -msgstr "Maksimalt {label} nådd ({max} {identifier})" - -#: pro/fields/class-acf-field-flexible-content.php:52 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} tilgjengelig (maks {max})" - -#: pro/fields/class-acf-field-flexible-content.php:53 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} kreves (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:54 -msgid "Flexible Content requires at least 1 layout" -msgstr "Fleksibelt innholdsfelt krever minst en layout" - -#: pro/fields/class-acf-field-flexible-content.php:288 #, php-format -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klikk \"%s\"-knappen nedenfor for å begynne å lage oppsettet" +#~ msgid "Field group synchronised. %s" +#~ msgstr "Feltgruppe synkronisert. %s" -#: 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 "Remove layout" -msgstr "Fjern oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:425 -#: pro/fields/class-acf-field-repeater.php:360 -msgid "Click to toggle" -msgstr "Klikk for å veksle" - -#: pro/fields/class-acf-field-flexible-content.php:571 -msgid "Reorder Layout" -msgstr "Endre rekkefølge på oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:571 -msgid "Reorder" -msgstr "Endre rekkefølge" - -#: pro/fields/class-acf-field-flexible-content.php:572 -msgid "Delete Layout" -msgstr "Slett oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:573 -msgid "Duplicate Layout" -msgstr "Dupliser oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:574 -msgid "Add New Layout" -msgstr "Legg til nytt oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:645 -msgid "Min" -msgstr "Minimum" - -#: pro/fields/class-acf-field-flexible-content.php:658 -msgid "Max" -msgstr "Maksimum" - -#: pro/fields/class-acf-field-flexible-content.php:685 -#: pro/fields/class-acf-field-repeater.php:530 -msgid "Button Label" -msgstr "Knappetikett" - -#: pro/fields/class-acf-field-flexible-content.php:694 -msgid "Minimum Layouts" -msgstr "Minimum oppsett" - -#: pro/fields/class-acf-field-flexible-content.php:703 -msgid "Maximum Layouts" -msgstr "Maksimum oppsett" - -#: pro/fields/class-acf-field-gallery.php:52 -msgid "Add Image to Gallery" -msgstr "Legg bildet til galleri" - -#: pro/fields/class-acf-field-gallery.php:56 -msgid "Maximum selection reached" -msgstr "Maksimalt utvalg nådd" - -#: pro/fields/class-acf-field-gallery.php:336 -msgid "Length" -msgstr "Lengde" - -#: pro/fields/class-acf-field-gallery.php:379 -msgid "Caption" -msgstr "Bildetekst" - -#: pro/fields/class-acf-field-gallery.php:388 -msgid "Alt Text" -msgstr "Alternativ tekst" - -#: pro/fields/class-acf-field-gallery.php:559 -msgid "Add to gallery" -msgstr "Legg til galleri" - -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Bulk actions" -msgstr "Massehandlinger" - -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Sort by date uploaded" -msgstr "Sorter etter dato lastet opp" - -#: pro/fields/class-acf-field-gallery.php:565 -msgid "Sort by date modified" -msgstr "Sorter etter dato endret" - -#: pro/fields/class-acf-field-gallery.php:566 -msgid "Sort by title" -msgstr "Sorter etter tittel" - -#: pro/fields/class-acf-field-gallery.php:567 -msgid "Reverse current order" -msgstr "Snu gjeldende rekkefølge" - -#: pro/fields/class-acf-field-gallery.php:585 -msgid "Close" -msgstr "Lukk" - -#: pro/fields/class-acf-field-gallery.php:639 -msgid "Minimum Selection" -msgstr "Minimum antall valg" - -#: pro/fields/class-acf-field-gallery.php:648 -msgid "Maximum Selection" -msgstr "Maksimum antall valg" - -#: pro/fields/class-acf-field-gallery.php:657 -msgid "Insert" -msgstr "Sett inn" - -#: pro/fields/class-acf-field-gallery.php:658 -msgid "Specify where new attachments are added" -msgstr "Angi hvor nye vedlegg er lagt" - -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Append to the end" -msgstr "Tilføy til slutten" - -#: pro/fields/class-acf-field-gallery.php:663 -msgid "Prepend to the beginning" -msgstr "Sett inn foran" - -#: pro/fields/class-acf-field-repeater.php:47 -msgid "Minimum rows reached ({min} rows)" -msgstr "Minimum antall rader nådd ({min} rader)" - -#: pro/fields/class-acf-field-repeater.php:48 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maksimum antall rader nådd ({max} rader)" - -#: pro/fields/class-acf-field-repeater.php:405 -msgid "Add row" -msgstr "Legg til rad" - -#: pro/fields/class-acf-field-repeater.php:406 -msgid "Remove row" -msgstr "Fjern rad" - -#: pro/fields/class-acf-field-repeater.php:483 -msgid "Collapsed" -msgstr "Sammenfoldet" - -#: pro/fields/class-acf-field-repeater.php:484 -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:494 -msgid "Minimum Rows" -msgstr "Minimum antall rader" - -#: pro/fields/class-acf-field-repeater.php:504 -msgid "Maximum Rows" -msgstr "Maksimum antall rader" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "Ingen side for alternativer eksisterer" - -#: pro/options-page.php:51 -msgid "Options" -msgstr "Valg" - -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "Alternativer er oppdatert" - -#: pro/updates.php:97 #, php-format -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 "" -"For å låse opp oppdateringer må lisensnøkkelen skrives inn på oppdateringer-siden. Se detaljer og " -"priser dersom du ikke har lisensnøkkel." +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s feltgruppe synkronisert." +#~ msgstr[1] "%s feltgrupper synkronisert." -#. Plugin URI of the plugin/theme -msgid "https://www.advancedcustomfields.com/" -msgstr "https://www.advancedcustomfields.com/" +#~ msgid "Status" +#~ msgstr "Status" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "Tilpass WordPress med kraftige, profesjonelle og intuitive felt." -#. Author URI of the plugin/theme -msgid "http://www.elliotcondon.com/" -msgstr "http://www.elliotcondon.com/" +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Se hva som er nytt i %s-utgaven." + +#~ msgid "Resources" +#~ msgstr "Ressurser" + +#~ msgid "Documentation" +#~ msgstr "Dokumentasjon" + +#~ msgid "Support" +#~ msgstr "Support" + +#, fuzzy +#~ msgid "Pro" +#~ msgstr "Farvel Tillegg. Hei PRO" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Takk for at du bygger med ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "Synkroniser feltgruppe" + +#, fuzzy +#~ msgid "Bulk Actions" +#~ msgstr "Massehandlinger" + +#~ msgid "Error validating request" +#~ msgstr "Kunne ikke validere forespørselen" + +#~ msgid "Add-ons" +#~ msgstr "Tillegg" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Feil. Kunne ikke laste liste over tillegg" + +#~ msgid "Info" +#~ msgstr "Informasjon" + +#~ msgid "What's New" +#~ msgstr "Hva er nytt" + +#~ msgid "Required?" +#~ msgstr "Påkrevd?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Ingen felt. Klikk på + Legg til felt knappen for å lage " +#~ "ditt første felt." + +#~ msgid "+ Add Field" +#~ msgstr "+ Legg til felt" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Databaseoppgradering for Advanced Custom Fields" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Siden krever databaseoppgradering fra%s til%s" + +#~ msgid "Upgrade complete" +#~ msgstr "Oppgradering komplett" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Takk for at du oppgraderte til %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Før du begynner å bruke de nye funksjonene, må du oppdatere din database " +#~ "til den nyeste versjonen." + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "" +#~ "Databaseoppgradering er fullført. Se hva som er nytt" + +#~ msgid "Download & Install" +#~ msgstr "Last ned og installer" + +#~ msgid "Installed" +#~ msgstr "Installert" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Velkommen til Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Takk for at du oppdaterte! ACF %s er større og bedre enn noen gang før. " +#~ "Vi håper du liker det." + +#~ msgid "A smoother custom field experience" +#~ msgstr "En velfungerende opplevelse av egendefinerte felter" + +#~ msgid "Improved Usability" +#~ msgstr "Forbedret brukervennlighet" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Å inkludere det populære Select2-biblioteket har økt både " +#~ "brukervennlighet og lastetid for flere felttyper, inkludert " +#~ "innleggsobjekter, sidelinker, taksonomi og nedtrekksmenyer." + +#~ msgid "Improved Design" +#~ msgstr "Forbedret design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Mange felter har fått en visuell oppfriskning så ACF ser bedre ut enn på " +#~ "lenge! Nevneverdige endringer sees på galleri-, relasjons- og " +#~ "oEmbedfelter!" + +#~ msgid "Improved Data" +#~ msgstr "Forbedret data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Omskriving av dataarkitekturen tillater underfelter å leve uavhengig av " +#~ "foreldrene sine. Det betyr at du kan dra og slippe felter til og fra " +#~ "foreldrefeltene sine!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Farvel Tillegg. Hei PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Vi presenterer ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Vi endrer måten premium-funksjonalitet leveres på en spennende måte!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle fire premium-tilleggene har blitt kombinert i en ny Pro-versjon av ACF. Med både personlig- og utviklerlisenser " +#~ "tilgjengelig er premiumfunksjonalitet billigere og mer tilgjengelig enn " +#~ "noensinne!" + +#~ msgid "Powerful Features" +#~ msgstr "Kraftige funksjoner" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO inneholder kraftige funksjoner som repeterende data, fleksible " +#~ "innholdsstrukturer, et vakkert gallerifelt og muligheten til å lage " +#~ "ekstra administrasjonsegenskapssider!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Les mer om ACF PRO-funksjonaliteten." + +#~ msgid "Easy Upgrading" +#~ msgstr "Enkel oppgradering" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "For å gjøre oppgradering enklere, Logg inn på din konto og hent en gratis kopi av ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Vi har også skrevet en oppgraderingsveiledning for å " +#~ "besvare de fleste spørsmål, men skulle du fortsatt ha et spørsmål, ta " +#~ "kontakt med via helpdesken" + +#~ msgid "Under the Hood" +#~ msgstr "Under panseret" + +#~ msgid "Smarter field settings" +#~ msgstr "Smartere feltinnstillinger" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF lagrer nå feltegenskapene som individuelle innleggsobjekter" + +#~ msgid "More AJAX" +#~ msgstr "Mer AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Flere felter bruker AJAX-drevet søk for å kutte ned innlastingstiden" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Ny automatisk eksport til JSON sparer tid" + +#~ msgid "Better version control" +#~ msgstr "Bedre versjonskontroll" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Ny autoeksport til JSON lar feltinnstillinger bli versjonskontrollert" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "Byttet XML mot JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Import / eksport bruker nå JSON istedenfor XML" + +#~ msgid "New Forms" +#~ msgstr "Nye skjemaer" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Feltene kan nå tilordnes til kommentarer, widgets og alle brukerskjemaer!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Et nytt felt for å bygge inn innhold er lagt til" + +#~ msgid "New Gallery" +#~ msgstr "Nytt galleri" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Gallerietfeltet har gjennomgått en sårt tiltrengt ansiktsløftning" + +#~ msgid "New Settings" +#~ msgstr "Nye innstillinger" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Feltgruppeinnstillinger er lagt til for etikettplassering og " +#~ "instruksjonsplassering" + +#~ msgid "Better Front End Forms" +#~ msgstr "Bedre frontend-skjemaer" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() kan nå lage et nytt innlegg ved innsending" + +#~ msgid "Better Validation" +#~ msgstr "Bedre validering" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "Skjemavalidering skjer nå via PHP + AJAX framfor kun JavaScript" + +#~ msgid "Relationship Field" +#~ msgstr "Relasjonsfelt" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nye relasjonsfeltinnstillinger for 'Filtre' (søk, innleggstype, taksonomi)" + +#~ msgid "Moving Fields" +#~ msgstr "Flytte felt" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Ny feltgruppe-funksonalitet gir deg mulighet til å flytte felt mellom " +#~ "grupper og foreldre" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Ny arkiver gruppe i page_link feltvalg" + +#~ msgid "Better Options Pages" +#~ msgstr "Bedre sider for innstillinger" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nye funksjoner på Valg-siden tillater oppretting av menysider for både " +#~ "foreldre og barn" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Vi tror du vil elske endringene i %s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Eksporter feltgrupper til PHP" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Velg feltgruppene du vil eksportere og velg eksporteringsmetode. Bruk " +#~ "nedlastingsknappen for å eksportere til en .json-fil du kan importere i " +#~ "en annen installasjon av ACF. Bruk genererknappen for å eksportere PHP-" +#~ "kode du kan legge inn i ditt tema." + +#~ msgid "Download export file" +#~ msgstr "Last ned eksportfil" + +#~ msgid "Generate export code" +#~ msgstr "Generer eksportkode" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Velg ACF JSON-filen du vil importere. Når du klikker importerknappen " +#~ "under, vil ACF importere feltgruppene." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "Filstørrelsen må ikke overstige %s." + +#~ msgid "Allow Custom" +#~ msgstr "Tillat egendefinert" + +#~ msgid "Save Custom" +#~ msgstr "Lagre egendefinert" + +#~ msgid "Toggle" +#~ msgstr "Veksle" + +#~ msgid "Current Color" +#~ msgstr "Nåværende farge" + +#~ msgid "Locating" +#~ msgstr "Lokaliserer" + +#~ msgid "Customise the map height" +#~ msgstr "Tilpasse karthøyde" + +#~ msgid "Shown when entering data" +#~ msgstr "Vises når du skriver inn data" + +#~ msgid "Error." +#~ msgstr "Feil." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Fant ingen innbygging for den gitte URL-en." + +#~ msgid "Other" +#~ msgstr "Andre" + +#~ msgid "Save Other" +#~ msgstr "Lagre annen" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimumsverdier nådd ({min} verdier)" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s krever minst %s valgt" +#~ msgstr[1] "%s krever minst %s valgte" + +#~ msgid "Stylised UI" +#~ msgstr "Stilisert brukergrensesnitt" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Fane-feltet vises ikke korrekt når det plasseres i et repeterende felt " +#~ "med tabell-visning eller i et fleksibelt innholdsfelt" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "Bruk \"Fane-felt\" til å gruppere felter" + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle felter som kommer etter dette \"fane-feltet\" (eller til et annet " +#~ "\"fane-felt\" defineres) blir gruppert under overskriften til dette fane-" +#~ "feltet." + +#~ msgid "End-point" +#~ msgstr "Avslutning" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "Bruk dette feltet som en avslutning eller start en ny fane-gruppe" + +#~ msgid "None" +#~ msgstr "Ingen" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "TinyMCE blir ikke initialisert før feltet klikkes" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taksonomi-term" + +#~ msgid "remove {layout}?" +#~ msgstr "fjern {oppsett}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dette feltet krever minst {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Dette feltet har en grense på {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maksimalt {label} nådd ({max} {identifier})" + +#, php-format +#~ 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 "" +#~ "For å låse opp oppdateringer må lisensnøkkelen skrives inn på oppdateringer-siden. Se detaljer " +#~ "og priser dersom du ikke har lisensnøkkel." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" #~ msgid "Getting Started" #~ msgstr "Kom i gang" diff --git a/lang/acf-nl_BE.mo b/lang/acf-nl_BE.mo new file mode 100644 index 0000000..81e1a52 Binary files /dev/null and b/lang/acf-nl_BE.mo differ diff --git a/lang/acf-nl_BE.po b/lang/acf-nl_BE.po new file mode 100644 index 0000000..64c3b22 --- /dev/null +++ b/lang/acf-nl_BE.po @@ -0,0 +1,4727 @@ +# 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: 2022-09-29T12:15:07+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/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" + +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +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 "Updates" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" +"Advanced Custom Fields en Advanced Custom Fields mogen niet tegelijkertijd " +"actief zijn. We hebben Advanced Custom Fields PRO automatisch gedeactiveerd." + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" +"Advanced Custom Fields en Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Ongeldige aanvraag." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s vereist een geldig bijlage ID." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "In REST-API tonen" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Transparantie inschakelen" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA array" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA string" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex string" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galerij (alleen Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Kloon (alleen Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexibele inhoud (alleen Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repeater (alleen Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Actief" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' is geen geldig e-mailadres" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Kleurwaarde" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Selecteer standaardkleur" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Heldere kleur" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blokken" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opties" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Gebruikers" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menu-items" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Bijlagen" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomieën" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Berichten" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON veldgroep (nieuwer)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Oorspronkelijke veldgroep" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Laatst bijgewerkt: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Deze veldgroep is niet beschikbaar voor verschil vergelijking." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Ongeldige veld groep ID." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Ongeldige veldgroep parameter(s)." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "In afwachting van opslaan" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Opgeslagen" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Import" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Wijzigingen beoordelen" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Gelegen in: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Gelegen in plugin: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Gelegen in thema: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Diverse" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Synchroniseer wijzigingen" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Diff laden" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Lokale JSON wijzigingen beoordelen" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Website bezoeken" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Bekijk details" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versie %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Informatie" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Hulp & ondersteuning" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Fout tijdens laden van veld." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s waarde is verplicht" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Toon dit veld als" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Voorwaardelijke logica" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "en" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Lokale JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Database upgrade vereist" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Opties pagina" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galerij" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexibele inhoud" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repeater" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Terug naar alle tools" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Selecteer items om ze te verbergen in het bewerkingsscherm." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Verberg op scherm" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Trackbacks verzenden" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorieën" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Pagina attributen" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formaat" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Auteur" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisies" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Reacties" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussie" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Samenvatting" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Inhoud editor" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Getoond in de veldgroep lijst" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Veldgroepen met een lagere volgorde verschijnen als eerste" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Bestelnr." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Onderstaande velden" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Onder labels" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Instructie plaatsing" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Label plaatsing" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Zijkant" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normaal (na inhoud)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Hoog (na titel)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Positie" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Naadloos (geen metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standaard (WP metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Stijl" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Type" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Sleutel" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Volgorde" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Veld sluiten" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "klasse" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "breedte" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Wrapper attributen" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Vereist" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instructies voor auteurs. Wordt getoond bij het indienen van gegevens" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instructies" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Veldtype" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Één woord, geen spaties. Underscores en verbindingsstrepen toegestaan" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Veldnaam" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Veldlabel" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Verwijderen" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Veld verwijderen" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Verplaatsen" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Veld naar een andere groep verplaatsen" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Veld dupliceren" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Veld bewerken" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Sleep om te herschikken" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Deze veldgroep tonen als" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Er zijn geen updates beschikbaar." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Database upgrade voltooid. Bekijk wat er nieuw is" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Upgrade taken aan het lezen..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Upgrade mislukt." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Upgrade voltooid." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Gegevens upgraden naar versie %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Selecteer minstens één website om te upgraden." + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Database upgrade voltooid. Terug naar netwerk dashboard" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Website is up-to-date" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Website" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Websites upgraden" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Regelgroep toevoegen" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Regels" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Gekopieerd" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Naar klembord kopiëren" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"De volgende code kan worden gebruikt om een ​​lokale versie van de " +"geselecteerde veldgroep(en) te registreren. Een lokale veldgroep kan veel " +"voordelen bieden, zoals snellere laadtijden, versiebeheer & dynamische " +"velden/instellingen. Kopieer en plak de volgende code in het functions.php " +"bestand van je thema of voeg het toe aan een extern bestand." + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 veldgroepen 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 kunt plaatsen." + +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecteer veldgroepen" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "1 veldgroep geëxporteerd." +msgstr[1] "%s veldgroepen geëxporteerd." + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Geïmporteerd 1 veldgroep" +msgstr[1] "Geïmporteerde %s veldgroepen" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Bestand leeg importeren" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Onjuist bestandstype" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" +"Selecteer het Advanced Custom Fields JSON bestand dat je wilt importeren. " +"Wanneer je op de onderstaande importknop klikt, importeert ACF de veldgroepen" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Veldgroepen importeren" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Synchroniseren" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecteer %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Dupliceer" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Dupliceer dit item" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Beschrijving" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synchronisatie beschikbaar" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Veldgroep gesynchroniseerd." +msgstr[1] "%s veldgroepen gesynchroniseerd." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Veldgroep gedupliceerd." +msgstr[1] "%s veldgroepen gedupliceerd." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Actief (%s)" +msgstr[1] "Actief (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Upgrade database" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Aangepaste velden" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Veld verplaatsen" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Selecteer de bestemming voor dit veld" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Venster sluiten" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Verplaatsen voltooid." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Actief" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Veldsleutels" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Instellingen" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Locatie" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "kopiëren" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(dit veld)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Aangevinkt" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Aangepast veld verplaatsen" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Geen toggle velden beschikbaar" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Veldgroep titel is vereist" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Concept veldgroep bijgewerkt." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Veldgroep gepland voor." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Veldgroep ingediend." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Veldgroep opgeslagen." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Veldgroep gepubliceerd." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Veldgroep verwijderd." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Veldgroep bijgewerkt." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Pagina" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Bericht" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relationele" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Keuze" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Basis" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Onbekend" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Inhoud" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Titel" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Veldgroep bewerken" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Selectie is minder dan" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Selectie is groter dan" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Waarde is minder dan" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Waarde is groter dan" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Waarde bevat" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Waarde komt overeen met patroon" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Heeft geen waarde" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Heeft enige waarde" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Annuleren" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Weet je het zeker?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d velden vereisen aandacht" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 veld vereist aandacht" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validatie mislukt" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validatie geslaagd" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Beperkt" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Details dichtklappen" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Details uitvouwen" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Geüpload naar dit bericht" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Bijwerken" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Bewerken" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "Het bestandstype moet %s zijn." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "of" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Bestandsgrootte mag %s niet overschrijden." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "De bestandsgrootte moet ministens %s zijn." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "De hoogte van de afbeelding mag niet hoger zijn dan %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "De hoogte van de afbeelding moet minstens %dpx zijn." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "De breedte van de afbeelding mag niet groter zijn dan %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "De breedte van de afbeelding moet ten minste %dpx zijn." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(geen titel)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Volledige grootte" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Groot" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Medium" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Thumbnail" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(geen label)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Bepaalt de hoogte van het tekstgebied" + +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "Rijen" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Tekstgebied" + +#: includes/fields/class-acf-field-checkbox.php:447 +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:409 +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:398 +msgid "Allow 'custom' values to be added" +msgstr "Toestaan dat 'aangepaste' waarden worden toegevoegd" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Nieuwe keuze toevoegen" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Alles aan-/uitzetten" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Archieven URL's toestaan" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Toevoegen" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Naam" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s toegevoegd" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s bestaat al" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Gebruiker kan geen nieuwe %s toevoegen" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Term ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Term object" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Laadwaarde van berichttermen" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Laad voorwaarden" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Geselecteerde termen aan het bericht koppelen" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Voorwaarden opslaan" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Voorwaarden maken" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radioknoppen" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Eén waarde" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Multi selecteren" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Selectievak" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Meerdere waarden" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecteer de weergave van dit veld" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Weergave" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecteer de taxonomie die moet worden getoond" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Geen %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "De keuze 'overig' toevoegen om aangepaste waarden toe te staan" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radio knop" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Multi uitvouwen" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Openen" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Accordeon" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Beperken welke bestanden kunnen worden geüpload" + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "Bestand ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "Bestand URL" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Bestand array" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Bestand toevoegen" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Geen bestand geselecteerd" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Bestandsnaam" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Bestand bijwerken" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Bestand bewerken" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Geef de geretourneerde waarde op" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "AJAX gebruiken om keuzes lazy in te laden?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Selecteer" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Laden mislukt" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Aan het zoeken…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Meer resultaten laden…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Verwijder %d tekens" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Verwijder 1 teken" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Geen overeenkomsten gevonden" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Selecteer" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "Gebruiker ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Gebruikersobject" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Gebruiker array" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Alle gebruikersrollen" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filter op rol" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Selecteer kleur" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Standaard" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Selecteer" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Gedaan" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Nu" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Tijdzone" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milliseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Seconde" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuut" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Uur" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Tijd" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Eindpunt" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Links uitgelijnd" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Boven uitgelijnd" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Plaatsing" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Tab" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Waarde moet een geldige URL zijn" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Link URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Link array" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Opent in een nieuw venster/tab" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Stapgrootte" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximale waarde" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Beide (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Label" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Waarde" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Verticaal" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontaal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rood : rood" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Keuzes" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Knop groep" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Selecteer meerdere waarden?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Null toestaan?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Hoofd" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Initialisatie uitstellen?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Media uploadknoppen tonen?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Werkbalk" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Enkel tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Alleen visueel" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visueel & tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Tabs" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Klik om TinyMCE te initialiseren" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visueel" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "WYSIWYG editor" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "De waarde mag niet langer zijn dan %d karakters" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Laat leeg voor geen limiet" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Karakterlimiet" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Verschijnt na de invoer" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Toevoegen" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Verschijnt vóór de invoer" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Voorvoegen" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Verschijnt in de invoer" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Plaatshouder tekst" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Bericht ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Bericht object" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum aantal berichten" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum aantal berichten" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Uitgelichte afbeelding" + +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Geselecteerde elementen worden weergegeven in elk resultaat" + +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Elementen" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomie" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Berichttype" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filters" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Alle taxonomieën" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filter op taxonomie" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Alle berichttypen" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filter op berichttype" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Zoeken..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecteer taxonomie" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Selecteer berichttype" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Geen overeenkomsten gevonden" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Aan het laden" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximale waarden bereikt ( {max} waarden )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relatie" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Toegestane bestandstypen" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Bestandsgrootte" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Beperken welke afbeeldingen kunnen worden geüpload" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Geüpload naar bericht" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Beperk de keuze van de mediabibliotheek" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Bibliotheek" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Voorbeeld grootte" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Afbeelding ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Afbeelding URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Afbeelding array" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +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:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Retour waarde" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Afbeelding toevoegen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Geen afbeelding geselecteerd" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Verwijderen" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Bewerken" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Alle afbeeldingen" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Afbeelding bijwerken" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Afbeelding bewerken" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "Escape HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Geen opmaak" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Automatisch <br> toevoegen;" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Automatisch alinea's toevoegen" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Bepaalt hoe nieuwe regels worden weergegeven" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nieuwe lijnen" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Week begint op" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Formaat opslaan" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Wk" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Vorige" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Volgende" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Vandaag" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Breedte" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Insluit grootte" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Tekst getoond indien inactief" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Uit-tekst" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Tekst getoond indien actief" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Aan-tekst" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Gestileerde UI" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Standaardwaarde" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Bericht" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Nee" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Rij" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabel" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Blok" + +#: includes/fields/class-acf-field-group.php:464 +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:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Lay-out" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "De kaarthoogte aanpassen" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Hoogte" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Het initiële zoomniveau instellen" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "De eerste kaart centreren" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Gecentreerd" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Zoek naar adres..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Huidige locatie opzoeken" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Duidelijke locatie" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Zoeken" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Het formaat dat wordt geretourneerd via templatefuncties" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Retour formaat" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Aangepast:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactief (%s)" +msgstr[1] "Inactief (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Geen velden gevonden in de prullenmand" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Geen velden gevonden" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Zoek velden" + +#: acf.php:409 +msgid "View Field" +msgstr "Veld bekijken" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nieuw veld" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Veld bewerken" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Nieuw veld toevoegen" + +#: acf.php:404 +msgid "Field" +msgstr "Veld" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Velden" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Geen veldgroepen gevonden in prullenmand" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Geen veldgroepen gevonden" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Zoeken veldgroepen" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Veldgroep bekijken" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nieuwe veldgroep" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Veldgroep bewerken" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Nieuwe veldgroep toevoegen" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Nieuwe toevoegen" + +#: acf.php:370 +msgid "Field Group" +msgstr "Veldgroep" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +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:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Controleer op updates" + +#: pro/updates.php:561 +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:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 "Kloon" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Toon" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Naadloos (vervangt dit veld met de geselecteerde velden)" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Labels worden getoond als %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefix veld labels" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Waarden worden opgeslagen als %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefix veld namen" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Onbekend veld" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Onbekend groep" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle velden van %s veld groep" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layout" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layouts" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} beschikbaar (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} verplicht (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibele content vereist minimaal 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:413 +msgid "Add layout" +msgstr "Layout toevoegen" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Klik om in/uit te klappen" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Herorder layout" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Herorder" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliceer layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Nieuwe layout" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Button label" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Minimale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maximale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "Voeg afbeelding toe aan galerij" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maximale selectie bereikt" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lengte" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Onderschrift" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alt tekst" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Afbeelding(en) toevoegen" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Acties" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sorteer op datum geüpload" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sorteer op datum aangepast" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sorteer op titel" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Keer volgorde om" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Sluiten" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Invoegen" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Geef aan waar nieuwe bijlagen worden toegevoegd" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Toevoegen aan het einde" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Toevoegen aan het begin" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimale selectie" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maximale selectie" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maximum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Ingeklapt" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Minimum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Maximum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Verwijder regel" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "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:41 +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:76 +msgid "Update Information" +msgstr "Update informatie" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Huidige versie" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Nieuwste versie" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Update beschikbaar" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Vul uw licentiecode hierboven in om updates te ontvangen" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Update plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Wat is er nieuw?" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Upgrade opmerking" + +#~ msgid "Gallery Field" +#~ msgstr "Gallery Field" + +#~ msgid "Flexible Content Field" +#~ msgstr "Flexible Content Field" + +#~ msgid "Repeater Field" +#~ msgstr "Repeater Field" + +#~ msgid "Inactive" +#~ msgstr "Niet actief" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Naar prullenbak. Weet je het zeker?" + +#~ msgid "checked" +#~ msgstr "aangevinkt" + +#~ msgid "Parent fields" +#~ msgstr "Hoofdpagina" + +#~ msgid "Sibling fields" +#~ msgstr "Zuster velden" + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Het veld: %s bevindt zich nu in de groep: %s" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "Groep gedupliceerd. %s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s groep gedupliceerd." +#~ msgstr[1] "%s groepen gedupliceerd." + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "Groep gesynchroniseerd. %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s groep gesynchroniseerd." +#~ msgstr[1] "%s groepen gesynchroniseerd." + +#~ msgid "Status" +#~ msgstr "Status" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "Pas WordPress aan met krachtige, professionele en slimme velden." + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Bekijk wat nieuw is in versie %s." + +#~ msgid "Resources" +#~ msgstr "Documentatie (Engels)" + +#~ msgid "Website" +#~ msgstr "Website" + +#~ msgid "Documentation" +#~ msgstr "Documentatie" + +#~ msgid "Support" +#~ msgstr "Support" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Bedankt voor het ontwikkelen met ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "Synchroniseer groep" + +#~ msgid "Apply" +#~ msgstr "Toepassen" + +#~ msgid "Bulk Actions" +#~ msgstr "Bulk acties" + +#~ msgid "Error validating request" +#~ msgstr "Fout bij valideren" + +#~ msgid "Add-ons" +#~ msgstr "Add-ons" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Fout. Kan add-ons lijst niet laden" + +#~ msgid "Info" +#~ msgstr "Informatie" + +#~ msgid "What's New" +#~ msgstr "Wat is er nieuw" + +#~ msgid "Required?" +#~ msgstr "Verplicht?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Geen velden. Klik op + Nieuw veld button om je eerste " +#~ "veld te maken." + +#~ msgid "+ Add Field" +#~ msgstr "+ Nieuw veld" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields database upgrade" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Website vereist een database upgrade van %s naar %s" + +#~ msgid "Upgrade complete" +#~ msgstr "Upgrade afgerond" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Bedankt voor het updaten naar %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Voordat je aan de slag kunt met de geweldige nieuwe functies, is een " +#~ "database update vereist." + +#, php-format +#~ msgid "" +#~ "Please also ensure any premium add-ons (%s) have first been updated to " +#~ "the latest version." +#~ msgstr "" +#~ "Zorg ervoor dat elke premium add-ons (%s) eerst zijn bijgewerkt naar de " +#~ "laatste versie." + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "Database upgrade afgerond. Bekijk wat nieuw is" + +#~ msgid "Download & Install" +#~ msgstr "Download & installeer" + +#~ msgid "Installed" +#~ msgstr "Geïnstalleerd" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Welkom bij Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Bedankt voor het updaten! ACF %s is groter dan ooit tevoren. We hopen dat " +#~ "je tevreden bent." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Een verbeterde extra veld beleving" + +#~ msgid "Improved Usability" +#~ msgstr "Gebruikersvriendelijker" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Inclusief de populaire Select2 bibliotheek, die zowel " +#~ "gebruikersvriendelijker als sneller werkt bij velden als post object, " +#~ "pagina link, taxonomy en selecteer." + +#~ msgid "Improved Design" +#~ msgstr "Verbeterd design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Vele velden hebben een make-over gekregen. Nu oogt ACF beter dan ooit! " +#~ "Merkwaardige verschillen vindt je onder andere terug bij de galerij, " +#~ "relatie en oEmbed velden!" + +#~ msgid "Improved Data" +#~ msgstr "Verbeterde data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Het herontwerp van de dataverwerking zorgt ervoor dat velden los van hun " +#~ "hoofdvelden kunnen functioneren. Hiermee wordt het mogelijk om velden te " +#~ "drag-and-droppen tussen hoofdvelden." + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Vaarwel Add-ons. Hallo PRO!" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "We veranderen de manier waarop premium functies worden geleverd, op een " +#~ "gave manier!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle 4 de premium add-ons zijn samengevoegd tot een PRO " +#~ "versie van ACF. Er zijn zowel persoonlijke als developer licenties " +#~ "verkrijgbaar tegen een aantrekkelijke prijs!" + +#~ msgid "Powerful Features" +#~ msgstr "Krachtige functies" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO beschikt over krachtige velden en functies zoals: herhaalbare " +#~ "velden, flexibile content layouts, een interactieve fotogalerij veld en " +#~ "de mogelijkheid om optie pagina's aan te maken!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Lees meer over de ACF PRO functionaliteiten." + +#~ msgid "Easy Upgrading" +#~ msgstr "Gemakkelijk upgraden" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Om upgraden gemakkelijk te maken kun je inloggen met je " +#~ "bestaande winkelaccount en een gratis versie van ACF PRO claimen!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "We hebben een speciale upgrade gids gemaakt om al je " +#~ "vraagstukken te beantwoorden. Indien je een uitgebreidere vraag hebt, kun " +#~ "je contact opnemen met de helpdesk (Engelstalig)." + +#~ msgid "Under the Hood" +#~ msgstr "Onder de motorkap" + +#~ msgid "Smarter field settings" +#~ msgstr "Slimmere veld instellingen" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF slaat velden als individuele post objecten op" + +#~ msgid "More AJAX" +#~ msgstr "Meer AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Steeds meer velden maken gebruik van AJAX gestuurde zoekopdrachten. Dit " +#~ "maakt het laden een stuk sneller" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Het automatisch exporteren naar JSON maakt alles een stuk sneller" + +#~ msgid "Better version control" +#~ msgstr "Betere versie controles" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nieuw is het automatisch exporteren naar JSON. Dit voorkomt problemen " +#~ "tijdens het upgraden van ACF." + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML is vervangen door JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "" +#~ "Importeren / Exporteren gaat nu via JSON. Indien gewenst kan er XML " +#~ "worden gebruikt" + +#~ msgid "New Forms" +#~ msgstr "Nieuwe formulieren" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Velden kunnen nu worden toegewezen aan reacties, widgets en " +#~ "gebruikersformulieren!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Een nieuw veld voor het embedden van content is toegevoegd" + +#~ msgid "New Gallery" +#~ msgstr "Nieuwe galerij" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Het galerij veld heeft een complete facelift ondergaan" + +#~ msgid "New Settings" +#~ msgstr "Nieuwe instellingen" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Nieuwe groep instellingen zijn toegevoegd om label en instructies toe te " +#~ "voegen" + +#~ msgid "Better Front End Forms" +#~ msgstr "Betere front-end formulieren" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() kan nu posts aanmaken/toevoegen na goedkeuring" + +#~ msgid "Better Validation" +#~ msgstr "Betere validatie" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Formulier validatie gaat nu via PHP + AJAX. Indien gewenst kan dit ook " +#~ "via JS" + +#~ msgid "Relationship Field" +#~ msgstr "Relatie veld" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nieuwe relatieveld instellingen voor filters (Zoeken, Post Type en " +#~ "Taxonomy)" + +#~ msgid "Moving Fields" +#~ msgstr "Velden verplaatsen" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Nieuwe veld groep functionaliteiten laat je velden tussen groepen " +#~ "verplaatsen." + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nieuwe archief groep in pagina_link veld" + +#~ msgid "Better Options Pages" +#~ msgstr "Verbeterde optie pagina's" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "De opties pagina's kunnen nu worden voorzien van zowel hoofd als sub-" +#~ "pagina's" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "" +#~ "Wij denken dat u de wijzigingen en vernieuwingen zult waarderen in versie " +#~ "%s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exporteer groep(en) naar PHP" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Selecteer de groepen die je wilt exporteren. Maak vervolgens de keuze om " +#~ "de groepen te downloaden als JSON bestand, of genereer de export code in " +#~ "PHP formaat. De PHP export code kun je integreren in je thema." + +#~ msgid "Download export file" +#~ msgstr "Download export bestand" + +#~ msgid "Generate export code" +#~ msgstr "Genereer export code" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Selecteer het Advanced Custom Fields JSON bestand die je wilt importeren. " +#~ "Klik op de importeer button om het importeren te starten." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "Bestand mag niet groter zijn dan %s." + +#~ msgid "Allow Custom" +#~ msgstr "Eigen invoer toestaan" + +#~ msgid "Save Custom" +#~ msgstr "Eigen invoer opslaan" + +#~ msgid "Toggle" +#~ msgstr "Switch" + +#~ msgid "Current Color" +#~ msgstr "Huidige kleur" + +#~ msgid "Locating" +#~ msgstr "Locatie wordt gezocht..." + +#~ msgid "Customise the map height" +#~ msgstr "Wijzig de hoogte van de kaart" + +#~ msgid "Shown when entering data" +#~ msgstr "Voorbeeld wordt na het uploaden/selecteren getoond" + +#~ msgid "Error." +#~ msgstr "Fout." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Geen embed mogelijkheid gevonden voor de gewenste URL." + +#~ msgid "Other" +#~ msgstr "Anders namelijk" + +#~ msgid "Save Other" +#~ msgstr "Anders namelijk waarde toevoegen aan keuzes?" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimaal aantal bereikt ( {min} stuks )" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s verplicht tenminste %s selectie" +#~ msgstr[1] "%s verplicht tenminste %s selecties" + +#~ msgid "Stylised UI" +#~ msgstr "Uitgebreide weergave" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Deze tab zal niet correct worden weergegeven in een herhalende tabel" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "Gebruik tabbladen om velden in het edit screen te organiseren." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle velden onder dit \"Tab veld\" zullen worden toegevoegd aan deze tab. " +#~ "Het ingevulde \"Veld label\" dient als benaming van de tab." + +#~ msgid "End-point" +#~ msgstr "Eindpunt" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "Gebruik dit veld als eindpunt en startpunt van een groep tabbladen" + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Geen %s" + +#~ msgid "None" +#~ msgstr "Geen" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "TinyMCE wordt niet geïnitialiseerd tot veld is aangeklikt" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomy term" + +#~ msgid "remove {layout}?" +#~ msgstr "verwijder {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dit veld vereist op zijn minst {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Dit veld heeft een limiet van {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximum {label} limiet bereikt ({max} {identifier})" + +#, php-format +#~ 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 updates te ontvangen vul je op Updates pagina je " +#~ "licentiecode in. Nog geen licentiecode? Bekijk details & prijzen." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Disabled" +#~ msgstr "Inactief" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Inactief (%s)" +#~ msgstr[1] "Inactief (%s)" + +#~ msgid "Getting Started" +#~ msgstr "Aan de slag" + +#~ msgid "Field Types" +#~ msgstr "Veld soorten" + +#~ msgid "Functions" +#~ msgstr "Functies" + +#~ msgid "Actions" +#~ msgstr "Acties" + +#~ msgid "'How to' guides" +#~ msgstr "Veelgestelde vragen" + +#~ msgid "Tutorials" +#~ msgstr "Tutorials" + +#~ msgid "FAQ" +#~ msgstr "FAQ" + +#~ msgid "Created by" +#~ msgstr "Ontwikkeld door" + +#~ msgid "Error loading update" +#~ msgstr "Fout bij laden van update" + +#~ msgid "Error" +#~ msgstr "Fout" + +#~ msgid "See what's new" +#~ msgstr "Bekijk alle vernieuwingen en verbeteringen van" + +#~ msgid "eg. Show extra content" +#~ msgstr "bijv. Toon op homepage" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "1 veld vraagt om aandacht" +#~ msgstr[1] "%d velden vragen om aandacht" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Verbindingsfout. Onze excuses, probeer het later nog eens" + +#~ msgid "See what's new in" +#~ msgstr "Bekijk alle vernieuwingen en verbeteringen van" + +#~ msgid "version" +#~ msgstr "versie" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "Gelukt!. De importeer tool heeft %s velden en %s groepen " +#~ "geïmporteerd" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Waarschuwing. De importeer functie heeft %s bestaande veldgroepen " +#~ "gedetecteerd en heeft deze genegeerd: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Upgrade ACF" + +#~ msgid "Upgrade" +#~ msgstr "Upgrade" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "De volgende website vereist een DB upgrade. Selecteer degene die u wilt " +#~ "updaten en klik op “Upgrade database”." + +#~ msgid "Upgrading data to" +#~ msgstr "Upgraden van data naar " + +#~ msgid "Done" +#~ msgstr "Gereed" + +#~ msgid "Today" +#~ msgstr "Vandaag" + +#~ msgid "Show a different month" +#~ msgstr "Toon een andere maand" + +#~ msgid "Return format" +#~ msgstr "Output weergeven als" + +#~ msgid "uploaded to this post" +#~ msgstr "geüpload naar deze post" + +#~ msgid "File Name" +#~ msgstr "Bestandsnaam" + +#~ msgid "File Size" +#~ msgstr "Bestandsformaat" + +#~ msgid "No File selected" +#~ msgstr "Geen bestand geselecteerd" + +#~ msgid "Save Options" +#~ msgstr "Opties bijwerken" + +#~ msgid "License" +#~ msgstr "Licentie" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Voor het verkrijgen van updates is een licentiesleutel vereist. Indien je " +#~ "niet beschikt over een licentiecode kun je deze aanschaffen, zie:" + +#~ msgid "details & pricing" +#~ msgstr "details & kosten" + +#~ 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 "" +#~ "Voor het verkrijgen van updates is een licentiesleutel vereist. Vul uw " +#~ "licentiecode in op de Updates pagina, of schaf een " +#~ "licentiecode aan via details & prijzen." + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Sleep om te sorteren" + +#~ msgid "Add new %s " +#~ msgstr "Nieuwe %s " + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Tekst wordt automatisch voorzien van paragrafen door de wp functie: " + +#~ msgid "Warning" +#~ msgstr "Waarschuwing" + +#~ msgid "Hide / Show All" +#~ msgstr "Verberg / Toon alle" + +#~ msgid "Show Field Keys" +#~ msgstr "Toon veld sleutels" + +#~ msgid "Pending Review" +#~ msgstr "Wachtend op goedkeuring" + +#~ msgid "Draft" +#~ msgstr "Concept" + +#~ msgid "Future" +#~ msgstr "Toekomst" + +#~ msgid "Private" +#~ msgstr "Privé" + +#~ msgid "Revision" +#~ msgstr "Revisie" + +#~ msgid "Trash" +#~ msgstr "Afval" + +#~ msgid "Top Level Page (parent of 0)" +#~ msgstr "Hoofdpagina (ouder dan 0)" + +#~ msgid "Import / Export" +#~ msgstr "Importeer / Exporteer" + +#~ msgid "Logged in User Type" +#~ msgstr "Gebruikersrol" + +#~ msgid "Field groups are created in order
                              from lowest to highest" +#~ msgstr "Groepen worden gesorteerd van laag naar hoog." + +#~ msgid "Select items to hide them from the edit screen" +#~ msgstr "" +#~ "Selecteer elementen die verborgen worden op het edit screen" + +#~ 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 groepen verschijnen op een edit screen, zal de eerste " +#~ "groep worden gebruikt. (degene met het laagste volgorde nummer)" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exiting " +#~ "way!" +#~ msgstr "" +#~ "We hebben de premium mogelijkheden vernieuwd op een geweldige manier!" + +#~ msgid "ACF PRO Required" +#~ msgstr "ACF PRO verplicht" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "We hebben een probleem ontdekt die uw aandacht vereist: Deze website " +#~ "maakt gebruik van add-ons (%s) die niet compatible zijn met de huidige " +#~ "versie van ACF." + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Geen paniek! Je kunt gemakkelijk downgraden naar een vorige versie van " +#~ "ACF." + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Downgrade naar ACF v%s" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Ontdek waarom je niet zonder ACF PRO kunt" + +#~ msgid "Update Database" +#~ msgstr "Database updaten" + +#~ msgid "Data Upgrade" +#~ msgstr "Data geüpgrade" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Data is met succes geüpgraded." + +#~ msgid "Data is at the latest version." +#~ msgstr "Data beschikt over de laatste versie." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "1 verplicht veld is leeg" +#~ msgstr[1] "%s verplichte velden zijn leeg" + +#~ msgid "Controls how HTML tags are rendered" +#~ msgstr "Bepaal hoe HTML tags worden weergegeven" + +#~ msgid "No taxonomy filter" +#~ msgstr "Geen taxonomy filter" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Laad & sla termen op bij post" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Laad waarde aan de hand van de post termen en update de post termen bij " +#~ "het opslaan" + +#~ msgid "Custom field updated." +#~ msgstr "Extra veld bijgewerkt." + +#~ msgid "Custom field deleted." +#~ msgstr "Extra veld verwijderd." + +#~ msgid "Field group duplicated! Edit the new \"%s\" field group." +#~ msgstr "Groep gedupliceerd! Bewerk de nieuwe \"%s\" groep." + +#~ msgid "Import/Export" +#~ msgstr "Import/Export" + +#~ msgid "Column Width" +#~ msgstr "Kolom breedte" + +#~ msgid "Attachment Details" +#~ msgstr "Bijlage details" + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "Groepen hersteld naar revisie van %s" + +#~ msgid "No ACF groups selected" +#~ msgstr "Geen ACF groep geselecteerd" + +#~ msgid "Normal" +#~ msgstr "Normaal" + +#~ msgid "No Metabox" +#~ msgstr "Geen metabox" + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "" +#~ "Lees de documentatie, leer de functies kennen en ontdek tips & tricks " +#~ "voor jouw web project." + +#~ msgid "Visit the ACF website" +#~ msgstr "Bezoek de ACF website" + +#~ msgid "Vote" +#~ msgstr "Stem" + +#~ msgid "Follow" +#~ msgstr "Volg op Twitter" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "" +#~ "Validatie mislukt. Eén of meer velden hieronder zijn verplicht." + +#~ msgid "Add File to Field" +#~ msgstr "+ Bestand toevoegen aan veld" + +#~ msgid "Add Image to Field" +#~ msgstr "Add Image to Field" + +#~ msgid "Attachment updated" +#~ msgstr "Bijlage bijgewerkt." + +#~ msgid "Repeater field deactivated" +#~ msgstr "Repeater Field gedeactiveerd" + +#~ msgid "Gallery field deactivated" +#~ msgstr "Gallery field gedeactiveerd" + +#~ msgid "Repeater field activated" +#~ msgstr "Repeater field geactiveerd" + +#~ msgid "Options page activated" +#~ msgstr "Options page geactiveerd" + +#~ msgid "Flexible Content field activated" +#~ msgstr "Flexible Content field geactiveerd" + +#~ msgid "Gallery field activated" +#~ msgstr "Gallery field geactiveerd" + +#~ msgid "License key unrecognised" +#~ msgstr "Licentie code niet herkend" + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "" +#~ "Add-ons kun je activeren door een licentie code te kopen. Elke code kan " +#~ "gebruikt worden op meerdere websites." + +#~ msgid "Activation Code" +#~ msgstr "Activatie code" + +#~ msgid "Export Field Groups to XML" +#~ msgstr "Exporteer groepen naar XML" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "ACF maakt een .xml export bestand die compatibel is met de ingebouwde WP " +#~ "import plugin." + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "Geïmporteerde veld groepen verschijnen in de lijst van " +#~ "beheerbare veld groepen. Dit is handig voor het migreren van veld groepen " +#~ "tussen WP websites." + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "Selecteer veld groep(en) van van de lijst en klik \"Exporteer XML\"" + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "Sla de .xml file op wanneer er om gevraagd wordt" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "Navigeer naar Extra » Importeren en selecteer WordPress " + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "Installeer de WP import plugin als er naar wordt gevraagd" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "Upload en import je geëxporteerde .xml bestand" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "Selecteer je gebruiker en negeer import bijlages" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "Dat is het! Happy WordPressing" + +#~ msgid "Export XML" +#~ msgstr "Exporteer XML" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACF maakt de PHP code die je kan integreren in jouw thema." + +#~ msgid "Register Field Groups" +#~ msgstr "Registreer veld groepen" + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "Houd er rekening mee dat wanneer je veld groepen exporteert en " +#~ "registreert in dezelfde WP installatie, ze verschijnen als gedupliceerde " +#~ "velden in je edit screens. Om dit te verhelpen: verwijder de originele " +#~ "veld groepen naar de prullenbak of verwijder de code uit je functions.php " +#~ "bestand." + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "Selecteer veld groepen uit de lijst en klik \"Maak PHP\"" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Kopieer de gegenereerde PHP code" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Plak in je functions.php bestand" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "Om add-ons te activeren, bewerk en gebruik de code in de eerste regels." + +#~ msgid "Create PHP" +#~ msgstr "Maak PHP" + +#~ msgid "Back to settings" +#~ msgstr "Terug naar instellingen" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "Advanced Custom Fields instellingen" + +#~ msgid "requires a database upgrade" +#~ msgstr "vereist een database upgrade" + +#~ msgid "why?" +#~ msgstr "waarom?" + +#~ msgid "Please" +#~ msgstr "Graag" + +#~ msgid "backup your database" +#~ msgstr "backup maken van je database" + +#~ msgid "then click" +#~ msgstr "vervolgens klikken op" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "Verplaats gebruikers eigen velden van wp_options naar wp_usermeta" + +#~ msgid "No choices to choose from" +#~ msgstr "Geen keuzes om uit te kiezen" + +#~ msgid "Red" +#~ msgstr "Rood" + +#~ msgid "Blue" +#~ msgstr "Blauw" + +#~ msgid "blue : Blue" +#~ msgstr "blauw : Blauw" + +#~ msgid "File Updated." +#~ msgstr "Bestand bijgewerkt." + +#~ msgid "Media attachment updated." +#~ msgstr "Media bijlage bijgewerkt." + +#~ msgid "Add Selected Files" +#~ msgstr "Geselecteerde bestanden toevoegen" + +#~ msgid "+ Add Row" +#~ msgstr "+ Nieuwe regel" + +#~ msgid "Field Order" +#~ msgstr "Veld volgorde" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "" +#~ "Geen velden. Klik op \"+ Nieuw sub veld\" button om je eerste veld te " +#~ "maken." + +#~ msgid "Docs" +#~ msgstr "Documentatie" + +#~ msgid "Close Sub Field" +#~ msgstr "Sub veld sluiten" + +#~ msgid "+ Add Sub Field" +#~ msgstr "+ Nieuw sub veld" + +#~ msgid "Alternate Text" +#~ msgstr "Alternatieve tekst" + +#~ msgid "Thumbnail is advised" +#~ msgstr "Thumbnail wordt geadviseerd" + +#~ msgid "Image Updated" +#~ msgstr "Afbeelding bijgwerkt" + +#~ msgid "Grid" +#~ msgstr "Grid" + +#~ msgid "List" +#~ msgstr "Lijst" + +#~ msgid "No images selected" +#~ msgstr "Geen afbeeldingen geselecteerd" + +#~ msgid "1 image selected" +#~ msgstr "1 afbeelding geselecteerd" + +#~ msgid "{count} images selected" +#~ msgstr "{count} afbeeldingen geselecteerd" + +#~ msgid "Added" +#~ msgstr "Toegevoegd" + +#~ msgid "Image already exists in gallery" +#~ msgstr "Afbeelding bestaat al galerij" + +#~ msgid "Image Updated." +#~ msgstr "Afbeelding bijgewerkt." + +#~ msgid "Add selected Images" +#~ msgstr "Voeg geselecteerde afbeeldingen toe" + +#~ msgid "Repeater Fields" +#~ msgstr "Velden herhalen" + +#~ msgid "Field Instructions" +#~ msgstr "Veld instructies" + +#~ msgid "Table (default)" +#~ msgstr "Tabel (standaard)" + +#~ msgid "Define how to render html tags" +#~ msgstr "Bepaal hoe HTML tags worden omgezet" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Bepaal hoe HTML tags worden omgezet / nieuwe regels" + +#~ msgid "Run filter \"the_content\"?" +#~ msgstr "Gebruik filter \"the_content\"?" + +#~ msgid "Enable this filter to use shortcodes within the WYSIWYG field" +#~ msgstr "Activeer dit filter om shortcodes te gebruiken in het WYSIWYG veld" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "" +#~ "De datum wordt in deze indeling opgeslagen in de database en teruggegeven " +#~ "door de API" + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "\"yymmdd\" is de meest veelzijdige opslaan indeling. Lees meer op" + +#~ msgid "jQuery date formats" +#~ msgstr "jQuery datum format" + +#~ msgid "This format will be seen by the user when entering a value" +#~ msgstr "" +#~ "Deze indeling wordt gezien door de gebruiker wanneer datum wordt ingevuld" + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "" +#~ "\"dd/mm/yy\" of \"mm/dd/yy\" zijn de meest gebruikte indelingen. Lees " +#~ "meer op" + +#~ msgid "Page Specific" +#~ msgstr "Pagina specifiek" + +#~ msgid "Post Specific" +#~ msgstr "Bericht specifiek" + +#~ msgid "Taxonomy (Add / Edit)" +#~ msgstr "Taxonomy (Nieuwe / bewerk)" + +#~ msgid "Media (Edit)" +#~ msgstr "Media (Bewerk)" + +#~ msgid "match" +#~ msgstr "komt overeen met" + +#~ msgid "all" +#~ msgstr "allen" + +#~ msgid "of the above" +#~ msgstr "van hierboven" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "Ontgrendel opties add-on met een activatie code" + +#~ msgid "Add Fields to Edit Screens" +#~ msgstr "Voeg velden toe aan edit screen" + +#~ msgid "Navigate to the" +#~ msgstr "Ga naar de" + +#~ msgid "and select WordPress" +#~ msgstr "en selecteer WordPress" + +#~ msgid "eg. dd/mm/yy. read more about" +#~ msgstr "bijv. dd/mm/yyyy. Lees meer over" + +#~ msgid "" +#~ "Filter posts by selecting a post type
                              \n" +#~ "\t\t\t\tTip: deselect all post types to show all post type's posts" +#~ msgstr "" +#~ "Filter post type door te selecteren
                              \n" +#~ "\t\t\t\tTip: selecteer 'alles' om alle posts van alle post type te tonen" + +#~ msgid "Everything Fields deactivated" +#~ msgstr "Everything Fields gedeactiveerd" + +#~ msgid "Everything Fields activated" +#~ msgstr "Everything Fields geactiveerd" + +#~ msgid "Set to -1 for infinite" +#~ msgstr "Plaats -1 voor oneindig" + +#~ msgid "Row Limit" +#~ msgstr "Rij limiet" diff --git a/lang/acf-nl_NL.mo b/lang/acf-nl_NL.mo index 7bd4e49..14fc10a 100644 Binary files a/lang/acf-nl_NL.mo and b/lang/acf-nl_NL.mo differ diff --git a/lang/acf-nl_NL.po b/lang/acf-nl_NL.po index 7686e3b..3bace14 100644 --- a/lang/acf-nl_NL.po +++ b/lang/acf-nl_NL.po @@ -1,1178 +1,1143 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.6.6\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2017-11-22 15:53+0200\n" -"PO-Revision-Date: 2019-03-25 09:21+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Derk Oosterveld \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: Poedit 1.8.1\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:67 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "Begin een nieuwe groep van tabs bij dit tab." -#: acf.php:369 includes/admin/admin.php:117 -msgid "Field Groups" -msgstr "Groepen" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "Nieuwe tabgroep" -#: acf.php:370 -msgid "Field Group" -msgstr "Nieuwe groep" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "Een gestileerde checkbox gebruiken met select2" -#: acf.php:371 acf.php:403 includes/admin/admin.php:118 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Add New" -msgstr "Nieuwe groep" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "Andere keuze opslaan" -#: acf.php:372 -msgid "Add New Field Group" -msgstr "Nieuwe groep toevoegen" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "Andere keuze toestaan" -#: acf.php:373 -msgid "Edit Field Group" -msgstr "Bewerk groep" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "Toevoegen toggle alle" -#: acf.php:374 -msgid "New Field Group" -msgstr "Nieuwe groep" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Aangepaste waarden opslaan" -#: acf.php:375 -msgid "View Field Group" -msgstr "Bekijk groep" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Aangepaste waarden toestaan" -#: acf.php:376 -msgid "Search Field Groups" -msgstr "Zoek groepen" +#: includes/fields/class-acf-field-checkbox.php:144 +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." -#: acf.php:377 -msgid "No Field Groups found" -msgstr "Geen groepen gevonden" +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Updates" -#: acf.php:378 -msgid "No Field Groups found in Trash" -msgstr "Geen groepen gevonden in de prullenbak" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "Advanced Custom Fields logo" -#: acf.php:401 includes/admin/admin-field-group.php:182 -#: includes/admin/admin-field-group.php:275 -#: includes/admin/admin-field-groups.php:510 -#: pro/fields/class-acf-field-clone.php:807 -msgid "Fields" -msgstr "Velden" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Wijzigingen opslaan" -#: acf.php:402 -msgid "Field" -msgstr "Veld" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Veldgroep titel" -#: acf.php:404 -msgid "Add New Field" -msgstr "Nieuw veld" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Titel toevoegen" -#: acf.php:405 -msgid "Edit Field" -msgstr "Bewerk veld" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" +"Ben je nieuw bij ACF? Bekijk onze startersgids." -#: acf.php:406 includes/admin/views/field-group-fields.php:41 -#: includes/admin/views/settings-info.php:105 -msgid "New Field" -msgstr "Nieuw veld" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "Veldgroep toevoegen" -#: acf.php:407 -msgid "View Field" -msgstr "Nieuw veld" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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." -#: acf.php:408 -msgid "Search Fields" -msgstr "Zoek velden" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Je eerste veldgroep toevoegen" -#: acf.php:409 -msgid "No Fields found" -msgstr "Geen velden gevonden" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Upgrade nu" -#: acf.php:410 -msgid "No Fields found in Trash" -msgstr "Geen velden gevonden in de prullenbak" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Opties pagina's" -#: acf.php:449 includes/admin/admin-field-group.php:390 -#: includes/admin/admin-field-groups.php:567 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "ACF blokken" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Galerij veld" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Flexibel inhoudsveld" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Herhaler veld" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "Extra functies ontsluiten met ACF PRO" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Verwijder veldgroep" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Gemaakt op %1$s op %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "Groep instellingen" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "Locatieregels" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" +"Kies uit meer dan 30 veldtypes. Meer " +"informatie." + +#: includes/admin/views/field-group-fields.php:54 +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/field-group-fields.php:53 +msgid "Add Your First Field" +msgstr "Je eerste veld toevoegen" + +#. translators: A symbol (or text, if not available in your locale) meaning +#. "Order Number", in terms of positional placement. +#: includes/admin/views/field-group-fields.php:32 +msgid "#" +msgstr "#" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "Veld toevoegen" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Presentatie" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validatie" + +#: includes/admin/views/field-group-field.php:94 +msgid "General" +msgstr "Algemeen" + +#: includes/admin/tools/class-acf-admin-tool-import.php:70 +msgid "Import JSON" +msgstr "Importeer JSON" + +#: includes/admin/tools/class-acf-admin-tool-export.php:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Veldgroepen exporteren - PHP genereren" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Als JSON exporteren" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "Veldgroep gedeactiveerd." +msgstr[1] "%s veld groepen gedeactiveerd." + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "Veldgroep geactiveerd." +msgstr[1] "%s veld groepen geactiveerd." + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Deactiveer" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Deactiveer dit item" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Activeer" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Activeer dit item" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "Veldgroep naar prullenbak verplaatsen?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" msgid "Inactive" -msgstr "Niet actief" +msgstr "Inactief" -#: acf.php:454 -#, php-format -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Inactief (%s)" -msgstr[1] "Inactief (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" -#: includes/admin/admin-field-group.php:68 -#: includes/admin/admin-field-group.php:69 -#: includes/admin/admin-field-group.php:71 -msgid "Field group updated." -msgstr "Groep bijgewerkt." +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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 mogen niet " +"tegelijkertijd actief zijn. We hebben Advanced Custom Fields PRO automatisch " +"gedeactiveerd." -#: includes/admin/admin-field-group.php:70 -msgid "Field group deleted." -msgstr "Groep verwijderd." +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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/admin/admin-field-group.php:73 -msgid "Field group published." -msgstr "Groep gepubliceerd." +#: 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/admin/admin-field-group.php:74 -msgid "Field group saved." -msgstr "Groep opgeslagen." +#: includes/fields/class-acf-field-user.php:537 +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/admin/admin-field-group.php:75 -msgid "Field group submitted." -msgstr "Groep toegevoegd." +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s moet een geldig gebruikers ID hebben." -#: includes/admin/admin-field-group.php:76 -msgid "Field group scheduled for." -msgstr "Groep gepland voor." +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Ongeldige aanvraag." -#: includes/admin/admin-field-group.php:77 -msgid "Field group draft updated." -msgstr "Groep concept bijgewerkt." +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "%1$s is niet een van %2$s" -#: includes/admin/admin-field-group.php:183 -msgid "Location" -msgstr "Locatie" +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s vereist een geldig bijlage ID." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Toon in REST API" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Transparantie inschakelen" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA array" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA string" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex string" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galerij (alleen Pro)" #: includes/admin/admin-field-group.php:184 -msgid "Settings" -msgstr "Instellingen" +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Kloon (alleen Pro)" -#: includes/admin/admin-field-group.php:269 -msgid "Move to trash. Are you sure?" -msgstr "Naar prullenbak. Weet je het zeker?" +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexibele inhoud (alleen Pro)" -#: includes/admin/admin-field-group.php:270 -msgid "checked" -msgstr "aangevinkt" +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Herhaler (alleen Pro)" -#: includes/admin/admin-field-group.php:271 -msgid "No toggle fields available" -msgstr "Geen aan/uit velden beschikbaar" - -#: includes/admin/admin-field-group.php:272 -msgid "Field group title is required" -msgstr "Titel is verplicht" - -#: includes/admin/admin-field-group.php:273 -#: includes/api/api-field-group.php:751 -msgid "copy" -msgstr "kopie" - -#: includes/admin/admin-field-group.php:274 -#: includes/admin/views/field-group-field-conditional-logic.php:54 -#: includes/admin/views/field-group-field-conditional-logic.php:154 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3964 -msgid "or" -msgstr "of" - -#: includes/admin/admin-field-group.php:276 -msgid "Parent fields" -msgstr "Hoofdpagina" - -#: includes/admin/admin-field-group.php:277 -msgid "Sibling fields" -msgstr "Zuster velden" - -#: includes/admin/admin-field-group.php:278 -msgid "Move Custom Field" -msgstr "Verplaats extra veld" - -#: includes/admin/admin-field-group.php:279 -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/admin-field-group.php:280 -msgid "Null" -msgstr "Nul" - -#: includes/admin/admin-field-group.php:281 includes/input.php:258 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "De gemaakte wijzigingen gaan verloren als je deze pagina verlaat" - -#: includes/admin/admin-field-group.php:282 -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/admin-field-group.php:360 -msgid "Field Keys" -msgstr "Veld keys" - -#: includes/admin/admin-field-group.php:390 -#: includes/admin/views/field-group-options.php:9 +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" msgid "Active" msgstr "Actief" -#: includes/admin/admin-field-group.php:801 -msgid "Move Complete." -msgstr "Verplaatsen geslaagd." +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' is geen geldig e-mailadres" -#: includes/admin/admin-field-group.php:802 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "Het veld: %s bevindt zich nu in de groep: %s" +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Kleurwaarde" -#: includes/admin/admin-field-group.php:803 -msgid "Close Window" -msgstr "Venster sluiten" +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Selecteer standaardkleur" -#: includes/admin/admin-field-group.php:844 -msgid "Please select the destination for this field" -msgstr "Selecteer de bestemming voor dit veld" +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Kleur wissen" -#: includes/admin/admin-field-group.php:851 -msgid "Move Field" -msgstr "Veld verplaatsen" +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blokken" -#: includes/admin/admin-field-groups.php:74 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Actief (%s)" -msgstr[1] "Actief (%s)" +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opties" -#: includes/admin/admin-field-groups.php:142 -#, php-format -msgid "Field group duplicated. %s" -msgstr "Groep gedupliceerd. %s" +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Gebruikers" -#: includes/admin/admin-field-groups.php:146 -#, php-format -msgid "%s field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s groep gedupliceerd." -msgstr[1] "%s groepen gedupliceerd." +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menu-items" -#: includes/admin/admin-field-groups.php:227 -#, php-format -msgid "Field group synchronised. %s" -msgstr "Groep gesynchroniseerd. %s" +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" -#: includes/admin/admin-field-groups.php:231 -#, php-format -msgid "%s field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "%s groep gesynchroniseerd." -msgstr[1] "%s groepen gesynchroniseerd." +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Bijlagen" -#: includes/admin/admin-field-groups.php:394 -#: includes/admin/admin-field-groups.php:557 -msgid "Sync available" -msgstr "Synchronisatie beschikbaar" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomieën" -#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 -#: pro/fields/class-acf-field-gallery.php:355 -msgid "Title" -msgstr "Titel" +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Berichten" -#: includes/admin/admin-field-groups.php:508 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/install-network.php:21 -#: includes/admin/views/install-network.php:29 -#: pro/fields/class-acf-field-gallery.php:382 -msgid "Description" -msgstr "Omschrijving" +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON veldgroep (nieuwer)" -#: includes/admin/admin-field-groups.php:509 -msgid "Status" -msgstr "Status" +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Oorspronkelijke veldgroep" -#. Description of the plugin/theme -#: includes/admin/admin-field-groups.php:607 -msgid "Customise WordPress with powerful, professional and intuitive fields." -msgstr "Pas WordPress aan met krachtige, professionele en slimme velden." +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Laatst geüpdatet: %s" -#: includes/admin/admin-field-groups.php:609 -#: includes/admin/settings-info.php:76 -#: pro/admin/views/html-settings-updates.php:107 -msgid "Changelog" -msgstr "Wat is er nieuw?" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Deze veldgroep is niet beschikbaar voor verschil vergelijking." -#: includes/admin/admin-field-groups.php:614 -#, php-format -msgid "See what's new in version %s." -msgstr "Bekijk wat nieuw is in versie %s." +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Ongeldige veldgroep-ID." -#: includes/admin/admin-field-groups.php:617 -msgid "Resources" -msgstr "Documentatie (Engels)" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Ongeldige veldgroep parameter(s)." -#: includes/admin/admin-field-groups.php:619 -msgid "Website" -msgstr "Website" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "In afwachting van opslaan" -#: includes/admin/admin-field-groups.php:620 -msgid "Documentation" -msgstr "Documentatie" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Opgeslagen" -#: includes/admin/admin-field-groups.php:621 -msgid "Support" -msgstr "Support" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importeren" -#: includes/admin/admin-field-groups.php:623 -msgid "Pro" -msgstr "Pro" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Wijzigingen beoordelen" -#: includes/admin/admin-field-groups.php:628 -#, php-format -msgid "Thank you for creating with ACF." -msgstr "Bedankt voor het ontwikkelen met ACF." +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Bevindt zich in: %s" -#: includes/admin/admin-field-groups.php:668 -msgid "Duplicate this item" -msgstr "Dupliceer dit item" +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Bevindt zich in plugin: %s" -#: includes/admin/admin-field-groups.php:668 -#: includes/admin/admin-field-groups.php:684 -#: includes/admin/views/field-group-field.php:49 -#: pro/fields/class-acf-field-flexible-content.php:556 -msgid "Duplicate" -msgstr "Dupliceer" +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Bevindt zich in thema: %s" -#: includes/admin/admin-field-groups.php:701 -#: includes/fields/class-acf-field-google-map.php:112 -#: includes/fields/class-acf-field-relationship.php:656 -msgid "Search" -msgstr "Zoeken" +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Diverse" -#: includes/admin/admin-field-groups.php:760 -#, php-format -msgid "Select %s" -msgstr "Selecteer %s" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Wijzigingen synchroniseren" -#: includes/admin/admin-field-groups.php:768 -msgid "Synchronise field group" -msgstr "Synchroniseer groep" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Diff laden" -#: includes/admin/admin-field-groups.php:768 -#: includes/admin/admin-field-groups.php:798 -msgid "Sync" -msgstr "Synchroniseer" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Lokale JSON wijzigingen beoordelen" -#: includes/admin/admin-field-groups.php:780 -msgid "Apply" -msgstr "Toepassen" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Bezoek site" -#: includes/admin/admin-field-groups.php:798 -msgid "Bulk Actions" -msgstr "Bulk acties" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Details bekijken" -#: includes/admin/admin.php:113 -#: includes/admin/views/field-group-options.php:118 -msgid "Custom Fields" -msgstr "Extra velden" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versie %s" -#: includes/admin/install-network.php:88 includes/admin/install.php:70 -#: includes/admin/install.php:121 -msgid "Upgrade Database" -msgstr "Upgrade database" - -#: includes/admin/install-network.php:140 -msgid "Review sites & upgrade" -msgstr "Controleer websites & upgrade" - -#: includes/admin/install.php:187 -msgid "Error validating request" -msgstr "Fout bij valideren" - -#: includes/admin/install.php:210 includes/admin/views/install.php:105 -msgid "No updates available." -msgstr "Geen updates beschikbaar." - -#: includes/admin/settings-addons.php:51 -#: includes/admin/views/settings-addons.php:3 -msgid "Add-ons" -msgstr "Add-ons" - -#: includes/admin/settings-addons.php:87 -msgid "Error. Could not load add-ons list" -msgstr "Fout. Kan add-ons lijst niet laden" - -#: includes/admin/settings-info.php:50 -msgid "Info" +#: includes/admin/admin.php:169 +msgid "Information" msgstr "Informatie" -#: includes/admin/settings-info.php:75 -msgid "What's New" -msgstr "Wat is er nieuw" +#: includes/admin/admin.php:160 +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/settings-tools.php:50 -#: includes/admin/views/settings-tools-export.php:19 -#: includes/admin/views/settings-tools.php:31 -msgid "Tools" -msgstr "Tools" +#: includes/admin/admin.php:156 +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/settings-tools.php:147 includes/admin/settings-tools.php:380 -msgid "No field groups selected" -msgstr "Geen groepen geselecteerd" +#: includes/admin/admin.php:152 +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/settings-tools.php:184 -#: includes/fields/class-acf-field-file.php:155 -msgid "No file selected" -msgstr "Geen bestanden geselecteerd" +#: includes/admin/admin.php:149 +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/settings-tools.php:197 -msgid "Error uploading file. Please try again" -msgstr "Fout bij het uploaden van bestand. Probeer het nog eens" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Hulp & ondersteuning" -#: includes/admin/settings-tools.php:206 -msgid "Incorrect file type" -msgstr "Ongeldig bestandstype" +#: includes/admin/admin.php:137 +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/settings-tools.php:223 -msgid "Import file empty" -msgstr "Importeer bestand is leeg" +#: includes/admin/admin.php:134 +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/settings-tools.php:331 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "1 groep geïmporteerd" -msgstr[1] "%s groepen geïmporteerd" +#: includes/admin/admin.php:132 +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/views/field-group-field-conditional-logic.php:28 -msgid "Conditional Logic" -msgstr "Conditionele logica" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Overzicht" -#: includes/admin/views/field-group-field-conditional-logic.php:54 +#: 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:361 +msgid "Error loading field." +msgstr "Fout tijdens laden van veld." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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 "Bericht 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 "Berichtstatus" + +#: includes/acf-wp-functions.php:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s waarde is verplicht" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 msgid "Show this field if" msgstr "Toon dit veld als" -#: includes/admin/views/field-group-field-conditional-logic.php:103 -#: includes/locations.php:247 -msgid "is equal to" -msgstr "gelijk is aan" +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Voorwaardelijke logica" -#: includes/admin/views/field-group-field-conditional-logic.php:104 -#: includes/locations.php:248 -msgid "is not equal to" -msgstr "is niet gelijk aan" - -#: includes/admin/views/field-group-field-conditional-logic.php:141 -#: includes/admin/views/html-location-rule.php:80 +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "en" -#: includes/admin/views/field-group-field-conditional-logic.php:156 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Nieuwe groep toevoegen" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Lokale JSON" -#: includes/admin/views/field-group-field.php:41 -#: pro/fields/class-acf-field-flexible-content.php:403 -#: pro/fields/class-acf-field-repeater.php:296 -msgid "Drag to reorder" -msgstr "Sleep om te sorteren" - -#: includes/admin/views/field-group-field.php:45 -#: includes/admin/views/field-group-field.php:48 -msgid "Edit field" -msgstr "Bewerk veld" - -#: includes/admin/views/field-group-field.php:48 -#: includes/fields/class-acf-field-file.php:137 -#: includes/fields/class-acf-field-image.php:122 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:342 -msgid "Edit" -msgstr "Bewerk" - -#: includes/admin/views/field-group-field.php:49 -msgid "Duplicate field" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" msgstr "Dupliceer veld" -#: includes/admin/views/field-group-field.php:50 -msgid "Move field to another group" -msgstr "Verplaats veld naar een andere groep" +#: includes/admin/views/html-notice-upgrade.php:31 +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 geüpdatet naar de nieuwste " +"versie." -#: includes/admin/views/field-group-field.php:50 -msgid "Move" -msgstr "Verplaats" +#: includes/admin/views/html-notice-upgrade.php:29 +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/field-group-field.php:51 -msgid "Delete field" -msgstr "Verwijder veld" +#: includes/admin/views/html-notice-upgrade.php:29 +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/field-group-field.php:51 -#: pro/fields/class-acf-field-flexible-content.php:555 -msgid "Delete" -msgstr "Verwijder" +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Database-upgrade vereist" -#: includes/admin/views/field-group-field.php:67 -msgid "Field Label" -msgstr "Veld label" +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Opties pagina" -#: includes/admin/views/field-group-field.php:68 -msgid "This is the name which will appear on the EDIT page" -msgstr "De naam die verschijnt op het edit screen" +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galerij" -#: includes/admin/views/field-group-field.php:77 -msgid "Field Name" -msgstr "Veld naam" +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexibele inhoud" -#: includes/admin/views/field-group-field.php:78 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Enkel woord, geen spaties. (Liggende) streepjes toegestaan." +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Herhaler" -#: includes/admin/views/field-group-field.php:87 -msgid "Field Type" -msgstr "Soort veld" +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Terug naar alle gereedschappen" -#: includes/admin/views/field-group-field.php:98 -#: includes/fields/class-acf-field-tab.php:88 -msgid "Instructions" -msgstr "Instructies" +#: includes/admin/views/field-group-options.php:161 +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 volgorde " +"nummer)" -#: includes/admin/views/field-group-field.php:99 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Toelichting voor gebruikers. Wordt getoond bij invullen van het veld." +#: includes/admin/views/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Selecteer items om ze te verbergen in het bewerkingsscherm." -#: includes/admin/views/field-group-field.php:108 -msgid "Required?" -msgstr "Verplicht?" +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Verberg op scherm" -#: includes/admin/views/field-group-field.php:131 -msgid "Wrapper Attributes" -msgstr "Veld-attributen" +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Trackbacks verzenden" -#: includes/admin/views/field-group-field.php:137 -msgid "width" -msgstr "Breedte" +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Tags" -#: includes/admin/views/field-group-field.php:152 -msgid "class" -msgstr "class" +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorieën" -#: includes/admin/views/field-group-field.php:165 -msgid "id" -msgstr "id" +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Pagina attributen" -#: includes/admin/views/field-group-field.php:177 -msgid "Close Field" -msgstr "Veld sluiten" +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Volgorde" +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Auteur" -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:415 -#: includes/fields/class-acf-field-radio.php:306 -#: includes/fields/class-acf-field-select.php:432 -#: pro/fields/class-acf-field-flexible-content.php:582 -msgid "Label" -msgstr "Label" +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:964 -#: pro/fields/class-acf-field-flexible-content.php:595 -msgid "Name" -msgstr "Naam" +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisies" -#: includes/admin/views/field-group-fields.php:7 +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Reacties" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussie" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Samenvatting" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Inhoudseditor" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Weergegeven in lijst met veldgroepen" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Veldgroepen met een lagere volgorde verschijnen als eerste" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Volgorde nr." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Onder velden" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Onder labels" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Instructie plaatsing" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Label plaatsing" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Zijkant" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normaal (na inhoud)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Hoog (na titel)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Positie" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Naadloos (geen metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standaard (met metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Stijl" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Type" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 msgid "Key" msgstr "Sleutel" -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Soort" +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Volgorde" -#: includes/admin/views/field-group-fields.php:14 +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Veld sluiten" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "klasse" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "breedte" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Wrapper attributen" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Vereist" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instructies voor auteurs. Wordt getoond bij het indienen van gegevens" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instructies" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Veldtype" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Één woord, geen spaties. Underscores en verbindingsstrepen toegestaan" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Veldnaam" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Veldlabel" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Verwijderen" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Veld verwijderen" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Verplaatsen" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Veld naar een andere groep verplaatsen" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Veld dupliceren" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Veld bewerken" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Sleep om te herschikken" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Deze veldgroep weergeven als" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Er zijn geen updates beschikbaar." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Database upgrade voltooid. Bekijk wat er nieuw is" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Upgradetaken lezen..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Upgrade mislukt." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Upgrade voltooid." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Gegevens upgraden naar versie %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 msgid "" -"No fields. Click the + Add Field button to create your " -"first field." +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" msgstr "" -"Geen velden. Klik op + Nieuw veld button om je eerste veld " -"te maken." +"Het is 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/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Nieuw veld" +#: includes/admin/views/html-admin-page-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/field-group-locations.php:9 -msgid "Rules" -msgstr "Regels" +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Database upgrade voltooid. Terug naar netwerk dashboard" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Site is up-to-date" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Sites upgraden" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Regelgroep toevoegen" #: includes/admin/views/field-group-locations.php:10 msgid "" "Create a set of rules to determine which edit screens will use these " "advanced custom fields" msgstr "" -"Maak regels aan om te bepalen op welk edit screen jouw extra velden " -"verschijnen" +"Maak een set met regels aan om te bepalen welke aangepaste schermen deze " +"extra velden zullen gebruiken" -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Stijl" +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Regels" -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Standaard (WordPress metabox)" +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Gekopieerd" -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Naadloos (zonder WordPress metabox)" +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Naar klembord kopiëren" -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Positie" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Hoog (onder titel)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normaal (onder tekstverwerker)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Zijkant" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Label positionering" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:102 -msgid "Top aligned" -msgstr "Boven velden" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:103 -msgid "Left aligned" -msgstr "Links naast velden" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Instructie positionering" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Onder label" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Onder veld" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Volgorde nummer" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "Groepen met een lage volgorde worden als eerst getoond" - -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Toon in groeplijst" - -#: includes/admin/views/field-group-options.php:107 -msgid "Hide on screen" -msgstr "Verberg elementen" - -#: includes/admin/views/field-group-options.php:108 -msgid "Select items to hide them from the edit screen." -msgstr "" -"Selecteer elementen om te verbergen op het wijzig scherm." - -#: includes/admin/views/field-group-options.php:108 -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 "" -"Indien meerdere groepen op het bewerk scherm worden getoond, komt de groep " -"met de laagste volgorde als eerste." - -#: includes/admin/views/field-group-options.php:115 -msgid "Permalink" -msgstr "Permalink" - -#: includes/admin/views/field-group-options.php:116 -msgid "Content Editor" -msgstr "Content editor" - -#: includes/admin/views/field-group-options.php:117 -msgid "Excerpt" -msgstr "Samenvatting" - -#: includes/admin/views/field-group-options.php:119 -msgid "Discussion" -msgstr "Reageren" - -#: includes/admin/views/field-group-options.php:120 -msgid "Comments" -msgstr "Reacties" - -#: includes/admin/views/field-group-options.php:121 -msgid "Revisions" -msgstr "Revisies" - -#: includes/admin/views/field-group-options.php:122 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/field-group-options.php:123 -msgid "Author" -msgstr "Auteur" - -#: includes/admin/views/field-group-options.php:124 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/field-group-options.php:125 -msgid "Page Attributes" -msgstr "Pagina-attributen" - -#: includes/admin/views/field-group-options.php:126 -#: includes/fields/class-acf-field-relationship.php:670 -msgid "Featured Image" -msgstr "Uitgelichte afbeelding" - -#: includes/admin/views/field-group-options.php:127 -msgid "Categories" -msgstr "Categorieën" - -#: includes/admin/views/field-group-options.php:128 -msgid "Tags" -msgstr "Tags" - -#: includes/admin/views/field-group-options.php:129 -msgid "Send Trackbacks" -msgstr "Trackbacks verzenden" - -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Toon deze groep als" - -#: includes/admin/views/install-network.php:4 -msgid "Upgrade Sites" -msgstr "Upgrade websites" - -#: includes/admin/views/install-network.php:9 -#: includes/admin/views/install.php:3 -msgid "Advanced Custom Fields Database Upgrade" -msgstr "Advanced Custom Fields database upgrade" - -#: includes/admin/views/install-network.php:11 -#, php-format -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Er is een database upgrade nodig voor de volgende websites. Controleer " -"degene die je wilt updaten en klik %s." - -#: includes/admin/views/install-network.php:20 -#: includes/admin/views/install-network.php:28 -msgid "Site" -msgstr "Website" - -#: includes/admin/views/install-network.php:48 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Website vereist een database upgrade van %s naar %s" - -#: includes/admin/views/install-network.php:50 -msgid "Site is up to date" -msgstr "Website is up-to-date" - -#: includes/admin/views/install-network.php:63 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Database upgrade afgerond. Terug naar netwerk dashboard" - -#: includes/admin/views/install-network.php:102 -#: includes/admin/views/install-notice.php:42 -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 aan te raden om eerst een backup van de database te maken voordat je " -"de update uitvoert. Weet je zeker dat je de update nu wilt uitvoeren?" - -#: includes/admin/views/install-network.php:158 -msgid "Upgrade complete" -msgstr "Upgrade afgerond" - -#: includes/admin/views/install-network.php:162 -#: includes/admin/views/install.php:9 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Bezig met upgraden naar versie %s" - -#: includes/admin/views/install-notice.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Herhalen" - -#: includes/admin/views/install-notice.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Flexibele content" - -#: includes/admin/views/install-notice.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galerij" - -#: includes/admin/views/install-notice.php:11 -#: pro/locations/class-acf-location-options-page.php:26 -msgid "Options Page" -msgstr "Opties pagina" - -#: includes/admin/views/install-notice.php:26 -msgid "Database Upgrade Required" -msgstr "Database upgrade vereist" - -#: includes/admin/views/install-notice.php:28 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Bedankt voor het updaten naar %s v%s!" - -#: includes/admin/views/install-notice.php:28 -msgid "" -"Before you start using the new awesome features, please update your database " -"to the newest version." -msgstr "" -"Voordat je aan de slag kunt met de geweldige nieuwe functies, is een " -"database update vereist." - -#: includes/admin/views/install-notice.php:31 -#, php-format -msgid "" -"Please also ensure any premium add-ons (%s) have first been updated to the " -"latest version." -msgstr "" -"Zorg ervoor dat elke premium add-ons (%s) eerst zijn bijgewerkt naar de " -"laatste versie." - -#: includes/admin/views/install.php:7 -msgid "Reading upgrade tasks..." -msgstr "Lezen van upgrade taken…" - -#: includes/admin/views/install.php:11 -#, php-format -msgid "Database Upgrade complete. See what's new" -msgstr "Database upgrade afgerond. Bekijk wat nieuw is" - -#: includes/admin/views/settings-addons.php:17 -msgid "Download & Install" -msgstr "Download & installeer" - -#: includes/admin/views/settings-addons.php:36 -msgid "Installed" -msgstr "Geïnstalleerd" - -#: includes/admin/views/settings-info.php:3 -msgid "Welcome to Advanced Custom Fields" -msgstr "Welkom bij Advanced Custom Fields" - -#: includes/admin/views/settings-info.php:4 -#, php-format -msgid "" -"Thank you for updating! ACF %s is bigger and better than ever before. We " -"hope you like it." -msgstr "" -"Bedankt voor het updaten! ACF %s is groter dan ooit tevoren. We hopen dat je " -"tevreden bent." - -#: includes/admin/views/settings-info.php:17 -msgid "A smoother custom field experience" -msgstr "Een verbeterde extra veld beleving" - -#: includes/admin/views/settings-info.php:22 -msgid "Improved Usability" -msgstr "Gebruikersvriendelijker" - -#: includes/admin/views/settings-info.php:23 -msgid "" -"Including the popular Select2 library has improved both usability and speed " -"across a number of field types including post object, page link, taxonomy " -"and select." -msgstr "" -"Inclusief de populaire Select2 bibliotheek, die zowel " -"gebruikersvriendelijker als sneller werkt bij velden als post object, pagina " -"link, taxonomy en selecteer." - -#: includes/admin/views/settings-info.php:27 -msgid "Improved Design" -msgstr "Verbeterd design" - -#: includes/admin/views/settings-info.php:28 -msgid "" -"Many fields have undergone a visual refresh to make ACF look better than " -"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " -"(new) fields!" -msgstr "" -"Vele velden hebben een make-over gekregen. Nu oogt ACF beter dan ooit! " -"Merkwaardige verschillen vindt je onder andere terug bij de galerij, relatie " -"en oEmbed velden!" - -#: includes/admin/views/settings-info.php:32 -msgid "Improved Data" -msgstr "Verbeterde data" - -#: includes/admin/views/settings-info.php:33 -msgid "" -"Redesigning the data architecture has allowed sub fields to live " -"independently from their parents. This allows you to drag and drop fields in " -"and out of parent fields!" -msgstr "" -"Het herontwerp van de dataverwerking zorgt ervoor dat velden los van hun " -"hoofdvelden kunnen functioneren. Hiermee wordt het mogelijk om velden te " -"drag-and-droppen tussen hoofdvelden." - -#: includes/admin/views/settings-info.php:39 -msgid "Goodbye Add-ons. Hello PRO" -msgstr "Vaarwel Add-ons. Hallo PRO!" - -#: includes/admin/views/settings-info.php:44 -msgid "Introducing ACF PRO" -msgstr "ACF PRO" - -#: includes/admin/views/settings-info.php:45 -msgid "" -"We're changing the way premium functionality is delivered in an exciting way!" -msgstr "" -"We veranderen de manier waarop premium functies worden geleverd, op een gave " -"manier!" - -#: includes/admin/views/settings-info.php:46 -#, php-format -msgid "" -"All 4 premium add-ons have been combined into a new Pro " -"version of ACF. With both personal and developer licenses available, " -"premium functionality is more affordable and accessible than ever before!" -msgstr "" -"Alle 4 de premium add-ons zijn samengevoegd tot een PRO " -"versie van ACF. Er zijn zowel persoonlijke als developer licenties " -"verkrijgbaar tegen een aantrekkelijke prijs!" - -#: includes/admin/views/settings-info.php:50 -msgid "Powerful Features" -msgstr "Krachtige functies" - -#: includes/admin/views/settings-info.php:51 -msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content " -"layouts, a beautiful gallery field and the ability to create extra admin " -"options pages!" -msgstr "" -"ACF PRO beschikt over krachtige velden en functies zoals: herhaalbare " -"velden, flexibile content layouts, een interactieve fotogalerij veld en de " -"mogelijkheid om optie pagina's aan te maken!" - -#: includes/admin/views/settings-info.php:52 -#, php-format -msgid "Read more about ACF PRO features." -msgstr "Lees meer over de ACF PRO functionaliteiten." - -#: includes/admin/views/settings-info.php:56 -msgid "Easy Upgrading" -msgstr "Gemakkelijk upgraden" - -#: includes/admin/views/settings-info.php:57 -#, php-format -msgid "" -"To help make upgrading easy, login to your store account " -"and claim a free copy of ACF PRO!" -msgstr "" -"Om upgraden gemakkelijk te maken kun je inloggen met je " -"bestaande winkelaccount en een gratis versie van ACF PRO claimen!" - -#: includes/admin/views/settings-info.php:58 -#, php-format -msgid "" -"We also wrote an upgrade guide to answer any questions, " -"but if you do have one, please contact our support team via the help desk" -msgstr "" -"We hebben een speciale upgrade gids gemaakt om al je " -"vraagstukken te beantwoorden. Indien je een uitgebreidere vraag hebt, kun je " -"contact opnemen met de helpdesk (Engelstalig)." - -#: includes/admin/views/settings-info.php:66 -msgid "Under the Hood" -msgstr "Onder de motorkap" - -#: includes/admin/views/settings-info.php:71 -msgid "Smarter field settings" -msgstr "Slimmere veld instellingen" - -#: includes/admin/views/settings-info.php:72 -msgid "ACF now saves its field settings as individual post objects" -msgstr "ACF slaat velden als individuele post objecten op" - -#: includes/admin/views/settings-info.php:76 -msgid "More AJAX" -msgstr "Meer AJAX" - -#: includes/admin/views/settings-info.php:77 -msgid "More fields use AJAX powered search to speed up page loading" -msgstr "" -"Steeds meer velden maken gebruik van AJAX gestuurde zoekopdrachten. Dit " -"maakt het laden een stuk sneller" - -#: includes/admin/views/settings-info.php:81 -msgid "Local JSON" -msgstr "Local JSON" - -#: includes/admin/views/settings-info.php:82 -msgid "New auto export to JSON feature improves speed" -msgstr "Het automatisch exporteren naar JSON maakt alles een stuk sneller" - -#: includes/admin/views/settings-info.php:88 -msgid "Better version control" -msgstr "Betere versie controles" - -#: includes/admin/views/settings-info.php:89 -msgid "" -"New auto export to JSON feature allows field settings to be version " -"controlled" -msgstr "" -"Nieuw is het automatisch exporteren naar JSON. Dit voorkomt problemen " -"tijdens het upgraden van ACF." - -#: includes/admin/views/settings-info.php:93 -msgid "Swapped XML for JSON" -msgstr "XML is vervangen door JSON" - -#: includes/admin/views/settings-info.php:94 -msgid "Import / Export now uses JSON in favour of XML" -msgstr "" -"Importeren / Exporteren gaat nu via JSON. Indien gewenst kan er XML worden " -"gebruikt" - -#: includes/admin/views/settings-info.php:98 -msgid "New Forms" -msgstr "Nieuwe formulieren" - -#: includes/admin/views/settings-info.php:99 -msgid "Fields can now be mapped to comments, widgets and all user forms!" -msgstr "" -"Velden kunnen nu worden toegewezen aan reacties, widgets en " -"gebruikersformulieren!" - -#: includes/admin/views/settings-info.php:106 -msgid "A new field for embedding content has been added" -msgstr "Een nieuw veld voor het embedden van content is toegevoegd" - -#: includes/admin/views/settings-info.php:110 -msgid "New Gallery" -msgstr "Nieuwe galerij" - -#: includes/admin/views/settings-info.php:111 -msgid "The gallery field has undergone a much needed facelift" -msgstr "Het galerij veld heeft een complete facelift ondergaan" - -#: includes/admin/views/settings-info.php:115 -msgid "New Settings" -msgstr "Nieuwe instellingen" - -#: includes/admin/views/settings-info.php:116 -msgid "" -"Field group settings have been added for label placement and instruction " -"placement" -msgstr "" -"Nieuwe groep instellingen zijn toegevoegd om label en instructies toe te " -"voegen" - -#: includes/admin/views/settings-info.php:122 -msgid "Better Front End Forms" -msgstr "Betere front-end formulieren" - -#: includes/admin/views/settings-info.php:123 -msgid "acf_form() can now create a new post on submission" -msgstr "acf_form() kan nu posts aanmaken/toevoegen na goedkeuring" - -#: includes/admin/views/settings-info.php:127 -msgid "Better Validation" -msgstr "Betere validatie" - -#: includes/admin/views/settings-info.php:128 -msgid "Form validation is now done via PHP + AJAX in favour of only JS" -msgstr "" -"Formulier validatie gaat nu via PHP + AJAX. Indien gewenst kan dit ook via JS" - -#: includes/admin/views/settings-info.php:132 -msgid "Relationship Field" -msgstr "Relatie veld" - -#: includes/admin/views/settings-info.php:133 -msgid "" -"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" -msgstr "" -"Nieuwe relatieveld instellingen voor filters (Zoeken, Post Type en Taxonomy)" - -#: includes/admin/views/settings-info.php:139 -msgid "Moving Fields" -msgstr "Velden verplaatsen" - -#: includes/admin/views/settings-info.php:140 -msgid "" -"New field group functionality allows you to move a field between groups & " -"parents" -msgstr "" -"Nieuwe veld groep functionaliteiten laat je velden tussen groepen " -"verplaatsen." - -#: includes/admin/views/settings-info.php:144 -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Pagina link" - -#: includes/admin/views/settings-info.php:145 -msgid "New archives group in page_link field selection" -msgstr "Nieuwe archief groep in pagina_link veld" - -#: includes/admin/views/settings-info.php:149 -msgid "Better Options Pages" -msgstr "Verbeterde optie pagina's" - -#: includes/admin/views/settings-info.php:150 -msgid "" -"New functions for options page allow creation of both parent and child menu " -"pages" -msgstr "" -"De opties pagina's kunnen nu worden voorzien van zowel hoofd als sub-pagina's" - -#: includes/admin/views/settings-info.php:159 -#, php-format -msgid "We think you'll love the changes in %s." -msgstr "" -"Wij denken dat u de wijzigingen en vernieuwingen zult waarderen in versie %s." - -#: includes/admin/views/settings-tools-export.php:23 -msgid "Export Field Groups to PHP" -msgstr "Exporteer groep(en) naar PHP" - -#: includes/admin/views/settings-tools-export.php:27 +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -1180,1677 +1145,2007 @@ msgid "" "the following code to your theme's functions.php file or include it within " "an external file." msgstr "" -"De volgende code kun je integreren in je thema. Door de groep(en) te " -"integreren verhoog je de laadsnelheid. Kopieer en plak deze in code in " -"functions.php, of maak een nieuw PHP bestand aan." +"De volgende code kan worden gebruikt om een ​​lokale versie van de " +"geselecteerde veldgroep(en) te registreren. Een lokale veldgroep kan veel " +"voordelen bieden, zoals snellere laadtijden, versiebeheer & dynamische " +"velden/instellingen. Kopieer en plak de volgende code in het functions.php " +"bestand van je thema of voeg het toe aan een extern bestand." -#: includes/admin/views/settings-tools.php:5 -msgid "Select Field Groups" -msgstr "Selecteer groepen" - -#: includes/admin/views/settings-tools.php:35 -msgid "Export Field Groups" -msgstr "Exporteer groepen" - -#: includes/admin/views/settings-tools.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 msgid "" "Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"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 groepen die je wilt exporteren. Maak vervolgens de keuze om de " -"groepen te downloaden als JSON bestand, of genereer de export code in PHP " -"formaat. De PHP export code kun je integreren in je thema." +"Selecteer de veldgroepen 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 kunt plaatsen." -#: includes/admin/views/settings-tools.php:50 -msgid "Download export file" -msgstr "Download export bestand" +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Veldgroepen selecteren" -#: includes/admin/views/settings-tools.php:51 -msgid "Generate export code" -msgstr "Genereer export code" +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "1 veldgroep geëxporteerd." +msgstr[1] "%s veldgroepen geëxporteerd." -#: includes/admin/views/settings-tools.php:64 -msgid "Import Field Groups" -msgstr "Importeer groepen" +#: 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/views/settings-tools.php:67 +#: includes/admin/tools/class-acf-admin-tool-export.php:39 +#: includes/admin/tools/class-acf-admin-tool-export.php:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "1 veldgroep geïmporteerd" +msgstr[1] "%s veldgroepen geïmporteerd" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Importbestand is leeg" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Onjuist bestandstype" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 msgid "" "Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." +"you click the import button below, ACF will import the field groups" msgstr "" -"Selecteer het Advanced Custom Fields JSON bestand die je wilt importeren. " -"Klik op de importeer button om het importeren te starten." +"Selecteer het Advanced Custom Fields JSON bestand dat je wil importeren. " +"Wanneer je op de importknop hieronder klikt, zal ACF de veldgroepen " +"importeren" -#: includes/admin/views/settings-tools.php:77 -#: includes/fields/class-acf-field-file.php:35 -msgid "Select File" -msgstr "Selecteer bestand" +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Veldgroepen importeren" -#: includes/admin/views/settings-tools.php:86 -msgid "Import" -msgstr "Importeer" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sync" -#: includes/api/api-helpers.php:856 -msgid "Thumbnail" -msgstr "Thumbnail" +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Selecteer %s" -#: includes/api/api-helpers.php:857 -msgid "Medium" -msgstr "Gemiddeld" +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Dupliceer" -#: includes/api/api-helpers.php:858 -msgid "Large" -msgstr "Groot" +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Dupliceer dit item" -#: includes/api/api-helpers.php:907 -msgid "Full Size" -msgstr "Volledige grootte" +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Beschrijving" -#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831 -#: pro/fields/class-acf-field-clone.php:992 -msgid "(no title)" -msgstr "(geen titel)" +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synchronisatie beschikbaar" -#: includes/api/api-helpers.php:1868 -#: includes/fields/class-acf-field-page_link.php:269 -#: includes/fields/class-acf-field-post_object.php:268 -#: includes/fields/class-acf-field-taxonomy.php:986 -msgid "Parent" -msgstr "Hoofd" +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Veldgroep gesynchroniseerd." +msgstr[1] "%s veldgroepen gesynchroniseerd." -#: includes/api/api-helpers.php:3885 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "Afbeelding breedte moet tenminste %dpx zijn." +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Veldgroep gedupliceerd." +msgstr[1] "%s veldgroepen gedupliceerd." -#: includes/api/api-helpers.php:3890 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "Afbeelding mag niet breder zijn dan %dpx." +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Actief (%s)" +msgstr[1] "Actief (%s)" -#: includes/api/api-helpers.php:3906 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "Afbeelding hoogte moet tenminste %dpx zijn." +#: includes/admin/admin-upgrade.php:237 +msgid "Review sites & upgrade" +msgstr "Beoordeel sites & upgrade" -#: includes/api/api-helpers.php:3911 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "Afbeelding mag niet hoger zijn dan %dpx." +#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 +#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Database upgraden" -#: includes/api/api-helpers.php:3929 -#, php-format -msgid "File size must be at least %s." -msgstr "Bestandsgrootte moet tenminste %s zijn." +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Aangepaste velden" -#: includes/api/api-helpers.php:3934 -#, php-format -msgid "File size must must not exceed %s." -msgstr "Bestand mag niet groter zijn dan %s." +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Veld verplaatsen" -#: includes/api/api-helpers.php:3968 -#, php-format -msgid "File type must be %s." -msgstr "Bestandstype moet %s zijn." +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Selecteer de bestemming voor dit veld" -#: includes/fields.php:144 -msgid "Basic" -msgstr "Basis" +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Venster sluiten" -#: includes/fields.php:145 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Inhoud" +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/fields.php:146 -msgid "Choice" -msgstr "Keuze" +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Verplaatsen voltooid." -#: includes/fields.php:147 -msgid "Relational" -msgstr "Relatie" +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Actief" -#: includes/fields.php:148 +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Veldsleutels" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Instellingen" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Locatie" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "kopie" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(dit veld)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Aangevinkt" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Aangepast veld verplaatsen" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Geen toggle velden beschikbaar" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Veldgroep titel is vereist" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Veldgroep concept geüpdatet." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Veldgroep gepland voor." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Veldgroep ingediend." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Veldgroep opgeslagen." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Veldgroep gepubliceerd." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Veldgroep verwijderd." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Veldgroep geüpdatet." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Pagina" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Bericht" + +#: includes/fields.php:358 msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:149 -#: includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:384 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:285 -#: pro/fields/class-acf-field-clone.php:839 -#: pro/fields/class-acf-field-flexible-content.php:552 -#: pro/fields/class-acf-field-flexible-content.php:601 -#: pro/fields/class-acf-field-repeater.php:450 -msgid "Layout" -msgstr "Layout" +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relationele" -#: includes/fields.php:326 -msgid "Field type does not exist" -msgstr "Veld type bestaat niet" +#: includes/fields.php:356 +msgid "Choice" +msgstr "Keuze" -#: includes/fields.php:326 +#: includes/fields.php:354 +msgid "Basic" +msgstr "Eenvoudig" + +#: includes/fields.php:313 msgid "Unknown" msgstr "Onbekend" -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Button groep" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Veldtype bestaat niet" -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:368 -msgid "Choices" -msgstr "Keuzes" +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Spam gevonden" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:369 -msgid "Enter each choice on a new line." -msgstr "Per regel een keuze" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Bericht geüpdatet" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:369 -msgid "For more control, you may specify both a value and label like this:" -msgstr "" -"Om meer controle te krijgen over de keuzes, kun je de naam en het label van " -"elkaar scheiden. Dit doe je op de volgende manier:" +#: includes/forms/form-front.php:106 +msgid "Update" +msgstr "Update" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:369 -msgid "red : Red" -msgstr "rood : Rood" +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "E-mail valideren" -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:513 -#: includes/fields/class-acf-field-post_object.php:412 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:386 -#: includes/fields/class-acf-field-taxonomy.php:793 -#: includes/fields/class-acf-field-user.php:408 -msgid "Allow Null?" -msgstr "Mag leeg zijn?" +#: includes/fields.php:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Inhoud" -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:375 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:276 -#: includes/fields/class-acf-field-range.php:148 -#: includes/fields/class-acf-field-select.php:377 -#: includes/fields/class-acf-field-text.php:119 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:410 -msgid "Default Value" -msgstr "Standaard waarde" +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Titel" -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:277 -#: includes/fields/class-acf-field-range.php:149 -#: includes/fields/class-acf-field-text.php:120 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:411 -msgid "Appears when creating a new post" -msgstr "" -"Vooraf ingevulde waarde die te zien is tijdens het aanmaken van een nieuwe " -"post" +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Veldgroep bewerken" -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:391 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Horizontal" -msgstr "Horizontaal" +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Selectie is minder dan" -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:390 -#: includes/fields/class-acf-field-radio.php:291 -msgid "Vertical" -msgstr "Verticaal" +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Selectie is groter dan" -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:408 -#: includes/fields/class-acf-field-file.php:200 -#: includes/fields/class-acf-field-image.php:188 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:299 -#: includes/fields/class-acf-field-taxonomy.php:833 -msgid "Return Value" -msgstr "Output weergeven als" +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Waarde is minder dan" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Waarde is groter dan" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Waarde bevat" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Waarde komt overeen met patroon" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Heeft geen waarde" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Heeft een waarde" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Annuleren" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Weet je het zeker?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d velden vereisen aandacht" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 veld vereist aandacht" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validatie mislukt" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validatie geslaagd" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Beperkt" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Details dichtklappen" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Details uitklappen" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Geüpload naar dit bericht" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Update" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Bewerken" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "Het bestandstype moet %s zijn." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "of" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Bestand grootte mag %s niet overschrijden." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "De bestandsgrootte moet minimaal %s zijn." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "De hoogte van de afbeelding mag niet hoger zijn dan %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "De hoogte van de afbeelding moet minimaal %dpx zijn." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "De breedte van de afbeelding mag niet groter zijn dan %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "De breedte van de afbeelding moet ten minste %dpx zijn." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(geen titel)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Volledige grootte" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Groot" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Medium" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Thumbnail" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(geen label)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Bepaalt de hoogte van het tekstgebied" + +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "Rijen" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Tekstgebied" + +#: includes/fields/class-acf-field-checkbox.php:447 +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-button-group.php:192 #: includes/fields/class-acf-field-checkbox.php:409 -#: includes/fields/class-acf-field-file.php:201 -#: includes/fields/class-acf-field-image.php:189 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:300 -msgid "Specify the returned value on front end" -msgstr "Bepaal hier de output weergave" - -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-radio.php:305 -#: includes/fields/class-acf-field-select.php:431 -msgid "Value" -msgstr "Waarde" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:416 -#: includes/fields/class-acf-field-radio.php:307 -#: includes/fields/class-acf-field-select.php:433 -msgid "Both (Array)" -msgstr "Beide (Array)" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:780 -msgid "Checkbox" -msgstr "Checkbox" - -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Selecteer alle" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Nieuwe keuze" - -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Eigen invoer toestaan" - -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "‘Eigen invoer’ waarden toestaan" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Eigen invoer opslaan" - -#: includes/fields/class-acf-field-checkbox.php:369 msgid "Save 'custom' values to the field's choices" -msgstr "Sla ‘eigen invoer’ waarden op als veld keuzes" - -#: includes/fields/class-acf-field-checkbox.php:376 -#: includes/fields/class-acf-field-select.php:378 -msgid "Enter each default value on a new line" -msgstr "Per regel de naam van een keuze" +msgstr "Sla 'aangepaste' waarden op in de keuzes van het veld" #: includes/fields/class-acf-field-checkbox.php:398 -msgid "Toggle" -msgstr "Switch" +msgid "Allow 'custom' values to be added" +msgstr "Toestaan dat 'aangepaste' waarden worden toegevoegd" -#: includes/fields/class-acf-field-checkbox.php:399 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Voeg een extra checkbox toe aan het begin om alle keuzes te selecteren" +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Nieuwe keuze toevoegen" -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Kleurprikker" +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Toggle alles" -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Wissen" +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Archief URL's toestaan" -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Standaard waarde" +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Archieven" -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Selecteer kleur" +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Pagina link" -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Current Color" -msgstr "Huidige kleur" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumprikker" - -#: includes/fields/class-acf-field-date_picker.php:33 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Gereed" - -#: includes/fields/class-acf-field-date_picker.php:34 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Vandaag" - -#: includes/fields/class-acf-field-date_picker.php:35 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Volgende" - -#: includes/fields/class-acf-field-date_picker.php:36 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Vorige" - -#: includes/fields/class-acf-field-date_picker.php:37 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Wk " - -#: includes/fields/class-acf-field-date_picker.php:207 -#: includes/fields/class-acf-field-date_time_picker.php:181 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Weergeven als" - -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:110 -msgid "The format displayed when editing a post" -msgstr "De weergave tijdens het aanmaken/bewerken van een post" - -#: includes/fields/class-acf-field-date_picker.php:216 -#: includes/fields/class-acf-field-date_picker.php:247 -#: includes/fields/class-acf-field-date_time_picker.php:191 -#: includes/fields/class-acf-field-date_time_picker.php:208 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Eigen invoer:" - -#: includes/fields/class-acf-field-date_picker.php:226 -msgid "Save Format" -msgstr "Indeling opslaan" - -#: includes/fields/class-acf-field-date_picker.php:227 -msgid "The format used when saving a value" -msgstr "Het formaat bij opslaan van waarde" - -#: includes/fields/class-acf-field-date_picker.php:237 -#: includes/fields/class-acf-field-date_time_picker.php:198 -#: includes/fields/class-acf-field-post_object.php:432 -#: includes/fields/class-acf-field-relationship.php:697 -#: includes/fields/class-acf-field-select.php:426 -#: includes/fields/class-acf-field-time_picker.php:124 -msgid "Return Format" -msgstr "Output weergeven als" - -#: includes/fields/class-acf-field-date_picker.php:238 -#: includes/fields/class-acf-field-date_time_picker.php:199 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "De weergave in het thema" - -#: includes/fields/class-acf-field-date_picker.php:256 -#: includes/fields/class-acf-field-date_time_picker.php:215 -msgid "Week Starts On" -msgstr "Week start op" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datum tijd picker" - -#: includes/fields/class-acf-field-date_time_picker.php:33 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Kies tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:34 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tijd" - -#: includes/fields/class-acf-field-date_time_picker.php:35 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Uur" - -#: includes/fields/class-acf-field-date_time_picker.php:36 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuut" - -#: includes/fields/class-acf-field-date_time_picker.php:37 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Seconde" - -#: includes/fields/class-acf-field-date_time_picker.php:38 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milliseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:39 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microseconde" - -#: includes/fields/class-acf-field-date_time_picker.php:40 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tijdzone" - -#: includes/fields/class-acf-field-date_time_picker.php:41 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nu" - -#: includes/fields/class-acf-field-date_time_picker.php:42 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Gereed" - -#: includes/fields/class-acf-field-date_time_picker.php:43 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Selecteer" - -#: includes/fields/class-acf-field-date_time_picker.php:45 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:46 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:49 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - -#: includes/fields/class-acf-field-date_time_picker.php:50 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "P" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-mail" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:128 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Plaatsvervangende tekst" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:129 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Informatie die verschijnt in het veld (verdwijnt zodra je typt)" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:187 -#: includes/fields/class-acf-field-text.php:137 -msgid "Prepend" -msgstr "Voorvoegsel" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:188 -#: includes/fields/class-acf-field-text.php:138 -msgid "Appears before the input" -msgstr "Informatie die verschijnt voor het veld" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:196 -#: includes/fields/class-acf-field-text.php:146 -msgid "Append" -msgstr "Navoegsel" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:197 -#: includes/fields/class-acf-field-text.php:147 -msgid "Appears after the input" -msgstr "Informatie die verschijnt na het veld" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Bestand" - -#: includes/fields/class-acf-field-file.php:36 -msgid "Edit File" -msgstr "Bewerk bestand" - -#: includes/fields/class-acf-field-file.php:37 -msgid "Update File" -msgstr "Update bestand" - -#: includes/fields/class-acf-field-file.php:38 -#: includes/fields/class-acf-field-image.php:43 includes/media.php:57 -#: pro/fields/class-acf-field-gallery.php:44 -msgid "Uploaded to this post" -msgstr "Geüpload naar deze post" - -#: includes/fields/class-acf-field-file.php:126 -msgid "File name" -msgstr "Bestandsnaam" - -#: includes/fields/class-acf-field-file.php:130 -#: includes/fields/class-acf-field-file.php:233 -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:277 -#: pro/fields/class-acf-field-gallery.php:690 -#: pro/fields/class-acf-field-gallery.php:719 -msgid "File size" -msgstr "Bestandsgrootte" - -#: includes/fields/class-acf-field-file.php:139 -#: includes/fields/class-acf-field-image.php:124 -#: includes/fields/class-acf-field-link.php:140 includes/input.php:269 -#: pro/fields/class-acf-field-gallery.php:343 -#: pro/fields/class-acf-field-gallery.php:531 -msgid "Remove" -msgstr "Verwijder" - -#: includes/fields/class-acf-field-file.php:155 -msgid "Add File" -msgstr "Voeg bestand toe" - -#: includes/fields/class-acf-field-file.php:206 -msgid "File Array" -msgstr "Bestand Array" - -#: includes/fields/class-acf-field-file.php:207 -msgid "File URL" -msgstr "Bestands-URL" - -#: includes/fields/class-acf-field-file.php:208 -msgid "File ID" -msgstr "Bestands-ID" - -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-image.php:213 -#: pro/fields/class-acf-field-gallery.php:655 -msgid "Library" -msgstr "Bibliotheek" - -#: includes/fields/class-acf-field-file.php:216 -#: includes/fields/class-acf-field-image.php:214 -#: pro/fields/class-acf-field-gallery.php:656 -msgid "Limit the media library choice" -msgstr "" -"Limiteer de keuze van bestanden. Kies voor de gehele media bibliotheek, of " -"alleen de bestanden die geüpload zijn naar de post." - -#: includes/fields/class-acf-field-file.php:221 -#: includes/fields/class-acf-field-image.php:219 -#: includes/locations/class-acf-location-attachment.php:101 -#: includes/locations/class-acf-location-comment.php:79 -#: includes/locations/class-acf-location-nav-menu.php:102 -#: includes/locations/class-acf-location-taxonomy.php:79 -#: includes/locations/class-acf-location-user-form.php:87 -#: includes/locations/class-acf-location-user-role.php:111 -#: includes/locations/class-acf-location-widget.php:83 -#: pro/fields/class-acf-field-gallery.php:661 -msgid "All" -msgstr "Alles" - -#: includes/fields/class-acf-field-file.php:222 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Uploaded to post" -msgstr "Geüpload naar post" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:227 -#: pro/fields/class-acf-field-gallery.php:669 -msgid "Minimum" -msgstr "Minimaal" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-file.php:241 -msgid "Restrict which files can be uploaded" -msgstr "Bepaal welke bestanden geüpload mogen worden" - -#: includes/fields/class-acf-field-file.php:240 -#: includes/fields/class-acf-field-image.php:256 -#: pro/fields/class-acf-field-gallery.php:698 -msgid "Maximum" -msgstr "Maximaal" - -#: includes/fields/class-acf-field-file.php:251 -#: includes/fields/class-acf-field-image.php:285 -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Allowed file types" -msgstr "Toegestane bestandstypen" - -#: includes/fields/class-acf-field-file.php:252 -#: includes/fields/class-acf-field-image.php:286 -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Comma separated list. Leave blank for all types" -msgstr "Met komma's gescheiden lijst. Laat leeg voor alle types." - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google Map" - -#: includes/fields/class-acf-field-google-map.php:40 -msgid "Locating" -msgstr "Locatie wordt gezocht..." - -#: includes/fields/class-acf-field-google-map.php:41 -msgid "Sorry, this browser does not support geolocation" -msgstr "Excuses, deze browser ondersteund geen geolocatie" - -#: includes/fields/class-acf-field-google-map.php:113 -msgid "Clear location" -msgstr "Wis locatie" - -#: includes/fields/class-acf-field-google-map.php:114 -msgid "Find current location" -msgstr "Zoek huidige locatie" - -#: includes/fields/class-acf-field-google-map.php:117 -msgid "Search for address..." -msgstr "Zoek een adres..." - -#: includes/fields/class-acf-field-google-map.php:147 -#: includes/fields/class-acf-field-google-map.php:158 -msgid "Center" -msgstr "Standaard locatie" - -#: includes/fields/class-acf-field-google-map.php:148 -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Center the initial map" -msgstr "Bepaal de standaard locatie van de kaart" - -#: includes/fields/class-acf-field-google-map.php:170 -msgid "Zoom" -msgstr "Inzoomen" - -#: includes/fields/class-acf-field-google-map.php:171 -msgid "Set the initial zoom level" -msgstr "Bepaal het zoom niveau van de kaart" - -#: includes/fields/class-acf-field-google-map.php:180 -#: includes/fields/class-acf-field-image.php:239 -#: includes/fields/class-acf-field-image.php:268 -#: includes/fields/class-acf-field-oembed.php:281 -#: pro/fields/class-acf-field-gallery.php:681 -#: pro/fields/class-acf-field-gallery.php:710 -msgid "Height" -msgstr "Hoogte" - -#: includes/fields/class-acf-field-google-map.php:181 -msgid "Customise the map height" -msgstr "Wijzig de hoogte van de kaart" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Groep" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:389 -msgid "Sub Fields" -msgstr "Sub-velden" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:840 -msgid "Specify the style used to render the selected fields" -msgstr "Kies de gebruikte stijl bij het renderen van de geselecteerde velden" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:845 -#: pro/fields/class-acf-field-flexible-content.php:612 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:846 -#: pro/fields/class-acf-field-flexible-content.php:611 -#: pro/fields/class-acf-field-repeater.php:457 -msgid "Table" -msgstr "Tabel" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:847 -#: pro/fields/class-acf-field-flexible-content.php:613 -#: pro/fields/class-acf-field-repeater.php:459 -msgid "Row" -msgstr "Rij" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Afbeelding" - -#: includes/fields/class-acf-field-image.php:40 -msgid "Select Image" -msgstr "Selecteer afbeelding" - -#: includes/fields/class-acf-field-image.php:41 -#: pro/fields/class-acf-field-gallery.php:42 -msgid "Edit Image" -msgstr "Bewerk afbeelding" - -#: includes/fields/class-acf-field-image.php:42 -#: pro/fields/class-acf-field-gallery.php:43 -msgid "Update Image" -msgstr "Update afbeelding" - -#: includes/fields/class-acf-field-image.php:44 -msgid "All images" -msgstr "Alle afbeeldingen" - -#: includes/fields/class-acf-field-image.php:140 -msgid "No image selected" -msgstr "Geen afbeelding geselecteerd" - -#: includes/fields/class-acf-field-image.php:140 -msgid "Add Image" -msgstr "Voeg afbeelding toe" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image Array" -msgstr "Afbeelding Array" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image URL" -msgstr "Afbeelding URL" - -#: includes/fields/class-acf-field-image.php:196 -msgid "Image ID" -msgstr "Afbeelding ID" - -#: includes/fields/class-acf-field-image.php:203 -msgid "Preview Size" -msgstr "Afmeting voorbeeld" - -#: includes/fields/class-acf-field-image.php:204 -msgid "Shown when entering data" -msgstr "Voorbeeld wordt na het uploaden/selecteren getoond" - -#: includes/fields/class-acf-field-image.php:228 -#: includes/fields/class-acf-field-image.php:257 -#: pro/fields/class-acf-field-gallery.php:670 -#: pro/fields/class-acf-field-gallery.php:699 -msgid "Restrict which images can be uploaded" -msgstr "Bepaal welke afbeeldingen geüpload mogen worden" - -#: includes/fields/class-acf-field-image.php:231 -#: includes/fields/class-acf-field-image.php:260 -#: includes/fields/class-acf-field-oembed.php:270 -#: pro/fields/class-acf-field-gallery.php:673 -#: pro/fields/class-acf-field-gallery.php:702 -msgid "Width" -msgstr "Breedte" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Link" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Selecteer link" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Opent in een nieuw venster/tab" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Link array" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "Link URL" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Bericht" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Nieuwe regels" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Bepaal wat er gebeurt met een nieuwe tekstregel" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Automatisch paragrafen toevoegen" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Automatisch een nieuwe regel maken <br />" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Niets ondernemen" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Escape HTML" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Toestaan HTML markup te tonen als tekst in plaats van het te renderen" +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Toevoegen" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Naam" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s toegevoegd" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s bestaat al" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Gebruiker kan geen nieuwe %s toevoegen" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Term ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Term object" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Laadwaarde van berichttermen" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Laad voorwaarden" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Geselecteerde termen aan het bericht koppelen" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Voorwaarden opslaan" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Voorwaarden maken" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Keuzerondjes" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Eén waarde" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Multi selecteren" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Selectievakje" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Meerdere waarden" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Selecteer de weergave van dit veld" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Weergave" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Selecteer de taxonomie die moet worden weergegeven" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Geen %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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-number.php:163 -#: includes/fields/class-acf-field-range.php:157 -msgid "Minimum Value" -msgstr "Minimale waarde" +#: includes/fields/class-acf-field-radio.php:261 +msgid "Save 'other' values to the field's choices" +msgstr "'Andere' waarden opslaan in de keuzes van het veld" -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:167 -msgid "Maximum Value" -msgstr "Maximale waarde" +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Voeg de keuze 'overig' toe om aangepaste waarden toe te staan" -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:177 -msgid "Step Size" -msgstr "Stapgrootte" +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Keuzerondje" -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Waarde moet numeriek zijn" +#: includes/fields/class-acf-field-accordion.php:105 +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-number.php:237 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "Waarde moet gelijk of meer dan zijn %d" +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "Laat deze accordeon openen zonder anderen te sluiten." -#: includes/fields/class-acf-field-number.php:245 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "Waarde moet gelijk of minder zijn dan %d" +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Multi uitvouwen" -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" +#: includes/fields/class-acf-field-accordion.php:83 +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-oembed.php:219 -msgid "Enter URL" -msgstr "Vul URL in" +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Openen" -#: includes/fields/class-acf-field-oembed.php:234 -#: includes/fields/class-acf-field-taxonomy.php:898 -msgid "Error." -msgstr "Fout." +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Accordeon" -#: includes/fields/class-acf-field-oembed.php:234 -msgid "No embed found for the given URL." -msgstr "Geen embed mogelijkheid gevonden voor de gewenste URL." +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Beperken welke bestanden kunnen worden geüpload" -#: includes/fields/class-acf-field-oembed.php:267 -#: includes/fields/class-acf-field-oembed.php:278 -msgid "Embed Size" -msgstr "Embed formaat" +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "Bestands-ID" -#: includes/fields/class-acf-field-page_link.php:177 -msgid "Archives" -msgstr "Archieven" +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "Bestands-URL" -#: includes/fields/class-acf-field-page_link.php:485 -#: includes/fields/class-acf-field-post_object.php:384 -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filter by Post Type" -msgstr "Filter op post type" +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Bestands-array" -#: includes/fields/class-acf-field-page_link.php:493 -#: includes/fields/class-acf-field-post_object.php:392 -#: includes/fields/class-acf-field-relationship.php:631 -msgid "All post types" -msgstr "Alle post types" +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Bestand toevoegen" -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:398 -#: includes/fields/class-acf-field-relationship.php:637 -msgid "Filter by Taxonomy" -msgstr "Filter op taxonomy" +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Geen bestand geselecteerd" -#: includes/fields/class-acf-field-page_link.php:507 -#: includes/fields/class-acf-field-post_object.php:406 -#: includes/fields/class-acf-field-relationship.php:645 -msgid "All taxonomies" -msgstr "Alle taxonomieën" +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Bestandsnaam" -#: includes/fields/class-acf-field-page_link.php:523 -msgid "Allow Archives URLs" -msgstr "Archief URL’s toestaan" +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Bestand updaten" -#: includes/fields/class-acf-field-page_link.php:533 -#: includes/fields/class-acf-field-post_object.php:422 -#: includes/fields/class-acf-field-select.php:396 -#: includes/fields/class-acf-field-user.php:418 -msgid "Select multiple values?" -msgstr "Meerdere selecties mogelijk?" +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Bestand bewerken" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:702 -msgid "Post Object" -msgstr "Post object" +#: includes/fields/class-acf-field-select.php:387 +msgid "Specify the value returned" +msgstr "Geef de geretourneerde waarde op" -#: includes/fields/class-acf-field-post_object.php:438 -#: includes/fields/class-acf-field-relationship.php:703 -msgid "Post ID" -msgstr "Post ID" +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "AJAX gebruiken om keuzes te lazy-loaden?" -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radio button" +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Zet elke standaard waarde op een nieuwe regel" -#: includes/fields/class-acf-field-radio.php:254 -msgid "Other" -msgstr "Anders namelijk" - -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Voeg de keuze \"anders” toe voor eigen invulling" - -#: includes/fields/class-acf-field-radio.php:265 -msgid "Save Other" -msgstr "Anders namelijk waarde toevoegen aan keuzes?" - -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "" -"Voeg de ingevulde \"anders namelijk\" waarde toe aan de keuzelijst na het " -"opslaan van een post" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Reeks" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relatie" - -#: includes/fields/class-acf-field-relationship.php:37 -msgid "Minimum values reached ( {min} values )" -msgstr "Minimaal aantal bereikt ( {min} stuks )" - -#: includes/fields/class-acf-field-relationship.php:38 -msgid "Maximum values reached ( {max} values )" -msgstr "Maximum aantal waarden bereikt ( {max} waarden )" - -#: includes/fields/class-acf-field-relationship.php:39 -msgid "Loading" -msgstr "Laden" - -#: includes/fields/class-acf-field-relationship.php:40 -msgid "No matches found" -msgstr "Geen gelijkenis gevonden" - -#: includes/fields/class-acf-field-relationship.php:423 -msgid "Select post type" -msgstr "Selecteer post type" - -#: includes/fields/class-acf-field-relationship.php:449 -msgid "Select taxonomy" -msgstr "Selecteer taxonomy" - -#: includes/fields/class-acf-field-relationship.php:539 -msgid "Search..." -msgstr "Zoeken..." - -#: includes/fields/class-acf-field-relationship.php:651 -msgid "Filters" -msgstr "Filters" - -#: includes/fields/class-acf-field-relationship.php:657 -#: includes/locations/class-acf-location-post-type.php:27 -msgid "Post Type" -msgstr "Post type" - -#: includes/fields/class-acf-field-relationship.php:658 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgid "Taxonomy" -msgstr "Taxonomy" - -#: includes/fields/class-acf-field-relationship.php:665 -msgid "Elements" -msgstr "Elementen" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Selected elements will be displayed in each result" -msgstr "Selecteer de elementen die moeten worden getoond in elk resultaat" - -#: includes/fields/class-acf-field-relationship.php:677 -msgid "Minimum posts" -msgstr "Minimale berichten" - -#: includes/fields/class-acf-field-relationship.php:686 -msgid "Maximum posts" -msgstr "Maximum aantal selecties" - -#: includes/fields/class-acf-field-relationship.php:790 -#: pro/fields/class-acf-field-gallery.php:800 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s verplicht tenminste %s selectie" -msgstr[1] "%s verplicht tenminste %s selecties" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:785 -msgctxt "noun" +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" msgid "Select" -msgstr "Selecteer" +msgstr "Selecteren" -#: includes/fields/class-acf-field-select.php:38 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Eén resultaat beschikbaar, toets enter om te selecteren." - -#: includes/fields/class-acf-field-select.php:39 -#, php-format -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "" -"%d resultaten beschikbaar, gebruik de pijltjes toetsen om te navigeren." - -#: includes/fields/class-acf-field-select.php:40 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Geen resultaten" - -#: includes/fields/class-acf-field-select.php:41 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Vul 1 of meer tekens in" - -#: includes/fields/class-acf-field-select.php:42 -#, php-format -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Vul %d of meer tekens in" - -#: includes/fields/class-acf-field-select.php:43 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Verwijderd 1 teken" - -#: includes/fields/class-acf-field-select.php:44 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Verwijder %d tekens" - -#: includes/fields/class-acf-field-select.php:45 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Je kunt maar 1 item selecteren" - -#: includes/fields/class-acf-field-select.php:46 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Je kunt maar %d items selecteren" - -#: includes/fields/class-acf-field-select.php:47 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Laad meer resultaten…" - -#: includes/fields/class-acf-field-select.php:48 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Zoeken…" - -#: includes/fields/class-acf-field-select.php:49 +#: includes/fields/class-acf-field-select.php:118 msgctxt "Select2 JS load_fail" msgid "Loading failed" msgstr "Laden mislukt" -#: includes/fields/class-acf-field-select.php:255 includes/media.php:54 -msgctxt "verb" +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Zoeken…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Meer resultaten laden…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Verwijder %d tekens" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Verwijder 1 teken" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Geen overeenkomsten gevonden" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" msgid "Select" msgstr "Selecteer" -#: includes/fields/class-acf-field-select.php:406 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "Uitgebreide weergave" +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "Gebruiker ID" -#: includes/fields/class-acf-field-select.php:416 -msgid "Use AJAX to lazy load choices?" -msgstr "AJAX gebruiken om keuzes te laden?" +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Gebruikersobject" -#: includes/fields/class-acf-field-select.php:427 -msgid "Specify the value returned" -msgstr "Bepaal hier de output weergave" +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Gebruiker array" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Alle gebruikersrollen" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filter op rol" + +#: includes/fields/class-acf-field-user.php:20 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-tab.php:25 -msgid "Tab" -msgstr "Tab" +#: includes/fields/class-acf-field-color_picker.php:73 +msgid "Select Color" +msgstr "Selecteer kleur" -#: includes/fields/class-acf-field-tab.php:82 -msgid "" -"The tab field will display incorrectly when added to a Table style repeater " -"field or flexible content field layout" -msgstr "Deze tab zal niet correct worden weergegeven in een herhalende tabel" +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Standaard" -#: includes/fields/class-acf-field-tab.php:83 -msgid "" -"Use \"Tab Fields\" to better organize your edit screen by grouping fields " -"together." -msgstr "Gebruik tabbladen om velden in het edit screen te organiseren." +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Wissen" -#: includes/fields/class-acf-field-tab.php:84 -msgid "" -"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." -msgstr "" -"Alle velden onder dit \"Tab veld\" zullen worden toegevoegd aan deze tab. " -"Het ingevulde \"Veld label\" dient als benaming van de tab." +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Kleurkiezer" -#: includes/fields/class-acf-field-tab.php:98 +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Selecteer" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Klaar" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Nu" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Tijdszone" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milliseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Seconde" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuut" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Uur" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Tijd" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Endpoint" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Links uitgelijnd" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Boven uitgelijnd" + +#: includes/fields/class-acf-field-tab.php:107 msgid "Placement" msgstr "Plaatsing" -#: includes/fields/class-acf-field-tab.php:110 -msgid "End-point" -msgstr "Eindpunt" +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Tab" -#: includes/fields/class-acf-field-tab.php:111 -msgid "Use this field as an end-point and start a new group of tabs" -msgstr "Gebruik dit veld als eindpunt en startpunt van een groep tabbladen" - -#: includes/fields/class-acf-field-taxonomy.php:713 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "Geen %s" - -#: includes/fields/class-acf-field-taxonomy.php:732 -msgid "None" -msgstr "Geen" - -#: includes/fields/class-acf-field-taxonomy.php:764 -msgid "Select the taxonomy to be displayed" -msgstr "Selecteer de weer te geven taxonomie " - -#: includes/fields/class-acf-field-taxonomy.php:773 -msgid "Appearance" -msgstr "Uiterlijk" - -#: includes/fields/class-acf-field-taxonomy.php:774 -msgid "Select the appearance of this field" -msgstr "Selecteer het uiterlijk van dit veld" - -#: includes/fields/class-acf-field-taxonomy.php:779 -msgid "Multiple Values" -msgstr "Meerdere waardes" - -#: includes/fields/class-acf-field-taxonomy.php:781 -msgid "Multi Select" -msgstr "Multi-selecteer" - -#: includes/fields/class-acf-field-taxonomy.php:783 -msgid "Single Value" -msgstr "Enkele waarde" - -#: includes/fields/class-acf-field-taxonomy.php:784 -msgid "Radio Buttons" -msgstr "Radio buttons" - -#: includes/fields/class-acf-field-taxonomy.php:803 -msgid "Create Terms" -msgstr "Voorwaarden toevoegen" - -#: includes/fields/class-acf-field-taxonomy.php:804 -msgid "Allow new terms to be created whilst editing" -msgstr "Toestaan dat nieuwe voorwaarden worden aangemaakt terwijl je bewerkt" - -#: includes/fields/class-acf-field-taxonomy.php:813 -msgid "Save Terms" -msgstr "Voorwaarden opslaan" - -#: includes/fields/class-acf-field-taxonomy.php:814 -msgid "Connect selected terms to the post" -msgstr "Koppel geselecteerde terms aan een post" - -#: includes/fields/class-acf-field-taxonomy.php:823 -msgid "Load Terms" -msgstr "Voorwaarden laden" - -#: includes/fields/class-acf-field-taxonomy.php:824 -msgid "Load value from posts terms" -msgstr "Waarde ophalen van posts terms" - -#: includes/fields/class-acf-field-taxonomy.php:838 -msgid "Term Object" -msgstr "Term object" - -#: includes/fields/class-acf-field-taxonomy.php:839 -msgid "Term ID" -msgstr "Term ID" - -#: includes/fields/class-acf-field-taxonomy.php:898 -#, php-format -msgid "User unable to add new %s" -msgstr "Gebruiker is niet in staat om nieuwe %s toe te voegen" - -#: includes/fields/class-acf-field-taxonomy.php:911 -#, php-format -msgid "%s already exists" -msgstr "%s bestaat al" - -#: includes/fields/class-acf-field-taxonomy.php:952 -#, php-format -msgid "%s added" -msgstr "%s toegevoegd" - -#: includes/fields/class-acf-field-taxonomy.php:997 -msgid "Add" -msgstr "Nieuwe" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Tekst" - -#: includes/fields/class-acf-field-text.php:155 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Karakter limiet" - -#: includes/fields/class-acf-field-text.php:156 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Laat leeg voor geen limiet" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Tekstvlak" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Rijen" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Hoogte (in regels) voor dit tekstvlak" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Tijd picker" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Waar / niet waar" - -#: includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Ja" - -#: includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "Nee" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Geeft tekst weer naast de checkbox" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "On tekst" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Tekst die verschijnt bij actief" - -#: includes/fields/class-acf-field-true_false.php:165 -msgid "Off Text" -msgstr "Off tekst" - -#: includes/fields/class-acf-field-true_false.php:166 -msgid "Text shown when inactive" -msgstr "Tekst die verschijnt bij inactief" +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Waarde moet een geldige URL zijn" #: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "URL" -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Waarde moet een geldige URL zijn" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Link URL" -#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 -msgid "User" -msgstr "Gebruiker" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Link array" -#: includes/fields/class-acf-field-user.php:393 -msgid "Filter by role" -msgstr "Filter op rol" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Opent in een nieuw venster/tab" -#: includes/fields/class-acf-field-user.php:401 -msgid "All user roles" -msgstr "Alle rollen" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Link selecteren" -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "Wysiwyg editor" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Link" -#: includes/fields/class-acf-field-wysiwyg.php:359 -msgid "Visual" -msgstr "Visueel" +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "E-mail" -#: includes/fields/class-acf-field-wysiwyg.php:360 +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Stapgrootte" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximale waarde" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Beide (array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Label" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Waarde" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Verticaal" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontaal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rood : Rood" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Keuzes" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Knop groep" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Selecteer meerdere waarden?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Null toestaan?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Hoofd" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Initialisatie uitstellen?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Media-uploadknoppen weergeven?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Toolbar" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Alleen tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Alleen visueel" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visueel & tekst" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Tabs" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Klik om TinyMCE te initialiseren" + +#: includes/fields/class-acf-field-wysiwyg.php:283 msgctxt "Name for the Text editor tab (formerly HTML)" msgid "Text" msgstr "Tekst" -#: includes/fields/class-acf-field-wysiwyg.php:366 -msgid "Click to initialize TinyMCE" -msgstr "Klik om TinyMCE te initialiseren" +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visueel" -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Tabs" -msgstr "Tabbladen" +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg-editor" -#: includes/fields/class-acf-field-wysiwyg.php:424 -msgid "Visual & Text" -msgstr "Visueel & tekst" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "De waarde mag niet langer zijn dan %d karakters" -#: includes/fields/class-acf-field-wysiwyg.php:425 -msgid "Visual Only" -msgstr "Alleen visueel" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Laat leeg voor geen limiet" -#: includes/fields/class-acf-field-wysiwyg.php:426 -msgid "Text Only" -msgstr "Alleen tekst" +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Karakterlimiet" -#: includes/fields/class-acf-field-wysiwyg.php:433 -msgid "Toolbar" -msgstr "Toolbar" +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Verschijnt na de invoer" -#: includes/fields/class-acf-field-wysiwyg.php:443 -msgid "Show Media Upload Buttons?" -msgstr "Toon media upload buttons?" +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Toevoegen" -#: includes/fields/class-acf-field-wysiwyg.php:453 -msgid "Delay initialization?" -msgstr "Vertraag initialisatie?" +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Verschijnt vóór de invoer" -#: includes/fields/class-acf-field-wysiwyg.php:454 -msgid "TinyMCE will not be initalized until field is clicked" -msgstr "TinyMCE wordt niet geïnitialiseerd tot veld is aangeklikt" +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Voorvoegen" -#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 -#: pro/admin/admin-options-page.php:308 -msgid "Edit field group" -msgstr "Bewerk groep" +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Verschijnt in de invoer" -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Valideer e-mail" +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Plaatshouder tekst" -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 -msgid "Update" -msgstr "Bijwerken" +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +msgid "Appears when creating a new post" +msgstr "Wordt weergegeven bij het maken van een nieuw bericht" -#: includes/forms/form-front.php:104 -msgid "Post updated" -msgstr "Bericht bijgewerkt" +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Tekst" -#: includes/forms/form-front.php:229 -msgid "Spam Detected" -msgstr "Spam gedetecteerd" +#: includes/fields/class-acf-field-relationship.php:760 +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/input.php:259 -msgid "Expand Details" -msgstr "Toon details" +#: includes/fields/class-acf-field-post_object.php:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Bericht ID" -#: includes/input.php:260 -msgid "Collapse Details" -msgstr "Verberg details" +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Bericht object" -#: includes/input.php:261 -msgid "Validation successful" -msgstr "Validatie geslaagd" +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximum aantal berichten" -#: includes/input.php:262 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Validatie mislukt" +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minimum aantal berichten" -#: includes/input.php:263 -msgid "1 field requires attention" -msgstr "1 veld heeft aandacht nodig" +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Uitgelichte afbeelding" -#: includes/input.php:264 -#, php-format -msgid "%d fields require attention" -msgstr "%d velden hebben aandacht nodig" +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Geselecteerde elementen worden weergegeven in elk resultaat" -#: includes/input.php:265 -msgid "Restricted" -msgstr "Verplicht" +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Elementen" -#: includes/input.php:266 -msgid "Are you sure?" -msgstr "Ben je zeker?" +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomie" -#: includes/input.php:270 -msgid "Cancel" -msgstr "Annuleer" +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Berichttype" -#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 -msgid "Post" +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filters" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Alle taxonomieën" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filter op taxonomie" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Alle berichttypen" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filter op berichttype" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Zoeken..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Taxonomie selecteren" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Selecteer berichttype" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Geen overeenkomsten gevonden" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Laden" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximale waarden bereikt ( {max} waarden )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Verwantschap" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Toegestane bestandstypen" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Bestandsgrootte" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Beperken welke afbeeldingen kunnen worden geüpload" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Geüpload naar post" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Beperk de keuze van de mediabibliotheek" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Bibliotheek" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Voorbeeld grootte" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Afbeelding ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Afbeelding URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Afbeelding array" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +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:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Retour waarde" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Afbeelding toevoegen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Geen afbeelding geselecteerd" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Verwijderen" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Bewerken" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Alle afbeeldingen" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Afbeelding updaten" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Afbeelding bewerken" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:123 +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:122 +msgid "Escape HTML" +msgstr "HTML escapen" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Geen opmaak" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Automatisch <br> toevoegen;" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Automatisch alinea's toevoegen" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Bepaalt hoe nieuwe regels worden weergegeven" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nieuwe regels" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Week begint op" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Format opslaan" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Wk" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Vorige" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Volgende" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Vandaag" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Breedte" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Insluit grootte" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Tekst getoond indien inactief" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Uit-tekst" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Tekst getoond indien actief" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Aan-tekst" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Gestileerde UI" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Standaardwaarde" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" msgstr "Bericht" -#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 -msgid "Page" -msgstr "Pagina" +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Nee" -#: includes/locations.php:96 -msgid "Forms" -msgstr "Formulieren" +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "Ja" -#: includes/locations/class-acf-location-attachment.php:27 -msgid "Attachment" -msgstr "Bijlage" +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Waar / Niet waar" -#: includes/locations/class-acf-location-attachment.php:109 -#, php-format -msgid "All %s formats" -msgstr "Alle %s formaten" +#: includes/fields/class-acf-field-group.php:471 +msgid "Row" +msgstr "Rij" -#: includes/locations/class-acf-location-comment.php:27 -msgid "Comment" -msgstr "Reactie" +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabel" -#: includes/locations/class-acf-location-current-user-role.php:27 -msgid "Current User Role" -msgstr "Huidige gebruikersrol" +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Blok" -#: includes/locations/class-acf-location-current-user-role.php:110 -msgid "Super Admin" -msgstr "Super beheerder" +#: includes/fields/class-acf-field-group.php:464 +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/locations/class-acf-location-current-user.php:27 -msgid "Current User" -msgstr "Huidige gebruiker" +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Lay-out" -#: includes/locations/class-acf-location-current-user.php:97 -msgid "Logged in" -msgstr "Ingelogd" +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "Subvelden" -#: includes/locations/class-acf-location-current-user.php:98 -msgid "Viewing front end" -msgstr "Bekijk voorkant" +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Groep" -#: includes/locations/class-acf-location-current-user.php:99 -msgid "Viewing back end" -msgstr "Bekijk achterkant" +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "De kaarthoogte aanpassen" -#: includes/locations/class-acf-location-nav-menu-item.php:27 -msgid "Menu Item" -msgstr "Menu item" +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Hoogte" -#: includes/locations/class-acf-location-nav-menu.php:27 -msgid "Menu" -msgstr "Menu" +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Het initiële zoomniveau instellen" -#: includes/locations/class-acf-location-nav-menu.php:109 -msgid "Menu Locations" -msgstr "Menu locaties" +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" -#: includes/locations/class-acf-location-nav-menu.php:119 -msgid "Menus" -msgstr "Menu’s " +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "De eerste kaart centreren" -#: includes/locations/class-acf-location-page-parent.php:27 -msgid "Page Parent" -msgstr "Pagina hoofd" +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Midden" -#: includes/locations/class-acf-location-page-template.php:27 -msgid "Page Template" -msgstr "Pagina template" +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Zoek naar adres..." -#: includes/locations/class-acf-location-page-template.php:98 -#: includes/locations/class-acf-location-post-template.php:151 -msgid "Default Template" -msgstr "Standaard template" +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Huidige locatie opzoeken" -#: includes/locations/class-acf-location-page-type.php:27 -msgid "Page Type" -msgstr "Pagina type" +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Locatie wissen" -#: includes/locations/class-acf-location-page-type.php:145 -msgid "Front Page" -msgstr "Hoofdpagina" +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Zoeken" -#: includes/locations/class-acf-location-page-type.php:146 -msgid "Posts Page" -msgstr "Berichten pagina" +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +msgid "Sorry, this browser does not support geolocation" +msgstr "Deze browser ondersteunt geen geolocatie" -#: includes/locations/class-acf-location-page-type.php:147 -msgid "Top Level Page (no parent)" -msgstr "Hoofdpagina (geen hoofd)" +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Google Map" -#: includes/locations/class-acf-location-page-type.php:148 -msgid "Parent Page (has children)" -msgstr "Hoofdpagina (bevat subitems)" +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Het format dat wordt geretourneerd via templatefuncties" -#: includes/locations/class-acf-location-page-type.php:149 -msgid "Child Page (has parent)" -msgstr "Subpagina" +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Retour format" -#: includes/locations/class-acf-location-post-category.php:27 -msgid "Post Category" -msgstr "Bericht categorie" +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Aangepast:" -#: includes/locations/class-acf-location-post-format.php:27 -msgid "Post Format" -msgstr "Bericht format" +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "Het format dat wordt weergegeven bij het bewerken van een bericht" -#: includes/locations/class-acf-location-post-status.php:27 -msgid "Post Status" -msgstr "Status" +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +msgid "Display Format" +msgstr "Weergave format" -#: includes/locations/class-acf-location-post-taxonomy.php:27 -msgid "Post Taxonomy" -msgstr "Bericht taxonomy" +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Tijdkiezer" -#: includes/locations/class-acf-location-post-template.php:27 -msgid "Post Template" -msgstr "Bericht template" +#. translators: counts for inactive field groups +#: acf.php:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactief (%s)" +msgstr[1] "Inactief (%s)" -#: includes/locations/class-acf-location-taxonomy.php:27 -msgid "Taxonomy Term" -msgstr "Taxonomy term" +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Geen velden gevonden in de prullenbak" -#: includes/locations/class-acf-location-user-form.php:27 -msgid "User Form" -msgstr "Gebruiker formulier" +#: acf.php:411 +msgid "No Fields found" +msgstr "Geen velden gevonden" -#: includes/locations/class-acf-location-user-form.php:88 -msgid "Add / Edit" -msgstr "Toevoegen / Bewerken" +#: acf.php:410 +msgid "Search Fields" +msgstr "Velden zoeken" -#: includes/locations/class-acf-location-user-form.php:89 -msgid "Register" -msgstr "Registreer" +#: acf.php:409 +msgid "View Field" +msgstr "Veld bekijken" -#: includes/locations/class-acf-location-user-role.php:27 -msgid "User Role" -msgstr "Rol" +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nieuw veld" -#: includes/locations/class-acf-location-widget.php:27 -msgid "Widget" -msgstr "Widget" +#: acf.php:407 +msgid "Edit Field" +msgstr "Veld bewerken" -#: includes/media.php:55 -msgctxt "verb" -msgid "Edit" -msgstr "Bewerk" +#: acf.php:406 +msgid "Add New Field" +msgstr "Nieuw veld toevoegen" -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Bijwerken" +#: acf.php:404 +msgid "Field" +msgstr "Veld" -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "%s waarde is verplicht" +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Velden" -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Geen veldgroepen gevonden in prullenbak" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Geen veldgroepen gevonden" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Veldgroepen zoeken" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Veldgroep bekijken" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Nieuwe veldgroep" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Veldgroep bewerken" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Nieuwe veldgroep toevoegen" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Nieuwe toevoegen" + +#: acf.php:370 +msgid "Field Group" +msgstr "Veldgroep" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" -#: pro/admin/admin-options-page.php:200 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Controleer op updates" + +#: pro/updates.php:561 +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:206 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -2858,29 +3153,381 @@ msgstr "" "Er zijn geen groepen gevonden voor deze optie pagina. Maak " "een extra velden groep" -#: pro/admin/admin-settings-updates.php:78 +#: 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-settings-updates.php:162 -#: pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "Updates" +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" -#: pro/admin/views/html-settings-updates.php:7 +#: pro/admin/admin-updates.php:196 +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 "Kloon" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Toon" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Naadloos (vervangt dit veld met de geselecteerde velden)" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Labels worden getoond als %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefix veld labels" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Waarden worden opgeslagen als %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefix veld namen" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Onbekend veld" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Onbekend groep" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle velden van %s veld groep" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layout" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layouts" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} beschikbaar (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} verplicht (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibele content vereist minimaal 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:413 +msgid "Add layout" +msgstr "Layout toevoegen" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Klik om in/uit te klappen" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Herorder layout" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Herorder" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliceer layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Nieuwe layout" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Button label" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Minimale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maximale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "Voeg afbeelding toe aan galerij" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maximale selectie bereikt" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lengte" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Onderschrift" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alt tekst" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Afbeelding(en) toevoegen" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Acties" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sorteer op datum geüpload" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sorteer op datum aangepast" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sorteer op titel" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Keer volgorde om" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Sluiten" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Invoegen" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Geef aan waar nieuwe bijlagen worden toegevoegd" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Toevoegen aan het einde" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Toevoegen aan het begin" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimale selectie" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maximale selectie" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maximum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Ingeklapt" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Minimum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Maximum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Verwijder regel" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "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:7 +#: pro/admin/views/html-settings-updates.php:6 msgid "Activate License" msgstr "Activeer licentiecode" -#: pro/admin/views/html-settings-updates.php:17 +#: pro/admin/views/html-settings-updates.php:16 msgid "License Information" msgstr "Licentie informatie" -#: pro/admin/views/html-settings-updates.php:20 -#, php-format +#: 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 & pricingdetails & prijzen." -#: pro/admin/views/html-settings-updates.php:29 +#: pro/admin/views/html-settings-updates.php:41 msgid "License Key" msgstr "Licentiecode" -#: pro/admin/views/html-settings-updates.php:61 +#: 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:76 msgid "Update Information" msgstr "Update informatie" -#: pro/admin/views/html-settings-updates.php:68 +#: pro/admin/views/html-settings-updates.php:83 msgid "Current Version" msgstr "Huidige versie" -#: pro/admin/views/html-settings-updates.php:76 +#: pro/admin/views/html-settings-updates.php:91 msgid "Latest Version" msgstr "Nieuwste versie" -#: pro/admin/views/html-settings-updates.php:84 +#: pro/admin/views/html-settings-updates.php:99 msgid "Update Available" msgstr "Update beschikbaar" -#: pro/admin/views/html-settings-updates.php:92 -msgid "Update Plugin" -msgstr "Update plugin" - -#: pro/admin/views/html-settings-updates.php:94 +#: pro/admin/views/html-settings-updates.php:111 msgid "Please enter your license key above to unlock updates" msgstr "Vul uw licentiecode hierboven in om updates te ontvangen" -#: pro/admin/views/html-settings-updates.php:100 -msgid "Check Again" -msgstr "Controleer op updates" +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Update plugin" -#: pro/admin/views/html-settings-updates.php:117 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Wat is er nieuw?" + +#: pro/admin/views/html-settings-updates.php:134 msgid "Upgrade Notice" msgstr "Upgrade opmerking" -#: pro/fields/class-acf-field-clone.php:25 -msgctxt "noun" -msgid "Clone" -msgstr "Kloon" +#~ msgid "Inactive" +#~ msgstr "Niet actief" -#: pro/fields/class-acf-field-clone.php:808 -msgid "Select one or more fields you wish to clone" -msgstr "Selecteer een of meer velden om te klonen" +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Naar prullenbak. Weet je het zeker?" -#: pro/fields/class-acf-field-clone.php:825 -msgid "Display" -msgstr "Toon" +#~ msgid "checked" +#~ msgstr "aangevinkt" -#: pro/fields/class-acf-field-clone.php:826 -msgid "Specify the style used to render the clone field" -msgstr "Kies de gebruikte stijl bij het renderen van het gekloonde veld" +#~ msgid "Parent fields" +#~ msgstr "Hoofdpagina" -#: pro/fields/class-acf-field-clone.php:831 -msgid "Group (displays selected fields in a group within this field)" -msgstr "Groep (toont geselecteerde velden in een groep binnen dit veld)" +#~ msgid "Sibling fields" +#~ msgstr "Zuster velden" -#: pro/fields/class-acf-field-clone.php:832 -msgid "Seamless (replaces this field with selected fields)" -msgstr "Naadloos (vervangt dit veld met de geselecteerde velden)" - -#: pro/fields/class-acf-field-clone.php:853 #, php-format -msgid "Labels will be displayed as %s" -msgstr "Labels worden getoond als %s" +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Het veld: %s bevindt zich nu in de groep: %s" -#: pro/fields/class-acf-field-clone.php:856 -msgid "Prefix Field Labels" -msgstr "Prefix veld labels" - -#: pro/fields/class-acf-field-clone.php:867 #, php-format -msgid "Values will be saved as %s" -msgstr "Waarden worden opgeslagen als %s" +#~ msgid "Field group duplicated. %s" +#~ msgstr "Groep gedupliceerd. %s" -#: pro/fields/class-acf-field-clone.php:870 -msgid "Prefix Field Names" -msgstr "Prefix veld namen" - -#: pro/fields/class-acf-field-clone.php:988 -msgid "Unknown field" -msgstr "Onbekend veld" - -#: pro/fields/class-acf-field-clone.php:1027 -msgid "Unknown field group" -msgstr "Onbekend groep" - -#: pro/fields/class-acf-field-clone.php:1031 #, php-format -msgid "All fields from %s field group" -msgstr "Alle velden van %s veld groep" +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s groep gedupliceerd." +#~ msgstr[1] "%s groepen gedupliceerd." -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:174 -#: pro/fields/class-acf-field-repeater.php:470 -msgid "Add Row" -msgstr "Nieuwe regel" - -#: pro/fields/class-acf-field-flexible-content.php:34 -msgid "layout" -msgstr "layout" - -#: pro/fields/class-acf-field-flexible-content.php:35 -msgid "layouts" -msgstr "layouts" - -#: pro/fields/class-acf-field-flexible-content.php:36 -msgid "remove {layout}?" -msgstr "verwijder {layout}?" - -#: pro/fields/class-acf-field-flexible-content.php:37 -msgid "This field requires at least {min} {identifier}" -msgstr "Dit veld vereist op zijn minst {min} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:38 -msgid "This field has a limit of {max} {identifier}" -msgstr "Dit veld heeft een limiet van {max} {identifier}" - -#: pro/fields/class-acf-field-flexible-content.php:39 -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:40 -msgid "Maximum {label} limit reached ({max} {identifier})" -msgstr "Maximum {label} limiet bereikt ({max} {identifier})" - -#: pro/fields/class-acf-field-flexible-content.php:41 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} beschikbaar (max {max})" - -#: pro/fields/class-acf-field-flexible-content.php:42 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} verplicht (min {min})" - -#: pro/fields/class-acf-field-flexible-content.php:43 -msgid "Flexible Content requires at least 1 layout" -msgstr "Flexibele content vereist minimaal 1 layout" - -#: pro/fields/class-acf-field-flexible-content.php:273 #, php-format -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "Klik op de \"%s\" button om een nieuwe lay-out te maken" +#~ msgid "Field group synchronised. %s" +#~ msgstr "Groep gesynchroniseerd. %s" -#: pro/fields/class-acf-field-flexible-content.php:406 -msgid "Add layout" -msgstr "Layout toevoegen" - -#: pro/fields/class-acf-field-flexible-content.php:407 -msgid "Remove layout" -msgstr "Verwijder layout" - -#: pro/fields/class-acf-field-flexible-content.php:408 -#: pro/fields/class-acf-field-repeater.php:298 -msgid "Click to toggle" -msgstr "Klik om in/uit te klappen" - -#: pro/fields/class-acf-field-flexible-content.php:554 -msgid "Reorder Layout" -msgstr "Herorder layout" - -#: pro/fields/class-acf-field-flexible-content.php:554 -msgid "Reorder" -msgstr "Herorder" - -#: pro/fields/class-acf-field-flexible-content.php:555 -msgid "Delete Layout" -msgstr "Verwijder layout" - -#: pro/fields/class-acf-field-flexible-content.php:556 -msgid "Duplicate Layout" -msgstr "Dupliceer layout" - -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Add New Layout" -msgstr "Nieuwe layout" - -#: pro/fields/class-acf-field-flexible-content.php:628 -msgid "Min" -msgstr "Min" - -#: pro/fields/class-acf-field-flexible-content.php:641 -msgid "Max" -msgstr "Max" - -#: pro/fields/class-acf-field-flexible-content.php:668 -#: pro/fields/class-acf-field-repeater.php:466 -msgid "Button Label" -msgstr "Button label" - -#: pro/fields/class-acf-field-flexible-content.php:677 -msgid "Minimum Layouts" -msgstr "Minimale layouts" - -#: pro/fields/class-acf-field-flexible-content.php:686 -msgid "Maximum Layouts" -msgstr "Maximale layouts" - -#: pro/fields/class-acf-field-gallery.php:41 -msgid "Add Image to Gallery" -msgstr "Voeg afbeelding toe aan galerij" - -#: pro/fields/class-acf-field-gallery.php:45 -msgid "Maximum selection reached" -msgstr "Maximale selectie bereikt" - -#: pro/fields/class-acf-field-gallery.php:321 -msgid "Length" -msgstr "Lengte" - -#: pro/fields/class-acf-field-gallery.php:364 -msgid "Caption" -msgstr "Onderschrift" - -#: pro/fields/class-acf-field-gallery.php:373 -msgid "Alt Text" -msgstr "Alt tekst" - -#: pro/fields/class-acf-field-gallery.php:544 -msgid "Add to gallery" -msgstr "Afbeelding(en) toevoegen" - -#: pro/fields/class-acf-field-gallery.php:548 -msgid "Bulk actions" -msgstr "Acties" - -#: pro/fields/class-acf-field-gallery.php:549 -msgid "Sort by date uploaded" -msgstr "Sorteer op datum geüpload" - -#: pro/fields/class-acf-field-gallery.php:550 -msgid "Sort by date modified" -msgstr "Sorteer op datum aangepast" - -#: pro/fields/class-acf-field-gallery.php:551 -msgid "Sort by title" -msgstr "Sorteer op titel" - -#: pro/fields/class-acf-field-gallery.php:552 -msgid "Reverse current order" -msgstr "Keer volgorde om" - -#: pro/fields/class-acf-field-gallery.php:570 -msgid "Close" -msgstr "Sluiten" - -#: pro/fields/class-acf-field-gallery.php:624 -msgid "Minimum Selection" -msgstr "Minimale selectie" - -#: pro/fields/class-acf-field-gallery.php:633 -msgid "Maximum Selection" -msgstr "Maximale selectie" - -#: pro/fields/class-acf-field-gallery.php:642 -msgid "Insert" -msgstr "Invoegen" - -#: pro/fields/class-acf-field-gallery.php:643 -msgid "Specify where new attachments are added" -msgstr "Geef aan waar nieuwe bijlagen worden toegevoegd" - -#: pro/fields/class-acf-field-gallery.php:647 -msgid "Append to the end" -msgstr "Toevoegen aan het einde" - -#: pro/fields/class-acf-field-gallery.php:648 -msgid "Prepend to the beginning" -msgstr "Toevoegen aan het begin" - -#: pro/fields/class-acf-field-repeater.php:36 -msgid "Minimum rows reached ({min} rows)" -msgstr "Minimum aantal rijen bereikt ({max} rijen)" - -#: pro/fields/class-acf-field-repeater.php:37 -msgid "Maximum rows reached ({max} rows)" -msgstr "Maximum aantal rijen bereikt ({max} rijen)" - -#: pro/fields/class-acf-field-repeater.php:343 -msgid "Add row" -msgstr "Nieuwe regel" - -#: pro/fields/class-acf-field-repeater.php:344 -msgid "Remove row" -msgstr "Verwijder regel" - -#: pro/fields/class-acf-field-repeater.php:419 -msgid "Collapsed" -msgstr "Ingeklapt" - -#: pro/fields/class-acf-field-repeater.php:420 -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:430 -msgid "Minimum Rows" -msgstr "Minimum aantal rijen" - -#: pro/fields/class-acf-field-repeater.php:440 -msgid "Maximum Rows" -msgstr "Maximum aantal rijen" - -#: pro/locations/class-acf-location-options-page.php:79 -msgid "No options pages exist" -msgstr "Er zijn nog geen optie pagina's" - -#: pro/options-page.php:51 -msgid "Options" -msgstr "Opties" - -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "Opties bijgewerkt" - -#: pro/updates.php:97 #, php-format -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 updates te ontvangen vul je op Updates pagina je " -"licentiecode in. Nog geen licentiecode? Bekijk details & prijzen." +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s groep gesynchroniseerd." +#~ msgstr[1] "%s groepen gesynchroniseerd." -#. Plugin URI of the plugin/theme -msgid "https://www.advancedcustomfields.com/" -msgstr "https://www.advancedcustomfields.com/" +#~ msgid "Status" +#~ msgstr "Status" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "Pas WordPress aan met krachtige, professionele en slimme velden." -#. Author URI of the plugin/theme -msgid "http://www.elliotcondon.com/" -msgstr "http://www.elliotcondon.com/" +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Bekijk wat nieuw is in versie %s." + +#~ msgid "Resources" +#~ msgstr "Documentatie (Engels)" + +#~ msgid "Website" +#~ msgstr "Website" + +#~ msgid "Documentation" +#~ msgstr "Documentatie" + +#~ msgid "Support" +#~ msgstr "Support" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Bedankt voor het ontwikkelen met ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "Synchroniseer groep" + +#~ msgid "Apply" +#~ msgstr "Toepassen" + +#~ msgid "Bulk Actions" +#~ msgstr "Bulk acties" + +#~ msgid "Error validating request" +#~ msgstr "Fout bij valideren" + +#~ msgid "Add-ons" +#~ msgstr "Add-ons" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Fout. Kan add-ons lijst niet laden" + +#~ msgid "Info" +#~ msgstr "Informatie" + +#~ msgid "What's New" +#~ msgstr "Wat is er nieuw" + +#~ msgid "Required?" +#~ msgstr "Verplicht?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Geen velden. Klik op + Nieuw veld button om je eerste " +#~ "veld te maken." + +#~ msgid "+ Add Field" +#~ msgstr "+ Nieuw veld" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields database upgrade" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Website vereist een database upgrade van %s naar %s" + +#~ msgid "Upgrade complete" +#~ msgstr "Upgrade afgerond" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Bedankt voor het updaten naar %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Voordat je aan de slag kunt met de geweldige nieuwe functies, is een " +#~ "database update vereist." + +#, php-format +#~ msgid "" +#~ "Please also ensure any premium add-ons (%s) have first been updated to " +#~ "the latest version." +#~ msgstr "" +#~ "Zorg ervoor dat elke premium add-ons (%s) eerst zijn bijgewerkt naar de " +#~ "laatste versie." + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "Database upgrade afgerond. Bekijk wat nieuw is" + +#~ msgid "Download & Install" +#~ msgstr "Download & installeer" + +#~ msgid "Installed" +#~ msgstr "Geïnstalleerd" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Welkom bij Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Bedankt voor het updaten! ACF %s is groter dan ooit tevoren. We hopen dat " +#~ "je tevreden bent." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Een verbeterde extra veld beleving" + +#~ msgid "Improved Usability" +#~ msgstr "Gebruikersvriendelijker" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Inclusief de populaire Select2 bibliotheek, die zowel " +#~ "gebruikersvriendelijker als sneller werkt bij velden als post object, " +#~ "pagina link, taxonomy en selecteer." + +#~ msgid "Improved Design" +#~ msgstr "Verbeterd design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Vele velden hebben een make-over gekregen. Nu oogt ACF beter dan ooit! " +#~ "Merkwaardige verschillen vindt je onder andere terug bij de galerij, " +#~ "relatie en oEmbed velden!" + +#~ msgid "Improved Data" +#~ msgstr "Verbeterde data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Het herontwerp van de dataverwerking zorgt ervoor dat velden los van hun " +#~ "hoofdvelden kunnen functioneren. Hiermee wordt het mogelijk om velden te " +#~ "drag-and-droppen tussen hoofdvelden." + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Vaarwel Add-ons. Hallo PRO!" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "We veranderen de manier waarop premium functies worden geleverd, op een " +#~ "gave manier!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle 4 de premium add-ons zijn samengevoegd tot een PRO " +#~ "versie van ACF. Er zijn zowel persoonlijke als developer licenties " +#~ "verkrijgbaar tegen een aantrekkelijke prijs!" + +#~ msgid "Powerful Features" +#~ msgstr "Krachtige functies" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO beschikt over krachtige velden en functies zoals: herhaalbare " +#~ "velden, flexibile content layouts, een interactieve fotogalerij veld en " +#~ "de mogelijkheid om optie pagina's aan te maken!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Lees meer over de ACF PRO functionaliteiten." + +#~ msgid "Easy Upgrading" +#~ msgstr "Gemakkelijk upgraden" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Om upgraden gemakkelijk te maken kun je inloggen met je " +#~ "bestaande winkelaccount en een gratis versie van ACF PRO claimen!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "We hebben een speciale upgrade gids gemaakt om al je " +#~ "vraagstukken te beantwoorden. Indien je een uitgebreidere vraag hebt, kun " +#~ "je contact opnemen met de helpdesk (Engelstalig)." + +#~ msgid "Under the Hood" +#~ msgstr "Onder de motorkap" + +#~ msgid "Smarter field settings" +#~ msgstr "Slimmere veld instellingen" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF slaat velden als individuele post objecten op" + +#~ msgid "More AJAX" +#~ msgstr "Meer AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Steeds meer velden maken gebruik van AJAX gestuurde zoekopdrachten. Dit " +#~ "maakt het laden een stuk sneller" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Het automatisch exporteren naar JSON maakt alles een stuk sneller" + +#~ msgid "Better version control" +#~ msgstr "Betere versie controles" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nieuw is het automatisch exporteren naar JSON. Dit voorkomt problemen " +#~ "tijdens het upgraden van ACF." + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML is vervangen door JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "" +#~ "Importeren / Exporteren gaat nu via JSON. Indien gewenst kan er XML " +#~ "worden gebruikt" + +#~ msgid "New Forms" +#~ msgstr "Nieuwe formulieren" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Velden kunnen nu worden toegewezen aan reacties, widgets en " +#~ "gebruikersformulieren!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Een nieuw veld voor het embedden van content is toegevoegd" + +#~ msgid "New Gallery" +#~ msgstr "Nieuwe galerij" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Het galerij veld heeft een complete facelift ondergaan" + +#~ msgid "New Settings" +#~ msgstr "Nieuwe instellingen" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Nieuwe groep instellingen zijn toegevoegd om label en instructies toe te " +#~ "voegen" + +#~ msgid "Better Front End Forms" +#~ msgstr "Betere front-end formulieren" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() kan nu posts aanmaken/toevoegen na goedkeuring" + +#~ msgid "Better Validation" +#~ msgstr "Betere validatie" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Formulier validatie gaat nu via PHP + AJAX. Indien gewenst kan dit ook " +#~ "via JS" + +#~ msgid "Relationship Field" +#~ msgstr "Relatie veld" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nieuwe relatieveld instellingen voor filters (Zoeken, Post Type en " +#~ "Taxonomy)" + +#~ msgid "Moving Fields" +#~ msgstr "Velden verplaatsen" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Nieuwe veld groep functionaliteiten laat je velden tussen groepen " +#~ "verplaatsen." + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nieuwe archief groep in pagina_link veld" + +#~ msgid "Better Options Pages" +#~ msgstr "Verbeterde optie pagina's" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "De opties pagina's kunnen nu worden voorzien van zowel hoofd als sub-" +#~ "pagina's" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "" +#~ "Wij denken dat u de wijzigingen en vernieuwingen zult waarderen in versie " +#~ "%s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exporteer groep(en) naar PHP" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Selecteer de groepen die je wilt exporteren. Maak vervolgens de keuze om " +#~ "de groepen te downloaden als JSON bestand, of genereer de export code in " +#~ "PHP formaat. De PHP export code kun je integreren in je thema." + +#~ msgid "Download export file" +#~ msgstr "Download export bestand" + +#~ msgid "Generate export code" +#~ msgstr "Genereer export code" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Selecteer het Advanced Custom Fields JSON bestand die je wilt importeren. " +#~ "Klik op de importeer button om het importeren te starten." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "Bestand mag niet groter zijn dan %s." + +#~ msgid "Allow Custom" +#~ msgstr "Eigen invoer toestaan" + +#~ msgid "Save Custom" +#~ msgstr "Eigen invoer opslaan" + +#~ msgid "Toggle" +#~ msgstr "Switch" + +#~ msgid "Current Color" +#~ msgstr "Huidige kleur" + +#~ msgid "Locating" +#~ msgstr "Locatie wordt gezocht..." + +#~ msgid "Customise the map height" +#~ msgstr "Wijzig de hoogte van de kaart" + +#~ msgid "Shown when entering data" +#~ msgstr "Voorbeeld wordt na het uploaden/selecteren getoond" + +#~ msgid "Error." +#~ msgstr "Fout." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Geen embed mogelijkheid gevonden voor de gewenste URL." + +#~ msgid "Other" +#~ msgstr "Anders namelijk" + +#~ msgid "Save Other" +#~ msgstr "Anders namelijk waarde toevoegen aan keuzes?" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimaal aantal bereikt ( {min} stuks )" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s verplicht tenminste %s selectie" +#~ msgstr[1] "%s verplicht tenminste %s selecties" + +#~ msgid "Stylised UI" +#~ msgstr "Uitgebreide weergave" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Deze tab zal niet correct worden weergegeven in een herhalende tabel" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "Gebruik tabbladen om velden in het edit screen te organiseren." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle velden onder dit \"Tab veld\" zullen worden toegevoegd aan deze tab. " +#~ "Het ingevulde \"Veld label\" dient als benaming van de tab." + +#~ msgid "End-point" +#~ msgstr "Eindpunt" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "Gebruik dit veld als eindpunt en startpunt van een groep tabbladen" + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Geen %s" + +#~ msgid "None" +#~ msgstr "Geen" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "TinyMCE wordt niet geïnitialiseerd tot veld is aangeklikt" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomy term" + +#~ msgid "remove {layout}?" +#~ msgstr "verwijder {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dit veld vereist op zijn minst {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Dit veld heeft een limiet van {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximum {label} limiet bereikt ({max} {identifier})" + +#, php-format +#~ 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 updates te ontvangen vul je op Updates pagina je " +#~ "licentiecode in. Nog geen licentiecode? Bekijk details & prijzen." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" #~ msgid "Disabled" #~ msgstr "Inactief" @@ -3582,15 +4458,6 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Activation Code" #~ msgstr "Activatie code" -#~ msgid "Repeater Field" -#~ msgstr "Repeater Field" - -#~ msgid "Flexible Content Field" -#~ msgstr "Flexible Content Field" - -#~ msgid "Gallery Field" -#~ msgstr "Gallery Field" - #~ msgid "Export Field Groups to XML" #~ msgstr "Exporteer groepen naar XML" diff --git a/lang/acf-pl_PL.mo b/lang/acf-pl_PL.mo index dbee116..61d83d6 100644 Binary files a/lang/acf-pl_PL.mo and b/lang/acf-pl_PL.mo differ diff --git a/lang/acf-pl_PL.po b/lang/acf-pl_PL.po index 5ec69a0..bc495b1 100644 --- a/lang/acf-pl_PL.po +++ b/lang/acf-pl_PL.po @@ -1,27 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" -"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-02-27 13:58+0100\n" -"Last-Translator: Dariusz Zielonka \n" -"Language-Team: Dariusz Zielonka \n" +"PO-Revision-Date: 2022-09-29T12:15:07+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" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 3.0.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:3, pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" diff --git a/lang/acf-pt_BR.mo b/lang/acf-pt_BR.mo old mode 100755 new mode 100644 index 8d0a745..82be096 Binary files a/lang/acf-pt_BR.mo and b/lang/acf-pt_BR.mo differ diff --git a/lang/acf-pt_BR.po b/lang/acf-pt_BR.po index 37198da..e5696c9 100644 --- a/lang/acf-pt_BR.po +++ b/lang/acf-pt_BR.po @@ -1,26 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields PRO 5.4\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2017-11-22 09:03-0200\n" -"PO-Revision-Date: 2018-02-06 10:06+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Augusto Simão \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:67 msgid "Advanced Custom Fields" @@ -1333,8 +1332,7 @@ msgstr "Relacional" msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:149 -#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177 #: includes/fields/class-acf-field-checkbox.php:384 #: includes/fields/class-acf-field-group.php:474 #: includes/fields/class-acf-field-radio.php:285 @@ -2664,8 +2662,8 @@ msgstr "Editar Grupo de Campos" msgid "Validate Email" msgstr "Validar Email" -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 +#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573 +#: pro/options-page.php:81 msgid "Update" msgstr "Atualizar" diff --git a/lang/acf-pt_PT.mo b/lang/acf-pt_PT.mo index 535b88f..5bcc45b 100644 Binary files a/lang/acf-pt_PT.mo and b/lang/acf-pt_PT.mo differ diff --git a/lang/acf-pt_PT.po b/lang/acf-pt_PT.po index b04ab18..47981f7 100644 --- a/lang/acf-pt_PT.po +++ b/lang/acf-pt_PT.po @@ -1,2889 +1,3248 @@ -# Copyright (C) 2014 -# This file is distributed under the same license as the package. +# 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 "" -"Project-Id-Version: Advanced Custom Fields PRO\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2021-01-12 08:46+0000\n" -"PO-Revision-Date: 2021-01-12 08:50+0000\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: Pedro Mendonça \n" "Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: tests\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -#: acf.php:348 includes/admin/admin.php:49 -msgid "Field Groups" -msgstr "Grupos de campos" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -#: acf.php:349 -msgid "Field Group" -msgstr "Grupo de campos" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:350 acf.php:382 includes/admin/admin.php:50 -#: pro/fields/class-acf-field-flexible-content.php:559 -msgid "Add New" -msgstr "Adicionar novo" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:351 -msgid "Add New Field Group" -msgstr "Adicionar novo grupo de campos" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:352 -msgid "Edit Field Group" -msgstr "Editar grupo de campos" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -#: acf.php:353 -msgid "New Field Group" -msgstr "Novo grupo de campos" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" -#: acf.php:354 -msgid "View Field Group" -msgstr "Ver grupo de campos" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" -#: acf.php:355 -msgid "Search Field Groups" -msgstr "Pesquisar grupos de campos" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:356 -msgid "No Field Groups found" -msgstr "Nenhum grupo de campos encontrado" +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Actualizações" -#: acf.php:357 -msgid "No Field Groups found in Trash" -msgstr "Nenhum grupo de campos encontrado no lixo" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" -#: acf.php:380 includes/admin/admin-field-group.php:231 -#: includes/admin/admin-field-groups.php:262 -#: pro/fields/class-acf-field-clone.php:808 -msgid "Fields" -msgstr "Campos" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" -#: acf.php:381 -msgid "Field" -msgstr "Campo" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" -#: acf.php:383 -msgid "Add New Field" -msgstr "Adicionar novo campo" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" -#: acf.php:384 -msgid "Edit Field" -msgstr "Editar campo" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -#: acf.php:385 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Novo campo" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" -#: acf.php:386 -msgid "View Field" -msgstr "Ver campo" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -#: acf.php:387 -msgid "Search Fields" -msgstr "Pesquisar campos" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" -#: acf.php:388 -msgid "No Fields found" -msgstr "Nenhum campo encontrado" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" -#: acf.php:389 -msgid "No Fields found in Trash" -msgstr "Nenhum campo encontrado no lixo" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" -#: acf.php:424 includes/admin/admin-field-groups.php:226 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 msgctxt "post status" -msgid "Disabled" -msgstr "Desactivado" +msgid "Inactive" +msgstr "" -#: acf.php:429 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "Desactivado (%s)" -msgstr[1] "Desactivados (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "" -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:177 -msgid "(no label)" -msgstr "(sem legenda)" +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" -#: includes/acf-field-group-functions.php:820 -#: includes/admin/admin-field-group.php:179 -msgid "copy" -msgstr "cópia" +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" -#: includes/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Artigos" +#: 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/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taxonomias" +#: includes/fields/class-acf-field-user.php:537 +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/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Anexos" +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s tem de ter um ID de utilizador válido." -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Comentários" +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Pedido inválido." -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Widgets" +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "%1$s não é um de %2$s" -#: includes/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:87 -msgid "Menus" -msgstr "Menus" +#: includes/fields/class-acf-field-post_object.php:669 +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/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "Itens de menu" +#: includes/fields/class-acf-field-post_object.php:653 +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/acf-wp-functions.php:79 -msgid "Users" -msgstr "Utilizadores" +#: includes/fields/class-acf-field-post_object.php:644 +msgid "%1$s must have a valid post ID." +msgstr "%1$s tem de ter um ID de conteúdo válido." -#: includes/acf-wp-functions.php:83 pro/options-page.php:51 -msgid "Options" -msgstr "Opções" +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "%s requer um ID de anexo válido." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Mostrar na REST API" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar transparência" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array de RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "String de RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "String hexadecimal" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galeria (apenas Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Clone (apenas Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Conteúdo flexível (apenas Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repetidor (apenas Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:178 +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:74 +msgid "Color value" +msgstr "Valor da cor" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar cor por omissão" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Limpar cor" #: includes/acf-wp-functions.php:87 msgid "Blocks" msgstr "Blocos" -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "Grupo de campos actualizado." +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opções" -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "Grupo de campos eliminado." +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Utilizadores" -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "Grupo de campos publicado." +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Itens de menu" -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "Grupo de campos guardado." +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "Grupo de campos enviado." +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Anexos" -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "Grupo de campos agendado." +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomias" -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "Rascunho de grupo de campos actualizado." +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Artigos" -#: includes/admin/admin-field-group.php:170 -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/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (mais recente)" -#: includes/admin/admin-field-group.php:171 -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/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" -#: includes/admin/admin-field-group.php:172 -msgid "Field group title is required" -msgstr "O título do grupo de campos é obrigatório" +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualização: %s" -#: includes/admin/admin-field-group.php:173 -msgid "Move to trash. Are you sure?" -msgstr "Mover para o lixo. Tem certeza?" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Desculpe, este grupo de campos não está disponível para comparação das " +"diferenças." -#: includes/admin/admin-field-group.php:174 -msgid "No toggle fields available" -msgstr "Nenhum campo de opções disponível" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "O ID do grupo de campos é inválido." -#: includes/admin/admin-field-group.php:175 -msgid "Move Custom Field" -msgstr "Mover campo personalizado" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Os parâmetros do grupo de campos são inválidos." -#: includes/admin/admin-field-group.php:176 -msgid "Checked" -msgstr "Seleccionado" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Por guardar" -#: includes/admin/admin-field-group.php:178 -msgid "(this field)" -msgstr "(este campo)" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Guardado" -#: includes/admin/admin-field-group.php:180 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3646 -msgid "or" -msgstr "ou" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Importar" -#: includes/admin/admin-field-group.php:181 -msgid "Null" -msgstr "Nulo" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Rever alterações" -#: includes/admin/admin-field-group.php:184 -msgid "Has any value" -msgstr "Tem um valor qualquer" +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Localizado em: %s" -#: includes/admin/admin-field-group.php:185 -msgid "Has no value" -msgstr "Não tem valor" +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Localizado no plugin: %s" -#: includes/admin/admin-field-group.php:186 -msgid "Value is equal to" -msgstr "O valor é igual a" - -#: includes/admin/admin-field-group.php:187 -msgid "Value is not equal to" -msgstr "O valor é diferente de" - -#: includes/admin/admin-field-group.php:188 -msgid "Value matches pattern" -msgstr "O valor corresponde ao padrão" - -#: includes/admin/admin-field-group.php:189 -msgid "Value contains" -msgstr "O valor contém" - -#: includes/admin/admin-field-group.php:190 -msgid "Value is greater than" -msgstr "O valor é maior do que" - -#: includes/admin/admin-field-group.php:191 -msgid "Value is less than" -msgstr "O valor é menor do que" - -#: includes/admin/admin-field-group.php:192 -msgid "Selection is greater than" -msgstr "A selecção é maior do que" - -#: includes/admin/admin-field-group.php:193 -msgid "Selection is less than" -msgstr "A selecção é menor do que" - -#: includes/admin/admin-field-group.php:232 -#: includes/admin/admin-field-groups.php:261 -msgid "Location" -msgstr "Localização" - -#: includes/admin/admin-field-group.php:233 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Definições" - -#: includes/admin/admin-field-group.php:362 -msgid "Field Keys" -msgstr "Chaves dos campos" - -#: includes/admin/admin-field-group.php:392 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Activo" - -#: includes/admin/admin-field-group.php:392 -msgid "Inactive" -msgstr "Inactivo" - -#: includes/admin/admin-field-group.php:753 -msgid "Move Complete." -msgstr "Movido com sucesso." - -#: includes/admin/admin-field-group.php:754 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "O campo %s pode agora ser encontrado no grupo de campos %s" - -#: includes/admin/admin-field-group.php:755 -msgid "Close Window" -msgstr "Fechar janela" - -#: includes/admin/admin-field-group.php:796 -msgid "Please select the destination for this field" -msgstr "Por favor seleccione o destinho para este campo" - -#: includes/admin/admin-field-group.php:803 -msgid "Move Field" -msgstr "Mover campo" - -#: includes/admin/admin-field-groups.php:114 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Activo (%s)" -msgstr[1] "Activos (%s)" - -#: includes/admin/admin-field-groups.php:193 -msgid "Review local JSON changes" -msgstr "Revisão das alterações do JSON local" - -#: includes/admin/admin-field-groups.php:194 -msgid "Loading diff" -msgstr "A carregar diferenças" - -#: includes/admin/admin-field-groups.php:195 -#: includes/admin/admin-field-groups.php:529 -msgid "Sync changes" -msgstr "Sincronizar alterações" - -#: includes/admin/admin-field-groups.php:259 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:377 -msgid "Description" -msgstr "Descrição" - -#: includes/admin/admin-field-groups.php:260 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Chave" - -#: includes/admin/admin-field-groups.php:265 -msgid "Local JSON" -msgstr "JSON local" - -#: includes/admin/admin-field-groups.php:415 -msgid "Various" -msgstr "Vários" - -#: includes/admin/admin-field-groups.php:437 -#, php-format +#: includes/admin/admin-field-groups.php:463 msgid "Located in theme: %s" msgstr "Localizado no tema: %s" #: includes/admin/admin-field-groups.php:441 -#, php-format -msgid "Located in plugin: %s" -msgstr "Localizado no plugin: %s" +msgid "Various" +msgstr "Vários" -#: includes/admin/admin-field-groups.php:445 -#, php-format -msgid "Located in: %s" -msgstr "Localizado em: %s" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Sincronizar alterações" -#: includes/admin/admin-field-groups.php:465 -#: includes/admin/admin-field-groups.php:683 -msgid "Sync available" -msgstr "Sincronização disponível" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "A carregar diferenças" -#: includes/admin/admin-field-groups.php:468 -msgid "Sync" -msgstr "Sincronizar" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Revisão das alterações do JSON local" -#: includes/admin/admin-field-groups.php:469 -msgid "Review changes" -msgstr "Rever alterações" - -#: includes/admin/admin-field-groups.php:473 -msgid "Import" -msgstr "Importar" - -#: includes/admin/admin-field-groups.php:477 -msgid "Saved" -msgstr "Guardado" - -#: includes/admin/admin-field-groups.php:480 -msgid "Awaiting save" -msgstr "Por guardar" - -#: includes/admin/admin-field-groups.php:501 -msgid "Duplicate this item" -msgstr "Duplicar este item" - -#: includes/admin/admin-field-groups.php:501 -#: includes/admin/admin-field-groups.php:521 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Duplicate" -msgstr "Duplicar" - -#: includes/admin/admin-field-groups.php:551 -#, php-format -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-field-groups.php:608 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Grupo de campos sincronizado." -msgstr[1] "%s grupos de campos sincronizados." - -#: includes/admin/admin-field-groups.php:794 -#, php-format -msgid "Select %s" -msgstr "Seleccionar %s" - -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Ferramentas" - -#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 -#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Actualizar base de dados" - -#: includes/admin/admin-upgrade.php:199 -msgid "Review sites & upgrade" -msgstr "Rever sites e actualizar" - -#: includes/admin/admin.php:48 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: includes/admin/admin.php:128 includes/admin/admin.php:130 -msgid "Overview" -msgstr "Visão geral" - -#: includes/admin/admin.php:131 -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:133 -#, php-format -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:136 -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:145 includes/admin/admin.php:147 -msgid "Help & Support" -msgstr "Ajuda e suporte" - -#: includes/admin/admin.php:148 -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:151 -#, php-format -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:155 -#, php-format -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:159 -#, php-format -msgid "Help Desk. The support professionals on our Help Desk will assist with your more in depth, technical challenges." -msgstr "Help Desk. Os profissionais de suporte no nosso Help Desk ajudar-lhe-ão com os desafios técnicos mais complexos." - -#: includes/admin/admin.php:168 -msgid "Information" -msgstr "Informações" - -#: includes/admin/admin.php:169 -#, php-format -msgid "Version %s" -msgstr "Versão %s" - -#: includes/admin/admin.php:170 -msgid "View details" -msgstr "Ver detalhes" - -#: includes/admin/admin.php:171 +#: includes/admin/admin.php:172 msgid "Visit website" msgstr "Visitar site" -#: includes/admin/admin.php:200 -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 -msgid "and" -msgstr "e" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalhes" -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Exportar grupos de campos" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versão %s" -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "Gerar PHP" +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Informações" -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Nenhum grupo de campos seleccionado" +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" +"Help Desk. Os profissionais de suporte " +"no nosso Help Desk ajudar-lhe-ão com os desafios técnicos mais complexos." -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Foi exportado 1 grupo de campos." -msgstr[1] "Foram exportados %s grupos de campos." +#: includes/admin/admin.php:156 +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/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Seleccione os grupos de campos" +#: includes/admin/admin.php:152 +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/tools/class-acf-admin-tool-export.php:336 -msgid "Select the field groups you would like to export and then select your export method. Use the download button to export to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code which you can place in your theme." -msgstr "Seleccione os grupos de campos que deseja exportar e seleccione o método de exportação. Utilize o botão Descarregar para exportar um ficheiro .json que poderá depois importar para outra instalação do ACF. Utilize o botão Gerar para exportar o código PHP que poderá incorporar no seu tema." +#: includes/admin/admin.php:149 +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/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "Exportar ficheiro" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ajuda e suporte" -#: includes/admin/tools/class-acf-admin-tool-export.php:414 -msgid "The following code can be used to register a local version of the selected field group(s). A local field group 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." -msgstr "O código abaixo pode ser usado para registar uma versão local do(s) grupo(s) de campos seleccionado(s). Um grupo de campos local tem alguns benefícios, tais como maior velocidade de carregamento, controlo de versão, definições e campos dinâmicos. Copie e cole o código abaixo no ficheiro functions.php do seu tema, ou inclua-o num ficheiro externo." +#: includes/admin/admin.php:137 +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/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Copiar para a área de transferência" +#: includes/admin/admin.php:134 +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/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Copiado" +#: includes/admin/admin.php:132 +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/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Importar grupos de campos" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Visão geral" -#: includes/admin/tools/class-acf-admin-tool-import.php:47 -msgid "Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will import the field groups." -msgstr "Seleccione o ficheiro JSON do Advanced Custom Fields que deseja importar. Ao clicar no botão Importar abaixo, o ACF irá importar os grupos de campos." +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "O tipo de localização \"%s\" já está registado." -#: includes/admin/tools/class-acf-admin-tool-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Seleccionar ficheiro" +#: includes/locations.php:25 +msgid "Class \"%s\" does not exist." +msgstr "A classe \"%s\" não existe." -#: includes/admin/tools/class-acf-admin-tool-import.php:62 -msgid "Import File" -msgstr "Importar ficheiro" +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Nonce inválido." -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:169 -msgid "No file selected" -msgstr "Nenhum ficheiro seleccionado" +#: includes/fields/class-acf-field-user.php:361 +msgid "Error loading field." +msgstr "Erro ao carregar o campo." -#: includes/admin/tools/class-acf-admin-tool-import.php:93 -msgid "Error uploading file. Please try again" -msgstr "Erro ao carregar ficheiro. Por favor tente de novo." +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +msgid "Location not found: %s" +msgstr "Localização não encontrada: %s" -#: includes/admin/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "Tipo de ficheiro incorrecto" +#: includes/forms/form-user.php:353 +msgid "Error: %s" +msgstr "Erro: %s" -#: includes/admin/tools/class-acf-admin-tool-import.php:107 -msgid "Import file empty" -msgstr "Ficheiro de importação vazio" +#: includes/locations/class-acf-location-widget.php:22 +msgid "Widget" +msgstr "Widget" -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Foi importado 1 grupo de campos." -msgstr[1] "Foram importados %s grupos de campos." +#: includes/locations/class-acf-location-user-role.php:24 +msgid "User Role" +msgstr "Papel de utilizador" -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Lógica condicional" +#: includes/locations/class-acf-location-comment.php:22 +msgid "Comment" +msgstr "Comentário" -#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: 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:71 +#: 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:365 +msgid "%s value is required" +msgstr "O valor %s é obrigatório" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 msgid "Show this field if" msgstr "Mostrar este campo se" -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Adicionar grupo de regras" +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Lógica condicional" -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "Arraste para reordenar" +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "e" -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Editar campo" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "JSON local" -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:151 -#: includes/fields/class-acf-field-image.php:131 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:334 -msgid "Edit" -msgstr "Editar" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Campo de clone" -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Duplicar campo" +#: includes/admin/views/html-notice-upgrade.php:31 +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/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Mover campo para outro grupo" +#: includes/admin/views/html-notice-upgrade.php:29 +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/field-group-field.php:47 -msgid "Move" -msgstr "Mover" +#: includes/admin/views/html-notice-upgrade.php:29 +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/field-group-field.php:48 -msgid "Delete field" -msgstr "Eliminar campo" +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Actualização da base de dados necessária" -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Delete" -msgstr "Eliminar" +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opções" -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Legenda do campo" +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galeria" -#: includes/admin/views/field-group-field.php:66 -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/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Conteúdo flexível" -#: includes/admin/views/field-group-field.php:75 -msgid "Field Name" -msgstr "Nome do campo" +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" -#: includes/admin/views/field-group-field.php:76 -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/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Voltar para todas as ferramentas" -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Tipo de campo" +#: includes/admin/views/field-group-options.php:161 +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/field-group-field.php:96 -msgid "Instructions" -msgstr "Instruções" - -#: includes/admin/views/field-group-field.php:97 -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/field-group-field.php:106 -msgid "Required?" -msgstr "Obrigatório?" - -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Atributos do wrapper" - -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "largura" - -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "classe" - -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "id" - -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Fechar campo" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Ordem" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:298 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:583 -msgid "Label" -msgstr "Legenda" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:926 -#: pro/fields/class-acf-field-flexible-content.php:597 -msgid "Name" -msgstr "Nome" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Tipo" - -#: includes/admin/views/field-group-fields.php:14 -msgid "No fields. Click the + Add Field button to create your first field." -msgstr "Nenhum campo. Clique no botão + Adicionar campo para criar seu primeiro campo." - -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Adicionar campo" - -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Regras" - -#: includes/admin/views/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/field-group-options.php:23 -msgid "Style" -msgstr "Estilo" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Predefinido (metabox do WP)" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Simples (sem metabox)" - -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Posição" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Acima (depois do título)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normal (depois do conteúdo)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Lateral" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Posição da legenda" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Alinhado acima" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Alinhado à esquerda" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Posição das instruções" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Abaixo das legendas" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Abaixo dos campos" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Nº. de ordem" - -#: includes/admin/views/field-group-options.php:86 -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/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Mostrado na lista de grupos de campos" - -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Ligação permanente" - -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Editor de conteúdo" - -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Excerto" - -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Discussão" - -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Revisões" - -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Autor" - -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Formato" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Atributos da página" - -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Featured Image" -msgstr "Imagem de destaque" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Categorias" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Etiquetas" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Enviar trackbacks" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Esconder no ecrã" - -#: includes/admin/views/field-group-options.php:129 +#: includes/admin/views/field-group-options.php:161 msgid "Select items to hide them from the edit screen." msgstr "Seleccione os itens a esconder do ecrã de edição." -#: includes/admin/views/field-group-options.php:129 -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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Esconder no ecrã" -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#, php-format -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/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Actualizar sites" +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Categorias" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Atributos da página" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Revisões" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Comentários" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Discussão" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Excerto" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Editor de conteúdo" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Ligação permanente" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Mostrado na lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:122 +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/field-group-options.php:121 +msgid "Order No." +msgstr "Nº. de ordem" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Abaixo dos campos" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Abaixo das legendas" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Posição das instruções" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Posição da legenda" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (depois do conteúdo)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Acima (depois do título)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Posição" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Simples (sem metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Predefinido (metabox do WP)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Chave" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Ordem" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Fechar campo" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "largura" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Atributos do wrapper" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +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/field-group-field.php:203 +msgid "Instructions" +msgstr "Instruções" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:135 +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/field-group-field.php:134 +msgid "Field Name" +msgstr "Nome do campo" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Legenda do campo" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Eliminar" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Eliminar campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Mover campo para outro grupo" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Arraste para reordenar" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos se" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Nenhuma actualização disponível." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "A ler tarefas de actualização..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Falhou ao actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualização concluída." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "A actualizar dados para a versão %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "O site está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 #: includes/admin/views/html-admin-page-upgrade-network.php:47 msgid "Site" msgstr "Site" -#: includes/admin/views/html-admin-page-upgrade-network.php:74 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "O site necessita de actualizar a base de dados de %s para %s" +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar sites" -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "O site está actualizado" +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:93 -#, php-format -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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Adicionar grupo de regras" -#: includes/admin/views/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Por favor, seleccione pelo menos um site para actualizar." +#: includes/admin/views/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/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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/field-group-locations.php:9 +msgid "Rules" +msgstr "Regras" -#: includes/admin/views/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "A actualizar dados para a versão %s" +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Copiado" -#: includes/admin/views/html-admin-page-upgrade-network.php:158 -msgid "Upgrade complete." -msgstr "Actualização concluída." +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Copiar para a área de transferência" -#: includes/admin/views/html-admin-page-upgrade-network.php:161 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Falhou ao actualizar." +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"O código abaixo pode ser usado para registar uma versão local do(s) grupo(s) " +"de campos seleccionado(s). Um grupo de campos local tem alguns benefícios, " +"tais como maior velocidade de carregamento, controlo de versão, definições e " +"campos dinâmicos. Copie e cole o código abaixo no ficheiro functions.php do " +"seu tema, ou inclua-o num ficheiro externo." -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "A ler tarefas de actualização..." +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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/views/html-admin-page-upgrade.php:33 -#, php-format -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/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Seleccione os grupos de campos" -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "Nenhuma actualização disponível." +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Foi exportado 1 grupo de campos." +msgstr[1] "Foram exportados %s 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Foi importado 1 grupo de campos." +msgstr[1] "Foram importados %s grupos de campos." + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Ficheiro de importação vazio" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Tipo de ficheiro incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +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:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importar grupos de campos" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Seleccionar %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicar este item" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descrição" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Sincronização disponível" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de dados" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Por favor seleccione o destinho para este campo" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Fechar janela" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Movido com sucesso." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Chaves dos campos" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Definições" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Localização" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Nulo" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "cópia" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Nenhum campo de opções disponível" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "O título do grupo de campos é obrigatório" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Rascunho de grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Grupo de campos agendado." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Grupo de campos guardado." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 #: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Voltar para todas as ferramentas" +msgid "Tools" +msgstr "Ferramentas" -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Mostrar este grupo de campos se" +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "não é igual a" -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Repetidor" +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "é igual a" -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Conteúdo flexível" +#: includes/locations.php:102 +msgid "Forms" +msgstr "Formulários" -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galeria" +#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:20 -msgid "Options Page" -msgstr "Página de opções" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Artigo" -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Actualização da base de dados necessária" - -#: includes/admin/views/html-notice-upgrade.php:22 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Obrigado por actualizar para o %s v%s!" - -#: includes/admin/views/html-notice-upgrade.php:22 -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/html-notice-upgrade.php:24 -#, php-format -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/ajax/class-acf-ajax-local-json-diff.php:34 -msgid "Invalid field group parameter(s)." -msgstr "Os parâmetros do grupo de campos são inválidos." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:41 -msgid "Invalid field group ID." -msgstr "O ID do grupo de campos é inválido." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:51 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "Desculpe, este grupo de campos não está disponível para comparação das diferenças." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:57 -#, php-format -msgid "Last updated: %s" -msgstr "Última actualização: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:62 -msgid "Original field group" -msgstr "Grupo de campos original" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:66 -msgid "JSON field group (newer)" -msgstr "Grupo de campos JSON (mais recente)" - -#: includes/ajax/class-acf-ajax.php:155 -msgid "Invalid nonce." -msgstr "Nonce inválido." - -#: includes/api/api-helpers.php:844 -msgid "Thumbnail" -msgstr "Miniatura" - -#: includes/api/api-helpers.php:845 -msgid "Medium" -msgstr "Média" - -#: includes/api/api-helpers.php:846 -msgid "Large" -msgstr "Grande" - -#: includes/api/api-helpers.php:895 -msgid "Full Size" -msgstr "Tamanho original" - -#: includes/api/api-helpers.php:1632 includes/api/api-term.php:145 -#: pro/fields/class-acf-field-clone.php:993 -msgid "(no title)" -msgstr "(sem título)" - -#: includes/api/api-helpers.php:3567 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "A largura da imagem deve ser pelo menos de %dpx." - -#: includes/api/api-helpers.php:3572 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "A largura da imagem não deve exceder os %dpx." - -#: includes/api/api-helpers.php:3588 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "A altura da imagem deve ser pelo menos de %dpx." - -#: includes/api/api-helpers.php:3593 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "A altura da imagem não deve exceder os %dpx." - -#: includes/api/api-helpers.php:3611 -#, php-format -msgid "File size must be at least %s." -msgstr "O tamanho do ficheiro deve ser pelo menos de %s." - -#: includes/api/api-helpers.php:3616 -#, php-format -msgid "File size must not exceed %s." -msgstr "O tamanho do ficheiro não deve exceder %s." - -#: includes/api/api-helpers.php:3650 -#, php-format -msgid "File type must be %s." -msgstr "O tipo de ficheiro deve ser %s." - -#: includes/assets.php:343 -msgid "Are you sure?" -msgstr "Tem a certeza?" - -#: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:86 -msgid "Yes" -msgstr "Sim" - -#: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:96 -msgid "No" -msgstr "Não" - -#: includes/assets.php:346 includes/fields/class-acf-field-file.php:153 -#: includes/fields/class-acf-field-image.php:133 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:335 -#: pro/fields/class-acf-field-gallery.php:475 -msgid "Remove" -msgstr "Remover" - -#: includes/assets.php:347 -msgid "Cancel" -msgstr "Cancelar" - -#: includes/assets.php:355 -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/assets.php:358 -msgid "Validation successful" -msgstr "Validação bem sucedida" - -#: includes/assets.php:359 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "A validação falhou" - -#: includes/assets.php:360 -msgid "1 field requires attention" -msgstr "1 campo requer a sua atenção" - -#: includes/assets.php:361 -#, php-format -msgid "%d fields require attention" -msgstr "%d campos requerem a sua atenção" - -#: includes/assets.php:364 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Editar grupo de campos" - -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Tipo de campo não existe" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Desconhecido" - -#: includes/fields.php:349 -msgid "Basic" -msgstr "Básico" - -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Conteúdo" - -#: includes/fields.php:351 -msgid "Choice" -msgstr "Opção" - -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relacional" - -#: includes/fields.php:353 +#: includes/fields.php:358 msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:277 -#: pro/fields/class-acf-field-clone.php:840 -#: pro/fields/class-acf-field-flexible-content.php:554 -#: pro/fields/class-acf-field-flexible-content.php:603 -#: pro/fields/class-acf-field-repeater.php:449 -msgid "Layout" -msgstr "Layout" +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relacional" -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Acordeão" +#: includes/fields.php:356 +msgid "Choice" +msgstr "Opção" -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Aberto" +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" -#: includes/fields/class-acf-field-accordion.php:100 -msgid "Display this accordion as open on page load." -msgstr "Mostrar este item de acordeão aberto ao carregar a página." +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconhecido" -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "Expandir múltiplos" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Tipo de campo não existe" -#: includes/fields/class-acf-field-accordion.php:110 -msgid "Allow this accordion to open without closing others." -msgstr "Permite abrir este item de acordeão sem fechar os restantes." +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Spam detectado" -#: includes/fields/class-acf-field-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Fim" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Artigo actualizado" -#: includes/fields/class-acf-field-accordion.php:120 -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/forms/form-front.php:106 +msgid "Update" +msgstr "Actualizar" -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Grupo de botões" +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "Validar email" -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:222 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Opções" +#: includes/fields.php:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Conteúdo" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:223 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Insira cada opção numa linha separada." +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:223 -#: includes/fields/class-acf-field-select.php:365 -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/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Editar grupo de campos" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:223 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "vermelho : Vermelho" +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "A selecção é menor do que" -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:506 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:231 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:771 -#: includes/fields/class-acf-field-user.php:63 -msgid "Allow Null?" -msgstr "Permitir nulo?" +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "A selecção é maior do que" -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:127 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:268 -#: includes/fields/class-acf-field-range.php:155 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:371 -msgid "Default Value" -msgstr "Valor por omissão" +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "O valor é menor do que" -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:269 -#: includes/fields/class-acf-field-range.php:156 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:372 -msgid "Appears when creating a new post" -msgstr "Mostrado ao criar um novo conteúdo" +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "O valor é maior do que" -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:284 -msgid "Horizontal" -msgstr "Horizontal" +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "O valor contém" -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:283 -msgid "Vertical" -msgstr "Vertical" +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "O valor corresponde ao padrão" -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:214 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:291 -#: includes/fields/class-acf-field-taxonomy.php:816 -msgid "Return Value" -msgstr "Valor devolvido" +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Specify the returned value on front end" -msgstr "Especifica o valor devolvido na frente do site." +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:297 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Valor" +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Não tem valor" -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:299 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "Ambos (Array)" +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Tem um valor qualquer" -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:758 -msgid "Checkbox" -msgstr "Caixa de selecção" +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Seleccionar tudo" +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Tem a certeza?" -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Adicionar nova opção" +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d campos requerem a sua atenção" -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Permitir personalização" +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 campo requer a sua atenção" -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "Permite adicionar valores personalizados" +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "A validação falhou" -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Guardar personalização" +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validação bem sucedida" -#: includes/fields/class-acf-field-checkbox.php:369 +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Restrito" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Minimizar detalhes" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Expandir detalhes" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Carregados neste artigo" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "O tipo de ficheiro deve ser %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "ou" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "O tamanho do ficheiro não deve exceder %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "O tamanho do ficheiro deve ser pelo menos de %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "A altura da imagem não deve exceder os %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "A altura da imagem deve ser pelo menos de %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "A largura da imagem não deve exceder os %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "A largura da imagem deve ser pelo menos de %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sem título)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tamanho original" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Média" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(sem legenda)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Define a altura da área de texto" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 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:381 -#: includes/fields/class-acf-field-select.php:374 +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "Permite adicionar valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Adicionar nova opção" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Seleccionar tudo" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Permitir URL do arquivo" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Adicionar" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Nome" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s adicionado(a)" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s já existe" + +#: includes/fields/class-acf-field-taxonomy.php:856 +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:756 +msgid "Term ID" +msgstr "ID do termo" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Termo" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Carrega os termos a partir dos termos dos conteúdos." + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Carregar termos" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Liga os termos seleccionados ao conteúdo." + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Guardar termos" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Criar termos" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Botões de opções" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Selecção múltipla" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Caixa de selecção" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Valores múltiplos" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Seleccione a apresentação deste campo." + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Apresentação" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Seleccione a taxonomia que será mostrada." + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "" +"Adicionar opção 'outros' para permitir a inserção de valores personalizados" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botão de opção" + +#: includes/fields/class-acf-field-accordion.php:105 +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:94 +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:93 +msgid "Multi-expand" +msgstr "Expandir múltiplos" + +#: includes/fields/class-acf-field-accordion.php:83 +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:82 +msgid "Open" +msgstr "Aberto" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeão" + +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Restringe que ficheiros podem ser carregados." + +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "ID do ficheiro" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL do ficheiro" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Array do ficheiro" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Adicionar ficheiro" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Nenhum ficheiro seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nome do ficheiro" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar ficheiro" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar ficheiro" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Especifica o valor devolvido." + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Utilizar AJAX para carregar opções?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 msgid "Enter each default value on a new line" msgstr "Insira cada valor por omissão numa linha separada" -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Falhou ao carregar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "A pesquisar…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "A carregar mais resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nenhuma correspondência encontrada" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" msgstr "Selecção" -#: includes/fields/class-acf-field-checkbox.php:404 -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-user.php:74 +msgid "User ID" +msgstr "ID do utilizador" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Objecto do utilizador" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Array do utilizador" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Todos os papéis de utilizador" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrar por papel" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar cor" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por omissão" + +#: includes/fields/class-acf-field-color_picker.php:69 +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-color_picker.php:64 -msgid "Clear" -msgstr "Limpar" - -#: includes/fields/class-acf-field-color_picker.php:65 -msgid "Clear color" -msgstr "Limpar cor" - -#: includes/fields/class-acf-field-color_picker.php:66 -msgid "Default" -msgstr "Por omissão" - -#: includes/fields/class-acf-field-color_picker.php:67 -msgid "Select default color" -msgstr "Seleccionar cor por omissão" - -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Select Color" -msgstr "Seleccionar cor" - -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Color value" -msgstr "Valor da cor" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Selecção de data" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Hoje" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Seguinte" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Anterior" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Sem" - -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Formato de visualização" - -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -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:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Personalizado:" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "Formato guardado" - -#: includes/fields/class-acf-field-date_picker.php:198 -msgid "The format used when saving a value" -msgstr "O formato usado ao guardar um valor" - -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:194 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:628 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:79 -#: pro/fields/class-acf-field-gallery.php:554 -msgid "Return Format" -msgstr "Formato devolvido" - -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "O formato devolvido através das template functions" - -#: includes/fields/class-acf-field-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "Semana começa em" - -#: 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-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Escolha a hora" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Hora" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minuto" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Segundo" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milissegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Microsegundo" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Fuso horário" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Agora" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Concluído" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -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 amText" -msgid "AM" -msgstr "AM" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" - #: includes/fields/class-acf-field-date_time_picker.php:85 msgctxt "Date Time Picker JS pmTextShort" msgid "P" msgstr "P" -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "Email" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Texto predefinido" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Mostrado dentro do campo" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Preceder" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Mostrado antes do campo" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:203 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Suceder" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:204 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Mostrado depois do campo" - -#: includes/fields/class-acf-field-email.php:167 -#, php-format -msgid "'%s' is not a valid email address" -msgstr "'%s' não é um endereço de email válido" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Ficheiro" - -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Editar ficheiro" - -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Actualizar ficheiro" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Nome do ficheiro" - -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:247 -#: includes/fields/class-acf-field-file.php:258 -#: includes/fields/class-acf-field-image.php:254 -#: includes/fields/class-acf-field-image.php:283 -#: pro/fields/class-acf-field-gallery.php:639 -#: pro/fields/class-acf-field-gallery.php:668 -msgid "File size" -msgstr "Tamanho do ficheiro" - -#: includes/fields/class-acf-field-file.php:169 -msgid "Add File" -msgstr "Adicionar ficheiro" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File Array" -msgstr "Array do ficheiro" - -#: includes/fields/class-acf-field-file.php:221 -msgid "File URL" -msgstr "URL do ficheiro" - -#: includes/fields/class-acf-field-file.php:222 -msgid "File ID" -msgstr "ID do ficheiro" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:589 -msgid "Library" -msgstr "Biblioteca" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:590 -msgid "Limit the media library choice" -msgstr "Limita a escolha da biblioteca de media." - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:225 -#: includes/locations/class-acf-location-attachment.php:71 -#: includes/locations/class-acf-location-comment.php:59 -#: includes/locations/class-acf-location-nav-menu.php:72 -#: includes/locations/class-acf-location-taxonomy.php:61 -#: includes/locations/class-acf-location-user-form.php:65 -#: includes/locations/class-acf-location-user-role.php:76 -#: includes/locations/class-acf-location-widget.php:63 -#: pro/fields/class-acf-field-gallery.php:595 -#: pro/locations/class-acf-location-block.php:64 -msgid "All" -msgstr "Todos" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:226 -#: pro/fields/class-acf-field-gallery.php:596 -msgid "Uploaded to post" -msgstr "Carregados no artigo" - -#: includes/fields/class-acf-field-file.php:243 -#: includes/fields/class-acf-field-image.php:233 -#: pro/fields/class-acf-field-gallery.php:618 -msgid "Minimum" -msgstr "Mínimo" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "Restringe que ficheiros podem ser carregados." - -#: includes/fields/class-acf-field-file.php:254 -#: includes/fields/class-acf-field-image.php:262 -#: pro/fields/class-acf-field-gallery.php:647 -msgid "Maximum" -msgstr "Máximo" - -#: includes/fields/class-acf-field-file.php:265 -#: includes/fields/class-acf-field-image.php:291 -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Allowed file types" -msgstr "Tipos de ficheiros permitidos" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:292 -#: pro/fields/class-acf-field-gallery.php:676 -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-google-map.php:25 -msgid "Google Map" -msgstr "Mapa do Google" - -#: includes/fields/class-acf-field-google-map.php:59 -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:146 -#: includes/fields/class-acf-field-relationship.php:587 -msgid "Search" -msgstr "Pesquisa" - -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Limpar localização" - -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Encontrar a localização actual" - -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Pesquisar endereço..." - -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Centrar" - -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Centrar o mapa inicial" - -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Definir o nível de zoom inicial" - -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:630 -#: pro/fields/class-acf-field-gallery.php:659 -msgid "Height" -msgstr "Altura" - -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Personalizar a altura do mapa" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupo" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:385 -msgid "Sub Fields" -msgstr "Subcampos" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:841 -msgid "Specify the style used to render the selected fields" -msgstr "Especifica o estilo usado para mostrar os campos seleccionados." - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:846 -#: pro/fields/class-acf-field-flexible-content.php:615 -#: pro/fields/class-acf-field-repeater.php:457 -#: pro/locations/class-acf-location-block.php:20 -msgid "Block" -msgstr "Bloco" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:847 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:456 -msgid "Table" -msgstr "Tabela" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:848 -#: pro/fields/class-acf-field-flexible-content.php:616 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Row" -msgstr "Linha" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Imagem" - -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Seleccionar imagem" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Editar imagem" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Actualizar imagem" - -#: includes/fields/class-acf-field-image.php:66 includes/media.php:61 -msgid "All images" -msgstr "Todas as imagens" - -#: includes/fields/class-acf-field-image.php:148 -msgid "No image selected" -msgstr "Nenhuma imagem seleccionada" - -#: includes/fields/class-acf-field-image.php:148 -msgid "Add Image" -msgstr "Adicionar imagem" - -#: includes/fields/class-acf-field-image.php:200 -#: pro/fields/class-acf-field-gallery.php:560 -msgid "Image Array" -msgstr "Array da imagem" - -#: includes/fields/class-acf-field-image.php:201 -#: pro/fields/class-acf-field-gallery.php:561 -msgid "Image URL" -msgstr "URL da imagem" - -#: includes/fields/class-acf-field-image.php:202 -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image ID" -msgstr "ID da imagem" - -#: includes/fields/class-acf-field-image.php:209 -#: pro/fields/class-acf-field-gallery.php:568 -msgid "Preview Size" -msgstr "Tamanho da pré-visualização" - -#: includes/fields/class-acf-field-image.php:234 -#: includes/fields/class-acf-field-image.php:263 -#: pro/fields/class-acf-field-gallery.php:619 -#: pro/fields/class-acf-field-gallery.php:648 -msgid "Restrict which images can be uploaded" -msgstr "Restringe que imagens podem ser carregadas." - -#: includes/fields/class-acf-field-image.php:237 -#: includes/fields/class-acf-field-image.php:266 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Width" -msgstr "Largura" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Ligação" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Seleccionar ligação" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Abre numa nova janela/separador" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Array da ligação" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "URL da ligação" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Mensagem" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Novas linhas" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Controla como serão visualizadas novas linhas." - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Adicionar parágrafos automaticamente" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Adicionar <br> automaticamente" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Sem formatação" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Mostrar HTML" - -#: 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-number.php:25 -msgid "Number" -msgstr "Número" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:164 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:174 -msgid "Maximum Value" -msgstr "Valor máximo" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:184 -msgid "Step Size" -msgstr "Valor dos passos" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "O valor deve ser um número" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Insira o URL" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Tamanho da incorporação" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Ligação de página" - -#: includes/fields/class-acf-field-page_link.php:170 -msgid "Archives" -msgstr "Arquivo" - -#: includes/fields/class-acf-field-page_link.php:262 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:948 -msgid "Parent" -msgstr "Superior" - -#: includes/fields/class-acf-field-page_link.php:478 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:554 -msgid "Filter by Post Type" -msgstr "Filtrar por tipo de conteúdo" - -#: includes/fields/class-acf-field-page_link.php:486 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:562 -msgid "All post types" -msgstr "Todos os tipos de conteúdo" - -#: includes/fields/class-acf-field-page_link.php:492 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "Filter by Taxonomy" -msgstr "Filtrar por taxonomia" - -#: includes/fields/class-acf-field-page_link.php:500 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:576 -msgid "All taxonomies" -msgstr "Todas as taxonomias" - -#: includes/fields/class-acf-field-page_link.php:516 -msgid "Allow Archives URLs" -msgstr "Permitir URL do arquivo" - -#: includes/fields/class-acf-field-page_link.php:526 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:71 -msgid "Select multiple values?" -msgstr "Seleccionar valores múltiplos?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Senha" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:633 -msgid "Post Object" -msgstr "Conteúdo" - -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:634 -msgid "Post ID" -msgstr "ID do conteúdo" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Botão de opção" - -#: includes/fields/class-acf-field-radio.php:241 -msgid "Other" -msgstr "Outro" - -#: includes/fields/class-acf-field-radio.php:246 -msgid "Add 'other' choice to allow for custom values" -msgstr "Adicionar opção 'outros' para permitir a inserção de valores personalizados" - -#: includes/fields/class-acf-field-radio.php:252 -msgid "Save Other" -msgstr "Guardar outros" - -#: includes/fields/class-acf-field-radio.php:257 -msgid "Save 'other' values to the field's choices" -msgstr "Guardar 'outros' valores nas opções do campo" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervalo" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relação" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "Valor máximo alcançado ( valor {max} )" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "A carregar" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Nenhuma correspondência encontrada" - -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Seleccione tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Seleccione taxonomia" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Pesquisar..." - -#: includes/fields/class-acf-field-relationship.php:582 -msgid "Filters" -msgstr "Filtros" - -#: includes/fields/class-acf-field-relationship.php:588 -#: includes/locations/class-acf-location-post-type.php:20 -msgid "Post Type" -msgstr "Tipo de conteúdo" - -#: includes/fields/class-acf-field-relationship.php:589 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:741 -#: includes/locations/class-acf-location-taxonomy.php:20 -msgid "Taxonomy" -msgstr "Taxonomia" - -#: includes/fields/class-acf-field-relationship.php:596 -msgid "Elements" -msgstr "Elementos" - -#: includes/fields/class-acf-field-relationship.php:597 -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:608 -msgid "Minimum posts" -msgstr "Mínimo de conteúdos" - -#: includes/fields/class-acf-field-relationship.php:617 -msgid "Maximum posts" -msgstr "Máximo de conteúdos" - -#: includes/fields/class-acf-field-relationship.php:721 -#: pro/fields/class-acf-field-gallery.php:776 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s requer pelo menos %s selecção" -msgstr[1] "%s requer pelo menos %s selecções" - -#: 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-select.php:111 -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:112 -#, php-format -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:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Nenhuma correspondência encontrada" - -#: includes/fields/class-acf-field-select.php:114 -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:115 -#, php-format -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:116 -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:117 -#, php-format -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:118 -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:119 -#, php-format -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:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "A carregar mais resultados…" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "A pesquisar…" - -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Falhou ao carregar" - -#: includes/fields/class-acf-field-select.php:259 includes/media.php:54 -msgctxt "verb" +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" msgid "Select" msgstr "Seleccionar" -#: includes/fields/class-acf-field-select.php:402 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "Interface estilizada" +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Concluído" -#: includes/fields/class-acf-field-select.php:412 -msgid "Use AJAX to lazy load choices?" -msgstr "Utilizar AJAX para carregar opções?" +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Agora" -#: includes/fields/class-acf-field-select.php:428 -msgid "Specify the value returned" -msgstr "Especifica o valor devolvido." +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fuso horário" -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Divisória" +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Separador" +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milissegundo" -#: includes/fields/class-acf-field-tab.php:102 +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Fim" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Alinhado à esquerda" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Alinhado acima" + +#: includes/fields/class-acf-field-tab.php:107 msgid "Placement" msgstr "Posição" -#: includes/fields/class-acf-field-tab.php:115 -msgid "Define an endpoint for the previous tabs to stop. This will start a new group of tabs." -msgstr "Define o fim dos separadores anteriores. Isto será o início de um novo grupo de separadores." +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Separador" -#: includes/fields/class-acf-field-taxonomy.php:701 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "Sem %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Select the taxonomy to be displayed" -msgstr "Seleccione a taxonomia que será mostrada." - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Apresentação" - -#: 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:757 -msgid "Multiple Values" -msgstr "Valores múltiplos" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Selecção múltipla" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Valor único" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Botões de opções" - -#: includes/fields/class-acf-field-taxonomy.php:786 -msgid "Create Terms" -msgstr "Criar termos" - -#: includes/fields/class-acf-field-taxonomy.php:787 -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:796 -msgid "Save Terms" -msgstr "Guardar termos" - -#: includes/fields/class-acf-field-taxonomy.php:797 -msgid "Connect selected terms to the post" -msgstr "Liga os termos seleccionados ao conteúdo." - -#: includes/fields/class-acf-field-taxonomy.php:806 -msgid "Load Terms" -msgstr "Carregar termos" - -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Load value from posts terms" -msgstr "Carrega os termos a partir dos termos dos conteúdos." - -#: includes/fields/class-acf-field-taxonomy.php:821 -msgid "Term Object" -msgstr "Termo" - -#: includes/fields/class-acf-field-taxonomy.php:822 -msgid "Term ID" -msgstr "ID do termo" - -#: includes/fields/class-acf-field-taxonomy.php:872 -#, php-format -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:882 -#, php-format -msgid "%s already exists" -msgstr "%s já existe" - -#: includes/fields/class-acf-field-taxonomy.php:914 -#, php-format -msgid "%s added" -msgstr "%s adicionado(a)" - -#: includes/fields/class-acf-field-taxonomy.php:960 -#: includes/locations/class-acf-location-user-form.php:66 -msgid "Add" -msgstr "Adicionar" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Texto" - -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Limite de caracteres" - -#: includes/fields/class-acf-field-text.php:132 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Deixe em branco para não limitar" - -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:213 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "O valor não deve exceder %d caracteres" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Área de texto" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Linhas" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Define a altura da área de texto" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Selecção de hora" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Verdadeiro / Falso" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Texto mostrado ao lado da caixa de selecção" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Texto ligado" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Texto mostrado quando activo" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Texto desligado" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Texto mostrado quando inactivo" +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "O valor deve ser um URL válido" #: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "URL" -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "O valor deve ser um URL válido" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL da ligação" -#: includes/fields/class-acf-field-user.php:20 includes/locations.php:99 -msgid "User" -msgstr "Utilizador" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Array da ligação" -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by role" -msgstr "Filtrar por papel" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Abre numa nova janela/separador" -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Todos os papéis de utilizador" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Seleccionar ligação" -#: includes/fields/class-acf-field-user.php:84 -msgid "User Array" -msgstr "Array do utilizador" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Ligação" -#: includes/fields/class-acf-field-user.php:85 -msgid "User Object" -msgstr "Objecto do utilizador" +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Email" -#: includes/fields/class-acf-field-user.php:86 -msgid "User ID" -msgstr "ID do utilizador" +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Valor dos passos" -#: includes/fields/class-acf-field-user.php:334 -msgid "Error loading field." -msgstr "Erro ao carregar o campo." +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Legenda" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "vermelho : Vermelho" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Insira cada opção numa linha separada." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Seleccionar valores múltiplos?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Permitir nulo?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Atrasar a inicialização?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Mostrar botões de carregar multimédia?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Barra de ferramentas" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Apenas HTML" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Apenas visual" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visual e HTML" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Separadores" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Clique para inicializar o TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "HTML" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" #: includes/fields/class-acf-field-wysiwyg.php:25 msgid "Wysiwyg Editor" msgstr "Editor wysiwyg" -#: includes/fields/class-acf-field-wysiwyg.php:320 -msgid "Visual" -msgstr "Visual" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "O valor não deve exceder %d caracteres" -#: includes/fields/class-acf-field-wysiwyg.php:321 -msgctxt "Name for the Text editor tab (formerly HTML)" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Deixe em branco para não limitar" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limite de caracteres" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Mostrado depois do campo" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Suceder" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Mostrado antes do campo" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Preceder" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Mostrado dentro do campo" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Texto predefinido" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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 "HTML" +msgstr "Texto" -#: includes/fields/class-acf-field-wysiwyg.php:327 -msgid "Click to initialize TinyMCE" -msgstr "Clique para inicializar o TinyMCE" +#: includes/fields/class-acf-field-relationship.php:760 +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-wysiwyg.php:380 -msgid "Tabs" -msgstr "Separadores" +#: includes/fields/class-acf-field-post_object.php:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID do conteúdo" -#: includes/fields/class-acf-field-wysiwyg.php:385 -msgid "Visual & Text" -msgstr "Visual e HTML" +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Conteúdo" -#: includes/fields/class-acf-field-wysiwyg.php:386 -msgid "Visual Only" -msgstr "Apenas visual" +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Máximo de conteúdos" -#: includes/fields/class-acf-field-wysiwyg.php:387 -msgid "Text Only" -msgstr "Apenas HTML" +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Mínimo de conteúdos" -#: includes/fields/class-acf-field-wysiwyg.php:394 -msgid "Toolbar" -msgstr "Barra de ferramentas" +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Imagem de destaque" -#: includes/fields/class-acf-field-wysiwyg.php:409 -msgid "Show Media Upload Buttons?" -msgstr "Mostrar botões de carregar multimédia?" +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Os elementos seleccionados serão mostrados em cada resultado." -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Delay initialization?" -msgstr "Atrasar a inicialização?" +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Elementos" -#: includes/fields/class-acf-field-wysiwyg.php:420 -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-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomia" -#: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:350 -msgid "Title" -msgstr "Título" +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de conteúdo" -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Validar email" +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtros" -#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:507 -#: pro/options-page.php:81 -msgid "Update" -msgstr "Actualizar" +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Todas as taxonomias" -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "Artigo actualizado" +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomia" -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "Spam detectado" +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Todos os tipos de conteúdo" -#: includes/forms/form-user.php:336 -#, php-format -msgid "ERROR: %s" -msgstr "ERRO: %s" +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrar por tipo de conteúdo" -#: includes/locations.php:23 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "A classe \"%s\" não existe." +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Pesquisar..." -#: includes/locations.php:34 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "O tipo de localização \"%s\" já está registado." +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Seleccione taxonomia" -#: includes/locations.php:97 includes/locations/class-acf-location-post.php:20 -msgid "Post" -msgstr "Artigo" +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccione tipo de conteúdo" -#: includes/locations.php:98 includes/locations/class-acf-location-page.php:20 -msgid "Page" -msgstr "Página" +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Nenhuma correspondência encontrada" -#: includes/locations.php:100 -msgid "Forms" -msgstr "Formulários" +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "A carregar" -#: includes/locations/abstract-acf-location.php:103 -msgid "is equal to" -msgstr "é igual a" +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valor máximo alcançado ( valor {max} )" -#: includes/locations/abstract-acf-location.php:104 -msgid "is not equal to" -msgstr "não é igual a" +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relação" -#: includes/locations/class-acf-location-attachment.php:20 -msgid "Attachment" -msgstr "Anexo" +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Lista separada por vírgulas. Deixe em branco para permitir todos os tipos." -#: includes/locations/class-acf-location-attachment.php:82 -#, php-format -msgid "All %s formats" -msgstr "Todos os formatos de %s" +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tipos de ficheiros permitidos" -#: includes/locations/class-acf-location-comment.php:20 -msgid "Comment" -msgstr "Comentário" +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Máximo" -#: includes/locations/class-acf-location-current-user-role.php:20 -msgid "Current User Role" -msgstr "Papel do utilizador actual" +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Tamanho do ficheiro" -#: includes/locations/class-acf-location-current-user-role.php:75 -msgid "Super Admin" -msgstr "Super Administrador" +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Restringe que imagens podem ser carregadas." -#: includes/locations/class-acf-location-current-user.php:20 -msgid "Current User" -msgstr "Utilizador actual" +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Mínimo" -#: includes/locations/class-acf-location-current-user.php:69 -msgid "Logged in" -msgstr "Sessão iniciada" +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Carregados no artigo" -#: includes/locations/class-acf-location-current-user.php:70 -msgid "Viewing front end" -msgstr "A visualizar a frente do site" +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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/locations/class-acf-location-current-user.php:71 -msgid "Viewing back end" -msgstr "A visualizar a administração do site" +#: includes/fields/class-acf-field-file.php:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Limita a escolha da biblioteca de media." -#: includes/locations/class-acf-location-nav-menu-item.php:20 -msgid "Menu Item" -msgstr "Item de menu" +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Biblioteca" -#: includes/locations/class-acf-location-nav-menu.php:20 -msgid "Menu" -msgstr "Menu" +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Tamanho da pré-visualização" -#: includes/locations/class-acf-location-nav-menu.php:78 -msgid "Menu Locations" -msgstr "Localizações do menu" +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID da imagem" -#: includes/locations/class-acf-location-page-parent.php:20 -msgid "Page Parent" -msgstr "Página superior" +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL da imagem" -#: includes/locations/class-acf-location-page-template.php:20 -msgid "Page Template" -msgstr "Modelo de página" +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Array da imagem" -#: includes/locations/class-acf-location-page-template.php:71 -#: includes/locations/class-acf-location-post-template.php:83 -msgid "Default Template" -msgstr "Modelo por omissão" +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Especifica o valor devolvido na frente do site." -#: includes/locations/class-acf-location-page-type.php:20 -msgid "Page Type" -msgstr "Tipo de página" +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Valor devolvido" -#: includes/locations/class-acf-location-page-type.php:106 -msgid "Front Page" -msgstr "Página inicial" +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Adicionar imagem" -#: includes/locations/class-acf-location-page-type.php:107 -msgid "Posts Page" -msgstr "Página de artigos" +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Nenhuma imagem seleccionada" -#: includes/locations/class-acf-location-page-type.php:108 -msgid "Top Level Page (no parent)" -msgstr "Página de topo (sem superior)" +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Remover" -#: includes/locations/class-acf-location-page-type.php:109 -msgid "Parent Page (has children)" -msgstr "Página superior (tem dependentes)" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Child Page (has parent)" -msgstr "Página dependente (tem superior)" - -#: includes/locations/class-acf-location-post-category.php:20 -msgid "Post Category" -msgstr "Categoria de artigo" - -#: includes/locations/class-acf-location-post-format.php:20 -msgid "Post Format" -msgstr "Formato de artigo" - -#: includes/locations/class-acf-location-post-status.php:20 -msgid "Post Status" -msgstr "Estado do conteúdo" - -#: includes/locations/class-acf-location-post-taxonomy.php:20 -msgid "Post Taxonomy" -msgstr "Taxonomia do artigo" - -#: includes/locations/class-acf-location-post-template.php:20 -msgid "Post Template" -msgstr "Modelo de conteúdo" - -#: includes/locations/class-acf-location-user-form.php:20 -msgid "User Form" -msgstr "Formulário de utilizador" - -#: includes/locations/class-acf-location-user-form.php:67 -msgid "Add / Edit" -msgstr "Adicionar / Editar" - -#: includes/locations/class-acf-location-user-form.php:68 -msgid "Register" -msgstr "Registar" - -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Papel de utilizador" - -#: includes/locations/class-acf-location-widget.php:20 -msgid "Widget" -msgstr "Widget" - -#: includes/media.php:55 -msgctxt "verb" +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 msgid "Edit" msgstr "Editar" -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Todas as imagens" -#: includes/media.php:57 -msgid "Uploaded to this post" -msgstr "Carregados neste artigo" +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagem" -#: includes/media.php:58 -msgid "Expand Details" -msgstr "Expandir detalhes" +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagem" -#: includes/media.php:59 -msgid "Collapse Details" -msgstr "Minimizar detalhes" +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "Seleccionar imagem" -#: includes/media.php:60 -msgid "Restricted" -msgstr "Restrito" +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Imagem" -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "O valor %s é obrigatório" +#: includes/fields/class-acf-field-message.php:123 +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." -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "Mostrar HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Sem formatação" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Adicionar <br> automaticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Adicionar parágrafos automaticamente" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Controla como serão visualizadas novas linhas." + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Novas linhas" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Semana começa em" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "O formato usado ao guardar um valor" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Formato guardado" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Seguinte" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoje" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Largura" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Tamanho da incorporação" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Texto mostrado quando inactivo" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Texto desligado" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Texto mostrado quando activo" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Texto ligado" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Valor por omissão" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mensagem" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Não" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Linha" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabela" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Bloco" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Especifica o estilo usado para mostrar os campos seleccionados." + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Personalizar a altura do mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Definir o nível de zoom inicial" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar o mapa inicial" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centrar" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Pesquisar endereço..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar a localização actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Limpar localização" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Pesquisa" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "O formato devolvido através das template functions" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Formato devolvido" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Personalizado:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" +msgstr[1] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Nenhum campo encontrado no lixo" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Nenhum campo encontrado" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Pesquisar campos" + +#: acf.php:409 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Novo campo" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Adicionar novo campo" + +#: acf.php:404 +msgid "Field" +msgstr "Campo" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Campos" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Nenhum grupo de campos encontrado no lixo" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Nenhum grupo de campos encontrado" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Pesquisar grupos de campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Novo grupo de campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Adicionar novo grupo de campos" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Adicionar novo" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" -#: pro/admin/admin-options-page.php:198 -msgid "Publish" -msgstr "Publicado" - -#: pro/admin/admin-options-page.php:204 -#, php-format -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:49 -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:118 pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Actualizações" - -#: pro/admin/admin-updates.php:191 -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/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:19 -#, php-format -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:26 -msgid "License Key" -msgstr "Chave de licença" - -#: pro/admin/views/html-settings-updates.php:58 -msgid "Update Information" -msgstr "Informações de actualização" - -#: pro/admin/views/html-settings-updates.php:65 -msgid "Current Version" -msgstr "Versão actual" - -#: pro/admin/views/html-settings-updates.php:73 -msgid "Latest Version" -msgstr "Última versão" - -#: pro/admin/views/html-settings-updates.php:81 -msgid "Update Available" -msgstr "Actualização disponível" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Update Plugin" -msgstr "Actualizar plugin" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "Please enter your license key above to unlock updates" -msgstr "Por favor, insira acima a sua chave de licença para desbloquear as actualizações" - -#: pro/admin/views/html-settings-updates.php:97 -msgid "Check Again" -msgstr "Verificar de novo" - -#: pro/admin/views/html-settings-updates.php:104 -msgid "Changelog" -msgstr "Registo de alterações" - -#: pro/admin/views/html-settings-updates.php:114 -msgid "Upgrade Notice" -msgstr "Informações sobre a actualização" - -#: pro/blocks.php:37 +#: pro/blocks.php:166 msgid "Block type name is required." msgstr "O nome do tipo de bloco é obrigatório." -#: pro/blocks.php:44 -#, php-format +#: pro/blocks.php:173 msgid "Block type \"%s\" is already registered." msgstr "O tipo de bloco \"%s\" já está registado." -#: pro/blocks.php:444 +#: pro/blocks.php:731 msgid "Switch to Edit" msgstr "Mudar para o editor" -#: pro/blocks.php:445 +#: pro/blocks.php:732 msgid "Switch to Preview" msgstr "Mudar para pré-visualização" -#: pro/blocks.php:446 +#: pro/blocks.php:733 msgid "Change content alignment" msgstr "Alterar o alinhamento do conteúdo" -#: pro/blocks.php:449 -#, php-format +#. translators: %s: Block type title +#: pro/blocks.php:736 msgid "%s settings" msgstr "Definições de %s" +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: 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 "" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Verificar de novo" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "" + +#: pro/admin/admin-options-page.php:195 +msgid "Publish" +msgstr "Publicado" + +#: 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 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:209 +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:196 +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 "Clone" -#: pro/fields/class-acf-field-clone.php:809 +#: pro/fields/class-acf-field-clone.php:815 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:826 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "Visualização" -#: pro/fields/class-acf-field-clone.php:827 +#: pro/fields/class-acf-field-clone.php:835 msgid "Specify the style used to render the clone field" msgstr "Especifica o estilo usado para mostrar o campo de clone." -#: pro/fields/class-acf-field-clone.php:832 +#: pro/fields/class-acf-field-clone.php:840 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:833 +#: pro/fields/class-acf-field-clone.php:841 msgid "Seamless (replaces this field with selected fields)" msgstr "Simples (substitui este campo pelos campos seleccionados)" -#: pro/fields/class-acf-field-clone.php:854 -#, php-format +#: pro/fields/class-acf-field-clone.php:864 msgid "Labels will be displayed as %s" msgstr "As legendas serão mostradas com %s" -#: pro/fields/class-acf-field-clone.php:857 +#: pro/fields/class-acf-field-clone.php:869 msgid "Prefix Field Labels" msgstr "Prefixo nas legendas dos campos" -#: pro/fields/class-acf-field-clone.php:868 -#, php-format +#: pro/fields/class-acf-field-clone.php:880 msgid "Values will be saved as %s" msgstr "Os valores serão guardados como %s" -#: pro/fields/class-acf-field-clone.php:871 +#: pro/fields/class-acf-field-clone.php:885 msgid "Prefix Field Names" msgstr "Prefixos nos nomes dos campos" -#: pro/fields/class-acf-field-clone.php:989 +#: pro/fields/class-acf-field-clone.php:1001 msgid "Unknown field" msgstr "Campo desconhecido" -#: pro/fields/class-acf-field-clone.php:1028 +#: pro/fields/class-acf-field-clone.php:1038 msgid "Unknown field group" msgstr "Grupo de campos desconhecido" -#: pro/fields/class-acf-field-clone.php:1032 -#, php-format +#: pro/fields/class-acf-field-clone.php:1042 msgid "All fields from %s field group" msgstr "Todos os campos do grupo de campos %s" -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:193 -#: pro/fields/class-acf-field-repeater.php:469 +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "Adicionar linha" -#: pro/fields/class-acf-field-flexible-content.php:73 -#: pro/fields/class-acf-field-flexible-content.php:926 -#: pro/fields/class-acf-field-flexible-content.php:1008 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" msgstr[0] "layout" msgstr[1] "layouts" -#: pro/fields/class-acf-field-flexible-content.php:74 +#: pro/fields/class-acf-field-flexible-content.php:72 msgid "layouts" msgstr "layouts" -#: pro/fields/class-acf-field-flexible-content.php:77 -#: pro/fields/class-acf-field-flexible-content.php:925 -#: pro/fields/class-acf-field-flexible-content.php:1007 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 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:78 +#: pro/fields/class-acf-field-flexible-content.php:76 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:81 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{available} {label} {identifier} available (max {max})" msgstr "{available} {identifier} {label} disponível (máx {max})" -#: pro/fields/class-acf-field-flexible-content.php:82 +#: pro/fields/class-acf-field-flexible-content.php:80 msgid "{required} {label} {identifier} required (min {min})" msgstr "{required} {identifier} {label} em falta (mín {min})" -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:83 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:287 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:276 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" @@ -2899,52 +3258,69 @@ msgstr "Duplicar layout" msgid "Remove layout" msgstr "Remover layout" -#: pro/fields/class-acf-field-flexible-content.php:416 -#: pro/fields/class-acf-field-repeater.php:301 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" msgstr "Clique para alternar" -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder Layout" msgstr "Reordenar layout" -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder" msgstr "Reordenar" -#: pro/fields/class-acf-field-flexible-content.php:557 +#: pro/fields/class-acf-field-flexible-content.php:552 msgid "Delete Layout" msgstr "Eliminar layout" -#: pro/fields/class-acf-field-flexible-content.php:558 +#: pro/fields/class-acf-field-flexible-content.php:553 msgid "Duplicate Layout" msgstr "Duplicar layout" -#: pro/fields/class-acf-field-flexible-content.php:559 +#: pro/fields/class-acf-field-flexible-content.php:554 msgid "Add New Layout" msgstr "Adicionar novo layout" -#: pro/fields/class-acf-field-flexible-content.php:631 +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "Mín" -#: pro/fields/class-acf-field-flexible-content.php:644 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "Máx" -#: pro/fields/class-acf-field-flexible-content.php:671 -#: pro/fields/class-acf-field-repeater.php:465 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "Legenda do botão" -#: pro/fields/class-acf-field-flexible-content.php:680 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "Mínimo de layouts" -#: pro/fields/class-acf-field-flexible-content.php:689 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "Máximo de layouts" +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 msgid "Add Image to Gallery" msgstr "Adicionar imagem à galeria" @@ -2953,133 +3329,357 @@ msgstr "Adicionar imagem à galeria" msgid "Maximum selection reached" msgstr "Máximo de selecção alcançado" -#: pro/fields/class-acf-field-gallery.php:319 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "Comprimento" -#: pro/fields/class-acf-field-gallery.php:359 +#: pro/fields/class-acf-field-gallery.php:364 msgid "Caption" msgstr "Legenda" -#: pro/fields/class-acf-field-gallery.php:368 +#: pro/fields/class-acf-field-gallery.php:376 msgid "Alt Text" msgstr "Texto alternativo" -#: pro/fields/class-acf-field-gallery.php:484 +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "Adicionar à galeria" -#: pro/fields/class-acf-field-gallery.php:488 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "Acções por lotes" -#: pro/fields/class-acf-field-gallery.php:489 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "Ordenar por data de carregamento" -#: pro/fields/class-acf-field-gallery.php:490 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "Ordenar por data de modificação" -#: pro/fields/class-acf-field-gallery.php:491 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "Ordenar por título" -#: pro/fields/class-acf-field-gallery.php:492 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "Inverter ordem actual" -#: pro/fields/class-acf-field-gallery.php:504 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "Fechar" -#: pro/fields/class-acf-field-gallery.php:577 +#: pro/fields/class-acf-field-gallery.php:602 msgid "Insert" msgstr "Inserir" -#: pro/fields/class-acf-field-gallery.php:578 +#: pro/fields/class-acf-field-gallery.php:603 msgid "Specify where new attachments are added" msgstr "Especifica onde serão adicionados os novos anexos." -#: pro/fields/class-acf-field-gallery.php:582 +#: pro/fields/class-acf-field-gallery.php:607 msgid "Append to the end" msgstr "No fim" -#: pro/fields/class-acf-field-gallery.php:583 +#: pro/fields/class-acf-field-gallery.php:608 msgid "Prepend to the beginning" msgstr "No início" -#: pro/fields/class-acf-field-gallery.php:602 +#: pro/fields/class-acf-field-gallery.php:633 msgid "Minimum Selection" msgstr "Selecção mínima" -#: pro/fields/class-acf-field-gallery.php:610 +#: pro/fields/class-acf-field-gallery.php:644 msgid "Maximum Selection" msgstr "Selecção máxima" -#: pro/fields/class-acf-field-repeater.php:65 -#: pro/fields/class-acf-field-repeater.php:662 +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "Mínimo de linhas alcançado ({min} linhas)" -#: pro/fields/class-acf-field-repeater.php:66 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "Máximo de linhas alcançado ({max} linhas)" -#: pro/fields/class-acf-field-repeater.php:338 -msgid "Add row" -msgstr "Adicionar linha" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" -#: pro/fields/class-acf-field-repeater.php:339 -msgid "Duplicate row" -msgstr "Duplicar linha" - -#: pro/fields/class-acf-field-repeater.php:340 -msgid "Remove row" -msgstr "Remover linha" - -#: pro/fields/class-acf-field-repeater.php:418 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" msgstr "Minimizado" -#: pro/fields/class-acf-field-repeater.php:419 +#: pro/fields/class-acf-field-repeater.php:175 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:429 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "Mínimo de linhas" -#: pro/fields/class-acf-field-repeater.php:439 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "Máximo de linhas" -#: pro/locations/class-acf-location-block.php:69 +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Adicionar linha" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Duplicar linha" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Remover linha" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +#: 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:68 +#: pro/locations/class-acf-location-options-page.php:70 msgid "No options pages exist" msgstr "Não existem páginas de opções" -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "Opções actualizadas" +#: 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:41 +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 "" + +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Informações de actualização" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Versão actual" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Última versão" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Actualização disponível" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Por favor, insira acima a sua chave de licença para desbloquear as " +"actualizações" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Actualizar plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Registo de alterações" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Informações sobre a actualização" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Desactivado" -#: pro/updates.php:97 #, php-format -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 permitir actualizações, por favor insira a sua chave de licença na página de Actualizações. Se não tiver uma chave de licença, por favor veja os detalhes e preços." +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Desactivado (%s)" +#~ msgstr[1] "Desactivados (%s)" -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Mover para o lixo. Tem certeza?" -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Personalize o WordPress com campos intuitivos, poderosos e profissionais." +#~ msgid "Inactive" +#~ msgstr "Inactivo" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "O campo %s pode agora ser encontrado no grupo de campos %s" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Seleccione os grupos de campos que deseja exportar e seleccione o método " +#~ "de exportação. Utilize o botão Descarregar para exportar um ficheiro ." +#~ "json que poderá depois importar para outra instalação do ACF. Utilize o " +#~ "botão Gerar para exportar o código PHP que poderá incorporar no seu tema." + +#~ msgid "Export File" +#~ msgstr "Exportar ficheiro" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Seleccione o ficheiro JSON do Advanced Custom Fields que deseja importar. " +#~ "Ao clicar no botão Importar abaixo, o ACF irá importar os grupos de " +#~ "campos." + +#~ msgid "Import File" +#~ msgstr "Importar ficheiro" + +#~ msgid "Required?" +#~ msgstr "Obrigatório?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Nenhum campo. Clique no botão + Adicionar campo para " +#~ "criar seu primeiro campo." + +#~ msgid "+ Add Field" +#~ msgstr "+ Adicionar campo" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "O site necessita de actualizar a base de dados de %s para %s" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Obrigado por actualizar para o %s v%s!" + +#~ msgid "Allow Custom" +#~ msgstr "Permitir personalização" + +#~ msgid "Save Custom" +#~ msgstr "Guardar personalização" + +#~ msgid "Toggle" +#~ msgstr "Selecção" + +#~ msgid "Other" +#~ msgstr "Outro" + +#~ msgid "Save Other" +#~ msgstr "Guardar outros" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s requer pelo menos %s selecção" +#~ msgstr[1] "%s requer pelo menos %s selecções" + +#~ msgid "Stylised UI" +#~ msgstr "Interface estilizada" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Define o fim dos separadores anteriores. Isto será o início de um novo " +#~ "grupo de separadores." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Sem %s" + +#, php-format +#~ msgid "ERROR: %s" +#~ msgstr "ERRO: %s" + +#, php-format +#~ 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 permitir actualizações, por favor insira a sua chave de licença na " +#~ "página de Actualizações. Se não tiver uma chave de " +#~ "licença, por favor veja os detalhes e preços." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" diff --git a/lang/acf-ro_RO.mo b/lang/acf-ro_RO.mo index ea2a339..af1130e 100644 Binary files a/lang/acf-ro_RO.mo and b/lang/acf-ro_RO.mo differ diff --git a/lang/acf-ro_RO.po b/lang/acf-ro_RO.po index b546ae9..39c0f1d 100644 --- a/lang/acf-ro_RO.po +++ b/lang/acf-ro_RO.po @@ -1,27 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2018-04-16 17:11+1000\n" -"PO-Revision-Date: 2019-11-12 08:00+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Elliot Condon \n" "Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" -"X-Generator: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:81 msgid "Advanced Custom Fields" @@ -1436,8 +1434,7 @@ msgstr "Relațional" msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:149 -#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177 #: includes/fields/class-acf-field-checkbox.php:389 #: includes/fields/class-acf-field-group.php:474 #: includes/fields/class-acf-field-radio.php:290 @@ -2725,8 +2722,8 @@ msgstr "Editează Grupul de Câmpuri" msgid "Validate Email" msgstr "" -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 +#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573 +#: pro/options-page.php:81 msgid "Update" msgstr "Actualizează" diff --git a/lang/acf-ru_RU.mo b/lang/acf-ru_RU.mo index 319c358..d633bcf 100644 Binary files a/lang/acf-ru_RU.mo and b/lang/acf-ru_RU.mo differ diff --git a/lang/acf-ru_RU.po b/lang/acf-ru_RU.po index 8f2e550..4862ad8 100644 --- a/lang/acf-ru_RU.po +++ b/lang/acf-ru_RU.po @@ -1,27 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2018-08-18 18:25+0300\n" -"PO-Revision-Date: 2019-01-05 10:08+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: \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: Poedit 1.8.1\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:80 msgid "Advanced Custom Fields" @@ -1450,8 +1448,7 @@ msgstr "Отношение" msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:354 -#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 #: includes/fields/class-acf-field-checkbox.php:389 #: includes/fields/class-acf-field-group.php:474 #: includes/fields/class-acf-field-radio.php:290 @@ -2725,8 +2722,8 @@ msgstr "Редактировать группу полей" msgid "Validate Email" msgstr "Проверка Email" -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81 +#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:588 +#: pro/options-page.php:81 msgid "Update" msgstr "Обновить" diff --git a/lang/acf-sk_SK.mo b/lang/acf-sk_SK.mo old mode 100755 new mode 100644 index a84d47b..87b2768 Binary files a/lang/acf-sk_SK.mo and b/lang/acf-sk_SK.mo differ diff --git a/lang/acf-sk_SK.po b/lang/acf-sk_SK.po index e7913b6..9e382fb 100644 --- a/lang/acf-sk_SK.po +++ b/lang/acf-sk_SK.po @@ -1,25 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2015-08-11 23:45+0200\n" -"PO-Revision-Date: 2018-02-06 10:07+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: wp.sk \n" "Language: sk_SK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;" -"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:63 msgid "Advanced Custom Fields" @@ -33,7 +33,8 @@ msgstr "Skupiny polí" msgid "Field Group" msgstr "Skupina polí" -#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517 +#: acf.php:207 acf.php:239 admin/admin.php:62 +#: pro/fields/flexible-content.php:517 msgid "Add New" msgstr "Pridať novú" @@ -65,7 +66,8 @@ msgstr "Nenašla sa skupina polí " msgid "No Field Groups found in Trash" msgstr "V koši sa nenašla skupina polí " -#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519 +#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 +#: admin/field-groups.php:519 msgid "Fields" msgstr "Polia " @@ -81,7 +83,8 @@ msgstr "Pridať nové pole" msgid "Edit Field" msgstr "Upraviť pole" -#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111 +#: acf.php:242 admin/views/field-group-fields.php:18 +#: admin/views/settings-info.php:111 msgid "New Field" msgstr "Nové pole " @@ -101,7 +104,8 @@ msgstr "Nenašli sa polia" msgid "No Fields found in Trash" msgstr "V koši sa nenašli polia" -#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 admin/views/field-group-options.php:18 +#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 +#: admin/views/field-group-options.php:18 msgid "Disabled" msgstr "" @@ -165,8 +169,10 @@ msgstr "Nadpis skupiny poľa je povinný " msgid "copy" msgstr "kopírovať " -#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67 -#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23 +#: admin/field-group.php:181 +#: admin/views/field-group-field-conditional-logic.php:67 +#: admin/views/field-group-field-conditional-logic.php:162 +#: admin/views/field-group-locations.php:23 #: admin/views/field-group-locations.php:131 api/api-helpers.php:3262 msgid "or" msgstr "alebo" @@ -255,8 +261,10 @@ msgstr "Zobrazenie administrácie" msgid "Super Admin" msgstr "Super Admin " -#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840 admin/field-group.php:847 -#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 fields/image.php:226 pro/fields/gallery.php:653 +#: admin/field-group.php:818 admin/field-group.php:826 +#: admin/field-group.php:840 admin/field-group.php:847 +#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 +#: fields/image.php:226 pro/fields/gallery.php:653 msgid "All" msgstr "Všetky " @@ -331,8 +339,8 @@ msgstr "Dostupná aktualizácia " msgid "Title" msgstr "Názov" -#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20 -#: admin/views/update-network.php:28 +#: admin/field-groups.php:517 admin/views/field-group-options.php:98 +#: admin/views/update-network.php:20 admin/views/update-network.php:28 msgid "Description" msgstr "" @@ -340,7 +348,8 @@ msgstr "" msgid "Status" msgstr "" -#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111 +#: admin/field-groups.php:616 admin/settings-info.php:76 +#: pro/admin/views/settings-updates.php:111 msgid "Changelog" msgstr "Záznam zmien " @@ -360,7 +369,8 @@ msgstr "Zdroje " msgid "Getting Started" msgstr "Začíname " -#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17 +#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 +#: pro/admin/views/settings-updates.php:17 msgid "Updates" msgstr "Aktualizácie" @@ -396,8 +406,8 @@ msgstr "Vytvoril " msgid "Duplicate this item" msgstr "Duplikovať toto pole " -#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58 -#: pro/fields/flexible-content.php:516 +#: admin/field-groups.php:673 admin/field-groups.php:685 +#: admin/views/field-group-field.php:58 pro/fields/flexible-content.php:516 msgid "Duplicate" msgstr "Duplikovať " @@ -430,7 +440,8 @@ msgstr "Info" msgid "What's New" msgstr "Čo je nové " -#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31 +#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 +#: admin/views/settings-tools.php:31 msgid "Tools" msgstr "" @@ -461,8 +472,12 @@ msgstr "Úspech. Nástroj importu pridal %s skupiny polí: %s" #: admin/settings-tools.php:332 #, php-format -msgid "Warning. Import tool detected %s field groups already exist and have been ignored: %s" -msgstr "Varovanie. Nástroj importu zistil, že už exsituje %s polí skupín, ktoré boli ignorované: %s" +msgid "" +"Warning. Import tool detected %s field groups already exist and have " +"been ignored: %s" +msgstr "" +"Varovanie. Nástroj importu zistil, že už exsituje %s polí skupín, " +"ktoré boli ignorované: %s" #: admin/update.php:113 msgid "Upgrade ACF" @@ -484,19 +499,26 @@ msgstr "" msgid "Conditional Logic" msgstr "Podmienená logika " -#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137 fields/checkbox.php:246 -#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 fields/post_object.php:434 -#: fields/post_object.php:448 fields/select.php:411 fields/select.php:425 fields/select.php:439 fields/select.php:453 -#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 -#: fields/user.php:457 fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93 +#: admin/views/field-group-field-conditional-logic.php:40 +#: admin/views/field-group-field.php:137 fields/checkbox.php:246 +#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 +#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 +#: fields/select.php:425 fields/select.php:439 fields/select.php:453 +#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784 +#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457 +#: fields/user.php:471 fields/wysiwyg.php:384 +#: pro/admin/views/settings-updates.php:93 msgid "Yes" msgstr "Áno " -#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138 fields/checkbox.php:247 -#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 fields/post_object.php:435 -#: fields/post_object.php:449 fields/select.php:412 fields/select.php:426 fields/select.php:440 fields/select.php:454 -#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 -#: fields/taxonomy.php:813 fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385 +#: admin/views/field-group-field-conditional-logic.php:41 +#: admin/views/field-group-field.php:138 fields/checkbox.php:247 +#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 +#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 +#: fields/select.php:426 fields/select.php:440 fields/select.php:454 +#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771 +#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813 +#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385 #: pro/admin/views/settings-updates.php:103 msgid "No" msgstr "Nie" @@ -505,19 +527,23 @@ msgstr "Nie" msgid "Show this field if" msgstr "Zobraziť toto pole ak" -#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88 +#: admin/views/field-group-field-conditional-logic.php:111 +#: admin/views/field-group-locations.php:88 msgid "is equal to" msgstr "sa rovná " -#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89 +#: admin/views/field-group-field-conditional-logic.php:112 +#: admin/views/field-group-locations.php:89 msgid "is not equal to" msgstr "sa nerovná" -#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118 +#: admin/views/field-group-field-conditional-logic.php:149 +#: admin/views/field-group-locations.php:118 msgid "and" msgstr "a" -#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133 +#: admin/views/field-group-field-conditional-logic.php:164 +#: admin/views/field-group-locations.php:133 msgid "Add rule group" msgstr "Pridať skupinu pravidiel " @@ -549,7 +575,8 @@ msgstr "Vymazať pole" msgid "Delete" msgstr "Vymazať" -#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886 +#: admin/views/field-group-field.php:68 fields/oembed.php:212 +#: fields/taxonomy.php:886 msgid "Error" msgstr "Chyba " @@ -630,8 +657,12 @@ msgid "Type" msgstr "Typ" #: admin/views/field-group-fields.php:44 -msgid "No fields. Click the + Add Field button to create your first field." -msgstr "Žiadne polia. Kliknite na tlačidlo + Pridať pole pre vytvorenie prvého poľa. " +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Žiadne polia. Kliknite na tlačidlo + Pridať pole pre " +"vytvorenie prvého poľa. " #: admin/views/field-group-fields.php:51 msgid "Drag and drop to reorder" @@ -646,14 +677,19 @@ msgid "Rules" msgstr "Pravidlá " #: admin/views/field-group-locations.php:6 -msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" -msgstr "Vytvorte súbor pravidiel určujúcich, ktoré obrazovky úprav budú používať Vlastné polia" +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Vytvorte súbor pravidiel určujúcich, ktoré obrazovky úprav budú používať " +"Vlastné polia" #: admin/views/field-group-locations.php:21 msgid "Show this field group if" msgstr "Zobraziť túto skupinu poľa ak " -#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47 +#: admin/views/field-group-locations.php:41 +#: admin/views/field-group-locations.php:47 msgid "Post" msgstr "Príspevok " @@ -677,7 +713,8 @@ msgstr "Kategória príspevku " msgid "Post Taxonomy" msgstr "Taxonómia príspevku " -#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53 +#: admin/views/field-group-locations.php:49 +#: admin/views/field-group-locations.php:53 msgid "Page" msgstr "Stránka " @@ -807,11 +844,11 @@ msgstr "Vybrať položky pre ich skrytie pred obrazovkou úprav." #: admin/views/field-group-options.php:110 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)" +"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 "" -"Ak viaceré skupiny polí sa zobrazia na obrazovke úprav, nastavenia prvej skupiny budú použité (tá s najnižším poradovým " -"číslom)" +"Ak viaceré skupiny polí sa zobrazia na obrazovke úprav, nastavenia prvej " +"skupiny budú použité (tá s najnižším poradovým číslom)" #: admin/views/field-group-options.php:117 msgid "Permalink" @@ -883,8 +920,12 @@ msgstr "Víta vás Advanced Custom Fields " #: admin/views/settings-info.php:10 #, php-format -msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it." -msgstr "Vďaka za zakutalizáciu! ACF %s je väčšie a lepšie než kedykoľvek predtým. Dúfame, že sa vám páči." +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Vďaka za zakutalizáciu! ACF %s je väčšie a lepšie než kedykoľvek predtým. " +"Dúfame, že sa vám páči." #: admin/views/settings-info.php:23 msgid "A smoother custom field experience" @@ -896,11 +937,12 @@ msgstr "Vylepšená použiteľnosť" #: admin/views/settings-info.php:29 msgid "" -"Including the popular Select2 library has improved both usability and speed across a number of field types including " -"post object, page link, taxonomy and select." +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." msgstr "" -"Populárna knižnica Select2 obsahuje vylepšenú použiteľnosť a rýchlosť medzi všetkými poliami vrátane objektov, odkazov " -"taxonómie a výberov." +"Populárna knižnica Select2 obsahuje vylepšenú použiteľnosť a rýchlosť medzi " +"všetkými poliami vrátane objektov, odkazov taxonómie a výberov." #: admin/views/settings-info.php:33 msgid "Improved Design" @@ -908,11 +950,12 @@ msgstr "Vylepšený dizajn" #: admin/views/settings-info.php:34 msgid "" -"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are seen on the " -"gallery, relationship and oEmbed (new) fields!" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" msgstr "" -"Vela polí prebehlo grafickou úpravou. Teraz ACF vyzerá oveľa lepšie! Zmeny uvidíte v galérii, vzťahoch a OEmbed " -"(vložených) poliach!" +"Vela polí prebehlo grafickou úpravou. Teraz ACF vyzerá oveľa lepšie! Zmeny " +"uvidíte v galérii, vzťahoch a OEmbed (vložených) poliach!" #: admin/views/settings-info.php:38 msgid "Improved Data" @@ -920,11 +963,12 @@ msgstr "Vylepšené dáta" #: admin/views/settings-info.php:39 msgid "" -"Redesigning the data architecture has allowed sub fields to live independently from their parents. This allows you to " -"drag and drop fields in and out of parent fields!" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" msgstr "" -"Zmena dátovej architektúry priniesla nezávislosť odvodených polí od nadradených. Toto vám dovoľuje prenášat polia mimo " -"nadradených polí!" +"Zmena dátovej architektúry priniesla nezávislosť odvodených polí od " +"nadradených. Toto vám dovoľuje prenášat polia mimo nadradených polí!" #: admin/views/settings-info.php:45 msgid "Goodbye Add-ons. Hello PRO" @@ -935,17 +979,21 @@ msgid "Introducing ACF PRO" msgstr "Pro verzia " #: admin/views/settings-info.php:51 -msgid "We're changing the way premium functionality is delivered in an exciting way!" -msgstr "Prémiové funkcie modulu sme sa rozhodli poskytnúť vzrušujúcejším spôsobom!" +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" +"Prémiové funkcie modulu sme sa rozhodli poskytnúť vzrušujúcejším spôsobom!" #: admin/views/settings-info.php:52 #, php-format msgid "" -"All 4 premium add-ons have been combined into a new Pro version of ACF. With both personal and " -"developer licenses available, premium functionality is more affordable and accessible than ever before!" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" msgstr "" -"Všetky prémiové doplnky boli spojené do Pro verzie ACF. Prémiové funkcie sú dostupnejšie a " -"prístupnejšie aj pomocou personálnych a firemmných licencií!" +"Všetky prémiové doplnky boli spojené do Pro verzie ACF. " +"Prémiové funkcie sú dostupnejšie a prístupnejšie aj pomocou personálnych a " +"firemmných licencií!" #: admin/views/settings-info.php:56 msgid "Powerful Features" @@ -953,10 +1001,12 @@ msgstr "Výkonné funkcie" #: admin/views/settings-info.php:57 msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful gallery field and the " -"ability to create extra admin options pages!" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" msgstr "" -"ACF PRO obsahuje opakovanie zadaných dát, flexibilné rozloženie obsahu, prekrásnu galériu a extra administračné stránky!" +"ACF PRO obsahuje opakovanie zadaných dát, flexibilné rozloženie obsahu, " +"prekrásnu galériu a extra administračné stránky!" #: admin/views/settings-info.php:58 #, php-format @@ -969,17 +1019,23 @@ msgstr "Ľahká aktualizácia" #: admin/views/settings-info.php:63 #, php-format -msgid "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" -msgstr "Pre uľahčenie aktualizácie, prihláste sa do obchodu a získajte zdarma ACF PRO!" +msgid "" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" +msgstr "" +"Pre uľahčenie aktualizácie, prihláste sa do obchodu a " +"získajte zdarma ACF PRO!" #: admin/views/settings-info.php:64 #, php-format msgid "" -"We also wrote an upgrade guide to answer any questions, but if you do have one, please contact our " -"support team via the help desk" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" msgstr "" -"Napísali sme príručku k aktualizácii. Zodpovedali sme väčšinu otázok, ak však máte nejaké ďaľšie " -"kontaktuje našu podporu" +"Napísali sme príručku k aktualizácii. Zodpovedali sme " +"väčšinu otázok, ak však máte nejaké ďaľšie kontaktuje našu " +"podporu" #: admin/views/settings-info.php:72 msgid "Under the Hood" @@ -1014,7 +1070,9 @@ msgid "Better version control" msgstr "Lepšia správa verzií" #: admin/views/settings-info.php:95 -msgid "New auto export to JSON feature allows field settings to be version controlled" +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" msgstr "Nový auto export JSON obsahuje kontrolu verzií povolených polí" #: admin/views/settings-info.php:99 @@ -1050,8 +1108,12 @@ msgid "New Settings" msgstr "Nové nastavenia" #: admin/views/settings-info.php:122 -msgid "Field group settings have been added for label placement and instruction placement" -msgstr "Boli pridané nastavenie skupiny pola pre umiestnenie oznčenia a umietsntenie inštrukcií" +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "" +"Boli pridané nastavenie skupiny pola pre umiestnenie oznčenia a umietsntenie " +"inštrukcií" #: admin/views/settings-info.php:128 msgid "Better Front End Forms" @@ -1074,16 +1136,22 @@ msgid "Relationship Field" msgstr "Vzťah polí" #: admin/views/settings-info.php:139 -msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" -msgstr "Nový nastavenie vťahov pola 'FIltre' (vyhľadávanie, typ článku, taxonómia)" +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "" +"Nový nastavenie vťahov pola 'FIltre' (vyhľadávanie, typ článku, taxonómia)" #: admin/views/settings-info.php:145 msgid "Moving Fields" msgstr "Hýbajúce polia" #: admin/views/settings-info.php:146 -msgid "New field group functionality allows you to move a field between groups & parents" -msgstr "Nová skupinová funkcionalita vám dovolí presúvať polia medzi skupinami a nadradenými poliami" +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" +msgstr "" +"Nová skupinová funkcionalita vám dovolí presúvať polia medzi skupinami a " +"nadradenými poliami" #: admin/views/settings-info.php:150 fields/page_link.php:36 msgid "Page Link" @@ -1098,8 +1166,12 @@ msgid "Better Options Pages" msgstr "Lepšie nastavenia stránok" #: admin/views/settings-info.php:156 -msgid "New functions for options page allow creation of both parent and child menu pages" -msgstr "Nové funkcie nastavenia stránky vám dovolí vytvorenie vytvorenie menu nadradených aj odvodených stránok" +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" +msgstr "" +"Nové funkcie nastavenia stránky vám dovolí vytvorenie vytvorenie menu " +"nadradených aj odvodených stránok" #: admin/views/settings-info.php:165 #, php-format @@ -1112,13 +1184,16 @@ msgstr "Export skupiny poľa do PHP " #: admin/views/settings-tools-export.php:17 msgid "" -"The following code can be used to register a local version of the selected field group(s). A local field group 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." +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." msgstr "" -"Nasledujúci kód môže byť použitý pre miestnu veru vybraných polí skupín. Lokálna skupina polí poskytuje rýchlejšie " -"načítanie, lepšiu kontrolu verzií a dynamické polia a ich nastavenia. Jednoducho skopírujte nasledujúci kód do súboru " -"funkcií vašej témy functions.php alebo ich zahrňte v externom súbore." +"Nasledujúci kód môže byť použitý pre miestnu veru vybraných polí skupín. " +"Lokálna skupina polí poskytuje rýchlejšie načítanie, lepšiu kontrolu verzií " +"a dynamické polia a ich nastavenia. Jednoducho skopírujte nasledujúci kód do " +"súboru funkcií vašej témy functions.php alebo ich zahrňte v externom súbore." #: admin/views/settings-tools.php:5 msgid "Select Field Groups" @@ -1130,13 +1205,15 @@ msgstr "Export skupín polí " #: admin/views/settings-tools.php:38 msgid "" -"Select the field groups you would like to export and then select your export method. Use the download button to export " -"to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code " -"which you can place in your theme." +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." msgstr "" -"Vyberte skupiny polí, ktoré chcete exportovať. Vyberte vhodnú metódu exportu. Tlačidlo Stiahnuť vám exportuje dáta do ." -"json súboru. Tento súbor môžete použiť v inej ACF inštalácii. Tlačidlo Generovať vám vyvtorí PHP kód, ktorý použijete vo " -"vašej téme." +"Vyberte skupiny polí, ktoré chcete exportovať. Vyberte vhodnú metódu " +"exportu. Tlačidlo Stiahnuť vám exportuje dáta do .json súboru. Tento súbor " +"môžete použiť v inej ACF inštalácii. Tlačidlo Generovať vám vyvtorí PHP kód, " +"ktorý použijete vo vašej téme." #: admin/views/settings-tools.php:50 msgid "Download export file" @@ -1152,9 +1229,11 @@ msgstr "Importovať skupiny poľa" #: admin/views/settings-tools.php:67 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will " -"import the field groups." -msgstr "Vyberte JSON súbor ACF na import. Po kliknutí na tlačidlo import sa nahrajú všetky skupiny polí ACF." +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Vyberte JSON súbor ACF na import. Po kliknutí na tlačidlo import sa nahrajú " +"všetky skupiny polí ACF." #: admin/views/settings-tools.php:77 fields/file.php:46 msgid "Select File" @@ -1169,7 +1248,9 @@ msgid "Advanced Custom Fields Database Upgrade" msgstr "" #: admin/views/update-network.php:10 -msgid "The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade Database”." +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click “Upgrade Database”." msgstr "" #: admin/views/update-network.php:19 admin/views/update-network.php:27 @@ -1186,13 +1267,17 @@ msgid "Site is up to date" msgstr "" #: admin/views/update-network.php:62 admin/views/update.php:16 -msgid "Database Upgrade complete. Return to network dashboard" +msgid "" +"Database Upgrade complete. Return to network dashboard" msgstr "" #: admin/views/update-network.php:101 admin/views/update-notice.php:35 msgid "" -"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "Pred aktualizáciou odporúčame zálohovať databázu. Želáte si aktualizáciu spustiť teraz?" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "" +"Pred aktualizáciou odporúčame zálohovať databázu. Želáte si aktualizáciu " +"spustiť teraz?" #: admin/views/update-network.php:157 msgid "Upgrade complete" @@ -1212,8 +1297,12 @@ msgid "Thank you for updating to %s v%s!" msgstr "Vďaka za aktualizáciu %s v%s!" #: admin/views/update-notice.php:25 -msgid "Before you start using the new awesome features, please update your database to the newest version." -msgstr "Než začnete používať nové funkcie, prosím najprv aktualizujte vašu databázu na najnovšiu verziu." +msgid "" +"Before you start using the new awesome features, please update your database " +"to the newest version." +msgstr "" +"Než začnete používať nové funkcie, prosím najprv aktualizujte vašu databázu " +"na najnovšiu verziu." #: admin/views/update.php:12 msgid "Reading upgrade tasks..." @@ -1315,8 +1404,8 @@ msgstr "Relačný " msgid "jQuery" msgstr "jQuery " -#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512 -#: pro/fields/repeater.php:392 +#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 +#: pro/fields/flexible-content.php:512 pro/fields/repeater.php:392 msgid "Layout" msgstr "Rozmiestnenie" @@ -1378,9 +1467,10 @@ msgstr "Pre lepšiu kontrolu, môžete určiť hodnotu a popis takto:" msgid "red : Red" msgstr "červená : Červená " -#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150 fields/radio.php:222 -#: fields/select.php:397 fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115 fields/url.php:117 -#: fields/wysiwyg.php:345 +#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 +#: fields/number.php:150 fields/radio.php:222 fields/select.php:397 +#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115 +#: fields/url.php:117 fields/wysiwyg.php:345 msgid "Default Value" msgstr "Základná hodnota " @@ -1460,34 +1550,39 @@ msgstr "Týždeň začína " msgid "Email" msgstr "E-Mail " -#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 fields/textarea.php:146 -#: fields/url.php:118 fields/wysiwyg.php:346 +#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 +#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118 +#: fields/wysiwyg.php:346 msgid "Appears when creating a new post" msgstr "Zobrazí sa pri vytvorení nového príspevku " -#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 fields/textarea.php:154 -#: fields/url.php:126 +#: fields/email.php:133 fields/number.php:159 fields/password.php:137 +#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126 msgid "Placeholder Text" msgstr "Zástupný text " -#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 fields/textarea.php:155 -#: fields/url.php:127 +#: fields/email.php:134 fields/number.php:160 fields/password.php:138 +#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127 msgid "Appears within the input" msgstr "Zobrazí sa vo vstupe" -#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166 +#: fields/email.php:142 fields/number.php:168 fields/password.php:146 +#: fields/text.php:166 msgid "Prepend" msgstr "Predpona" -#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167 +#: fields/email.php:143 fields/number.php:169 fields/password.php:147 +#: fields/text.php:167 msgid "Appears before the input" msgstr "Zobrazí sa pred vstupom" -#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175 +#: fields/email.php:151 fields/number.php:177 fields/password.php:155 +#: fields/text.php:175 msgid "Append" msgstr "Prípona" -#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176 +#: fields/email.php:152 fields/number.php:178 fields/password.php:156 +#: fields/text.php:176 msgid "Appears after the input" msgstr "Zobrazí sa po vstupe" @@ -1563,8 +1658,8 @@ msgstr "Minimálny počet" msgid "Restrict which files can be uploaded" msgstr "Vymedzte, ktoré súbory je možné nahrať" -#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 pro/fields/gallery.php:684 -#: pro/fields/gallery.php:717 +#: fields/file.php:247 fields/file.php:258 fields/image.php:257 +#: fields/image.php:290 pro/fields/gallery.php:684 pro/fields/gallery.php:717 msgid "File size" msgstr "Veľkosť súboru " @@ -1620,8 +1715,8 @@ msgstr "Zoom" msgid "Set the initial zoom level" msgstr "Nastavte základnú úroveň priblíženia" -#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262 pro/fields/gallery.php:673 -#: pro/fields/gallery.php:706 +#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 +#: fields/oembed.php:262 pro/fields/gallery.php:673 pro/fields/gallery.php:706 msgid "Height" msgstr "Výška " @@ -1681,11 +1776,13 @@ msgstr "Veľkosť náhľadu " msgid "Shown when entering data" msgstr "Zobrazené pri zadávaní dát " -#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695 +#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 +#: pro/fields/gallery.php:695 msgid "Restrict which images can be uploaded" msgstr "Určite, ktoré typy obrázkov môžu byť nahraté" -#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665 pro/fields/gallery.php:698 +#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 +#: pro/fields/gallery.php:665 pro/fields/gallery.php:698 msgid "Width" msgstr "Šírka" @@ -1703,7 +1800,9 @@ msgstr "Eskapovať HTML (€ za €)" #: fields/message.php:113 msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Povoliť zobrazenie HTML značiek vo forme viditeľného textu namiesto ich vykreslenia" +msgstr "" +"Povoliť zobrazenie HTML značiek vo forme viditeľného textu namiesto ich " +"vykreslenia" #: fields/number.php:36 msgid "Number" @@ -1755,27 +1854,33 @@ msgstr "Veľkosť vloženého obsahu" msgid "Archives" msgstr "Archívy " -#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690 +#: fields/page_link.php:535 fields/post_object.php:401 +#: fields/relationship.php:690 msgid "Filter by Post Type" msgstr "Filtrovať podľa typu príspevku " -#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698 +#: fields/page_link.php:543 fields/post_object.php:409 +#: fields/relationship.php:698 msgid "All post types" msgstr "Všetky typy príspevkov " -#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704 +#: fields/page_link.php:549 fields/post_object.php:415 +#: fields/relationship.php:704 msgid "Filter by Taxonomy" msgstr "Filter z taxonómie " -#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712 +#: fields/page_link.php:557 fields/post_object.php:423 +#: fields/relationship.php:712 msgid "All taxonomies" msgstr "Žiadny filter taxonómie " -#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765 fields/user.php:452 +#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 +#: fields/taxonomy.php:765 fields/user.php:452 msgid "Allow Null?" msgstr "Povoliť nulovú hodnotu? " -#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466 +#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 +#: fields/user.php:466 msgid "Select multiple values?" msgstr "Vybrať viac hodnôt? " @@ -1783,7 +1888,8 @@ msgstr "Vybrať viac hodnôt? " msgid "Password" msgstr "Heslo " -#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769 +#: fields/post_object.php:36 fields/post_object.php:462 +#: fields/relationship.php:769 msgid "Post Object" msgstr "Objekt príspevku " @@ -1892,22 +1998,28 @@ msgid "Warning" msgstr "Varovanie" #: fields/tab.php:133 -msgid "The tab field will display incorrectly when added to a Table style repeater field or flexible content field layout" +msgid "" +"The tab field will display incorrectly when added to a Table style repeater " +"field or flexible content field layout" msgstr "" -"Pole záložky nebude správne zobrazené ak bude pridané do opakovacieho pola štýlu tabuľky alebo flexibilného rozloženia " -"pola." +"Pole záložky nebude správne zobrazené ak bude pridané do opakovacieho pola " +"štýlu tabuľky alebo flexibilného rozloženia pola." #: fields/tab.php:146 -msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together." -msgstr "Pre lepšiu organizáciu na obrazovke úpravý polí použite \"Polia záložiek\"." +msgid "" +"Use \"Tab Fields\" to better organize your edit screen by grouping fields " +"together." +msgstr "" +"Pre lepšiu organizáciu na obrazovke úpravý polí použite \"Polia záložiek\"." #: fields/tab.php:148 msgid "" -"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." +"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." msgstr "" -"Všetky polia nasledujúce \"pole záložky\" (pokým nebude definované nové \"pole záložky\") budú zoskupené a pod jedným " -"nadpisom a označením." +"Všetky polia nasledujúce \"pole záložky\" (pokým nebude definované nové " +"\"pole záložky\") budú zoskupené a pod jedným nadpisom a označením." #: fields/tab.php:155 msgid "Placement" @@ -2139,8 +2251,12 @@ msgid "Options Updated" msgstr "Nastavenia aktualizované" #: pro/admin/options-page.php:304 -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í" +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/settings-updates.php:137 msgid "Error. Could not connect to update server" @@ -2171,8 +2287,12 @@ msgid "License" msgstr "Licencia" #: pro/admin/views/settings-updates.php:24 -msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see" -msgstr "Pre odblokovanie aktualizácii, sem zadajte váš licenčný kľúč. Ak ešte licenčný kľúč nemáte, pozrite si" +msgid "" +"To unlock updates, please enter your license key below. If you don't have a " +"licence key, please see" +msgstr "" +"Pre odblokovanie aktualizácii, sem zadajte váš licenčný kľúč. Ak ešte " +"licenčný kľúč nemáte, pozrite si" #: pro/admin/views/settings-updates.php:24 msgid "details & pricing" @@ -2221,11 +2341,13 @@ msgstr "Nastavenia " #: pro/core/updates.php:186 #, php-format 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" +"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." +"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/fields/flexible-content.php:36 msgid "Flexible Content" @@ -2488,19 +2610,24 @@ msgstr "" #~ msgstr "Import / Export" #~ msgid "Field groups are created in order from lowest to highest" -#~ msgstr "Skupiny polí sú vytvorené v poradí
                              od najnižšej po najvyššiu " +#~ msgstr "" +#~ "Skupiny polí sú vytvorené v poradí
                              od najnižšej po najvyššiu " #~ msgid "ACF PRO Required" #~ msgstr "Musíte mať Pro verziu" #~ msgid "" -#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons (%s) which are no " -#~ "longer compatible with ACF." +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." #~ msgstr "" -#~ "Zistili sme problém vyžadujúci vašu pozornosť. Táto stránka využíva doplnky (%s), ktoré už nie sú komaptibilné s ACF." +#~ "Zistili sme problém vyžadujúci vašu pozornosť. Táto stránka využíva " +#~ "doplnky (%s), ktoré už nie sú komaptibilné s ACF." -#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!" -#~ msgstr "Nemusíte sa báť! Môžete sa vrátiť k používaniu predchádzajúcej verzii ACF!" +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Nemusíte sa báť! Môžete sa vrátiť k používaniu predchádzajúcej verzii ACF!" #~ msgid "Roll back to ACF v%s" #~ msgstr "Vrátiť sa k ACF v%s" @@ -2529,8 +2656,11 @@ msgstr "" #~ msgid "Load & Save Terms to Post" #~ msgstr "Nahrať & uložiť podmienky k prispievaniu " -#~ msgid "Load value based on the post's terms and update the post's terms on save" -#~ msgstr "Nahrať hodnoty založené na podmienkach prispievania, aktualizovať akrutálne podmienky a uložiť " +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Nahrať hodnoty založené na podmienkach prispievania, aktualizovať " +#~ "akrutálne podmienky a uložiť " #~ msgid "file" #~ msgstr "subor" diff --git a/lang/acf-sv_SE.mo b/lang/acf-sv_SE.mo index 82d4670..5286057 100644 Binary files a/lang/acf-sv_SE.mo and b/lang/acf-sv_SE.mo differ diff --git a/lang/acf-sv_SE.po b/lang/acf-sv_SE.po index d8229a4..6d58be4 100644 --- a/lang/acf-sv_SE.po +++ b/lang/acf-sv_SE.po @@ -1,507 +1,518 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2021-06-03 21:44+0200\n" -"PO-Revision-Date: 2021-06-03 21:44+0200\n" -"Last-Translator: Erik Betshammar \n" -"Language-Team: Swedish\n" "Language: sv_SE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 2.4.3\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "Starta en ny grupp av flikar på denna flik." -#: acf.php:348 includes/admin/admin.php:49 -msgid "Field Groups" -msgstr "Fältgrupper" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "Ny flikgrupp" -#: acf.php:349 -msgid "Field Group" -msgstr "Fältgrupp" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "Använd en stiliserad kryssruta med hjälp av select2" -#: acf.php:350 acf.php:382 includes/admin/admin.php:50 -#: pro/fields/class-acf-field-flexible-content.php:554 -msgid "Add New" -msgstr "Lägg till ny" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "Spara annat val" -#: acf.php:351 -msgid "Add New Field Group" -msgstr "Lägg till ny fältgrupp" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "Tillåt annat val" -#: acf.php:352 -msgid "Edit Field Group" -msgstr "Redigera fältgrupp" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "Lägg till ”Slå på/av alla”" -#: acf.php:353 -msgid "New Field Group" -msgstr "Skapa fältgrupp" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "Spara anpassade värden" -#: acf.php:354 -msgid "View Field Group" -msgstr "Visa fältgrupp" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "Tillåt anpassade värden" -#: acf.php:355 -msgid "Search Field Groups" -msgstr "Sök fältgrupp" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:356 -msgid "No Field Groups found" -msgstr "Inga fältgrupper hittades" +#: includes/admin/views/html-admin-navigation.php:111 +msgid "Updates" +msgstr "Uppdateringar" -#: acf.php:357 -msgid "No Field Groups found in Trash" -msgstr "Inga fältgrupper hittades i papperskorgen" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "Logga för Advanced Custom Fields" -#: acf.php:380 includes/admin/admin-field-group.php:231 -#: includes/admin/admin-field-groups.php:262 -#: pro/fields/class-acf-field-clone.php:799 -msgid "Fields" -msgstr "Fält" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "Spara ändringarna" -#: acf.php:381 -msgid "Field" -msgstr "Fält" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "Rubrik för fältgrupp" -#: acf.php:383 -msgid "Add New Field" -msgstr "Skapa nytt fält" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "Lägg till rubrik" -#: acf.php:384 -msgid "Edit Field" -msgstr "Redigera fält" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -#: acf.php:385 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Nytt fält" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "Lägg till fältgrupp" -#: acf.php:386 -msgid "View Field" -msgstr "Visa fält" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -#: acf.php:387 -msgid "Search Fields" -msgstr "Sök fält" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "Lägg till din första fältgrupp" -#: acf.php:388 -msgid "No Fields found" -msgstr "Inga fält hittades" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "Uppgradera nu" -#: acf.php:389 -msgid "No Fields found in Trash" -msgstr "Inga fält hittades i papperskorgen" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "Alternativsidor" -#: acf.php:424 includes/admin/admin-field-group.php:387 -#: includes/admin/admin-field-groups.php:226 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "ACF-block" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "Gallerifält" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "Flexibelt innehållsfält" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "Upprepningsfält" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "Lås upp extra funktioner med ACF PRO" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "Ta bort fältgrupp" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "Skapad den %1$s kl. %2$s" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "Gruppinställningar" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "Platsregler" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +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/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "#" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "Lägg till fält" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "Presentation" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "Validering" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "Exportera fältgrupper – generera PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "Exportera som JSON" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "Fältgrupp inaktiverad." +msgstr[1] "%s fältgrupper inaktiverade." + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "Fältgrupp aktiverad." +msgstr[1] "%s fältgrupper aktiverade." + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "Inaktivera" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "Inaktivera detta objekt" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "Aktivera" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "Aktivera detta objekt" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "Flytta fältgrupp till papperskorg?" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 msgctxt "post status" -msgid "Disabled" -msgstr "Inaktiverad" +msgid "Inactive" +msgstr "Inaktiv" -#: acf.php:429 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "Inaktiverad (%s)" -msgstr[1] "Inaktiverade (%s)" +#. Author of the plugin +msgid "WP Engine" +msgstr "WP Engine" -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:177 -msgid "(no label)" -msgstr "(ingen etikett)" +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" -#: includes/acf-field-group-functions.php:838 -#: includes/admin/admin-field-group.php:179 -msgid "copy" -msgstr "kopiera" +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields." +msgstr "" -#: includes/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Inlägg" +#: 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/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taxonomier" +#: includes/fields/class-acf-field-user.php:537 +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/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Bilagor" +#: includes/fields/class-acf-field-user.php:528 +msgid "%1$s must have a valid user ID." +msgstr "%1$s måste ha ett giltigt användar-ID." -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Kommentarer" +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Ogiltig begäran." -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Widgetar" +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "%1$s är inte en av %2$s" -#: includes/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:87 -msgid "Menus" -msgstr "Menyer" +#: includes/fields/class-acf-field-post_object.php:669 +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/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "Menyobjekt" +#: includes/fields/class-acf-field-post_object.php:653 +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/acf-wp-functions.php:79 -msgid "Users" -msgstr "Användare" +#: includes/fields/class-acf-field-post_object.php:644 +msgid "%1$s must have a valid post ID." +msgstr "%1$s måste ha ett giltigt inläggs-ID." -#: includes/acf-wp-functions.php:83 pro/options-page.php:45 -msgid "Options" -msgstr "Alternativ" +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "%s kräver ett giltig bilage-ID." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Visa i REST API" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Aktivera genomskinlighet" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA-array" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA-sträng" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "HEX-sträng" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galleri (endast Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Klona (endast Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Flexibelt innehåll (endast Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Repeterare (endast Pro)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Aktivt" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "”%s” är inte en giltig e-postadress" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Färgvärde" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Välj standardfärg" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Rensa färg" #: includes/acf-wp-functions.php:87 msgid "Blocks" msgstr "Block" -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "Fältgrupper uppdaterades." +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Alternativ" -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "Fältgrupper togs bort." +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Användare" -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "Fältgrupper publicerades." +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menyval" -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "Fältgrupper sparades." +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgetar" -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "Fältgruppen skickades." +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Bilagor" -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "Fältgruppen schemalades för." +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomier" -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "Utkastet till fältgrupp uppdaterades." +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Inlägg" -#: includes/admin/admin-field-group.php:170 -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/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON-fältgrupp (nyare)" -#: includes/admin/admin-field-group.php:171 -msgid "This field cannot be moved until its changes have been saved" -msgstr "Detta fält kan inte flyttas förrän ändringarna har sparats" +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Ursprunglig fältgrupp" -#: includes/admin/admin-field-group.php:172 -msgid "Field group title is required" -msgstr "Fältgruppen behöver en rubrik" +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Senast uppdaterad: %s" -#: includes/admin/admin-field-group.php:173 -msgid "Move to trash. Are you sure?" -msgstr "Flytta till papperskorgen. Är du säker?" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Denna fältgrupp är inte tillgänglig för diff-jämförelse." -#: includes/admin/admin-field-group.php:174 -msgid "No toggle fields available" -msgstr "Inga växlingsfält är tillgängliga" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Ogiltigt ID för fältgrupp." -#: includes/admin/admin-field-group.php:175 -msgid "Move Custom Field" -msgstr "Flytta anpassat fält" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Ogiltiga parametrar för fältgrupp." -#: includes/admin/admin-field-group.php:176 -msgid "Checked" -msgstr "Markerat" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Väntar på att sparas" -#: includes/admin/admin-field-group.php:178 -msgid "(this field)" -msgstr "(detta fält)" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Sparad" -#: includes/admin/admin-field-group.php:180 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3586 -msgid "or" -msgstr "eller" - -#: includes/admin/admin-field-group.php:181 -msgid "Null" -msgstr "Nollvärde" - -#: includes/admin/admin-field-group.php:184 -msgid "Has any value" -msgstr "Har något värde" - -#: includes/admin/admin-field-group.php:185 -msgid "Has no value" -msgstr "Har inget värde" - -#: includes/admin/admin-field-group.php:186 -msgid "Value is equal to" -msgstr "Värde är lika med" - -#: includes/admin/admin-field-group.php:187 -msgid "Value is not equal to" -msgstr "Värde är inte lika med" - -#: includes/admin/admin-field-group.php:188 -msgid "Value matches pattern" -msgstr "Värde matchar mönstret" - -#: includes/admin/admin-field-group.php:189 -msgid "Value contains" -msgstr "Värde innehåller" - -#: includes/admin/admin-field-group.php:190 -msgid "Value is greater than" -msgstr "Värde är större än" - -#: includes/admin/admin-field-group.php:191 -msgid "Value is less than" -msgstr "Värde är mindre än" - -#: includes/admin/admin-field-group.php:192 -msgid "Selection is greater than" -msgstr "Markeringen är större än" - -#: includes/admin/admin-field-group.php:193 -msgid "Selection is less than" -msgstr "Markeringen är mindre än" - -#: includes/admin/admin-field-group.php:232 -#: includes/admin/admin-field-groups.php:261 -msgid "Location" -msgstr "Plats" - -#: includes/admin/admin-field-group.php:233 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" -msgstr "Inställningar" - -#: includes/admin/admin-field-group.php:362 -msgid "Field Keys" -msgstr "Fältnycklar" - -#: includes/admin/admin-field-group.php:387 -msgctxt "post status" -msgid "Active" -msgstr "Aktiv" - -#: includes/admin/admin-field-group.php:746 -msgid "Move Complete." -msgstr "Flytt färdig." - -#: includes/admin/admin-field-group.php:748 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "Fältet %s kan nu hittas i fältgruppen %s" - -#: includes/admin/admin-field-group.php:752 -msgid "Close Window" -msgstr "Stäng fönster" - -#: includes/admin/admin-field-group.php:792 -msgid "Please select the destination for this field" -msgstr "Välj målet (destinationen) för detta fält" - -#: includes/admin/admin-field-group.php:799 -msgid "Move Field" -msgstr "Flytta fält" - -#: includes/admin/admin-field-groups.php:114 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Aktiv (%s)" -msgstr[1] "Aktiva (%s)" - -#: includes/admin/admin-field-groups.php:193 -msgid "Review local JSON changes" -msgstr "Granska lokala JSON-ändringar" - -#: includes/admin/admin-field-groups.php:194 -msgid "Loading diff" -msgstr "Laddar diff" - -#: includes/admin/admin-field-groups.php:195 -#: includes/admin/admin-field-groups.php:529 -msgid "Sync changes" -msgstr "Synkronisera ändringar" - -#: includes/admin/admin-field-groups.php:259 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:377 -msgid "Description" -msgstr "Beskrivning" - -#: includes/admin/admin-field-groups.php:260 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Nyckel" - -#: includes/admin/admin-field-groups.php:265 -msgid "Local JSON" -msgstr "Lokal JSON" - -#: includes/admin/admin-field-groups.php:415 -msgid "Various" -msgstr "Olika" - -#: includes/admin/admin-field-groups.php:437 -#, php-format -msgid "Located in theme: %s" -msgstr "Finns i temat: %s" - -#: includes/admin/admin-field-groups.php:441 -#, php-format -msgid "Located in plugin: %s" -msgstr "Finns i tillägget: %s" - -#: includes/admin/admin-field-groups.php:445 -#, php-format -msgid "Located in: %s" -msgstr "Finns i: %s" - -#: includes/admin/admin-field-groups.php:465 -#: includes/admin/admin-field-groups.php:683 -msgid "Sync available" -msgstr "Synkronisering tillgänglig" - -#: includes/admin/admin-field-groups.php:468 -msgid "Sync" -msgstr "Synkronisera" - -#: includes/admin/admin-field-groups.php:469 -msgid "Review changes" -msgstr "Granska ändringar" - -#: includes/admin/admin-field-groups.php:473 +#: includes/admin/admin-field-groups.php:499 msgid "Import" msgstr "Importera" -#: includes/admin/admin-field-groups.php:477 -msgid "Saved" -msgstr "Sparat" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Granska ändringar" -#: includes/admin/admin-field-groups.php:480 -msgid "Awaiting save" -msgstr "Väntar på sparande" +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Finns i: %s" -#: includes/admin/admin-field-groups.php:501 -msgid "Duplicate this item" -msgstr "Duplicera detta objekt" +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Finns i tillägg: %s" -#: includes/admin/admin-field-groups.php:501 -#: includes/admin/admin-field-groups.php:521 -#: includes/admin/views/field-group-field.php:50 -#: pro/fields/class-acf-field-flexible-content.php:553 -msgid "Duplicate" -msgstr "Duplicera" +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Finns i tema: %s" -#: includes/admin/admin-field-groups.php:551 -#, php-format -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "Fältgrupp duplicerad." -msgstr[1] "%s fältgrupper duplicerade." +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Diverse" -#: includes/admin/admin-field-groups.php:608 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Fältgrupp synkroniserad." -msgstr[1] "%s fältgrupper synkroniserade." +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Synkronisera ändringar" -#: includes/admin/admin-field-groups.php:794 -#, php-format -msgid "Select %s" -msgstr "Välj %s" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Hämtar diff" -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Verktyg" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Granska lokala JSON-ändringar" -#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 -#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Uppgradera databas" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Besök webbplats" -#: includes/admin/admin-upgrade.php:199 -msgid "Review sites & upgrade" -msgstr "Kontrollera webbplatser och uppgradera" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Visa detaljer" -#: includes/admin/admin.php:48 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "Anpassade fält" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Version %s" -#: includes/admin/admin.php:128 includes/admin/admin.php:130 -msgid "Overview" -msgstr "Översikt" +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Information" -#: includes/admin/admin.php:131 +#: includes/admin/admin.php:160 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." +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." 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." +"Support. Vår professionella " +"supportpersonal kan hjälpa dig med mer komplicerade och tekniska utmaningar." -#: includes/admin/admin.php:133 -#, php-format +#: includes/admin/admin.php:156 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." +"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 "" -"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." +"Diskussions. I vårt community-forum har " +"vi en aktiv och vänlig användarkrets som gärna hjälper dig att ”hitta rätt” " +"i ACF-världen." -#: includes/admin/admin.php:136 -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 komma i kontakt om du behöver " -"hjälp." - -#: includes/admin/admin.php:145 includes/admin/admin.php:147 -msgid "Help & Support" -msgstr "Hjälp och support" - -#: includes/admin/admin.php:148 -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:151 -#, php-format +#: includes/admin/admin.php:152 msgid "" "Documentation. Our extensive " "documentation contains references and guides for most situations you may " @@ -511,93 +522,604 @@ msgstr "" "dokumentation innehåller referenser och guider för de flesta situationer du " "kan stöta på." -#: includes/admin/admin.php:155 -#, php-format +#: includes/admin/admin.php:149 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." +"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 "" -"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." +"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:159 -#, php-format +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Hjälp och support" + +#: includes/admin/admin.php:137 msgid "" -"Help Desk. The support professionals on " -"our Help Desk will assist with your more in depth, technical challenges." +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." msgstr "" -"Helpdesk. Supportpersonalen på vår " -"helpdesk hjälper dig med dina mer djupgående tekniska utmaningar." +"Använd fliken ”Hjälp och support” för att kontakta oss om du skulle behöva " +"hjälp." -#: includes/admin/admin.php:168 -msgid "Information" -msgstr "Information" +#: includes/admin/admin.php:134 +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:169 -#, php-format -msgid "Version %s" -msgstr "Version %s" +#: includes/admin/admin.php:132 +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:170 -msgid "View details" -msgstr "Visa detaljer" +#: includes/admin/admin.php:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Översikt" -#: includes/admin/admin.php:171 -msgid "Visit website" -msgstr "Besök webbplatsen" +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "Platstypen ”%s” är redan registrerad." -#: includes/admin/admin.php:200 -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 +#: 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:361 +msgid "Error loading field." +msgstr "Fel vid inläsning av fält." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s-värde är obligatoriskt" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Visa detta fält om" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Villkorad logik" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "och" -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Exportera fältgrupper" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Lokal JSON" -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "Generera PHP" +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Klona fält" -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Inga fältgrupper valda" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "Exporterade 1 fältgrupp." -msgstr[1] "Exporterade %s fältgrupper." - -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Välj fältgrupp" - -#: includes/admin/tools/class-acf-admin-tool-export.php:336 +#: includes/admin/views/html-notice-upgrade.php:31 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Please also check all premium add-ons (%s) are updated to the latest version." msgstr "" -"Välj de fältgrupper som du vill exportera och sedan välj din exportmetod. " -"Använd knappen för exportera till en .json fil som du sedan kan importera " -"till en annan ACF installation. Använd generera-knappen för att exportera " -"PHP kod som du kan lägga till i ditt tema." +"Kontrollera också att alla premiumutökningar (%s) är uppdaterade till den " +"senaste versionen." -#: includes/admin/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "Exportera fil" +#: includes/admin/views/html-notice-upgrade.php:29 +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/tools/class-acf-admin-tool-export.php:414 +#: includes/admin/views/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Databasuppgradering krävs" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Alternativsida" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galleri" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Flexibelt innehåll" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repeterare" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Tillbaka till alla verktyg" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +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/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Dölj på skärm" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Skicka trackbacks" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiketter" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Kategorier" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Sidattribut" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Författare" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Versioner" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Kommentarer" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Diskussion" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Utdrag" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Innehållsredigerare" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Permalänk" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Visa i fältgrupplista" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Fältgrupper med en lägre ordning visas först" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Sorteringsnummer" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Under fält" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Under etiketter" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Placering av instruktion" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Placering av etikett" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Vid sidan" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (efter innehåll)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Hög (efter rubrik)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Position" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Sömnlöst (ingen metaruta)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standard (WP meta-ruta)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Stil" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Typ" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Nyckel" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Sortering" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Stäng fält" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "klass" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "bredd" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Omslagsattribut" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Obligatoriskt" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instruktioner för författare. Visas när data skickas" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Instruktioner" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Fälttyp" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Enstaka ord, inga mellanslag. Understreck och bindestreck tillåtna" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Fältnamn" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Fältetikett" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Ta bort" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Ta bort fält" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Flytta" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Flytta fältet till en annan grupp" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Duplicera fält" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Redigera fält" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Dra för att sortera om" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Visa denna fältgrupp om" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Inga uppdateringar tillgängliga." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Databasuppgradering slutförd. Se vad som är nytt" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Läser in uppgraderingsuppgifter …" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Uppgradering misslyckades." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Uppgradering slutförd." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Uppgraderar data till version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +msgid "" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "" +"Vi rekommenderar 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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Välj minst en webbplats att uppgradera." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Webbplatsen är uppdaterad" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Webbplats" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Uppgradera webbplatser" + +#: includes/admin/views/html-admin-page-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 som du vill " +"uppdatera och klicka sedan %s." + +#: includes/admin/views/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Lägg till regelgrupp" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Regler" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Kopierad" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Kopiera till urklipp" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -605,2185 +1127,2016 @@ msgid "" "the following code to your theme's functions.php file or include it within " "an external file." msgstr "" -"Följande kod kan användas för att registrera en lokal version av valda " -"fältgrupp(er). Ett lokal fältgrupp kan ge många fördelar som snabbare " -"laddningstider, versionshantering & dynamiska fält/inställningar. Det är " -"bara att kopiera och klistra in följande kod till ditt temas functions.php " -"fil eller att inkludera det i en extern fil." +"Följande kod kan användas för att registrera en lokal version av vald " +"fältgrupp/fältgrupper. En lokal fältgrupp kan ge många fördelar, såsom " +"snabbare laddningstider, versionshantering och dynamiska fält/inställningar. " +"Det är bara att kopiera och klistra in följande kod i ditt temas functions." +"php-fil eller att inkludera det i en extern fil." -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Kopiera till urklipp" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Kopierat" - -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Importera fältgrupper" - -#: includes/admin/tools/class-acf-admin-tool-import.php:47 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." +"Select the field groups 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 den Advanced Custom Fields JSON-fil som du vill importera. När du " -"klickar på import-knappen så kommer ACF importera fältgrupperna." +"Välj vilka fältgrupper 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-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Välj fil" +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Välj fältgrupper" -#: includes/admin/tools/class-acf-admin-tool-import.php:62 -msgid "Import File" -msgstr "Importera fil" +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exporterade 1 fältgrupp." +msgstr[1] "Exporterade %s fältgrupper." -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:169 -msgid "No file selected" -msgstr "Ingen fil vald" +#: 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-import.php:93 -msgid "Error uploading file. Please try again" -msgstr "Fel vid uppladdning av fil. Försök igen" +#: includes/admin/tools/class-acf-admin-tool-export.php:39 +#: includes/admin/tools/class-acf-admin-tool-export.php:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Generera PHP" -#: includes/admin/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "Felaktig filtyp" +#: 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:107 -msgid "Import file empty" -msgstr "Importfilen är tom" - -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format +#: includes/admin/tools/class-acf-admin-tool-import.php:147 msgid "Imported 1 field group" msgid_plural "Imported %s field groups" msgstr[0] "Importerade 1 fältgrupp" msgstr[1] "Importerade %s fältgrupper" -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Visningsvillkor" +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Importerad fil är tom" -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Visa detta fält när" +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Felaktig filtyp" -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Lägg till regelgrupp" +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Fel vid uppladdning av fil. Försök igen" -#: includes/admin/views/field-group-field.php:42 -#: pro/fields/class-acf-field-flexible-content.php:411 -#: pro/fields/class-acf-field-repeater.php:294 -msgid "Drag to reorder" -msgstr "Dra och släpp för att ändra ordning" - -#: includes/admin/views/field-group-field.php:46 -#: includes/admin/views/field-group-field.php:49 -msgid "Edit field" -msgstr "Redigera fält" - -#: includes/admin/views/field-group-field.php:49 -#: includes/fields/class-acf-field-file.php:151 -#: includes/fields/class-acf-field-image.php:131 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:334 -msgid "Edit" -msgstr "Redigera" - -#: includes/admin/views/field-group-field.php:50 -msgid "Duplicate field" -msgstr "Duplicera fält" - -#: includes/admin/views/field-group-field.php:51 -msgid "Move field to another group" -msgstr "Flytta fält till en annan grupp" - -#: includes/admin/views/field-group-field.php:51 -msgid "Move" -msgstr "Flytta" - -#: includes/admin/views/field-group-field.php:52 -msgid "Delete field" -msgstr "Ta bort fält" - -#: includes/admin/views/field-group-field.php:52 -#: pro/fields/class-acf-field-flexible-content.php:552 -msgid "Delete" -msgstr "Ta bort" - -#: includes/admin/views/field-group-field.php:69 -msgid "Field Label" -msgstr "Fältetikett" - -#: includes/admin/views/field-group-field.php:70 -msgid "This is the name which will appear on the EDIT page" -msgstr "Detta namn kommer att visas på REDIGERINGS-sidan" - -#: includes/admin/views/field-group-field.php:79 -msgid "Field Name" -msgstr "Fältnamn" - -#: includes/admin/views/field-group-field.php:80 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Ett enda ord, utan mellanslag. Understreck och bindestreck är tillåtna" - -#: includes/admin/views/field-group-field.php:89 -msgid "Field Type" -msgstr "Fälttyp" - -#: includes/admin/views/field-group-field.php:100 -msgid "Instructions" -msgstr "Instruktioner" - -#: includes/admin/views/field-group-field.php:101 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Instruktioner för författarna. Visas vid publicering" - -#: includes/admin/views/field-group-field.php:110 -msgid "Required?" -msgstr "Obligatorisk?" - -#: includes/admin/views/field-group-field.php:133 -msgid "Wrapper Attributes" -msgstr "Attribut för det omslutande elementet (wrappern)" - -#: includes/admin/views/field-group-field.php:139 -msgid "width" -msgstr "bredd" - -#: includes/admin/views/field-group-field.php:154 -msgid "class" -msgstr "class" - -#: includes/admin/views/field-group-field.php:167 -msgid "id" -msgstr "id" - -#: includes/admin/views/field-group-field.php:179 -msgid "Close Field" -msgstr "Stäng fält" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Ordning" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:268 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:578 -msgid "Label" -msgstr "Etikett" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:926 -#: pro/fields/class-acf-field-flexible-content.php:592 -msgid "Name" -msgstr "Namn" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Typ" - -#: includes/admin/views/field-group-fields.php:14 +#: includes/admin/tools/class-acf-admin-tool-import.php:51 msgid "" -"No fields. Click the + Add Field button to create your " -"first field." +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" msgstr "" -"Inga fält. Klicka på knappen + Lägg till fält för att skapa " -"ditt första fält." +"Välj den ”Advanced Custom Fields”-JSON-fil som du vill importera. När du " +"klickar på importknappen nedan kommer ACF att importera fältgrupperna" -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Lägg till fält" +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Importera fältgrupper" -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Regler" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Synkronisera" -#: includes/admin/views/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 bestämma vilka redigeringsvyer som ska " -"använda dessa avancerade anpassade fält" +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Välj %s" -#: includes/admin/views/field-group-options.php:9 +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Duplicera" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Duplicera detta objekt" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Beskrivning" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Synkronisering tillgänglig" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Fältgrupp synkroniserad." +msgstr[1] "%s fältgrupper synkroniserade." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Fältgrupp duplicerad." +msgstr[1] "%s fältgrupper duplicerade." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktiv (%s)" +msgstr[1] "Aktiva (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Uppgradera databas" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Anpassade fält" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Flytta fält" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Välj destinationen för detta fält" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Stäng fönstret" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Flytt slutförd." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 msgid "Active" msgstr "Aktiv" -#: includes/admin/views/field-group-options.php:23 -msgid "Style" -msgstr "Stil" +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Fältnycklar" -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Standard (WP-metaruta)" +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Inställningar" -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Sömlös (ingen metaruta)" +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Plats" -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Position" +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Hög (efter rubrik)" +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "kopiera" -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normal (efter innehåll)" +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(detta fält)" -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Sidopanel" +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Ikryssad" -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Etikettsplacering" +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Flytta anpassat fält" -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Toppjusterad" +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Inga fält för att slå på/av är tillgängliga" -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Vänsterjusterad" +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Rubrik för fältgrupp är obligatoriskt" -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Placering av instruktion" +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Under ettiketer" +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Under fält" +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Fältgruppsutkast uppdaterat." -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Ordningsnummer" +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Fältgrupp schemalagd för." -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "Fältgrupper med lägre ordningsnummer kommer synas först" +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Fältgrupp skickad." -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Visas i fältgruppslistan" +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Fältgrupp sparad." -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Permalänk" +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Fältgrupp publicerad." -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "Innehållsredigerare" +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Fältgrupp borttagen." -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Utdrag" - -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Diskussion" - -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Versioner" - -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Slug" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Författare" - -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Format" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Sidattribut" - -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Featured Image" -msgstr "Utvald bild" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Kategorier" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Etiketter" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Skicka trackbacks" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Dölj på skärmen" - -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "Välj objekt för att dölja dem från redigeringsvyn." - -#: includes/admin/views/field-group-options.php:129 -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 i redigeringsvyn, kommer första gruppens " -"inställningar att användas (den med lägst ordningsnummer)" - -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#, php-format -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" -"Följande webbplatser behöver en databasuppdatering. Marker de du vill " -"uppdatera och klicka sedan på %s." - -#: includes/admin/views/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Uppgradera webbplatser" - -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Webbplats" - -#: includes/admin/views/html-admin-page-upgrade-network.php:74 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Webbplatsen kräver en databasuppgradering från %s till %s" - -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "Webbplatsen är uppdaterad" - -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Uppgradering av databas slutförd. Återgå till nätverkets " -"adminpanel" - -#: includes/admin/views/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Välj minst en webbplats att uppgradera." - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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 vill köra uppdateringen nu?" - -#: includes/admin/views/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Uppgradera data till version %s" - -#: includes/admin/views/html-admin-page-upgrade-network.php:158 -msgid "Upgrade complete." -msgstr "Uppgradering genomförd." - -#: includes/admin/views/html-admin-page-upgrade-network.php:161 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Uppgradering misslyckades." - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Läser in uppgifter för uppgradering..." - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "Databasuppgraderingen genomförd. Se vad som är nytt" - -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "Inga uppdateringar tillgängliga." +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Fältgrupp uppdaterad." +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 #: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Tillbaka till alla verktyg" +msgid "Tools" +msgstr "Verktyg" -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Visa detta fält om" +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "är inte lika med" -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Upprepningsfält" +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "är lika med" -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Flexibelt innehåll" +#: includes/locations.php:102 +msgid "Forms" +msgstr "Formulär" -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galleri" +#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Sida" -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:20 -msgid "Options Page" -msgstr "Alternativsida" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Inlägg" -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Uppgradering av databasen krävs" - -#: includes/admin/views/html-notice-upgrade.php:22 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "Tack för du uppdaterade till %s v%s!" - -#: includes/admin/views/html-notice-upgrade.php:22 -msgid "" -"This version contains improvements to your database and requires an upgrade." -msgstr "" -"Denna version innehåller förbättringar av databasen och kräver en " -"uppgradering." - -#: includes/admin/views/html-notice-upgrade.php:24 -#, php-format -msgid "" -"Please also check all premium add-ons (%s) are updated to the latest version." -msgstr "" -"Kontrollera att alla premium-utökningar (%s) har uppdaterats till den " -"senaste versionen." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:34 -msgid "Invalid field group parameter(s)." -msgstr "Ogiltiga fältgruppsparametrer." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:41 -msgid "Invalid field group ID." -msgstr "Ogiltigt fältgrupps-ID." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:51 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "Denna fältgrupp är inte tillgänglig för diff-jämförelse." - -#: includes/ajax/class-acf-ajax-local-json-diff.php:57 -#, php-format -msgid "Last updated: %s" -msgstr "Senast uppdaterad: %s" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:62 -msgid "Original field group" -msgstr "Ursprunglig fältgrupp" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:66 -msgid "JSON field group (newer)" -msgstr "JSON-fältgrupp (nyare)" - -#: includes/ajax/class-acf-ajax.php:155 -msgid "Invalid nonce." -msgstr "Ogiltig nonce." - -#: includes/api/api-helpers.php:844 -msgid "Thumbnail" -msgstr "Tumnagel" - -#: includes/api/api-helpers.php:845 -msgid "Medium" -msgstr "Mellan" - -#: includes/api/api-helpers.php:846 -msgid "Large" -msgstr "Stor" - -#: includes/api/api-helpers.php:895 -msgid "Full Size" -msgstr "Full storlek" - -#: includes/api/api-helpers.php:1632 includes/api/api-term.php:145 -#: pro/fields/class-acf-field-clone.php:984 -msgid "(no title)" -msgstr "(ingen rubrik)" - -#: includes/api/api-helpers.php:3507 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "Bildens bredd måste vara åtminstone %dpx." - -#: includes/api/api-helpers.php:3512 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "Bildens bredd får inte överskrida %dpx." - -#: includes/api/api-helpers.php:3528 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "Bildens höjd måste vara åtminstone %dpx." - -#: includes/api/api-helpers.php:3533 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "Bildens höjd får inte överskrida %dpx." - -#: includes/api/api-helpers.php:3551 -#, php-format -msgid "File size must be at least %s." -msgstr "Filstorlek måste vara åtminstone %s." - -#: includes/api/api-helpers.php:3556 -#, php-format -msgid "File size must not exceed %s." -msgstr "Filstorlek får inte överskrida %s." - -#: includes/api/api-helpers.php:3590 -#, php-format -msgid "File type must be %s." -msgstr "Filtyp måste vara %s." - -#: includes/assets.php:343 -msgid "Are you sure?" -msgstr "Är du säker?" - -#: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:86 -msgid "Yes" -msgstr "Ja" - -#: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:96 -msgid "No" -msgstr "Nej" - -#: includes/assets.php:346 includes/fields/class-acf-field-file.php:153 -#: includes/fields/class-acf-field-image.php:133 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:335 -#: pro/fields/class-acf-field-gallery.php:475 -msgid "Remove" -msgstr "Ta bort" - -#: includes/assets.php:347 -msgid "Cancel" -msgstr "Avbryt" - -#: includes/assets.php:355 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" -"De ändringar som du gjort kommer att förloras om du navigerar bort från " -"denna sida" - -#: includes/assets.php:358 -msgid "Validation successful" -msgstr "Validering lyckades" - -#: includes/assets.php:359 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Validering misslyckades" - -#: includes/assets.php:360 -msgid "1 field requires attention" -msgstr "1 fält kräver din uppmärksamhet" - -#: includes/assets.php:361 -#, php-format -msgid "%d fields require attention" -msgstr "%d fält kräver din uppmärksamhet" - -#: includes/assets.php:364 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Redigera fältgrupp" - -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Fälttyp existerar inte" - -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Okänd fältgrupp" - -#: includes/fields.php:349 -msgid "Basic" -msgstr "Enkel" - -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Innehåll" - -#: includes/fields.php:351 -msgid "Choice" -msgstr "Alternativ" - -#: includes/fields.php:352 -msgid "Relational" -msgstr "Relation" - -#: includes/fields.php:353 +#: includes/fields.php:358 msgid "jQuery" msgstr "jQuery" -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:247 -#: pro/fields/class-acf-field-clone.php:831 -#: pro/fields/class-acf-field-flexible-content.php:549 -#: pro/fields/class-acf-field-flexible-content.php:598 -#: pro/fields/class-acf-field-repeater.php:444 -msgid "Layout" -msgstr "Layout" +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relationellt" -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Expanderbar lista" +#: includes/fields.php:356 +msgid "Choice" +msgstr "Val" -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Öppen" +#: includes/fields.php:354 +msgid "Basic" +msgstr "Grundläggande" -#: includes/fields/class-acf-field-accordion.php:100 -msgid "Display this accordion as open on page load." -msgstr "Visa denna lista som öppen vid sidladdning." +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Okänt" -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "Multi-expandera" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Fälttyp finns inte" -#: includes/fields/class-acf-field-accordion.php:110 -msgid "Allow this accordion to open without closing others." -msgstr "Tillåt denna expanderbara lista att öppnas utan att stänga övriga." +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Skräppost upptäckt" -#: includes/fields/class-acf-field-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Ändpunkt" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Inlägg uppdaterat" -#: includes/fields/class-acf-field-accordion.php:120 +#: 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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Innehåll" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Rubrik" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Redigera fältgrupp" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Valet är mindre än" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Valet är större än" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Värde är mindre än" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Värde är större än" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Värde innehåller" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Värde matchar mönster" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Har inget värde" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Har något värde" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Avbryt" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Är du säker?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d fält kräver din uppmärksamhet" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 fält kräver din uppmärksamhet" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Validering misslyckades" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Validering lyckades" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Begränsad" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Minimera detaljer" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Expandera detaljer" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Uppladdat till detta inlägg" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Uppdatera" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Redigera" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +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:3409 +msgid "File type must be %s." +msgstr "Filtyp måste vara %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "eller" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Filstorleken får inte överskrida %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "Filstorlek måste vara lägst %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Bildens höjd får inte överskrida %d px." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Bildens höjd måste vara åtminstone %d px." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Bildens bredd får inte överskrida %d px." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Bildens bredd måste vara åtminstone %d px." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(ingen rubrik)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Full storlek" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Stor" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Medium" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Miniatyr" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(ingen etikett)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Ställer in textområdets höjd" + +#: includes/fields/class-acf-field-textarea.php:141 +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:447 +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:409 +msgid "Save 'custom' values to the field's choices" +msgstr "Spara ”anpassade” värden i fältets val" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "Tillåt ”anpassade” värden att läggas till" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Lägg till nytt val" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Slå på/av alla" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Tillåt arkiv-URL:er" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Lägg till" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Namn" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s har lagts till" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s finns redan" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Användare kan inte lägga till ny %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Term-ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Term-objekt" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Hämta värde från inläggets termer" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Ladda termer" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Koppla valda termer till inlägget" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Spara termer" + +#: includes/fields/class-acf-field-taxonomy.php:718 +msgid "Allow new terms to be created whilst editing" +msgstr "Tillåt att nya termer skapas under redigering" + +#: includes/fields/class-acf-field-taxonomy.php:717 +msgid "Create Terms" +msgstr "Skapa termer" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Radioknappar" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Enskild värde" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Flerval" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Kryssruta" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Flera värden" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "Välj utseendet på detta fält" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Utseende" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Välj taxonomin som ska visas" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Inga %s" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Lägg till valet ”annat” för att tillåta anpassade värden" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Alternativknapp" + +#: includes/fields/class-acf-field-accordion.php:105 msgid "" "Define an endpoint for the previous accordion to stop. This accordion will " "not be visible." msgstr "" -"Definiera en ändpunkt för där den tidigare expanderbara listan ska stoppa. " -"Denna expanderbara lista kommer inte synas." +"Definiera en ändpunkt för föregående dragspel att stoppa. Detta dragspel " +"kommer inte att vara synlig." -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Knappgrupp" +#: includes/fields/class-acf-field-accordion.php:94 +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-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:192 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Alternativ" +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Multi-expandera" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Ange varje alternativ på en ny rad." +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "Visa detta dragspel som öppet på sidladdning." -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:365 -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 etikett såhär:" +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Öppen" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:193 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "röd : Röd" +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Dragspel" -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:506 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:201 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:771 -#: includes/fields/class-acf-field-user.php:63 -msgid "Allow Null?" -msgstr "Tillått nollvärde?" +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Begränsa vilka filer som kan laddas upp" -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:127 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:238 -#: includes/fields/class-acf-field-range.php:155 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:345 -msgid "Default Value" -msgstr "Standardvärde" +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "Fil-ID" -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:239 -#: includes/fields/class-acf-field-range.php:156 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:346 -msgid "Appears when creating a new post" -msgstr "Visas när ett nytt inlägg skapas" +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "Fil-URL" -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:254 -msgid "Horizontal" -msgstr "Horisontell" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:253 -msgid "Vertical" -msgstr "Vertikal" - -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:214 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:261 -#: includes/fields/class-acf-field-taxonomy.php:816 -msgid "Return Value" -msgstr "Returvärde" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 #: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:262 -msgid "Specify the returned value on front end" -msgstr "Välj vilken typ av värde som ska returneras på front-end" +msgid "File Array" +msgstr "Fil-array" -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:267 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Värde" +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Lägg till fil" -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:269 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "Båda (array)" +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ingen fil vald" -#: 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-file.php:147 +msgid "File name" +msgstr "Filnamn" -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Markera alla" +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Uppdatera fil" -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Skapa nytt val" +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Redigera fil" -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Tillåt annat val" +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Specificera värdet att returnera" + +#: includes/fields/class-acf-field-select.php:456 +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:358 -msgid "Allow 'custom' values to be added" -msgstr "Tillåter ”annat val” att väljas" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Spara annat val" - -#: includes/fields/class-acf-field-checkbox.php:369 -msgid "Save 'custom' values to the field's choices" -msgstr "Spara ”annat val”-värdet till fältets val" - -#: includes/fields/class-acf-field-checkbox.php:381 -#: includes/fields/class-acf-field-select.php:374 +#: includes/fields/class-acf-field-select.php:376 msgid "Enter each default value on a new line" msgstr "Ange varje standardvärde på en ny rad" -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" -msgstr "Slå på/av" +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Välj" -#: includes/fields/class-acf-field-checkbox.php:404 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "Visa en extra kryssruta för att markera alla val" +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Laddning misslyckades" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Söker…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Laddar in fler resultat …" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Ta bort %d tecken" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Ta bort 1 tecken" + +#: includes/fields/class-acf-field-select.php:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Inga matchningar hittades" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Välj" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "Användar-ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Användarobjekt" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Användar-array" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Alla användarroller" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Filtrera efter roll" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Välj färg" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Standard" + +#: includes/fields/class-acf-field-color_picker.php:69 +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-color_picker.php:64 -msgid "Clear" -msgstr "Rensa" +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" -#: includes/fields/class-acf-field-color_picker.php:65 -msgid "Clear color" -msgstr "Rensa färg" +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" -#: includes/fields/class-acf-field-color_picker.php:66 -msgid "Default" -msgstr "Standard" +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" -#: includes/fields/class-acf-field-color_picker.php:67 -msgid "Select default color" -msgstr "Välj standardfärg" - -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Select Color" -msgstr "Välj färg" - -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Color value" -msgstr "Färgvärde" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Datumväljare" - -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Färdig" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Idag" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "Nästa" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Föregående" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "V" - -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:181 -#: includes/fields/class-acf-field-time_picker.php:113 -msgid "Display Format" -msgstr "Visa format" - -#: includes/fields/class-acf-field-date_picker.php:180 -#: 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 "Visningsformatet vid ändring av inlägg" - -#: includes/fields/class-acf-field-date_picker.php:188 -#: includes/fields/class-acf-field-date_picker.php:219 -#: includes/fields/class-acf-field-date_time_picker.php:191 -#: includes/fields/class-acf-field-date_time_picker.php:208 -#: includes/fields/class-acf-field-time_picker.php:121 -#: includes/fields/class-acf-field-time_picker.php:136 -msgid "Custom:" -msgstr "Anpassat:" - -#: includes/fields/class-acf-field-date_picker.php:198 -msgid "Save Format" -msgstr "Spara i format" - -#: includes/fields/class-acf-field-date_picker.php:199 -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:209 -#: includes/fields/class-acf-field-date_time_picker.php:198 -#: includes/fields/class-acf-field-image.php:194 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:628 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:128 -#: includes/fields/class-acf-field-user.php:79 -#: pro/fields/class-acf-field-gallery.php:554 -msgid "Return Format" -msgstr "Returvärde" - -#: includes/fields/class-acf-field-date_picker.php:210 -#: includes/fields/class-acf-field-date_time_picker.php:199 -#: includes/fields/class-acf-field-time_picker.php:129 -msgid "The format returned via template functions" -msgstr "Formatet som returneras av mallfunktioner" - -#: includes/fields/class-acf-field-date_picker.php:228 -#: includes/fields/class-acf-field-date_time_picker.php:215 -msgid "Week Starts On" -msgstr "Veckan börjar på" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Datum/tidväljare" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Välj tid" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Tid" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Timme" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Minut" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Sekund" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Millisekund" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosekund" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Tidszon" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Nu" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Klar" +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" #: includes/fields/class-acf-field-date_time_picker.php:78 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 amText" -msgid "AM" -msgstr "fm" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "fm" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "em" - -#: includes/fields/class-acf-field-date_time_picker.php:85 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "E" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-post" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Platshållartext" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Visas inuti fältet" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Lägg till före" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Visas före fältet" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:203 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Lägg till efter" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:204 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Visas efter fältet" - -#: includes/fields/class-acf-field-email.php:167 -#, php-format -msgid "'%s' is not a valid email address" -msgstr "\"%s\" är inte en giltig e-postadress" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Fil" - -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Redigera fil" - -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Uppdatera fil" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Filnamn" - -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:247 -#: includes/fields/class-acf-field-file.php:258 -#: includes/fields/class-acf-field-image.php:254 -#: includes/fields/class-acf-field-image.php:283 -#: pro/fields/class-acf-field-gallery.php:639 -#: pro/fields/class-acf-field-gallery.php:668 -msgid "File size" -msgstr "Filstorlek" - -#: includes/fields/class-acf-field-file.php:169 -msgid "Add File" -msgstr "Lägg till fil" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File Array" -msgstr "Fil-array" - -#: includes/fields/class-acf-field-file.php:221 -msgid "File URL" -msgstr "Fil-URL" - -#: includes/fields/class-acf-field-file.php:222 -msgid "File ID" -msgstr "Filens ID" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:589 -msgid "Library" -msgstr "Bibliotek" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:590 -msgid "Limit the media library choice" -msgstr "Begränsa urvalet i mediabiblioteket" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:225 -#: includes/locations/class-acf-location-attachment.php:71 -#: includes/locations/class-acf-location-comment.php:59 -#: includes/locations/class-acf-location-nav-menu.php:72 -#: includes/locations/class-acf-location-taxonomy.php:61 -#: includes/locations/class-acf-location-user-form.php:65 -#: includes/locations/class-acf-location-user-role.php:76 -#: includes/locations/class-acf-location-widget.php:63 -#: pro/fields/class-acf-field-gallery.php:595 -#: pro/locations/class-acf-location-block.php:64 -msgid "All" -msgstr "Alla" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:226 -#: pro/fields/class-acf-field-gallery.php:596 -msgid "Uploaded to post" -msgstr "Uppladdade till detta inlägg" - -#: includes/fields/class-acf-field-file.php:243 -#: includes/fields/class-acf-field-image.php:233 -#: pro/fields/class-acf-field-gallery.php:618 -msgid "Minimum" -msgstr "Minimalt" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "Begränsa vilka filer som kan laddas upp" - -#: includes/fields/class-acf-field-file.php:254 -#: includes/fields/class-acf-field-image.php:262 -#: pro/fields/class-acf-field-gallery.php:647 -msgid "Maximum" -msgstr "Maximalt" - -#: includes/fields/class-acf-field-file.php:265 -#: includes/fields/class-acf-field-image.php:291 -#: pro/fields/class-acf-field-gallery.php:675 -msgid "Allowed file types" -msgstr "Tillåtna filtyper" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:292 -#: pro/fields/class-acf-field-gallery.php:676 -msgid "Comma separated list. Leave blank for all types" -msgstr "Kommaseparerad lista. Lämna blankt för alla typer" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google-karta" - -#: includes/fields/class-acf-field-google-map.php:59 -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:146 -#: includes/fields/class-acf-field-relationship.php:587 -msgid "Search" -msgstr "Sök" - -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Rensa plats" - -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Hitta nuvarande plats" - -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Sök efter adress..." - -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Centrera" - -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Kartans initiala centrum" - -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Zoom" - -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Ange kartans initiala zoom-nivå" - -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:630 -#: pro/fields/class-acf-field-gallery.php:659 -msgid "Height" -msgstr "Höjd" - -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Ställ in kartans höjd" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grupp" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:380 -msgid "Sub Fields" -msgstr "Underfält" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:832 -msgid "Specify the style used to render the selected fields" -msgstr "Specificera stilen för att rendera valda fält" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:837 -#: pro/fields/class-acf-field-flexible-content.php:610 -#: pro/fields/class-acf-field-repeater.php:452 -#: pro/locations/class-acf-location-block.php:20 -msgid "Block" -msgstr "Block" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:838 -#: pro/fields/class-acf-field-flexible-content.php:609 -#: pro/fields/class-acf-field-repeater.php:451 -msgid "Table" -msgstr "Tabell" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:839 -#: pro/fields/class-acf-field-flexible-content.php:611 -#: pro/fields/class-acf-field-repeater.php:453 -msgid "Row" -msgstr "Rad" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Bild" - -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Välj bild" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Redigera bild" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Uppdatera bild" - -#: includes/fields/class-acf-field-image.php:66 includes/media.php:61 -msgid "All images" -msgstr "Alla bilder" - -#: includes/fields/class-acf-field-image.php:148 -msgid "No image selected" -msgstr "Ingen bild vald" - -#: includes/fields/class-acf-field-image.php:148 -msgid "Add Image" -msgstr "Lägg till bild" - -#: includes/fields/class-acf-field-image.php:200 -#: pro/fields/class-acf-field-gallery.php:560 -msgid "Image Array" -msgstr "Bild-array" - -#: includes/fields/class-acf-field-image.php:201 -#: pro/fields/class-acf-field-gallery.php:561 -msgid "Image URL" -msgstr "Bild-URL" - -#: includes/fields/class-acf-field-image.php:202 -#: pro/fields/class-acf-field-gallery.php:562 -msgid "Image ID" -msgstr "Bildens ID" - -#: includes/fields/class-acf-field-image.php:209 -#: pro/fields/class-acf-field-gallery.php:568 -msgid "Preview Size" -msgstr "Förhandsvisningens storlek" - -#: includes/fields/class-acf-field-image.php:234 -#: includes/fields/class-acf-field-image.php:263 -#: pro/fields/class-acf-field-gallery.php:619 -#: pro/fields/class-acf-field-gallery.php:648 -msgid "Restrict which images can be uploaded" -msgstr "Begränsa vilka bilder som kan laddas upp" - -#: includes/fields/class-acf-field-image.php:237 -#: includes/fields/class-acf-field-image.php:266 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Width" -msgstr "Bredd" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Länk" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Välj länk" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Öppnas i ett nytt fönster/flik" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Länk-array" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "Länk-URL" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Meddelande" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Nya rader" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Reglerar hur nya rader renderas" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Lägg till styckesindelning automatiskt" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Lägg till automatiskt <br>" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Ingen formattering" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -msgstr "Inaktivera HTML-rendering" - -#: includes/fields/class-acf-field-message.php:125 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "Tillåt HTML-kod att visas som synlig text istället för att renderas" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "Nummer" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:164 -msgid "Minimum Value" -msgstr "Minsta värde" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:174 -msgid "Maximum Value" -msgstr "Högsta värde" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:184 -msgid "Step Size" -msgstr "Stegvärde" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Värdet måste vara ett nummer" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Fyll i URL" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Embed-storlek" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Sidlänk" - -#: includes/fields/class-acf-field-page_link.php:170 -msgid "Archives" -msgstr "Arkiv" - -#: includes/fields/class-acf-field-page_link.php:262 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:948 -msgid "Parent" -msgstr "Överordnad" - -#: includes/fields/class-acf-field-page_link.php:478 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:554 -msgid "Filter by Post Type" -msgstr "Filtrera efter inläggstyp" - -#: includes/fields/class-acf-field-page_link.php:486 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:562 -msgid "All post types" -msgstr "Alla inläggstyper" - -#: includes/fields/class-acf-field-page_link.php:492 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "Filter by Taxonomy" -msgstr "Filtrera efter taxonomi" - -#: includes/fields/class-acf-field-page_link.php:500 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:576 -msgid "All taxonomies" -msgstr "Alla taxonomier" - -#: includes/fields/class-acf-field-page_link.php:516 -msgid "Allow Archives URLs" -msgstr "Tillåt arkiv-URL:er" - -#: includes/fields/class-acf-field-page_link.php:526 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:71 -msgid "Select multiple values?" -msgstr "Välj flera värden?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Lösenord" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:633 -msgid "Post Object" -msgstr "Inläggsobjekt" - -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:634 -msgid "Post ID" -msgstr "Inläggs-ID" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Alternativknapp" - -#: includes/fields/class-acf-field-radio.php:211 -msgid "Other" -msgstr "Annat" - -#: includes/fields/class-acf-field-radio.php:216 -msgid "Add 'other' choice to allow for custom values" -msgstr "Lägg till värdet 'annat' för att tillåta egna värden" - -#: includes/fields/class-acf-field-radio.php:222 -msgid "Save Other" -msgstr "Spara annat" - -#: includes/fields/class-acf-field-radio.php:227 -msgid "Save 'other' values to the field's choices" -msgstr "Spara 'annat'-värden till fältets alternativ" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Intervall" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "Relation" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "Högsta tillåtna antal värden uppnått ( {max} värden )" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "Laddar" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Inga träffar" - -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Välj inläggstyp" - -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Välj taxonomi" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Sök..." - -#: includes/fields/class-acf-field-relationship.php:582 -msgid "Filters" -msgstr "Filter" - -#: includes/fields/class-acf-field-relationship.php:588 -#: includes/locations/class-acf-location-post-type.php:20 -msgid "Post Type" -msgstr "Inläggstyp" - -#: includes/fields/class-acf-field-relationship.php:589 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:741 -#: includes/locations/class-acf-location-taxonomy.php:20 -msgid "Taxonomy" -msgstr "Taxonomi" - -#: includes/fields/class-acf-field-relationship.php:596 -msgid "Elements" -msgstr "Element" - -#: includes/fields/class-acf-field-relationship.php:597 -msgid "Selected elements will be displayed in each result" -msgstr "Valda element visas i varje resultat" - -#: includes/fields/class-acf-field-relationship.php:608 -msgid "Minimum posts" -msgstr "Minsta antal inlägg" - -#: includes/fields/class-acf-field-relationship.php:617 -msgid "Maximum posts" -msgstr "Högsta antal inlägg" - -#: includes/fields/class-acf-field-relationship.php:721 -#: pro/fields/class-acf-field-gallery.php:776 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s kräver minst %s val" -msgstr[1] "%s kräver minst %s val" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgctxt "noun" -msgid "Select" -msgstr "Flerväljare" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "Ett resultat, tryck enter för att välja det." - -#: includes/fields/class-acf-field-select.php:112 -#, php-format -msgctxt "Select2 JS matches_n" -msgid "%d results are available, use up and down arrow keys to navigate." -msgstr "%d resultat, använd upp och ned pilarna för att navigera." - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Inget resultat" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "Skriv in 1 eller fler tecken" - -#: includes/fields/class-acf-field-select.php:115 -#, php-format -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "Skriv in %d eller fler tecken" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Ta bort 1 tecken" - -#: includes/fields/class-acf-field-select.php:117 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Ta bort %d tecken" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Du kan bara välja 1 resultat" - -#: includes/fields/class-acf-field-select.php:119 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "Du kan bara välja %d resultat" - -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Laddar fler resultat …" - -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Söker …" - -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Laddning misslyckades" - -#: includes/fields/class-acf-field-select.php:259 includes/media.php:54 -msgctxt "verb" -msgid "Select" -msgstr "Välj" - -#: includes/fields/class-acf-field-select.php:402 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "Stylat utseende" - -#: includes/fields/class-acf-field-select.php:412 -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-select.php:428 -msgid "Specify the value returned" -msgstr "Specificera värdet att returnera" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Avgränsare" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Flik" - -#: includes/fields/class-acf-field-tab.php:102 +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Klart" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Nu" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Tidszon" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekund" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisekund" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Sekund" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minut" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Timme" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Tid" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Ändpunkt" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Vänsterjusterad" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Toppjusterad" + +#: includes/fields/class-acf-field-tab.php:107 msgid "Placement" msgstr "Placering" -#: includes/fields/class-acf-field-tab.php:115 -msgid "" -"Define an endpoint for the previous tabs to stop. This will start a new " -"group of tabs." -msgstr "" -"Definiera en ändpunkt där de föregående flikarna att stoppas. Detta kommer " -"starta en ny grupp med flikar." +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Flik" -#: includes/fields/class-acf-field-taxonomy.php:701 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "Inga %s" - -#: includes/fields/class-acf-field-taxonomy.php:742 -msgid "Select the taxonomy to be displayed" -msgstr "Välj taxonomin som ska visas" - -#: includes/fields/class-acf-field-taxonomy.php:751 -msgid "Appearance" -msgstr "Utseende" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the appearance of this field" -msgstr "Välj utseende för detta fält" - -#: includes/fields/class-acf-field-taxonomy.php:757 -msgid "Multiple Values" -msgstr "Flera värden" - -#: includes/fields/class-acf-field-taxonomy.php:759 -msgid "Multi Select" -msgstr "Flerval" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Single Value" -msgstr "Enstaka värde" - -#: includes/fields/class-acf-field-taxonomy.php:762 -msgid "Radio Buttons" -msgstr "Alternativknappar" - -#: includes/fields/class-acf-field-taxonomy.php:786 -msgid "Create Terms" -msgstr "Skapa termer" - -#: includes/fields/class-acf-field-taxonomy.php:787 -msgid "Allow new terms to be created whilst editing" -msgstr "Tillåt att nya termer läggs till under redigering" - -#: includes/fields/class-acf-field-taxonomy.php:796 -msgid "Save Terms" -msgstr "Spara termer" - -#: includes/fields/class-acf-field-taxonomy.php:797 -msgid "Connect selected terms to the post" -msgstr "Koppla valda termer till inlägget" - -#: includes/fields/class-acf-field-taxonomy.php:806 -msgid "Load Terms" -msgstr "Ladda termer" - -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Load value from posts terms" -msgstr "Ladda term från ett inläggs termer" - -#: includes/fields/class-acf-field-taxonomy.php:821 -msgid "Term Object" -msgstr "Termobjekt" - -#: includes/fields/class-acf-field-taxonomy.php:822 -msgid "Term ID" -msgstr "Term-ID" - -#: includes/fields/class-acf-field-taxonomy.php:872 -#, php-format -msgid "User unable to add new %s" -msgstr "Användare kan inte lägga till ny %s" - -#: includes/fields/class-acf-field-taxonomy.php:882 -#, php-format -msgid "%s already exists" -msgstr "%s finns redan" - -#: includes/fields/class-acf-field-taxonomy.php:914 -#, php-format -msgid "%s added" -msgstr "%s tillagt" - -#: includes/fields/class-acf-field-taxonomy.php:960 -#: includes/locations/class-acf-location-user-form.php:66 -msgid "Add" -msgstr "Lägg till" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Text" - -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Maximalt antal tecken" - -#: includes/fields/class-acf-field-text.php:132 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Lämna tomt för att ha utan begränsning" - -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:213 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "Värdet får inte överstiga %d tecken" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Textfält" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Rader" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Välj textfältets höjd" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Tidväljare" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Sant/Falskt" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "Visar text bredvid kryssrutan" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "”På”-text" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Text som visas när valet är aktivt" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "”Av”-text" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Text som visas när valet är inaktivt" +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Värde måste vara en giltig URL" #: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "URL" -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Värdet måste vara en giltig URL" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Länk-URL" -#: includes/fields/class-acf-field-user.php:20 includes/locations.php:99 -msgid "User" -msgstr "Användare" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Länk-array" -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by role" -msgstr "Filtrera efter roll" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Öppnas i ett nytt fönster/flik" -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Alla användarroller" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Välj länk" -#: includes/fields/class-acf-field-user.php:84 -msgid "User Array" -msgstr "Användar-array" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Länk" -#: includes/fields/class-acf-field-user.php:85 -msgid "User Object" -msgstr "Användarobjekt" +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "E-post" -#: includes/fields/class-acf-field-user.php:86 -msgid "User ID" -msgstr "Användar-ID" +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Stegstorlek" -#: includes/fields/class-acf-field-user.php:334 -msgid "Error loading field." -msgstr "Fel vid inläsning av fält." +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Maximalt värde" -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "WYSIWYG-editor" +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "Minsta värde" -#: includes/fields/class-acf-field-wysiwyg.php:294 -msgid "Visual" -msgstr "Visuellt" +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Intervall" -#: includes/fields/class-acf-field-wysiwyg.php:295 +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Båda (Array)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etikett" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Värde" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Vertikal" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Horisontell" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "röd : Röd" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"För mer kontroll kan du specifiera både ett värde och en etikett så här:" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Ange varje val på en ny rad." + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Val" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Knappgrupp" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Välj flera värden?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Tillåt Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Överordnad" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Fördröjd initialisering?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Visa knappar för mediauppladdning?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Verktygsfält" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Endast text" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Endast visuell" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Visuell och text" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Flikar" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Klicka för att initialisera TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 msgctxt "Name for the Text editor tab (formerly HTML)" msgid "Text" msgstr "Text" -#: includes/fields/class-acf-field-wysiwyg.php:301 -msgid "Click to initialize TinyMCE" -msgstr "Klicka för att initialisera tinyMCE" +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visuellt" -#: includes/fields/class-acf-field-wysiwyg.php:354 -msgid "Tabs" -msgstr "Flikar" +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg-redigerare" -#: includes/fields/class-acf-field-wysiwyg.php:359 -msgid "Visual & Text" -msgstr "Visuell och text" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Värde får inte överstiga %d tecken" -#: includes/fields/class-acf-field-wysiwyg.php:360 -msgid "Visual Only" -msgstr "Endast visuellt" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +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-wysiwyg.php:361 -msgid "Text Only" -msgstr "Endast text" +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Teckenbegränsning" -#: includes/fields/class-acf-field-wysiwyg.php:368 -msgid "Toolbar" -msgstr "Verktygsfält" +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Visas efter inmatningen" -#: includes/fields/class-acf-field-wysiwyg.php:383 -msgid "Show Media Upload Buttons?" -msgstr "Visa knappar för uppladdning av media?" +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Lägg till efter" -#: includes/fields/class-acf-field-wysiwyg.php:393 -msgid "Delay initialization?" -msgstr "Fördröj initialisering?" +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Visas före inmatningen" -#: includes/fields/class-acf-field-wysiwyg.php:394 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "TinyMCE initialiseras inte förrän fältet klickas på" +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Lägg till före" -#: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:350 -msgid "Title" -msgstr "Rubrik" +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Visas inuti inmatningen" -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "Validera e-post" +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Platshållartext" -#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:507 -#: pro/options-page.php:73 -msgid "Update" -msgstr "Uppdatera" +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +msgid "Appears when creating a new post" +msgstr "Visas när ett nytt inlägg skapas" -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "Inlägg uppdaterat" +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Text" -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "Skräppost upptäckt" +#: includes/fields/class-acf-field-relationship.php:760 +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/forms/form-user.php:336 -#, php-format -msgid "Error: %s" -msgstr "Fel: %s" +#: includes/fields/class-acf-field-post_object.php:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Inläggs-ID" -#: includes/locations.php:23 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "Klassen ”%s” finns inte." +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Inläggsobjekt" -#: includes/locations.php:34 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "Platstypen ”%s” är redan registrerad." +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Maximalt antal inlägg" -#: includes/locations.php:97 includes/locations/class-acf-location-post.php:20 -msgid "Post" -msgstr "Inlägg" +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Minsta antal inlägg" -#: includes/locations.php:98 includes/locations/class-acf-location-page.php:20 -msgid "Page" -msgstr "Sida" +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Utvald bild" -#: includes/locations.php:100 -msgid "Forms" -msgstr "Formulär" +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Valda element kommer att visas i varje resultat" -#: includes/locations/abstract-acf-location.php:103 -msgid "is equal to" -msgstr "är lika med" +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Element" -#: includes/locations/abstract-acf-location.php:104 -msgid "is not equal to" -msgstr "inte är lika med" +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomi" -#: includes/locations/class-acf-location-attachment.php:20 -msgid "Attachment" -msgstr "Bilaga" +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Inläggstyp" -#: includes/locations/class-acf-location-attachment.php:82 -#, php-format -msgid "All %s formats" -msgstr "Alla %s-format" +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filter" -#: includes/locations/class-acf-location-comment.php:20 -msgid "Comment" -msgstr "Kommentar" +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Alla taxonomier" -#: includes/locations/class-acf-location-current-user-role.php:20 -msgid "Current User Role" -msgstr "Inloggad användarroll" +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Filtrera efter taxonomi" -#: includes/locations/class-acf-location-current-user-role.php:75 -msgid "Super Admin" -msgstr "Superadministratör" +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Alla inläggstyper" -#: includes/locations/class-acf-location-current-user.php:20 -msgid "Current User" -msgstr "Nuvarande användare" +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Filtrera efter inläggstyp" -#: includes/locations/class-acf-location-current-user.php:69 -msgid "Logged in" -msgstr "Inloggad" +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Sök …" -#: includes/locations/class-acf-location-current-user.php:70 -msgid "Viewing front end" -msgstr "Visar framsida" +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Välj taxonomi" -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Viewing back end" -msgstr "Visar back-end" +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Välj inläggstyp" -#: includes/locations/class-acf-location-nav-menu-item.php:20 -msgid "Menu Item" -msgstr "Menyobjekt" +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Inga matchningar hittades" -#: includes/locations/class-acf-location-nav-menu.php:20 -msgid "Menu" -msgstr "Meny" +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Laddar in" -#: includes/locations/class-acf-location-nav-menu.php:78 -msgid "Menu Locations" -msgstr "Menyplatser" +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximala värden uppnådda ( {max} värden)" -#: includes/locations/class-acf-location-page-parent.php:20 -msgid "Page Parent" -msgstr "Överordnad sida" +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relationer" -#: includes/locations/class-acf-location-page-template.php:20 -msgid "Page Template" -msgstr "Sidmall" +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "Kommaseparerad lista. Lämna tomt för alla typer" -#: includes/locations/class-acf-location-page-template.php:71 -#: includes/locations/class-acf-location-post-template.php:83 -msgid "Default Template" -msgstr "Standardmall" +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Tillåtna filtyper" -#: includes/locations/class-acf-location-page-type.php:20 -msgid "Page Type" -msgstr "Sidtyp" +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Maximalt" -#: includes/locations/class-acf-location-page-type.php:106 -msgid "Front Page" -msgstr "Startsida" +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Filstorlek" -#: includes/locations/class-acf-location-page-type.php:107 -msgid "Posts Page" -msgstr "Sida för inlägg" +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Begränsa vilka bilder som kan laddas upp" -#: includes/locations/class-acf-location-page-type.php:108 -msgid "Top Level Page (no parent)" -msgstr "Toppsida (Ingen förälder)" +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Minimum" -#: includes/locations/class-acf-location-page-type.php:109 -msgid "Parent Page (has children)" -msgstr "Överordnad sida (har underordnade)" +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Uppladdat till inlägg" -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Child Page (has parent)" -msgstr "Undersida (har överordnad)" +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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/locations/class-acf-location-post-category.php:20 -msgid "Post Category" -msgstr "Inläggskategori" +#: includes/fields/class-acf-field-file.php:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Begränsa mediabibliotekets val" -#: includes/locations/class-acf-location-post-format.php:20 -msgid "Post Format" -msgstr "Inläggsformat" +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Bibliotek" -#: includes/locations/class-acf-location-post-status.php:20 -msgid "Post Status" -msgstr "Inläggsstatus" +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Förhandsgranska storlek" -#: includes/locations/class-acf-location-post-taxonomy.php:20 -msgid "Post Taxonomy" -msgstr "Inläggstaxonomi" +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Bild-ID" -#: includes/locations/class-acf-location-post-template.php:20 -msgid "Post Template" -msgstr "Inläggsmall" +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Bild-URL" -#: includes/locations/class-acf-location-user-form.php:20 -msgid "User Form" -msgstr "Användarformulär" +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Bild-array" -#: includes/locations/class-acf-location-user-form.php:67 -msgid "Add / Edit" -msgstr "Skapa/Redigera" +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Specifiera det returnerade värdet på front-end" -#: includes/locations/class-acf-location-user-form.php:68 -msgid "Register" -msgstr "Registrera" +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Returvärde" -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Användarroll" +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Lägg till bild" -#: includes/locations/class-acf-location-widget.php:20 -msgid "Widget" -msgstr "Widget" +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Ingen bild vald" -#: includes/media.php:55 -msgctxt "verb" +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Ta bort" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 msgid "Edit" -msgstr "Ändra" +msgstr "Redigera" -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Uppdatera" +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Alla bilder" -#: includes/media.php:57 -msgid "Uploaded to this post" -msgstr "Uppladdade till detta inlägg" +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Uppdatera bild" -#: includes/media.php:58 -msgid "Expand Details" -msgstr "Visa detaljer" +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Redigera bild" -#: includes/media.php:59 -msgid "Collapse Details" -msgstr "Dölj detaljer" +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "Välj bild" -#: includes/media.php:60 -msgid "Restricted" -msgstr "Begränsad" +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Bild" -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "%s värde är obligatorisk" +#: includes/fields/class-acf-field-message.php:123 +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" -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "Inaktivera HTML-rendering" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Ingen formatering" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Lägg automatiskt till <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Lägg automatiskt till stycken" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Styr hur nya rader visas" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Nya rader" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Veckan börjar på" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "Formatet används när ett värde sparas" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Spara format" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "V" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Föreg." + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Nästa" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Idag" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Bredd" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Inbäddad storlek" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Text som visas när inaktivt" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "”Av”-text" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Text som visas när aktivt" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "”På”-text" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Stiliserat användargränssnitt" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Standardvärde" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Meddelande" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Nej" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Rad" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tabell" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Block" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Specificera stilen för rendering av valda fält" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Anpassa karthöjden" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Höjd" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Ställ in den initiala zoomnivån" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zooma" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrera den inledande kartan" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centrerat" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Sök efter adress …" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Hitta nuvarande plats" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Rensa plats" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Sök" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Formatet returneras via mallfunktioner" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Returformat" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Anpassad:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inaktiv (%s)" +msgstr[1] "Inaktiva (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Inga fält hittades i papperskorgen" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Inga fält hittades" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Sök fält" + +#: acf.php:409 +msgid "View Field" +msgstr "Visa fält" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Nytt fält" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Redigera fält" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Lägg till nytt fält" + +#: acf.php:404 +msgid "Field" +msgstr "Fält" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Fält" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Inga fältgrupper hittades i papperskorgen" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Inga fältgrupper hittades" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Sök fältgrupper" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Visa fältgrupp" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Ny fältgrupp" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Redigera fältgrupp" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Lägg till ny fältgrupp" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Lägg till nytt" + +#: acf.php:370 +msgid "Field Group" +msgstr "Fältgrupp" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" -#: pro/admin/admin-options-page.php:198 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Blocktypsnamn är obligatoriskt." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Blocktypen \"%s\" är redan registrerad." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Växla till Redigera" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Växla till förhandsgranskning" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Ändra innehållsjustering" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s-inställningar" + +#: pro/blocks.php:949 +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:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Kontrollera igen" + +#: pro/updates.php:561 +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:204 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -2791,15 +3144,11 @@ msgstr "" "Inga fältgrupper hittades för denna inställningssida. Skapa " "en fältgrupp" -#: pro/admin/admin-updates.php:49 +#: 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:118 pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Uppdateringar" - -#: pro/admin/admin-updates.php:191 +#: pro/admin/admin-updates.php:209 msgid "" "Error. Could not authenticate update package. Please check again or " "deactivate and reactivate your ACF PRO license." @@ -2807,210 +3156,125 @@ msgstr "" "Fel. Det gick inte att autentisera uppdateringspaketet. Kontrollera " "igen eller inaktivera och återaktivera din ACF PRO-licens." -#: 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:19 -#, php-format +#: pro/admin/admin-updates.php:196 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." 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:26 -msgid "License Key" -msgstr "Licensnyckel" - -#: pro/admin/views/html-settings-updates.php:58 -msgid "Update Information" -msgstr "Uppdateringsinformation" - -#: pro/admin/views/html-settings-updates.php:65 -msgid "Current Version" -msgstr "Nuvarande version" - -#: pro/admin/views/html-settings-updates.php:73 -msgid "Latest Version" -msgstr "Senaste version" - -#: pro/admin/views/html-settings-updates.php:81 -msgid "Update Available" -msgstr "Uppdatering tillgänglig" - -#: pro/admin/views/html-settings-updates.php:89 -msgid "Update Plugin" -msgstr "Uppdatera tillägg" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "Please enter your license key above 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:97 -msgid "Check Again" -msgstr "Kontrollera igen" - -#: pro/admin/views/html-settings-updates.php:104 -msgid "Changelog" -msgstr "Ändringslogg" - -#: pro/admin/views/html-settings-updates.php:114 -msgid "Upgrade Notice" -msgstr "Uppgraderingsnotering" - -#: pro/blocks.php:37 -msgid "Block type name is required." -msgstr "Blocktypsnamn är obligatoriskt." - -#: pro/blocks.php:44 -#, php-format -msgid "Block type \"%s\" is already registered." -msgstr "Blocktypen \"%s\" är redan registrerad." - -#: pro/blocks.php:444 -msgid "Switch to Edit" -msgstr "Växla till Redigera" - -#: pro/blocks.php:445 -msgid "Switch to Preview" -msgstr "Växla till förhandsgranskning" - -#: pro/blocks.php:446 -msgid "Change content alignment" -msgstr "Ändra innehållsjustering" - -#: pro/blocks.php:449 -#, php-format -msgid "%s settings" -msgstr "%s-inställningar" +"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:25 msgctxt "noun" msgid "Clone" msgstr "Klon" -#: pro/fields/class-acf-field-clone.php:800 +#: pro/fields/class-acf-field-clone.php:815 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:817 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "Visning" -#: pro/fields/class-acf-field-clone.php:818 +#: pro/fields/class-acf-field-clone.php:835 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:823 +#: pro/fields/class-acf-field-clone.php:840 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:824 +#: pro/fields/class-acf-field-clone.php:841 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:845 -#, php-format +#: pro/fields/class-acf-field-clone.php:864 msgid "Labels will be displayed as %s" msgstr "Etiketter kommer att visas som %s" -#: pro/fields/class-acf-field-clone.php:848 +#: pro/fields/class-acf-field-clone.php:869 msgid "Prefix Field Labels" msgstr "Prefix för fältetiketter" -#: pro/fields/class-acf-field-clone.php:859 -#, php-format +#: pro/fields/class-acf-field-clone.php:880 msgid "Values will be saved as %s" msgstr "Värden sparas som %s" -#: pro/fields/class-acf-field-clone.php:862 +#: pro/fields/class-acf-field-clone.php:885 msgid "Prefix Field Names" msgstr "Prefix för fältnamn" -#: pro/fields/class-acf-field-clone.php:980 +#: pro/fields/class-acf-field-clone.php:1001 msgid "Unknown field" msgstr "Okänt fält" -#: pro/fields/class-acf-field-clone.php:1019 +#: pro/fields/class-acf-field-clone.php:1038 msgid "Unknown field group" msgstr "Okänd fältgrupp" -#: pro/fields/class-acf-field-clone.php:1023 -#, php-format +#: pro/fields/class-acf-field-clone.php:1042 msgid "All fields from %s field group" msgstr "Alla fält från %s fältgrupp" -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:193 -#: pro/fields/class-acf-field-repeater.php:464 +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "Lägg till rad" -#: pro/fields/class-acf-field-flexible-content.php:73 -#: pro/fields/class-acf-field-flexible-content.php:921 -#: pro/fields/class-acf-field-flexible-content.php:1003 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" msgstr[0] "layout" msgstr[1] "layouter" -#: pro/fields/class-acf-field-flexible-content.php:74 +#: pro/fields/class-acf-field-flexible-content.php:72 msgid "layouts" msgstr "layouter" -#: pro/fields/class-acf-field-flexible-content.php:77 -#: pro/fields/class-acf-field-flexible-content.php:920 -#: pro/fields/class-acf-field-flexible-content.php:1002 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 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:78 +#: pro/fields/class-acf-field-flexible-content.php:76 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:81 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{available} {label} {identifier} available (max {max})" msgstr "{available} {label} {identifier} tillgänglig (max {max})" -#: pro/fields/class-acf-field-flexible-content.php:82 +#: pro/fields/class-acf-field-flexible-content.php:80 msgid "{required} {label} {identifier} required (min {min})" msgstr "{required} {label} {identifier} krävs (min {min})" -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:83 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:287 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:276 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:414 +#: pro/fields/class-acf-field-flexible-content.php:413 msgid "Add layout" msgstr "Lägg till layout" -#: pro/fields/class-acf-field-flexible-content.php:415 +#: pro/fields/class-acf-field-flexible-content.php:414 msgid "Duplicate layout" msgstr "Duplicera layout" -#: pro/fields/class-acf-field-flexible-content.php:416 +#: pro/fields/class-acf-field-flexible-content.php:415 msgid "Remove layout" msgstr "Ta bort layout" -#: pro/fields/class-acf-field-flexible-content.php:417 -#: pro/fields/class-acf-field-repeater.php:296 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" msgstr "Klicka för att växla" @@ -3034,27 +3298,44 @@ msgstr "Duplicera layout" msgid "Add New Layout" msgstr "Lägg till ny layout" -#: pro/fields/class-acf-field-flexible-content.php:626 +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "Min" -#: pro/fields/class-acf-field-flexible-content.php:639 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "Max" -#: pro/fields/class-acf-field-flexible-content.php:666 -#: pro/fields/class-acf-field-repeater.php:460 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "Knappetikett" -#: pro/fields/class-acf-field-flexible-content.php:675 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "Lägsta tillåtna antal layouter" -#: pro/fields/class-acf-field-flexible-content.php:684 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "Högsta tillåtna antal layouter" +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +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:1715 +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:1731 +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:73 msgid "Add Image to Gallery" msgstr "Lägg till bild i galleriet" @@ -3063,152 +3344,354 @@ msgstr "Lägg till bild i galleriet" msgid "Maximum selection reached" msgstr "Högsta tillåtna antal val uppnått" -#: pro/fields/class-acf-field-gallery.php:319 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "Längd" -#: pro/fields/class-acf-field-gallery.php:359 +#: pro/fields/class-acf-field-gallery.php:364 msgid "Caption" msgstr "Bildtext" -#: pro/fields/class-acf-field-gallery.php:368 +#: pro/fields/class-acf-field-gallery.php:376 msgid "Alt Text" msgstr "Alternativ text" -#: pro/fields/class-acf-field-gallery.php:484 +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "Lägg till i galleri" -#: pro/fields/class-acf-field-gallery.php:488 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "Massåtgärder" -#: pro/fields/class-acf-field-gallery.php:489 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "Sortera efter uppladdningsdatum" -#: pro/fields/class-acf-field-gallery.php:490 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "Sortera efter redigeringsdatum" -#: pro/fields/class-acf-field-gallery.php:491 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "Sortera efter rubrik" -#: pro/fields/class-acf-field-gallery.php:492 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "Omvänd nuvarande ordning" -#: pro/fields/class-acf-field-gallery.php:504 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "Stäng" -#: pro/fields/class-acf-field-gallery.php:577 +#: pro/fields/class-acf-field-gallery.php:602 msgid "Insert" msgstr "Infoga" -#: pro/fields/class-acf-field-gallery.php:578 +#: pro/fields/class-acf-field-gallery.php:603 msgid "Specify where new attachments are added" msgstr "Specifiera var nya bilagor läggs till" -#: pro/fields/class-acf-field-gallery.php:582 +#: pro/fields/class-acf-field-gallery.php:607 msgid "Append to the end" msgstr "Lägg till i slutet" -#: pro/fields/class-acf-field-gallery.php:583 +#: pro/fields/class-acf-field-gallery.php:608 msgid "Prepend to the beginning" msgstr "Lägg till början" -#: pro/fields/class-acf-field-gallery.php:602 +#: pro/fields/class-acf-field-gallery.php:633 msgid "Minimum Selection" msgstr "Minsta tillåtna antal val" -#: pro/fields/class-acf-field-gallery.php:610 +#: pro/fields/class-acf-field-gallery.php:644 msgid "Maximum Selection" msgstr "Högsta tillåtna antal val" -#: pro/fields/class-acf-field-repeater.php:65 -#: pro/fields/class-acf-field-repeater.php:657 +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "Minsta tillåtna antal rader uppnått ({min} rader)" -#: pro/fields/class-acf-field-repeater.php:66 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "Högsta tillåtna antal rader uppnått ({max} rader)" -#: pro/fields/class-acf-field-repeater.php:333 -msgid "Add row" -msgstr "Lägg till rad" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "Kunde inte ladda in sida" -#: pro/fields/class-acf-field-repeater.php:334 -msgid "Duplicate row" -msgstr "Duplicera rad" - -#: pro/fields/class-acf-field-repeater.php:335 -msgid "Remove row" -msgstr "Ta bort rad" - -#: pro/fields/class-acf-field-repeater.php:413 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" msgstr "Ihopfälld" -#: pro/fields/class-acf-field-repeater.php:414 +#: pro/fields/class-acf-field-repeater.php:175 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:424 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "Minsta tillåtna antal rader" -#: pro/fields/class-acf-field-repeater.php:434 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "Högsta tillåtna antal rader" -#: pro/locations/class-acf-location-block.php:69 +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "Sidnumrering" + +#: pro/fields/class-acf-field-repeater.php:229 +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:240 +msgid "Rows Per Page" +msgstr "Rader per sida" + +#: pro/fields/class-acf-field-repeater.php:241 +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:959 +msgid "Invalid field key." +msgstr "Ogiltig fältnyckel." + +#: pro/fields/class-acf-field-repeater.php:968 +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:389 +msgid "Add row" +msgstr "Lägg till rad" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Duplicera rad" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Ta bort rad" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "Nuvarande sida" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "Första sidan" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "Föregående sida" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s av %2$s" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "Nästa sida" + +#: pro/fields/class-acf-repeater-table.php:469 +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:68 +#: pro/locations/class-acf-location-options-page.php:70 msgid "No options pages exist" msgstr "Det finns inga alternativsidor" -#: pro/options-page.php:74 -msgid "Options Updated" -msgstr "Alternativ uppdaterade" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "Inaktivera licens" -#: pro/updates.php:97 -#, php-format +#: 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 enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." +"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 aktivera uppdateringar, fyll i din licensnyckel på sidan uppdateringar. Om du inte har en licensnyckel, gå till sidan detaljer och priser." +"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." -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" +#: pro/admin/views/html-settings-updates.php:41 +msgid "License Key" +msgstr "Licensnyckel" -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Anpassa Wordpress med kraftfulla, professionella och intuitiva fält." +#: 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." -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "Försök aktivera igen" + +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Uppdateringsinformation" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Nuvarande version" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Senaste version" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Uppdatering tillgänglig" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above 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:109 +msgid "Update Plugin" +msgstr "Uppdatera tillägg" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "Återaktivera din licens för att låsa upp uppdateringar" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Ändringslogg" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Uppgraderingsnotering" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Inaktiverad" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Inaktiverad (%s)" +#~ msgstr[1] "Inaktiverade (%s)" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Flytta till papperskorgen. Är du säker?" + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Fältet %s kan nu hittas i fältgruppen %s" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Välj de fältgrupper som du vill exportera och sedan välj din exportmetod. " +#~ "Använd knappen för exportera till en .json fil som du sedan kan importera " +#~ "till en annan ACF installation. Använd generera-knappen för att exportera " +#~ "PHP kod som du kan lägga till i ditt tema." + +#~ msgid "Export File" +#~ msgstr "Exportera fil" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Välj den Advanced Custom Fields JSON-fil som du vill importera. När du " +#~ "klickar på import-knappen så kommer ACF importera fältgrupperna." + +#~ msgid "Import File" +#~ msgstr "Importera fil" + +#~ msgid "Required?" +#~ msgstr "Obligatorisk?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Inga fält. Klicka på knappen + Lägg till fält för att " +#~ "skapa ditt första fält." + +#~ msgid "+ Add Field" +#~ msgstr "+ Lägg till fält" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Webbplatsen kräver en databasuppgradering från %s till %s" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Tack för du uppdaterade till %s v%s!" + +#~ msgid "Allow Custom" +#~ msgstr "Tillåt annat val" + +#~ msgid "Save Custom" +#~ msgstr "Spara annat val" + +#~ msgid "Toggle" +#~ msgstr "Slå på/av" + +#~ msgid "Other" +#~ msgstr "Annat" + +#~ msgid "Save Other" +#~ msgstr "Spara annat" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s kräver minst %s val" +#~ msgstr[1] "%s kräver minst %s val" + +#~ msgid "Stylised UI" +#~ msgstr "Stylat utseende" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definiera en ändpunkt där de föregående flikarna att stoppas. Detta " +#~ "kommer starta en ny grupp med flikar." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Inga %s" + +#, php-format +#~ 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 "" +#~ "För att aktivera uppdateringar, fyll i din licensnyckel på sidan uppdateringar. Om du inte har en licensnyckel, gå till sidan " +#~ "detaljer och priser." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" #~ msgid "Inactive" #~ msgstr "Inaktiv" -#, php-format -#~ msgid "Inactive (%s)" -#~ msgid_plural "Inactive (%s)" -#~ msgstr[0] "Inaktiv (%s)" -#~ msgstr[1] "Inaktiva (%s)" - #~ msgid "Parent fields" #~ msgstr "Överordnade fält" diff --git a/lang/acf-tr_TR.mo b/lang/acf-tr_TR.mo index 3cb62a0..cb6967a 100644 Binary files a/lang/acf-tr_TR.mo and b/lang/acf-tr_TR.mo differ diff --git a/lang/acf-tr_TR.po b/lang/acf-tr_TR.po index d88d55b..b07a260 100644 --- a/lang/acf-tr_TR.po +++ b/lang/acf-tr_TR.po @@ -1,469 +1,523 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.9.0\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2020-08-18 08:57+1000\n" -"PO-Revision-Date: 2020-08-20 09:50+0300\n" -"Last-Translator: Emre Erkan \n" -"Language-Team: Emre Erkan \n" "Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.1.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:68 -msgid "Advanced Custom Fields" -msgstr "Advanced Custom Fields" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -#: acf.php:348 includes/admin/admin.php:49 -msgid "Field Groups" -msgstr "Alan grupları" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -#: acf.php:349 -msgid "Field Group" -msgstr "Alan grubu" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:350 acf.php:382 includes/admin/admin.php:50 -#: pro/fields/class-acf-field-flexible-content.php:559 -msgid "Add New" -msgstr "Yeni ekle" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:351 -msgid "Add New Field Group" -msgstr "Yeni alan grubu ekle" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:352 -msgid "Edit Field Group" -msgstr "Alan grubunu düzenle" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -#: acf.php:353 -msgid "New Field Group" -msgstr "Yeni alan grubu" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" -#: acf.php:354 -msgid "View Field Group" -msgstr "Alan grubunu görüntüle" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" -#: acf.php:355 -msgid "Search Field Groups" -msgstr "Alan gruplarında ara" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:356 -msgid "No Field Groups found" -msgstr "Hiç alan grubu bulunamadı" +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Güncellemeler" -#: acf.php:357 -msgid "No Field Groups found in Trash" -msgstr "Çöpte alan grubu bulunamadı" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" -#: acf.php:380 includes/admin/admin-field-group.php:232 -#: includes/admin/admin-field-groups.php:262 -#: pro/fields/class-acf-field-clone.php:811 -msgid "Fields" -msgstr "Alanlar" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" -#: acf.php:381 -msgid "Field" -msgstr "Alan" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" -#: acf.php:383 -msgid "Add New Field" -msgstr "Yeni elan ekle" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" -#: acf.php:384 -msgid "Edit Field" -msgstr "Alanı düzenle" +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -#: acf.php:385 includes/admin/views/field-group-fields.php:41 -msgid "New Field" -msgstr "Yeni alan" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" -#: acf.php:386 -msgid "View Field" -msgstr "Alanı görüntüle" +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 +msgid "" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -#: acf.php:387 -msgid "Search Fields" -msgstr "Alanlarda ara" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" -#: acf.php:388 -msgid "No Fields found" -msgstr "Hiç alan bulunamadı" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" -#: acf.php:389 -msgid "No Fields found in Trash" -msgstr "Çöpte alan bulunamadı" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" -#: acf.php:424 includes/admin/admin-field-groups.php:226 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:8 +msgid "Gallery Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +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:366 +msgid "Invalid request." +msgstr "Geçersiz istek." + +#: includes/fields/class-acf-field-select.php:679 +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:669 +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:653 +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:644 +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:468 +msgid "%s requires a valid attachment ID." +msgstr "%s geçerli bir ek kimliği gerektirir." + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "REST API'da göster" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Saydamlığı etkinleştir" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA dizisi" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA metni" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex metin" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "Galeri (Yalnızca Pro)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "Çoğalt (Yalnızca Pro)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "Esnek İçerik (Yalnızca Pro)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "Yineleyici (Yalnızca Pro)" + +#: includes/admin/admin-field-group.php:351 msgctxt "post status" -msgid "Disabled" -msgstr "Devre dışı" +msgid "Active" +msgstr "Etkin" -#: acf.php:429 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "Devre dışı (%s)" -msgstr[1] "Devre dışı (%s)" +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' geçerli bir e-posta adresi değil" -#: includes/acf-field-functions.php:831 -#: includes/admin/admin-field-group.php:178 -msgid "(no label)" -msgstr "(etiket yok)" +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Renk değeri" -#: includes/acf-field-group-functions.php:820 -#: includes/admin/admin-field-group.php:180 -msgid "copy" -msgstr "kopyala" +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Varsayılan rengi seç" -#: includes/acf-wp-functions.php:41 -msgid "Posts" -msgstr "Yazılar" - -#: includes/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "Taksonomiler" - -#: includes/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "Ekler" - -#: includes/acf-wp-functions.php:63 -#: includes/admin/views/field-group-options.php:112 -msgid "Comments" -msgstr "Yorumlar" - -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "Bileşenler" - -#: includes/acf-wp-functions.php:71 -#: includes/locations/class-acf-location-nav-menu.php:87 -msgid "Menus" -msgstr "Menüler" - -#: includes/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "Menü ögeleri" - -#: includes/acf-wp-functions.php:79 -msgid "Users" -msgstr "Kullanıcılar" - -#: includes/acf-wp-functions.php:83 pro/options-page.php:51 -msgid "Options" -msgstr "Seçenekler" +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Rengi temizle" #: includes/acf-wp-functions.php:87 msgid "Blocks" msgstr "Bloklar" -#: includes/admin/admin-field-group.php:86 -#: includes/admin/admin-field-group.php:87 -#: includes/admin/admin-field-group.php:89 -msgid "Field group updated." -msgstr "Alan grubu güncellendi." - -#: includes/admin/admin-field-group.php:88 -msgid "Field group deleted." -msgstr "Alan grubu silindi." - -#: includes/admin/admin-field-group.php:91 -msgid "Field group published." -msgstr "Alan grubu yayımlandı." - -#: includes/admin/admin-field-group.php:92 -msgid "Field group saved." -msgstr "Alan grubu kaydedildi." - -#: includes/admin/admin-field-group.php:93 -msgid "Field group submitted." -msgstr "Alan grubu gönderildi." - -#: includes/admin/admin-field-group.php:94 -msgid "Field group scheduled for." -msgstr "Alan grubu zamanlandı." - -#: includes/admin/admin-field-group.php:95 -msgid "Field group draft updated." -msgstr "Alan grubu taslağı güncellendi." - -#: includes/admin/admin-field-group.php:171 -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/admin-field-group.php:172 -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/admin-field-group.php:173 -msgid "Field group title is required" -msgstr "Alan grubu başlığı gerekli" - -#: includes/admin/admin-field-group.php:174 -msgid "Move to trash. Are you sure?" -msgstr "Çöpe taşımak istediğinizden emin misiniz?" - -#: includes/admin/admin-field-group.php:175 -msgid "No toggle fields available" -msgstr "Kullanılabilir aç-kapa alan yok" - -#: includes/admin/admin-field-group.php:176 -msgid "Move Custom Field" -msgstr "Özel alanı taşı" - -#: includes/admin/admin-field-group.php:177 -msgid "Checked" -msgstr "İşaretlendi" - -#: includes/admin/admin-field-group.php:179 -msgid "(this field)" -msgstr "(bu alan)" - -#: includes/admin/admin-field-group.php:181 -#: includes/admin/views/field-group-field-conditional-logic.php:51 -#: includes/admin/views/field-group-field-conditional-logic.php:151 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3675 -msgid "or" -msgstr "veya" - -#: includes/admin/admin-field-group.php:182 -msgid "Null" -msgstr "Boş" - -#: includes/admin/admin-field-group.php:185 -msgid "Has any value" -msgstr "Herhangi bir değer" - -#: includes/admin/admin-field-group.php:186 -msgid "Has no value" -msgstr "Hiçbir değer" - -#: includes/admin/admin-field-group.php:187 -msgid "Value is equal to" -msgstr "Değer eşitse" - -#: includes/admin/admin-field-group.php:188 -msgid "Value is not equal to" -msgstr "Değer eşit değilse" - -#: includes/admin/admin-field-group.php:189 -msgid "Value matches pattern" -msgstr "Değer bir desenle eşleşir" - -#: includes/admin/admin-field-group.php:190 -msgid "Value contains" -msgstr "Değer içeriyor" - -#: includes/admin/admin-field-group.php:191 -msgid "Value is greater than" -msgstr "Değer daha büyük" - -#: includes/admin/admin-field-group.php:192 -msgid "Value is less than" -msgstr "Değer daha az" - -#: includes/admin/admin-field-group.php:193 -msgid "Selection is greater than" -msgstr "Seçin daha büyük" - -#: includes/admin/admin-field-group.php:194 -msgid "Selection is less than" -msgstr "Seçim daha az" - -#: includes/admin/admin-field-group.php:233 -#: includes/admin/admin-field-groups.php:261 -msgid "Location" -msgstr "Konum" - -#: includes/admin/admin-field-group.php:234 -#: includes/admin/tools/class-acf-admin-tool-export.php:295 -msgid "Settings" +#: includes/acf-wp-functions.php:83 +msgid "Options" msgstr "Ayarlar" -#: includes/admin/admin-field-group.php:384 -msgid "Field Keys" -msgstr "Alan anahtarları" +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Kullanıcılar" -#: includes/admin/admin-field-group.php:414 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Etkin" +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menü ögeleri" -#: includes/admin/admin-field-group.php:414 -msgid "Inactive" -msgstr "Etkin değil" +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Bileşenler" -#: includes/admin/admin-field-group.php:775 -msgid "Move Complete." -msgstr "Taşıma tamamlandı." +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Dosya ekleri" -#: includes/admin/admin-field-group.php:776 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "%s alanı artık %s alan grubu altında bulunabilir" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taksonomiler" -#: includes/admin/admin-field-group.php:777 -msgid "Close Window" -msgstr "Pencereyi kapat" +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "İletiler" -#: includes/admin/admin-field-group.php:818 -msgid "Please select the destination for this field" -msgstr "Lütfen bu alan için bir hedef seçin" +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON alan grubu (daha yeni)" -#: includes/admin/admin-field-group.php:825 -msgid "Move Field" -msgstr "Alanı taşı" +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Orijinal alan grubu" -#: includes/admin/admin-field-groups.php:114 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Etkin (%s)" -msgstr[1] "Etkin (%s)" +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Son güncellenme: %s" -#: includes/admin/admin-field-groups.php:193 -msgid "Review local JSON changes" -msgstr "Yerel JSON değişikliklerini incele" +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Üzgünüz, bu alan grubu fark karşılaştırma için uygun değil." -#: includes/admin/admin-field-groups.php:194 -msgid "Loading diff" -msgstr "Fark yükleniyor" +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Geçersiz alan grup no." -#: includes/admin/admin-field-groups.php:195 -#: includes/admin/admin-field-groups.php:529 -msgid "Sync changes" -msgstr "Değişiklikleri eşitle" +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Geçersiz alan grubu parametresi/leri." -#: includes/admin/admin-field-groups.php:259 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/html-admin-page-upgrade-network.php:38 -#: includes/admin/views/html-admin-page-upgrade-network.php:49 -#: pro/fields/class-acf-field-gallery.php:380 -msgid "Description" -msgstr "Açıklama" +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Kayıt edilmeyi bekliyor" -#: includes/admin/admin-field-groups.php:260 -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Anahtar" +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Kaydedildi" -#: includes/admin/admin-field-groups.php:265 -msgid "Local JSON" -msgstr "Yerel JSON" +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "İçe aktar" -#: includes/admin/admin-field-groups.php:415 -msgid "Various" -msgstr "Çeşitli" +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Değişiklikleri incele" -#: includes/admin/admin-field-groups.php:437 -#, php-format +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Konumu: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Eklenti içinde konumlu: %s" + +#: includes/admin/admin-field-groups.php:463 msgid "Located in theme: %s" msgstr "Tema içinde konumlu: %s" #: includes/admin/admin-field-groups.php:441 -#, php-format -msgid "Located in plugin: %s" -msgstr "Eklenti içinde konumlu: %s" +msgid "Various" +msgstr "Çeşitli" -#: includes/admin/admin-field-groups.php:445 -#, php-format -msgid "Located in: %s" -msgstr "Konumu: %s" +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Değişiklikleri eşitle" -#: includes/admin/admin-field-groups.php:465 -#: includes/admin/admin-field-groups.php:683 -msgid "Sync available" -msgstr "Eşitleme mevcut" +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Fark yükleniyor" -#: includes/admin/admin-field-groups.php:468 -msgid "Sync" -msgstr "Eşitle" +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Yerel JSON değişikliklerini incele" -#: includes/admin/admin-field-groups.php:469 -msgid "Review changes" -msgstr "Değişiklikleri incele" +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Web sitesini ziyaret et" -#: includes/admin/admin-field-groups.php:473 -msgid "Import" -msgstr "İçe aktar" +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ayrıntıları görüntüle" -#: includes/admin/admin-field-groups.php:477 -msgid "Saved" -msgstr "Kaydedildi" +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Sürüm %s" -#: includes/admin/admin-field-groups.php:480 -msgid "Awaiting save" -msgstr "Kayıt edilmeyi bekliyor" +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Bilgi" -#: includes/admin/admin-field-groups.php:501 -msgid "Duplicate this item" -msgstr "Bu ögeyi çoğalt" +#: includes/admin/admin.php:160 +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-field-groups.php:501 -#: includes/admin/admin-field-groups.php:521 -#: includes/admin/views/field-group-field.php:46 -#: pro/fields/class-acf-field-flexible-content.php:558 -msgid "Duplicate" -msgstr "Çoğalt" +#: includes/admin/admin.php:156 +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 "" +"Tartışmalar. Topluluk forumlarımızda " +"etkin ve dost canlısı bir topluluğumuz var, sizi ACF dünyasının 'nasıl " +"yaparım'ları ile ilgili yardımcı olabilirler." -#: includes/admin/admin-field-groups.php:551 -#, php-format -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.php:152 +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-field-groups.php:608 -#, php-format -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "Alan grubu eşitlendi." -msgstr[1] "%s alan grubu eşitlendi." +#: includes/admin/admin.php:149 +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-field-groups.php:794 -#, php-format -msgid "Select %s" -msgstr "Seç %s" +#: includes/admin/admin.php:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Yardım ve destek" -#: includes/admin/admin-tools.php:116 -#: includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "Araçlar" +#: includes/admin/admin.php:137 +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-upgrade.php:49 includes/admin/admin-upgrade.php:111 -#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 -#: includes/admin/views/html-admin-page-upgrade-network.php:24 -#: includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "Veritabanını güncelle" +#: includes/admin/admin.php:134 +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-upgrade.php:199 -msgid "Review sites & upgrade" -msgstr "Siteleri incele ve güncelle" - -#: includes/admin/admin.php:48 includes/admin/views/field-group-options.php:110 -msgid "Custom Fields" -msgstr "Özel alanlar" - -#: includes/admin/admin.php:128 includes/admin/admin.php:130 -msgid "Overview" -msgstr "Genel bakış" - -#: includes/admin/admin.php:131 +#: includes/admin/admin.php:132 msgid "" "The Advanced Custom Fields plugin provides a visual form builder to " "customize WordPress edit screens with extra fields, and an intuitive API to " @@ -474,137 +528,557 @@ msgstr "" "ve sezgisel API ile her türlü tema şablon dosyasında bu özel alanlar " "gösterilebiliyor." -#: includes/admin/admin.php:133 -#, php-format -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:129 includes/admin/admin.php:131 +msgid "Overview" +msgstr "Genel görünüm" -#: includes/admin/admin.php:136 -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/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "Konum türü \"%s\" zaten kayıtlı." -#: includes/admin/admin.php:145 includes/admin/admin.php:147 -msgid "Help & Support" -msgstr "Yardım ve destek" +#: includes/locations.php:25 +msgid "Class \"%s\" does not exist." +msgstr "\"%s\" sınıfı mevcut değil." -#: includes/admin/admin.php:148 -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/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Geçersiz nonce." -#: includes/admin/admin.php:151 -#, php-format -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/fields/class-acf-field-user.php:361 +msgid "Error loading field." +msgstr "Alan yükleme sırasında hata." -#: includes/admin/admin.php:155 -#, php-format -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 "" -"Tartışmalar. Topluluk forumlarımızda " -"etkin ve dost canlısı bir topluluğumuz var, sizi ACF dünyasının 'nasıl " -"yaparım'ları ile ilgili yardımcı olabilirler." +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +msgid "Location not found: %s" +msgstr "Konum bulunamadı: %s" -#: includes/admin/admin.php:159 -#, php-format -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/forms/form-user.php:353 +msgid "Error: %s" +msgstr "Hata: %s" -#: includes/admin/admin.php:168 -msgid "Information" -msgstr "Bilgi" +#: includes/locations/class-acf-location-widget.php:22 +msgid "Widget" +msgstr "Bileşen" -#: includes/admin/admin.php:169 -#, php-format -msgid "Version %s" -msgstr "Sürüm %s" +#: includes/locations/class-acf-location-user-role.php:24 +msgid "User Role" +msgstr "Kullanıcı kuralı" -#: includes/admin/admin.php:170 -msgid "View details" -msgstr "Ayrıntıları görüntüle" +#: includes/locations/class-acf-location-comment.php:22 +msgid "Comment" +msgstr "Yorum" -#: includes/admin/admin.php:171 -msgid "Visit website" -msgstr "Web sitesini ziyaret et" +#: includes/locations/class-acf-location-post-format.php:22 +msgid "Post Format" +msgstr "Yazı biçimi" -#: includes/admin/admin.php:200 -#: includes/admin/views/field-group-field-conditional-logic.php:138 -#: includes/admin/views/html-location-rule.php:86 +#: 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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s değeri gerekli" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Alanı bu şart gerçekleşirse göster" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Koşullu mantık" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 msgid "and" msgstr "ve" -#: includes/admin/tools/class-acf-admin-tool-export.php:33 -msgid "Export Field Groups" -msgstr "Alan gruplarını dışarı aktar" +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Yerel JSON" -#: includes/admin/tools/class-acf-admin-tool-export.php:38 -#: includes/admin/tools/class-acf-admin-tool-export.php:342 -#: includes/admin/tools/class-acf-admin-tool-export.php:371 -msgid "Generate PHP" -msgstr "PHP oluştur" - -#: includes/admin/tools/class-acf-admin-tool-export.php:97 -#: includes/admin/tools/class-acf-admin-tool-export.php:135 -msgid "No field groups selected" -msgstr "Hiç alan grubu seçilmemiş" - -#: includes/admin/tools/class-acf-admin-tool-export.php:174 -#, php-format -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "1 alan grubu içeri aktarıldı." -msgstr[1] "%s alan grubu içeri aktarıldı." - -#: includes/admin/tools/class-acf-admin-tool-export.php:241 -#: includes/admin/tools/class-acf-admin-tool-export.php:269 -msgid "Select Field Groups" -msgstr "Alan gruplarını seç" - -#: includes/admin/tools/class-acf-admin-tool-export.php:336 +#: includes/admin/views/html-notice-upgrade.php:31 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Please also check all premium add-ons (%s) are updated to the latest version." msgstr "" -"Dışa aktarma ve sonra dışa aktarma yöntemini seçtikten sonra alan gruplarını " -"seçin. Sonra başka bir ACF yükleme içe bir .json dosyaya vermek için indirme " -"düğmesini kullanın. Tema yerleştirebilirsiniz PHP kodu aktarma düğmesini " -"kullanın." +"Lütfen ayrıca premium eklentilerin de (%s) en üst sürüme güncellendiğinden " +"emin olun." -#: includes/admin/tools/class-acf-admin-tool-export.php:341 -msgid "Export File" -msgstr "Dışarı aktarım dosyası" +#: includes/admin/views/html-notice-upgrade.php:29 +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/tools/class-acf-admin-tool-export.php:414 +#: includes/admin/views/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Veritabanı yükseltmesi gerekiyor" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Seçenekler sayfası" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galeri" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Esnek içerik" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Tekrarlayıcı" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Tüm araçlara geri dön" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "Düzenleme ekranından gizlemek istediğiniz ögeleri seçin." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ekranda gizle" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Geri izlemeleri gönder" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Etiketler" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Kategoriler" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Sayfa özellikleri" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Biçim" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Yazar" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Kısa isim" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Sürümler" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Yorumlar" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Tartışma" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Özet" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "İçerik düzenleyici" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Kalıcı bağlantı" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Alan grubu listesinde görüntülenir" + +#: includes/admin/views/field-group-options.php:122 +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/field-group-options.php:121 +msgid "Order No." +msgstr "Sipariş No." + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Alanlarının altında" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Etiketlerin altında" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Yönerge yerleştirme" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Etiket yerleştirme" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Yan" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Normal (içerikten sonra)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Yüksek (başlıktan sonra)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Konum" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Pürüzsüz (metabox yok)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Standart (WP metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Stil" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Tür" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Anahtar" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Düzen" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Alanı kapat" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "sınıf" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "genişlik" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Kapsayıcı öznitelikleri" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Yazarlara gösterilecek talimatlar. Veri gönderirken gösterilir" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Yönergeler" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Alan tipi" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Tek kelime, boşluksuz. Alt çizgi ve tireye izin var" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Alan adı" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Field Label" +msgstr "Alan etiketi" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Sil" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Sil alanı" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Taşı" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Alanı başka gruba taşı" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Alanı çoğalt" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Alanı düzenle" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Yeniden düzenlemek için sürükleyin" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Bu alan grubunu şu koşulda göster" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Güncelleme yok." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Veritabanı yükseltme tamamlandı. Yenilikler " + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Yükseltme görevlerini okuyor..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Yükseltme başarısız oldu." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Yükseltme başarılı." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Veri %s sürümüne yükseltiliyor" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Site güncel" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Siteleri yükselt" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Kural grubu ekle" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Kurallar" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Kopyalandı" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Panoya kopyala" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -618,685 +1092,688 @@ msgstr "" "bu kodu kopyalayıp temanızın functions.php dosyasına eklemek ya da harici " "bir dosya olarak temanıza dahil etmek." -#: includes/admin/tools/class-acf-admin-tool-export.php:446 -msgid "Copy to clipboard" -msgstr "Panoya kopyala" - -#: includes/admin/tools/class-acf-admin-tool-export.php:483 -msgid "Copied" -msgstr "Kopyalandı" - -#: includes/admin/tools/class-acf-admin-tool-import.php:26 -msgid "Import Field Groups" -msgstr "Alan gruplarını içeri aktar" - -#: includes/admin/tools/class-acf-admin-tool-import.php:47 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." +"Select the field groups 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 "" -"İçeri aktarmak istediğiniz Advanced Custom Fields JSON dosyasını seçin. " -"Aşağıdaki içeri aktar tuşuna bastığınızda ACF alan gruplarını içeri " -"aktaracak." -#: includes/admin/tools/class-acf-admin-tool-import.php:52 -#: includes/fields/class-acf-field-file.php:57 -msgid "Select File" -msgstr "Dosya seç" +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Alan gruplarını seç" -#: includes/admin/tools/class-acf-admin-tool-import.php:62 -msgid "Import File" -msgstr "Dosyayı içeri aktar" +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "1 alan grubu içeri aktarıldı." +msgstr[1] "%s alan grubu içeri aktarıldı." -#: includes/admin/tools/class-acf-admin-tool-import.php:85 -#: includes/fields/class-acf-field-file.php:169 -msgid "No file selected" -msgstr "Dosya seçilmedi" +#: 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-import.php:93 -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-export.php:39 +#: includes/admin/tools/class-acf-admin-tool-export.php:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "PHP oluştur" -#: includes/admin/tools/class-acf-admin-tool-import.php:98 -msgid "Incorrect file type" -msgstr "Geçersiz dosya tipi" +#: 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:107 -msgid "Import file empty" -msgstr "İçe aktarılan dosya boş" - -#: includes/admin/tools/class-acf-admin-tool-import.php:138 -#, php-format +#: includes/admin/tools/class-acf-admin-tool-import.php:147 msgid "Imported 1 field group" msgid_plural "Imported %s field groups" msgstr[0] "1 alan grubu içeri aktarıldı" msgstr[1] "%s alan grubu içeri aktarıldı" -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "Koşullu mantık" +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "İçe aktarılan dosya boş" -#: includes/admin/views/field-group-field-conditional-logic.php:51 -msgid "Show this field if" -msgstr "Alanı bu şart gerçekleşirse göster" +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Geçersiz dosya tipi" -#: includes/admin/views/field-group-field-conditional-logic.php:153 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Kural grubu ekle" +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Dosya yüklenirken hata oluştu. Lütfen tekrar deneyin" -#: includes/admin/views/field-group-field.php:38 -#: pro/fields/class-acf-field-flexible-content.php:410 -#: pro/fields/class-acf-field-repeater.php:299 -msgid "Drag to reorder" -msgstr "Yeniden düzenlemek için sürükleyin" +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" -#: includes/admin/views/field-group-field.php:42 -#: includes/admin/views/field-group-field.php:45 -msgid "Edit field" -msgstr "Alanı düzenle" +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Alan gruplarını içeri aktar" -#: includes/admin/views/field-group-field.php:45 -#: includes/fields/class-acf-field-file.php:151 -#: includes/fields/class-acf-field-image.php:131 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:337 -msgid "Edit" -msgstr "Düzenle" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Eşitle" -#: includes/admin/views/field-group-field.php:46 -msgid "Duplicate field" -msgstr "Alanı çoğalt" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move field to another group" -msgstr "Alanı başka gruba taşı" - -#: includes/admin/views/field-group-field.php:47 -msgid "Move" -msgstr "Taşı" - -#: includes/admin/views/field-group-field.php:48 -msgid "Delete field" -msgstr "Alanı sil" - -#: includes/admin/views/field-group-field.php:48 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Delete" -msgstr "Sil" - -#: includes/admin/views/field-group-field.php:65 -msgid "Field Label" -msgstr "Alan etiketi" +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Seç %s" +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 #: includes/admin/views/field-group-field.php:66 -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/field-group-field.php:75 -msgid "Field Name" -msgstr "Alan adı" - -#: includes/admin/views/field-group-field.php:76 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Tek kelime, boşluksuz. Alt çizgi ve tireye izin var" - -#: includes/admin/views/field-group-field.php:85 -msgid "Field Type" -msgstr "Alan tipi" - -#: includes/admin/views/field-group-field.php:96 -msgid "Instructions" -msgstr "Yönergeler" - -#: includes/admin/views/field-group-field.php:97 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Yazarlara gösterilecek talimatlar. Veri gönderirken gösterilir" - -#: includes/admin/views/field-group-field.php:106 -msgid "Required?" -msgstr "Gerekli mi?" - -#: includes/admin/views/field-group-field.php:129 -msgid "Wrapper Attributes" -msgstr "Kapsayıcı öznitelikleri" - -#: includes/admin/views/field-group-field.php:135 -msgid "width" -msgstr "genişlik" - -#: includes/admin/views/field-group-field.php:150 -msgid "class" -msgstr "sınıf" - -#: includes/admin/views/field-group-field.php:163 -msgid "id" -msgstr "id" - -#: includes/admin/views/field-group-field.php:175 -msgid "Close Field" -msgstr "Alanı kapat" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Sırala" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:420 -#: includes/fields/class-acf-field-radio.php:311 -#: includes/fields/class-acf-field-select.php:433 -#: pro/fields/class-acf-field-flexible-content.php:583 -msgid "Label" -msgstr "Etiket" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:936 -#: pro/fields/class-acf-field-flexible-content.php:597 -msgid "Name" -msgstr "İsim" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Tip" - -#: includes/admin/views/field-group-fields.php:14 -msgid "" -"No fields. Click the + Add Field button to create your " -"first field." -msgstr "" -"Hiç alan yok. İlk alanınızı oluşturmak için + Alan ekle " -"düğmesine tıklayın." - -#: includes/admin/views/field-group-fields.php:31 -msgid "+ Add Field" -msgstr "+ Alan ekle" - -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Kurallar" - -#: includes/admin/views/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/field-group-options.php:23 -msgid "Style" -msgstr "Stil" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Standart (WP metabox)" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Pürüzsüz (metabox yok)" - -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Pozisyon" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Yüksek (başlıktan sonra)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Normal (içerikten sonra)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Yan" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Etiket yerleştirme" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:106 -msgid "Top aligned" -msgstr "Üste hizalı" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:107 -msgid "Left aligned" -msgstr "Sola hizalı" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Yönerge yerleştirme" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Etiketlerin altında" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Alanlarının altında" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Sıra no." - -#: includes/admin/views/field-group-options.php:86 -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/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Alan grubu listesinde görüntülenir" - -#: includes/admin/views/field-group-options.php:107 -msgid "Permalink" -msgstr "Kalıcı bağlantı" - -#: includes/admin/views/field-group-options.php:108 -msgid "Content Editor" -msgstr "İçerik düzenleyici" - -#: includes/admin/views/field-group-options.php:109 -msgid "Excerpt" -msgstr "Özet" - -#: includes/admin/views/field-group-options.php:111 -msgid "Discussion" -msgstr "Tartışma" - -#: includes/admin/views/field-group-options.php:113 -msgid "Revisions" -msgstr "Sürümler" - -#: includes/admin/views/field-group-options.php:114 -msgid "Slug" -msgstr "Kısa isim" - -#: includes/admin/views/field-group-options.php:115 -msgid "Author" -msgstr "Yazar" - -#: includes/admin/views/field-group-options.php:116 -msgid "Format" -msgstr "Biçim" - -#: includes/admin/views/field-group-options.php:117 -msgid "Page Attributes" -msgstr "Sayfa öznitelikleri" - -#: includes/admin/views/field-group-options.php:118 -#: includes/fields/class-acf-field-relationship.php:601 -msgid "Featured Image" -msgstr "Öne çıkarılmış görsel" - -#: includes/admin/views/field-group-options.php:119 -msgid "Categories" -msgstr "Kategoriler" - -#: includes/admin/views/field-group-options.php:120 -msgid "Tags" -msgstr "Etiketler" - -#: includes/admin/views/field-group-options.php:121 -msgid "Send Trackbacks" -msgstr "Geri izlemeleri gönder" - -#: includes/admin/views/field-group-options.php:128 -msgid "Hide on screen" -msgstr "Ekranda gizle" - -#: includes/admin/views/field-group-options.php:129 -msgid "Select items to hide them from the edit screen." -msgstr "Düzenleme ekranından gizlemek istediğiniz ögeleri seçin." - -#: includes/admin/views/field-group-options.php:129 -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/html-admin-page-upgrade-network.php:26 -#, php-format -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/html-admin-page-upgrade-network.php:26 -#: includes/admin/views/html-admin-page-upgrade-network.php:27 -#: includes/admin/views/html-admin-page-upgrade-network.php:92 -msgid "Upgrade Sites" -msgstr "Siteleri yükselt" - -#: includes/admin/views/html-admin-page-upgrade-network.php:36 -#: includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "Site" - -#: includes/admin/views/html-admin-page-upgrade-network.php:74 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "Site için %s sürümünden %s sürümüne veritabanı güncellemesi gerekiyor" - -#: includes/admin/views/html-admin-page-upgrade-network.php:76 -msgid "Site is up to date" -msgstr "Site güncel" - -#: includes/admin/views/html-admin-page-upgrade-network.php:93 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" -"Veritabanı güncellemesi tamamlandı. Ağ panosuna geri dön" - -#: includes/admin/views/html-admin-page-upgrade-network.php:113 -msgid "Please select at least one site to upgrade." -msgstr "Lütfen yükseltmek için en az site seçin." - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -#: includes/admin/views/html-notice-upgrade.php:38 -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/html-admin-page-upgrade-network.php:144 -#: includes/admin/views/html-admin-page-upgrade.php:31 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Veri %s sürümüne yükseltiliyor" - -#: includes/admin/views/html-admin-page-upgrade-network.php:158 -msgid "Upgrade complete." -msgstr "Yükseltme başarılı." - -#: includes/admin/views/html-admin-page-upgrade-network.php:161 -#: includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "Yükseltme başarısız oldu." - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "Yükseltme görevlerini okuyor..." - -#: includes/admin/views/html-admin-page-upgrade.php:33 -#, php-format -msgid "Database upgrade complete. See what's new" -msgstr "" -"Veritabanı güncellemesi tamamlandı. Neler yeni bir göz atın" - -#: includes/admin/views/html-admin-page-upgrade.php:94 -#: includes/ajax/class-acf-ajax-upgrade.php:32 -msgid "No updates available." -msgstr "Güncelleme yok." - +msgid "Duplicate" +msgstr "Mükerrer" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Bu ögeyi çoğalt" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Açıklama" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Eşitleme mevcut" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Alan grubu eşitlendi." +msgstr[1] "%s alan grubu eşitlendi." + +#: includes/admin/admin-field-groups.php:696 +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-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Etkin (%s)" +msgstr[1] "Etkin (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Veritabanını güncelle" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Ek alanlar" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Alanı taşı" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Lütfen bu alan için bir hedef seçin" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Pencereyi kapat" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +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/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Taşıma tamamlandı." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Etkinleştir" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Alan anahtarları" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Ayarlar" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Konum" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Boş" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "kopyala" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(bu alan)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "İşaretlendi" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Özel alanı taşı" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "Kullanılabilir aç-kapa alan yok" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Alan grubu başlığı gerekli" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +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/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +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/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Alan grubu taslağı güncellendi." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "Alan grubu zamanlandı." + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Alan grubu gönderildi." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Alan grubu kaydedildi." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Alan grubu yayımlandı." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Alan grubu silindi." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Alan grubu güncellendi." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 #: includes/admin/views/html-admin-tools.php:21 -msgid "Back to all tools" -msgstr "Tüm araçlara geri dön" +msgid "Tools" +msgstr "Araçlar" -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Bu alan grubunu şu koşulda göster" +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "eşit değilse" -#: includes/admin/views/html-notice-upgrade.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Tekrarlayıcı" +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "eşitse" -#: includes/admin/views/html-notice-upgrade.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Esnek içerik" +#: includes/locations.php:102 +msgid "Forms" +msgstr "Formlar" -#: includes/admin/views/html-notice-upgrade.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Galeri" +#: includes/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Sayfa" -#: includes/admin/views/html-notice-upgrade.php:11 -#: pro/locations/class-acf-location-options-page.php:20 -msgid "Options Page" -msgstr "Seçenekler sayfası" +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Yazı" -#: includes/admin/views/html-notice-upgrade.php:21 -msgid "Database Upgrade Required" -msgstr "Veritabanı yükseltmesi gerekiyor" +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" -#: includes/admin/views/html-notice-upgrade.php:22 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "%s v%s sürümüne güncellediğiniz için teşekkür ederiz!" +#: includes/fields.php:357 +msgid "Relational" +msgstr "İlişkisel" -#: includes/admin/views/html-notice-upgrade.php:22 -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/fields.php:356 +msgid "Choice" +msgstr "Seçim" -#: includes/admin/views/html-notice-upgrade.php:24 -#, php-format -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/fields.php:354 +msgid "Basic" +msgstr "Basit" -#: includes/ajax/class-acf-ajax-local-json-diff.php:34 -msgid "Invalid field group parameter(s)." -msgstr "Geçersiz alan grubu parametresi/leri." +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Bilinmeyen" -#: includes/ajax/class-acf-ajax-local-json-diff.php:41 -msgid "Invalid field group ID." -msgstr "Geçersiz alan grup no." +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Var olmayan alan tipi" -#: includes/ajax/class-acf-ajax-local-json-diff.php:51 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "Üzgünüz, bu alan grubu fark karşılaştırma için uygun değil." +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "İstenmeyen tespit edildi" -#: includes/ajax/class-acf-ajax-local-json-diff.php:57 -#, php-format -msgid "Last updated: %s" -msgstr "Son güncellenme: %s" +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Yazı güncellendi" -#: includes/ajax/class-acf-ajax-local-json-diff.php:62 -msgid "Original field group" -msgstr "Orijinal alan grubu" +#: includes/forms/form-front.php:106 +msgid "Update" +msgstr "Güncelleme" -#: includes/ajax/class-acf-ajax-local-json-diff.php:66 -msgid "JSON field group (newer)" -msgstr "JSON alan grubu (daha yeni)" +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "E-postayı doğrula" -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "Geçersiz nonce." +#: includes/fields.php:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "İçerik" -#: includes/api/api-helpers.php:844 -msgid "Thumbnail" -msgstr "Küçük görsel" +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Başlık" -#: includes/api/api-helpers.php:845 -msgid "Medium" -msgstr "Orta" +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "Alan grubunu düzenle" -#: includes/api/api-helpers.php:846 -msgid "Large" -msgstr "Büyük" +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "Seçim daha az" -#: includes/api/api-helpers.php:895 -msgid "Full Size" -msgstr "Tam boyut" +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "Seçin daha büyük" -#: includes/api/api-helpers.php:1632 includes/api/api-term.php:147 -#: pro/fields/class-acf-field-clone.php:996 -msgid "(no title)" -msgstr "(başlıksız)" +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Değer daha az" -#: includes/api/api-helpers.php:3596 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "Görsel genişliği en az %dpx olmalı." +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Değer daha büyük" -#: includes/api/api-helpers.php:3601 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "Görsel genişliği %dpx değerini geçmemeli." +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Değer içeriyor" -#: includes/api/api-helpers.php:3617 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "Görsel yüksekliği en az %dpx olmalı." +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Değer bir desenle eşleşir" -#: includes/api/api-helpers.php:3622 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "Görsel yüksekliği %dpx değerini geçmemeli." +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/api/api-helpers.php:3640 -#, php-format -msgid "File size must be at least %s." -msgstr "Dosya boyutu en az %s olmalı." +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/api/api-helpers.php:3645 -#, php-format -msgid "File size must not exceed %s." -msgstr "Dosya boyutu %s boyutunu geçmemeli." +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "Hiçbir değer" -#: includes/api/api-helpers.php:3679 -#, php-format -msgid "File type must be %s." -msgstr "Dosya tipi %s olmalı." +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "Herhangi bir değer" -#: includes/assets.php:343 +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Vazgeç" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 msgid "Are you sure?" msgstr "Emin misiniz?" -#: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 -#: pro/admin/views/html-settings-updates.php:88 -msgid "Yes" -msgstr "Evet" +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "%d alan dikkatinizi gerektiriyor" -#: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:174 -#: pro/admin/views/html-settings-updates.php:98 -msgid "No" -msgstr "Hayır" +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 alan dikkatinizi gerektiriyor" -#: includes/assets.php:346 includes/fields/class-acf-field-file.php:153 -#: includes/fields/class-acf-field-image.php:133 -#: includes/fields/class-acf-field-link.php:140 -#: pro/fields/class-acf-field-gallery.php:338 -#: pro/fields/class-acf-field-gallery.php:478 -msgid "Remove" -msgstr "Kaldır" +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Doğrulama başarısız" -#: includes/assets.php:347 -msgid "Cancel" -msgstr "İptal" +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Doğrulama başarılı" -#: includes/assets.php:355 +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Kısıtlı" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Detayları daralt" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Ayrıntıları genişlet" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Bu yazıya yüklenmiş" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Güncelleme" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Düzenle" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 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/assets.php:358 -msgid "Validation successful" -msgstr "Doğrulama başarılı" +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "Dosya tipi %s olmalı." -#: includes/assets.php:359 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "Doğrulama başarısız" +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "veya" -#: includes/assets.php:360 -msgid "1 field requires attention" -msgstr "1 alan dikkatinizi gerektiriyor" +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Dosya boyutu %s boyutunu geçmemeli." -#: includes/assets.php:361 -#, php-format -msgid "%d fields require attention" -msgstr "%d alan dikkatinizi gerektiriyor" +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "Dosya boyutu en az %s olmalı." -#: includes/assets.php:364 includes/forms/form-comment.php:166 -#: pro/admin/admin-options-page.php:325 -msgid "Edit field group" -msgstr "Alan grubunu düzenle" +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Görsel yüksekliği %dpx değerini geçmemeli." -#: includes/fields.php:308 -msgid "Field type does not exist" -msgstr "Var olmayan alan tipi" +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Görsel yüksekliği en az %dpx olmalı." -#: includes/fields.php:308 -msgid "Unknown" -msgstr "Bilinmiyor" +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Görsel genişliği %dpx değerini geçmemeli." -#: includes/fields.php:349 -msgid "Basic" -msgstr "Basit" +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Görsel genişliği en az %dpx olmalı." -#: includes/fields.php:350 includes/forms/form-front.php:47 -msgid "Content" -msgstr "İçerik" +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(başlık yok)" -#: includes/fields.php:351 -msgid "Choice" -msgstr "Seçim" +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Tam boyut" -#: includes/fields.php:352 -msgid "Relational" -msgstr "İlişkisel" +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Büyük" -#: includes/fields.php:353 -msgid "jQuery" -msgstr "jQuery" +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Orta" -#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:389 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:290 -#: pro/fields/class-acf-field-clone.php:843 -#: pro/fields/class-acf-field-flexible-content.php:554 -#: pro/fields/class-acf-field-flexible-content.php:603 -#: pro/fields/class-acf-field-repeater.php:449 -msgid "Layout" -msgstr "Yerleşim" +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Küçük resim" -#: includes/fields/class-acf-field-accordion.php:24 -msgid "Accordion" -msgstr "Akordeon" +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(etiket yok)" -#: includes/fields/class-acf-field-accordion.php:99 -msgid "Open" -msgstr "Açık" +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Metin alanı yüksekliğini ayarla" -#: includes/fields/class-acf-field-accordion.php:100 -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-textarea.php:141 +msgid "Rows" +msgstr "Satırlar" -#: includes/fields/class-acf-field-accordion.php:109 -msgid "Multi-expand" -msgstr "Çoklu genişletme" +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Metin alanı" -#: includes/fields/class-acf-field-accordion.php:110 -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-checkbox.php:447 +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-accordion.php:119 -#: includes/fields/class-acf-field-tab.php:114 -msgid "Endpoint" -msgstr "Uç nokta" +#: includes/fields/class-acf-field-checkbox.php:409 +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-accordion.php:120 +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "‘Özel’ alanların eklenebilmesine izin ver" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Yeni seçenek ekle" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Tümünü aç/kapat" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "Arşivler adresine izin ver" + +#: includes/fields/class-acf-field-page_link.php:165 +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:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Ekle" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Bağlantı ismi" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s eklendi" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s zaten mevcut" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "Kullanıcı yeni %s ekleyemiyor" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "Terim no" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "Terim nesnesi" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "Yazının terimlerinden değerleri yükle" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Terimleri yükle" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "Seçilmiş terimleri yazıya bağla" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Terimleri kaydet" + +#: includes/fields/class-acf-field-taxonomy.php:718 +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:717 +msgid "Create Terms" +msgstr "Terimleri oluştur" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Tekli seçim" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "Tek değer" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Çoklu seçim" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "İşaret kutusu" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Çoklu değer" + +#: includes/fields/class-acf-field-taxonomy.php:766 +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:765 +msgid "Appearance" +msgstr "Görünüm" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "Görüntülenecek taksonomiyi seçin" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +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:256 +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:241 +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:261 +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:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Özel değerlere izin vermek için 'diğer' seçeneği ekle" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radyo düğmesi" + +#: includes/fields/class-acf-field-accordion.php:105 msgid "" "Define an endpoint for the previous accordion to stop. This accordion will " "not be visible." @@ -1304,1480 +1781,1305 @@ msgstr "" "Önceki akordeonun durması için bir son nokta tanımlayın. Bu akordeon " "görüntülenmeyecek." -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Tuş grubu" +#: includes/fields/class-acf-field-accordion.php:94 +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-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "Seçimler" +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "Çoklu genişletme" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "Her seçeneği yeni bir satıra girin." +#: includes/fields/class-acf-field-accordion.php:83 +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-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -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-accordion.php:82 +msgid "Open" +msgstr "Açık" -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "kirmizi : Kırmızı" +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Akordiyon" -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:506 -#: includes/fields/class-acf-field-post_object.php:411 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:382 -#: includes/fields/class-acf-field-taxonomy.php:781 -#: includes/fields/class-acf-field-user.php:63 -msgid "Allow Null?" -msgstr "Boş geçilebilir mi?" +#: includes/fields/class-acf-field-file.php:264 +#: includes/fields/class-acf-field-file.php:276 +msgid "Restrict which files can be uploaded" +msgstr "Yüklenebilecek dosyaları sınırlandırın" -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:380 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:281 -#: includes/fields/class-acf-field-range.php:155 -#: includes/fields/class-acf-field-select.php:373 -#: includes/fields/class-acf-field-text.php:95 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:371 -msgid "Default Value" -msgstr "Varsayılan değer" +#: includes/fields/class-acf-field-file.php:217 +msgid "File ID" +msgstr "Dosya no" -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:282 -#: includes/fields/class-acf-field-range.php:156 -#: includes/fields/class-acf-field-text.php:96 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:372 -msgid "Appears when creating a new post" -msgstr "Yeni bir yazı oluştururken görünür" +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "Dosya adresi" -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:396 -#: includes/fields/class-acf-field-radio.php:297 -msgid "Horizontal" -msgstr "Yatay" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:395 -#: includes/fields/class-acf-field-radio.php:296 -msgid "Vertical" -msgstr "Dikey" - -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:413 -#: includes/fields/class-acf-field-file.php:214 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:304 -#: includes/fields/class-acf-field-taxonomy.php:826 -msgid "Return Value" -msgstr "Dönüş değeri" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:414 #: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:305 -msgid "Specify the returned value on front end" -msgstr "Ön yüzden dönecek değeri belirleyin" +msgid "File Array" +msgstr "Dosya dizisi" -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:419 -#: includes/fields/class-acf-field-radio.php:310 -#: includes/fields/class-acf-field-select.php:432 -msgid "Value" -msgstr "Değer" +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Dosya Ekle" -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:421 -#: includes/fields/class-acf-field-radio.php:312 -#: includes/fields/class-acf-field-select.php:434 -msgid "Both (Array)" -msgstr "İkisi de (Dizi)" +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Dosya seçilmedi" -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:768 -msgid "Checkbox" -msgstr "İşaret kutusu" +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Dosya adı" -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Tümünü aç/kapat" +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Dosyayı güncelle" -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Yeni seçenek ekle" +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Dosya düzenle" -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Allow Custom" -msgstr "Özel değere izin ver" +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "Dönecek değeri belirt" + +#: includes/fields/class-acf-field-select.php:456 +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:358 -msgid "Allow 'custom' values to be added" -msgstr "‘Özel’ alanların eklenebilmesine izin ver" - -#: includes/fields/class-acf-field-checkbox.php:364 -msgid "Save Custom" -msgstr "Özel alanı kaydet" - -#: includes/fields/class-acf-field-checkbox.php:369 -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:381 -#: includes/fields/class-acf-field-select.php:374 +#: includes/fields/class-acf-field-select.php:376 msgid "Enter each default value on a new line" -msgstr "Her varsayılan değeri yeni bir satıra girin" +msgstr "Her satıra bir değer girin" -#: includes/fields/class-acf-field-checkbox.php:403 -msgid "Toggle" -msgstr "Aç - kapat" +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Seçim" -#: includes/fields/class-acf-field-checkbox.php:404 -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-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Yükleme başarısız oldu" -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Renk seçici" +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Aranıyor…" -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Temizle" +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Daha fazla sonuç yükleniyor…" -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Varsayılan" +#: includes/fields/class-acf-field-select.php:115 +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-color_picker.php:70 +#: includes/fields/class-acf-field-select.php:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Eşleşme yok" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Seçim" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "Kullanıcı No" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Kullanıcı nesnesi" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Kullanıcı dizisi" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Bütün kullanıcı rolleri" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Kurala göre filtrele" + +#: includes/fields/class-acf-field-user.php:20 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:73 msgid "Select Color" msgstr "Renk seç" #: includes/fields/class-acf-field-color_picker.php:71 -msgid "Current Color" -msgstr "Şu anki renk" +msgid "Default" +msgstr "Varsayılan" -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Tarih seçici" +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Temizle" -#: includes/fields/class-acf-field-date_picker.php:59 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Tamam" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Bugün" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "İleri" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "Önceki" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "Hf" - -#: includes/fields/class-acf-field-date_picker.php:178 -#: includes/fields/class-acf-field-date_time_picker.php:183 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Gösterim biçimi" - -#: includes/fields/class-acf-field-date_picker.php:179 -#: includes/fields/class-acf-field-date_time_picker.php:184 -#: includes/fields/class-acf-field-time_picker.php:110 -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:187 -#: includes/fields/class-acf-field-date_picker.php:218 -#: includes/fields/class-acf-field-date_time_picker.php:193 -#: includes/fields/class-acf-field-date_time_picker.php:210 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -msgid "Custom:" -msgstr "Özel:" - -#: includes/fields/class-acf-field-date_picker.php:197 -msgid "Save Format" -msgstr "Biçimi kaydet" - -#: includes/fields/class-acf-field-date_picker.php:198 -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:208 -#: includes/fields/class-acf-field-date_time_picker.php:200 -#: includes/fields/class-acf-field-image.php:194 -#: includes/fields/class-acf-field-post_object.php:431 -#: includes/fields/class-acf-field-relationship.php:628 -#: includes/fields/class-acf-field-select.php:427 -#: includes/fields/class-acf-field-time_picker.php:124 -#: includes/fields/class-acf-field-user.php:79 -#: pro/fields/class-acf-field-gallery.php:557 -msgid "Return Format" -msgstr "Dönüş biçimi" - -#: includes/fields/class-acf-field-date_picker.php:209 -#: includes/fields/class-acf-field-date_time_picker.php:201 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "Tema işlevlerinden dönen biçim" - -#: includes/fields/class-acf-field-date_picker.php:227 -#: includes/fields/class-acf-field-date_time_picker.php:217 -msgid "Week Starts On" -msgstr "Hafta başlangıcı" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Tarih zaman seçici" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Zamanı se" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "Zaman" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "Saat" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "Dakika" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "Saniye" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "Milisaniye" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "Mikrosaniye" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "Zaman Dilimi" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Şimdi" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Tamam" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Seç" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -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 amTextShort" -msgid "A" -msgstr "A" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "PM" +#: 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:85 msgctxt "Date Time Picker JS pmTextShort" msgid "P" msgstr "P" -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "E-posta" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:104 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "Yer tutucu metin" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:105 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Girdi alanının içinde görünür" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:194 -#: includes/fields/class-acf-field-text.php:113 -msgid "Prepend" -msgstr "Önüne ekle" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:195 -#: includes/fields/class-acf-field-text.php:114 -msgid "Appears before the input" -msgstr "Girdi alanından önce görünür" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:203 -#: includes/fields/class-acf-field-text.php:122 -msgid "Append" -msgstr "Sonuna ekle" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:204 -#: includes/fields/class-acf-field-text.php:123 -msgid "Appears after the input" -msgstr "Girdi alanından sonra görünür" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Dosya" - -#: includes/fields/class-acf-field-file.php:58 -msgid "Edit File" -msgstr "Dosya düzenle" - -#: includes/fields/class-acf-field-file.php:59 -msgid "Update File" -msgstr "Dosyayı güncelle" - -#: includes/fields/class-acf-field-file.php:141 -msgid "File name" -msgstr "Dosya adı" - -#: includes/fields/class-acf-field-file.php:145 -#: includes/fields/class-acf-field-file.php:247 -#: includes/fields/class-acf-field-file.php:258 -#: includes/fields/class-acf-field-image.php:254 -#: includes/fields/class-acf-field-image.php:283 -#: pro/fields/class-acf-field-gallery.php:642 -#: pro/fields/class-acf-field-gallery.php:671 -msgid "File size" -msgstr "Dosya boyutu" - -#: includes/fields/class-acf-field-file.php:169 -msgid "Add File" -msgstr "Dosya ekle" - -#: includes/fields/class-acf-field-file.php:220 -msgid "File Array" -msgstr "Dosya dizisi" - -#: includes/fields/class-acf-field-file.php:221 -msgid "File URL" -msgstr "Dosya adresi" - -#: includes/fields/class-acf-field-file.php:222 -msgid "File ID" -msgstr "Dosya no" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:219 -#: pro/fields/class-acf-field-gallery.php:592 -msgid "Library" -msgstr "Kitaplık" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:593 -msgid "Limit the media library choice" -msgstr "Ortam kitaplığı seçimini sınırlayın" - -#: includes/fields/class-acf-field-file.php:235 -#: includes/fields/class-acf-field-image.php:225 -#: includes/locations/class-acf-location-attachment.php:71 -#: includes/locations/class-acf-location-comment.php:59 -#: includes/locations/class-acf-location-nav-menu.php:72 -#: includes/locations/class-acf-location-taxonomy.php:61 -#: includes/locations/class-acf-location-user-form.php:65 -#: includes/locations/class-acf-location-user-role.php:76 -#: includes/locations/class-acf-location-widget.php:63 -#: pro/fields/class-acf-field-gallery.php:598 -#: pro/locations/class-acf-location-block.php:64 -msgid "All" -msgstr "Tümü" - -#: includes/fields/class-acf-field-file.php:236 -#: includes/fields/class-acf-field-image.php:226 -#: pro/fields/class-acf-field-gallery.php:599 -msgid "Uploaded to post" -msgstr "Yazıya yüklendi" - -#: includes/fields/class-acf-field-file.php:243 -#: includes/fields/class-acf-field-image.php:233 -#: pro/fields/class-acf-field-gallery.php:621 -msgid "Minimum" -msgstr "En az" - -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "Yüklenebilecek dosyaları sınırlandırın" - -#: includes/fields/class-acf-field-file.php:254 -#: includes/fields/class-acf-field-image.php:262 -#: pro/fields/class-acf-field-gallery.php:650 -msgid "Maximum" -msgstr "En fazla" - -#: includes/fields/class-acf-field-file.php:265 -#: includes/fields/class-acf-field-image.php:291 -#: pro/fields/class-acf-field-gallery.php:678 -msgid "Allowed file types" -msgstr "İzin verilen dosya tipleri" - -#: includes/fields/class-acf-field-file.php:266 -#: includes/fields/class-acf-field-image.php:292 -#: pro/fields/class-acf-field-gallery.php:679 -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-google-map.php:25 -msgid "Google Map" -msgstr "Google haritası" - -#: includes/fields/class-acf-field-google-map.php:59 -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:146 -#: includes/fields/class-acf-field-relationship.php:587 -msgid "Search" -msgstr "Ara" - -#: includes/fields/class-acf-field-google-map.php:147 -msgid "Clear location" -msgstr "Konumu temizle" - -#: includes/fields/class-acf-field-google-map.php:148 -msgid "Find current location" -msgstr "Şu anki konumu bul" - -#: includes/fields/class-acf-field-google-map.php:151 -msgid "Search for address..." -msgstr "Adres arayın…" - -#: includes/fields/class-acf-field-google-map.php:181 -#: includes/fields/class-acf-field-google-map.php:192 -msgid "Center" -msgstr "Merkez" - -#: includes/fields/class-acf-field-google-map.php:182 -#: includes/fields/class-acf-field-google-map.php:193 -msgid "Center the initial map" -msgstr "Haritayı ortala" - -#: includes/fields/class-acf-field-google-map.php:204 -msgid "Zoom" -msgstr "Yaklaş" - -#: includes/fields/class-acf-field-google-map.php:205 -msgid "Set the initial zoom level" -msgstr "Temel yaklaşma seviyesini belirle" - -#: includes/fields/class-acf-field-google-map.php:214 -#: includes/fields/class-acf-field-image.php:245 -#: includes/fields/class-acf-field-image.php:274 -#: includes/fields/class-acf-field-oembed.php:268 -#: pro/fields/class-acf-field-gallery.php:633 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Height" -msgstr "Yükseklik" - -#: includes/fields/class-acf-field-google-map.php:215 -msgid "Customize the map height" -msgstr "Harita yüksekliğini özelleştir" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Grup" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:385 -msgid "Sub Fields" -msgstr "Alt alanlar" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:844 -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/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:849 -#: pro/fields/class-acf-field-flexible-content.php:615 -#: pro/fields/class-acf-field-repeater.php:457 -#: pro/locations/class-acf-location-block.php:20 -msgid "Block" -msgstr "Blok" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:850 -#: pro/fields/class-acf-field-flexible-content.php:614 -#: pro/fields/class-acf-field-repeater.php:456 -msgid "Table" -msgstr "Tablo" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:851 -#: pro/fields/class-acf-field-flexible-content.php:616 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Row" -msgstr "Satır" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Görsel" - -#: includes/fields/class-acf-field-image.php:63 -msgid "Select Image" -msgstr "Görsel seç" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Edit Image" -msgstr "Görseli düzenle" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Update Image" -msgstr "Görseli güncelle" - -#: includes/fields/class-acf-field-image.php:66 includes/media.php:61 -msgid "All images" -msgstr "Tüm görseller" - -#: includes/fields/class-acf-field-image.php:148 -msgid "No image selected" -msgstr "Görsel seçilmedi" - -#: includes/fields/class-acf-field-image.php:148 -msgid "Add Image" -msgstr "Görsel ekle" - -#: includes/fields/class-acf-field-image.php:200 -#: pro/fields/class-acf-field-gallery.php:563 -msgid "Image Array" -msgstr "Görsel dizisi" - -#: includes/fields/class-acf-field-image.php:201 -#: pro/fields/class-acf-field-gallery.php:564 -msgid "Image URL" -msgstr "Görsel adresi" - -#: includes/fields/class-acf-field-image.php:202 -#: pro/fields/class-acf-field-gallery.php:565 -msgid "Image ID" -msgstr "Görsel no" - -#: includes/fields/class-acf-field-image.php:209 -#: pro/fields/class-acf-field-gallery.php:571 -msgid "Preview Size" -msgstr "Önizleme boyutu" - -#: includes/fields/class-acf-field-image.php:234 -#: includes/fields/class-acf-field-image.php:263 -#: pro/fields/class-acf-field-gallery.php:622 -#: pro/fields/class-acf-field-gallery.php:651 -msgid "Restrict which images can be uploaded" -msgstr "Hangi görsellerin yüklenebileceğini sınırlandırın" - -#: includes/fields/class-acf-field-image.php:237 -#: includes/fields/class-acf-field-image.php:266 -#: includes/fields/class-acf-field-oembed.php:257 -#: pro/fields/class-acf-field-gallery.php:625 -#: pro/fields/class-acf-field-gallery.php:654 -msgid "Width" -msgstr "Genişlik" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Bağlantı" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Bağlantı seç" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "Yeni pencerede/sekmede açılır" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Bağlantı dizisi" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "Bağlantı adresi" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Mesaj" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Yeni satırlar" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -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:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Otomatik paragraf ekle" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Otomatik ekle <br>" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Biçimlendirme yok" - -#: 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: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-number.php:25 -msgid "Number" -msgstr "Sayı" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:164 -msgid "Minimum Value" -msgstr "En az değer" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:174 -msgid "Maximum Value" -msgstr "En fazla değer" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:184 -msgid "Step Size" -msgstr "Adım boyutu" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Değer bir sayı olmalı" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -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:245 -#, php-format -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-oembed.php:25 -msgid "oEmbed" -msgstr "oEmbed" - -#: includes/fields/class-acf-field-oembed.php:216 -msgid "Enter URL" -msgstr "Adres girin" - -#: includes/fields/class-acf-field-oembed.php:254 -#: includes/fields/class-acf-field-oembed.php:265 -msgid "Embed Size" -msgstr "Gömme boyutu" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Sayfa bağlantısı" - -#: includes/fields/class-acf-field-page_link.php:170 -msgid "Archives" -msgstr "Arşivler" - -#: includes/fields/class-acf-field-page_link.php:262 -#: includes/fields/class-acf-field-post_object.php:267 -#: includes/fields/class-acf-field-taxonomy.php:958 -msgid "Parent" -msgstr "Ebeveyn" - -#: includes/fields/class-acf-field-page_link.php:478 -#: includes/fields/class-acf-field-post_object.php:383 -#: includes/fields/class-acf-field-relationship.php:554 -msgid "Filter by Post Type" -msgstr "Yazı tipine göre filtre" - -#: includes/fields/class-acf-field-page_link.php:486 -#: includes/fields/class-acf-field-post_object.php:391 -#: includes/fields/class-acf-field-relationship.php:562 -msgid "All post types" -msgstr "Tüm yazı tipleri" - -#: includes/fields/class-acf-field-page_link.php:492 -#: includes/fields/class-acf-field-post_object.php:397 -#: includes/fields/class-acf-field-relationship.php:568 -msgid "Filter by Taxonomy" -msgstr "Taksonomiye göre filtre" - -#: includes/fields/class-acf-field-page_link.php:500 -#: includes/fields/class-acf-field-post_object.php:405 -#: includes/fields/class-acf-field-relationship.php:576 -msgid "All taxonomies" -msgstr "Tüm taksonomiler" - -#: includes/fields/class-acf-field-page_link.php:516 -msgid "Allow Archives URLs" -msgstr "Arşivler adresine izin ver" - -#: includes/fields/class-acf-field-page_link.php:526 -#: includes/fields/class-acf-field-post_object.php:421 -#: includes/fields/class-acf-field-select.php:392 -#: includes/fields/class-acf-field-user.php:71 -msgid "Select multiple values?" -msgstr "Birden çok değer seçilsin mi?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Parola" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:436 -#: includes/fields/class-acf-field-relationship.php:633 -msgid "Post Object" -msgstr "Yazı nesnesi" - -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:634 -msgid "Post ID" -msgstr "Yazı No" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "Radyo düğmesi" - -#: includes/fields/class-acf-field-radio.php:254 -msgid "Other" -msgstr "Diğer" - -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Özel değerlere izin vermek için 'diğer' seçeneği ekle" - -#: includes/fields/class-acf-field-radio.php:265 -msgid "Save Other" -msgstr "Diğerini kaydet" - -#: includes/fields/class-acf-field-radio.php:270 -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-range.php:25 -msgid "Range" -msgstr "Aralık" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "İlişkili" - -#: includes/fields/class-acf-field-relationship.php:62 -msgid "Maximum values reached ( {max} values )" -msgstr "En yüksek değerlere ulaşıldı ({max} değerleri)" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Loading" -msgstr "Yükleniyor" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "No matches found" -msgstr "Eşleşme yok" - -#: includes/fields/class-acf-field-relationship.php:411 -msgid "Select post type" -msgstr "Yazı tipi seç" - -#: includes/fields/class-acf-field-relationship.php:420 -msgid "Select taxonomy" -msgstr "Taksonomi seç" - -#: includes/fields/class-acf-field-relationship.php:476 -msgid "Search..." -msgstr "Ara…" - -#: includes/fields/class-acf-field-relationship.php:582 -msgid "Filters" -msgstr "Filtreler" - -#: includes/fields/class-acf-field-relationship.php:588 -#: includes/locations/class-acf-location-post-type.php:20 -msgid "Post Type" -msgstr "Yazı tipi" - -#: includes/fields/class-acf-field-relationship.php:589 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:751 -#: includes/locations/class-acf-location-taxonomy.php:20 -msgid "Taxonomy" -msgstr "Taksonomi" - -#: includes/fields/class-acf-field-relationship.php:596 -msgid "Elements" -msgstr "Elemanlar" - -#: includes/fields/class-acf-field-relationship.php:597 -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:608 -msgid "Minimum posts" -msgstr "En az gönderi" - -#: includes/fields/class-acf-field-relationship.php:617 -msgid "Maximum posts" -msgstr "En fazla yazı" - -#: includes/fields/class-acf-field-relationship.php:721 -#: pro/fields/class-acf-field-gallery.php:779 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s en az %s seçim gerektirir" -msgstr[1] "%s en az %s seçim gerektirir" - -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:773 -msgctxt "noun" +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" msgid "Select" msgstr "Seçim" -#: includes/fields/class-acf-field-select.php:111 -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-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Bitti" -#: includes/fields/class-acf-field-select.php:112 -#, php-format -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-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Şimdi" -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Eşleşme yok" +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zaman dilimi" -#: includes/fields/class-acf-field-select.php:114 -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-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosaniye" -#: includes/fields/class-acf-field-select.php:115 -#, php-format -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-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisaniye" -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "Lütfen 1 karakter silin" +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "İkinci" -#: includes/fields/class-acf-field-select.php:117 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "Lütfen %d karakter silin" +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Dakika" -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "Sadece 1 öğe seçebilirsiniz" +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Saat" -#: includes/fields/class-acf-field-select.php:119 -#, php-format -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-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Zaman" -#: includes/fields/class-acf-field-select.php:120 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "Daha fazla sonuç yükleniyor…" +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Zamanı se" -#: includes/fields/class-acf-field-select.php:121 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Aranıyor…" +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Tarih zaman seçici" -#: includes/fields/class-acf-field-select.php:122 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Yükleme başarısız oldu" +#: includes/fields/class-acf-field-accordion.php:104 +msgid "Endpoint" +msgstr "Uç nokta" -#: includes/fields/class-acf-field-select.php:259 includes/media.php:54 -msgctxt "verb" -msgid "Select" -msgstr "Seç" +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Sola hizalı" -#: includes/fields/class-acf-field-select.php:402 -#: includes/fields/class-acf-field-true_false.php:144 -msgid "Stylised UI" -msgstr "Stilize edilmiş kullanıcı arabirimi" +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Üste hizalı" -#: includes/fields/class-acf-field-select.php:412 -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-select.php:428 -msgid "Specify the value returned" -msgstr "Dönecek değeri belirt" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Ayraç" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Sekme" - -#: includes/fields/class-acf-field-tab.php:102 +#: includes/fields/class-acf-field-tab.php:107 msgid "Placement" msgstr "Konumlandırma" -#: includes/fields/class-acf-field-tab.php:115 -msgid "" -"Define an endpoint for the previous tabs to stop. This will start a new " -"group of tabs." -msgstr "" -"Önceki sekmelerin durması için bir uç nokta tanımlayın. Bu yeni sekmeler " -"için bir grup başlatacaktır." +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Sekme" -#: includes/fields/class-acf-field-taxonomy.php:711 -#, php-format -msgctxt "No terms" -msgid "No %s" -msgstr "%s yok" - -#: includes/fields/class-acf-field-taxonomy.php:752 -msgid "Select the taxonomy to be displayed" -msgstr "Görüntülenecek taksonomiyi seçin" - -#: includes/fields/class-acf-field-taxonomy.php:761 -msgid "Appearance" -msgstr "Görünüm" - -#: includes/fields/class-acf-field-taxonomy.php:762 -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:767 -msgid "Multiple Values" -msgstr "Çoklu değer" - -#: includes/fields/class-acf-field-taxonomy.php:769 -msgid "Multi Select" -msgstr "Çoklu seçim" - -#: includes/fields/class-acf-field-taxonomy.php:771 -msgid "Single Value" -msgstr "Tek değer" - -#: includes/fields/class-acf-field-taxonomy.php:772 -msgid "Radio Buttons" -msgstr "Radyo düğmeleri" - -#: includes/fields/class-acf-field-taxonomy.php:796 -msgid "Create Terms" -msgstr "Terimleri oluştur" - -#: includes/fields/class-acf-field-taxonomy.php:797 -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:806 -msgid "Save Terms" -msgstr "Terimleri kaydet" - -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Connect selected terms to the post" -msgstr "Seçilmiş terimleri yazıya bağla" - -#: includes/fields/class-acf-field-taxonomy.php:816 -msgid "Load Terms" -msgstr "Terimleri yükle" - -#: includes/fields/class-acf-field-taxonomy.php:817 -msgid "Load value from posts terms" -msgstr "Yazının terimlerinden değerleri yükle" - -#: includes/fields/class-acf-field-taxonomy.php:831 -msgid "Term Object" -msgstr "Terim nesnesi" - -#: includes/fields/class-acf-field-taxonomy.php:832 -msgid "Term ID" -msgstr "Terim no" - -#: includes/fields/class-acf-field-taxonomy.php:882 -#, php-format -msgid "User unable to add new %s" -msgstr "Kullanıcı yeni %s ekleyemiyor" - -#: includes/fields/class-acf-field-taxonomy.php:892 -#, php-format -msgid "%s already exists" -msgstr "%s zaten mevcut" - -#: includes/fields/class-acf-field-taxonomy.php:924 -#, php-format -msgid "%s added" -msgstr "%s eklendi" - -#: includes/fields/class-acf-field-taxonomy.php:970 -#: includes/locations/class-acf-location-user-form.php:66 -msgid "Add" -msgstr "Ekle" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Metin" - -#: includes/fields/class-acf-field-text.php:131 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Karakter limiti" - -#: includes/fields/class-acf-field-text.php:132 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Limit olmaması için boş bırakın" - -#: includes/fields/class-acf-field-text.php:157 -#: includes/fields/class-acf-field-textarea.php:213 -#, php-format -msgid "Value must not exceed %d characters" -msgstr "Değer %d karakteri geçmemelidir" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Metin alanı" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Satırlar" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Metin alanı yüksekliğini ayarla" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Zaman seçici" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Doğru / yanlış" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "İşaret kutusunun yanında görüntülenen metin" - -#: includes/fields/class-acf-field-true_false.php:155 -msgid "On Text" -msgstr "Açık metni" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "Etkinken görüntülenen metin" - -#: includes/fields/class-acf-field-true_false.php:170 -msgid "Off Text" -msgstr "Kapalı metni" - -#: includes/fields/class-acf-field-true_false.php:171 -msgid "Text shown when inactive" -msgstr "Etkin değilken görüntülenen metin" +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Değer geçerli bir web adresi olmalı" #: includes/fields/class-acf-field-url.php:25 msgid "Url" msgstr "Web adresi" -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Değer geçerli bir web adresi olmalı" +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "Bağlantı adresi" -#: includes/fields/class-acf-field-user.php:20 includes/locations.php:99 -msgid "User" -msgstr "Kullanıcı" +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Bağlantı dizisi" -#: includes/fields/class-acf-field-user.php:51 -msgid "Filter by role" -msgstr "Kurala göre filtrele" +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Yeni pencerede/sekmede açılır" -#: includes/fields/class-acf-field-user.php:59 -msgid "All user roles" -msgstr "Bütün kullanıcı rolleri" +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Bağlantı seç" -#: includes/fields/class-acf-field-user.php:84 -msgid "User Array" -msgstr "Kullanıcı dizisi" +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Link" -#: includes/fields/class-acf-field-user.php:85 -msgid "User Object" -msgstr "Kullanıcı nesnesi" +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "EPosta" -#: includes/fields/class-acf-field-user.php:86 -msgid "User ID" -msgstr "Kullanıcı No" +#: includes/fields/class-acf-field-number.php:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Adım boyutu" -#: includes/fields/class-acf-field-user.php:334 -msgid "Error loading field." -msgstr "Alan yükleme sırasında hata." +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "En fazla değer" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +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:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "İkisi de (Dizi)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Etiket" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Değer" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Dikey" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Yatay" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "kirmizi : Kırmızı" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +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:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Birden çok değer seçilsin mi?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Boş geçilebilir mi?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Ana" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +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:325 +msgid "Delay initialization?" +msgstr "Hazırlık geciktirilsin mi?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Ortam yükleme tuşları gösterilsin mi?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Araç çubuğu" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Sadece Metin" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Sadece görsel" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Görsel ve metin" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Seklemeler" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "TinyMCE hazırlamak için tıklayın" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Metin" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Görsel" #: includes/fields/class-acf-field-wysiwyg.php:25 msgid "Wysiwyg Editor" msgstr "Wysiwyg düzenleyici" -#: includes/fields/class-acf-field-wysiwyg.php:320 -msgid "Visual" -msgstr "Görsel" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Değer %d karakteri geçmemelidir" -#: includes/fields/class-acf-field-wysiwyg.php:321 -msgctxt "Name for the Text editor tab (formerly HTML)" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Limit olmaması için boş bırakın" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Karakter limiti" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Girdi alanından sonra görünür" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Sonuna ekle" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Girdi alanından önce görünür" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Önüne ekle" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Girdi alanının içinde görünür" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Yer tutucu metin" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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-wysiwyg.php:327 -msgid "Click to initialize TinyMCE" -msgstr "TinyMCE hazırlamak için tıklayın" +#: includes/fields/class-acf-field-relationship.php:760 +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-wysiwyg.php:380 -msgid "Tabs" -msgstr "Sekmeler" +#: includes/fields/class-acf-field-post_object.php:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "Yazı ID" -#: includes/fields/class-acf-field-wysiwyg.php:385 -msgid "Visual & Text" -msgstr "Görsel ve metin" +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Yazı nesnesi" -#: includes/fields/class-acf-field-wysiwyg.php:386 -msgid "Visual Only" -msgstr "Sadece görsel" +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "En fazla yazı" -#: includes/fields/class-acf-field-wysiwyg.php:387 -msgid "Text Only" -msgstr "Sadece metin" +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "En az gönderi" -#: includes/fields/class-acf-field-wysiwyg.php:394 -msgid "Toolbar" -msgstr "Araç çubuğu" +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Öne çıkan görsel" -#: includes/fields/class-acf-field-wysiwyg.php:409 -msgid "Show Media Upload Buttons?" -msgstr "Ortam yükleme tuşları gösterilsin mi?" +#: includes/fields/class-acf-field-relationship.php:675 +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-wysiwyg.php:419 -msgid "Delay initialization?" -msgstr "Hazırlık geciktirilsin mi?" +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Elemanlar" -#: includes/fields/class-acf-field-wysiwyg.php:420 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "Alan tıklanana kadar TinyMCE hazırlanmayacaktır" +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Etiketleme" -#: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353 -msgid "Title" -msgstr "Başlık" +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Yazı tipi" -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "E-postayı doğrula" +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Filtreler" -#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 -#: pro/options-page.php:81 -msgid "Update" -msgstr "Güncelle" +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Tüm taksonomiler" -#: includes/forms/form-front.php:105 -msgid "Post updated" -msgstr "Yazı güncellendi" +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Taksonomiye göre filtre" -#: includes/forms/form-front.php:231 -msgid "Spam Detected" -msgstr "İstenmeyen tespit edildi" +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Tüm yazı tipleri" -#: includes/forms/form-user.php:336 -#, php-format -msgid "ERROR: %s" -msgstr "HATA: %s" +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Yazı tipine göre filtre" -#: includes/locations.php:23 -#, php-format -msgid "Class \"%s\" does not exist." -msgstr "\"%s\" sınıfı mevcut değil." +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Ara..." -#: includes/locations.php:34 -#, php-format -msgid "Location type \"%s\" is already registered." -msgstr "Konum türü \"%s\" zaten kayıtlı." +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Taksonomi seç" -#: includes/locations.php:97 includes/locations/class-acf-location-post.php:20 -msgid "Post" -msgstr "Yazı" +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Yazı tipi seç" -#: includes/locations.php:98 includes/locations/class-acf-location-page.php:20 -msgid "Page" -msgstr "Sayfa" +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Eşleşme yok" -#: includes/locations.php:100 -msgid "Forms" -msgstr "Formlar" +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Yükleniyor" -#: includes/locations/abstract-acf-location.php:103 -msgid "is equal to" -msgstr "eşitse" +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "En yüksek değerlere ulaşıldı ({max} değerleri)" -#: includes/locations/abstract-acf-location.php:104 -msgid "is not equal to" -msgstr "eşit değilse" +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "İlişkili" -#: includes/locations/class-acf-location-attachment.php:20 -msgid "Attachment" -msgstr "Ek" +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +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/locations/class-acf-location-attachment.php:82 -#, php-format -msgid "All %s formats" -msgstr "Tüm %s biçimleri" +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "İzin verilen dosya tipleri" -#: includes/locations/class-acf-location-comment.php:20 -msgid "Comment" -msgstr "Yorum" +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "En fazla" -#: includes/locations/class-acf-location-current-user-role.php:20 -msgid "Current User Role" -msgstr "Şu anki kullanıcı rolü" +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Dosya boyutu" -#: includes/locations/class-acf-location-current-user-role.php:75 -msgid "Super Admin" -msgstr "Süper yönetici" +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Hangi görsellerin yüklenebileceğini sınırlandırın" -#: includes/locations/class-acf-location-current-user.php:20 -msgid "Current User" -msgstr "Şu anki kullanıcı" +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "En az" -#: includes/locations/class-acf-location-current-user.php:69 -msgid "Logged in" -msgstr "Giriş yapıldı" +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Yazıya yüklendi" -#: includes/locations/class-acf-location-current-user.php:70 -msgid "Viewing front end" -msgstr "Ön yüz görüntüleniyor" +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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/locations/class-acf-location-current-user.php:71 -msgid "Viewing back end" -msgstr "Arka yüz görüntüleniyor" +#: includes/fields/class-acf-field-file.php:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Ortam kitaplığı seçimini sınırlayın" -#: includes/locations/class-acf-location-nav-menu-item.php:20 -msgid "Menu Item" -msgstr "Menü ögesi" +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Kitaplık" -#: includes/locations/class-acf-location-nav-menu.php:20 -msgid "Menu" -msgstr "Menü" +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Önizleme boyutu" -#: includes/locations/class-acf-location-nav-menu.php:78 -msgid "Menu Locations" -msgstr "Menü konumları" +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "Görsel no" -#: includes/locations/class-acf-location-page-parent.php:20 -msgid "Page Parent" -msgstr "Sayfa ebeveyni" +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "Resim Adresi" -#: includes/locations/class-acf-location-page-template.php:20 -msgid "Page Template" -msgstr "Sayfa şablonu" +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Görsel dizisi" -#: includes/locations/class-acf-location-page-template.php:71 -#: includes/locations/class-acf-location-post-template.php:83 -msgid "Default Template" -msgstr "Varsayılan şablon" +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "Ön yüzden dönecek değeri belirleyin" -#: includes/locations/class-acf-location-page-type.php:20 -msgid "Page Type" -msgstr "Sayfa tipi" +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Dönüş değeri" -#: includes/locations/class-acf-location-page-type.php:106 -msgid "Front Page" -msgstr "Ön sayfa" +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Görsel ekle" -#: includes/locations/class-acf-location-page-type.php:107 -msgid "Posts Page" -msgstr "Yazılar sayfası" +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Resim seçilmedi" -#: includes/locations/class-acf-location-page-type.php:108 -msgid "Top Level Page (no parent)" -msgstr "Üst düzey sayfa (ebeveynsiz)" +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Kaldır" -#: includes/locations/class-acf-location-page-type.php:109 -msgid "Parent Page (has children)" -msgstr "Üst sayfa (alt sayfası olan)" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Child Page (has parent)" -msgstr "Alt sayfa (ebeveyni olan)" - -#: includes/locations/class-acf-location-post-category.php:20 -msgid "Post Category" -msgstr "Yazı kategorisi" - -#: includes/locations/class-acf-location-post-format.php:20 -msgid "Post Format" -msgstr "Yazı biçimi" - -#: includes/locations/class-acf-location-post-status.php:20 -msgid "Post Status" -msgstr "Yazı durumu" - -#: includes/locations/class-acf-location-post-taxonomy.php:20 -msgid "Post Taxonomy" -msgstr "Yazı taksonomisi" - -#: includes/locations/class-acf-location-post-template.php:20 -msgid "Post Template" -msgstr "Yazı şablonu" - -#: includes/locations/class-acf-location-user-form.php:20 -msgid "User Form" -msgstr "Kullanıcı formu" - -#: includes/locations/class-acf-location-user-form.php:67 -msgid "Add / Edit" -msgstr "Ekle / düzenle" - -#: includes/locations/class-acf-location-user-form.php:68 -msgid "Register" -msgstr "Kaydet" - -#: includes/locations/class-acf-location-user-role.php:22 -msgid "User Role" -msgstr "Kullanıcı kuralı" - -#: includes/locations/class-acf-location-widget.php:20 -msgid "Widget" -msgstr "Bileşen" - -#: includes/media.php:55 -msgctxt "verb" +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 msgid "Edit" msgstr "Düzenle" -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Güncelle" +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Tüm görseller" -#: includes/media.php:57 -msgid "Uploaded to this post" -msgstr "Bu yazıya yüklenmiş" +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Görseli güncelle" -#: includes/media.php:58 -msgid "Expand Details" -msgstr "Ayrıntıları genişlet" +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Resmi düzenle" -#: includes/media.php:59 -msgid "Collapse Details" -msgstr "Detayları daralt" +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "Resim Seç" -#: includes/media.php:60 -msgid "Restricted" -msgstr "Kısıtlı" +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Görsel" -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "%s değeri gerekli" +#: includes/fields/class-acf-field-message.php:123 +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" -#. Plugin Name of the plugin/theme -#: pro/acf-pro.php:28 +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "HTML’i güvenli hale getir" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Biçimlendirme yok" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Otomatik ekle <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Otomatik paragraf ekle" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +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:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Yeni satırlar" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Hafta başlangıcı" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:197 +msgid "Save Format" +msgstr "Biçimi kaydet" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Hf" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Önceki" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Sonraki" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Bugün" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Genişlik" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Gömme boyutu" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Etkin değilken görüntülenen metin" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Kapalı metni" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Etkinken görüntülenen metin" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "Açık metni" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Varsayılan değer" + +#: includes/fields/class-acf-field-true_false.php:135 +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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Mesaj" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Hayır" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:471 +msgid "Row" +msgstr "Satır" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Tablo" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Blok" + +#: includes/fields/class-acf-field-group.php:464 +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:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Yerleşim" + +#: includes/fields/class-acf-field-group.php:447 +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:232 +msgid "Customize the map height" +msgstr "Harita yüksekliğini özelleştir" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Ağırlık" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Temel yaklaşma seviyesini belirle" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Yakınlaşma" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Haritayı ortala" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Merkez" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Adres arayın…" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Şu anki konumu bul" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Konumu temizle" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Ara" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "Tema işlevlerinden dönen biçim" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Dönüş biçimi" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Özel:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +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:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +msgid "Display Format" +msgstr "Gösterim biçimi" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Zaman seçici" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Çöpte alan bulunamadı" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Hiç alan bulunamadı" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Alanlarda ara" + +#: acf.php:409 +msgid "View Field" +msgstr "Alanı görüntüle" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Yeni alan" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Alanı düzenle" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Yeni elan ekle" + +#: acf.php:404 +msgid "Field" +msgstr "Alan" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Alanlar" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Çöpte alan grubu bulunamadı" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Hiç alan grubu bulunamadı" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Alan gruplarında ara" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Alan grubunu görüntüle" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Yeni alan grubu" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Alan grubunu düzenle" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Yeni alan grubu ekle" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Yeni ekle" + +#: acf.php:370 +msgid "Field Group" +msgstr "Alan grubu" + +#: acf.php:369 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields PRO" -#: pro/admin/admin-options-page.php:198 +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Blok türü adı gereklidir." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Blok türü \"%s\" zaten kayıtlı." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Düzenlemeye geç" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Önizlemeye geç" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "İçerik hizalamasını değiştir" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s ayarları" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Tekrar kontrol et" + +#: pro/updates.php:561 +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:204 -#, php-format +#: pro/admin/admin-options-page.php:199 msgid "" "No Custom Field Groups found for this options page. Create a " "Custom Field Group" @@ -2785,15 +3087,11 @@ msgstr "" "Bu seçenekler sayfası için hiç özel alan grubu bulunamadı. Bir özel alan grubu oluştur" -#: pro/admin/admin-updates.php:49 +#: 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:118 pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "Güncellemeler" - -#: pro/admin/admin-updates.php:191 +#: pro/admin/admin-updates.php:209 msgid "" "Error. Could not authenticate update package. Please check again or " "deactivate and reactivate your ACF PRO license." @@ -2802,195 +3100,108 @@ msgstr "" "ACF PRO lisansınızı kontrol edin ya da lisansınızı etkisizleştirip, tekrar " "etkinleştirin." -#: 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:19 -#, php-format +#: pro/admin/admin-updates.php:196 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see details & pricing." +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." 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:28 -msgid "License Key" -msgstr "Lisans anahtarı" - -#: pro/admin/views/html-settings-updates.php:60 -msgid "Update Information" -msgstr "Güncelleme bilgisi" - -#: pro/admin/views/html-settings-updates.php:67 -msgid "Current Version" -msgstr "Mevcut sürüm" - -#: pro/admin/views/html-settings-updates.php:75 -msgid "Latest Version" -msgstr "En son sürüm" - -#: pro/admin/views/html-settings-updates.php:83 -msgid "Update Available" -msgstr "Güncelleme mevcut" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "Update Plugin" -msgstr "Eklentiyi güncelle" - -#: pro/admin/views/html-settings-updates.php:93 -msgid "Please enter your license key above 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:99 -msgid "Check Again" -msgstr "Tekrar kontrol et" - -#: pro/admin/views/html-settings-updates.php:106 -msgid "Changelog" -msgstr "Değişiklik kayıtları" - -#: pro/admin/views/html-settings-updates.php:116 -msgid "Upgrade Notice" -msgstr "Yükseltme bildirimi" - -#: pro/blocks.php:36 -msgid "Block type name is required." -msgstr "Blok türü adı gereklidir." - -#: pro/blocks.php:43 -#, php-format -msgid "Block type \"%s\" is already registered." -msgstr "Blok türü \"%s\" zaten kayıtlı." - -#: pro/blocks.php:418 -msgid "Switch to Edit" -msgstr "Düzenlemeye geç" - -#: pro/blocks.php:419 -msgid "Switch to Preview" -msgstr "Önizlemeye geç" - -#: pro/blocks.php:420 -msgid "Change content alignment" -msgstr "İçerik hizalamasını değiştir" - -#: pro/blocks.php:423 -#, php-format -msgid "%s settings" -msgstr "%s ayarları" +"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:25 msgctxt "noun" msgid "Clone" msgstr "Kopyala" -#: pro/fields/class-acf-field-clone.php:812 +#: pro/fields/class-acf-field-clone.php:815 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:829 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "Görüntüle" -#: pro/fields/class-acf-field-clone.php:830 +#: pro/fields/class-acf-field-clone.php:835 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:835 +#: pro/fields/class-acf-field-clone.php:840 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:836 +#: pro/fields/class-acf-field-clone.php:841 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:857 -#, php-format +#: pro/fields/class-acf-field-clone.php:864 msgid "Labels will be displayed as %s" msgstr "Etiketler %s olarak görüntülenir" -#: pro/fields/class-acf-field-clone.php:860 +#: pro/fields/class-acf-field-clone.php:869 msgid "Prefix Field Labels" msgstr "Alan etiketlerine ön ek ekle" -#: pro/fields/class-acf-field-clone.php:871 -#, php-format +#: pro/fields/class-acf-field-clone.php:880 msgid "Values will be saved as %s" msgstr "Değerler %s olarak kaydedilecek" -#: pro/fields/class-acf-field-clone.php:874 +#: pro/fields/class-acf-field-clone.php:885 msgid "Prefix Field Names" msgstr "Alan isimlerine ön ek ekle" -#: pro/fields/class-acf-field-clone.php:992 +#: pro/fields/class-acf-field-clone.php:1001 msgid "Unknown field" msgstr "Bilinmeyen alan" -#: pro/fields/class-acf-field-clone.php:1031 +#: pro/fields/class-acf-field-clone.php:1038 msgid "Unknown field group" msgstr "Bilinmeyen alan grubu" -#: pro/fields/class-acf-field-clone.php:1035 -#, php-format +#: pro/fields/class-acf-field-clone.php:1042 msgid "All fields from %s field group" msgstr "%s alan grubundaki tüm alanlar" -#: pro/fields/class-acf-field-flexible-content.php:31 -#: pro/fields/class-acf-field-repeater.php:193 -#: pro/fields/class-acf-field-repeater.php:469 +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 msgid "Add Row" msgstr "Satır ekle" -#: pro/fields/class-acf-field-flexible-content.php:73 -#: pro/fields/class-acf-field-flexible-content.php:926 -#: pro/fields/class-acf-field-flexible-content.php:1008 +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 msgid "layout" msgid_plural "layouts" msgstr[0] "yerleşim" msgstr[1] "yerleşimler" -#: pro/fields/class-acf-field-flexible-content.php:74 +#: pro/fields/class-acf-field-flexible-content.php:72 msgid "layouts" msgstr "yerleşimler" -#: pro/fields/class-acf-field-flexible-content.php:77 -#: pro/fields/class-acf-field-flexible-content.php:925 -#: pro/fields/class-acf-field-flexible-content.php:1007 +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 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:78 +#: pro/fields/class-acf-field-flexible-content.php:76 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:81 +#: pro/fields/class-acf-field-flexible-content.php:79 msgid "{available} {label} {identifier} available (max {max})" msgstr "{available} {label} {identifier} kullanılabilir (en fazla {max})" -#: pro/fields/class-acf-field-flexible-content.php:82 +#: pro/fields/class-acf-field-flexible-content.php:80 msgid "{required} {label} {identifier} required (min {min})" msgstr "{required} {label} {identifier} gerekli (min {min})" -#: pro/fields/class-acf-field-flexible-content.php:85 +#: pro/fields/class-acf-field-flexible-content.php:83 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:287 -#, php-format +#: pro/fields/class-acf-field-flexible-content.php:276 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 " @@ -3008,52 +3219,69 @@ msgstr "Düzeni çoğalt" msgid "Remove layout" msgstr "Yerleşimi çıkar" -#: pro/fields/class-acf-field-flexible-content.php:416 -#: pro/fields/class-acf-field-repeater.php:301 +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 msgid "Click to toggle" msgstr "Geçiş yapmak için tıklayın" -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder Layout" msgstr "Yerleşimi yeniden sırala" -#: pro/fields/class-acf-field-flexible-content.php:556 +#: pro/fields/class-acf-field-flexible-content.php:551 msgid "Reorder" msgstr "Yeniden sırala" -#: pro/fields/class-acf-field-flexible-content.php:557 +#: pro/fields/class-acf-field-flexible-content.php:552 msgid "Delete Layout" msgstr "Yerleşimi sil" -#: pro/fields/class-acf-field-flexible-content.php:558 +#: pro/fields/class-acf-field-flexible-content.php:553 msgid "Duplicate Layout" msgstr "Yerleşimi çoğalt" -#: pro/fields/class-acf-field-flexible-content.php:559 +#: pro/fields/class-acf-field-flexible-content.php:554 msgid "Add New Layout" msgstr "Yeni yerleşim ekle" -#: pro/fields/class-acf-field-flexible-content.php:631 +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "En düşük" -#: pro/fields/class-acf-field-flexible-content.php:644 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "En yüksek" -#: pro/fields/class-acf-field-flexible-content.php:671 -#: pro/fields/class-acf-field-repeater.php:465 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "Tuş etiketi" -#: pro/fields/class-acf-field-flexible-content.php:680 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "En az yerleşim" -#: pro/fields/class-acf-field-flexible-content.php:689 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "En fazla yerleşim" +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +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:1715 +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:1731 +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:73 msgid "Add Image to Gallery" msgstr "Galeriye görsel ekle" @@ -3062,156 +3290,402 @@ msgstr "Galeriye görsel ekle" msgid "Maximum selection reached" msgstr "En fazla seçim aşıldı" -#: pro/fields/class-acf-field-gallery.php:322 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "Uzunluk" -#: pro/fields/class-acf-field-gallery.php:362 +#: pro/fields/class-acf-field-gallery.php:364 msgid "Caption" msgstr "Başlık" -#: pro/fields/class-acf-field-gallery.php:371 +#: pro/fields/class-acf-field-gallery.php:376 msgid "Alt Text" msgstr "Alternatif metin" -#: pro/fields/class-acf-field-gallery.php:487 +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "Galeriye ekle" -#: pro/fields/class-acf-field-gallery.php:491 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "Toplu eylemler" -#: pro/fields/class-acf-field-gallery.php:492 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "Yüklenme tarihine göre sırala" -#: pro/fields/class-acf-field-gallery.php:493 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "Değiştirme tarihine göre sırala" -#: pro/fields/class-acf-field-gallery.php:494 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "Başlığa göre sırala" -#: pro/fields/class-acf-field-gallery.php:495 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "Sıralamayı ters çevir" -#: pro/fields/class-acf-field-gallery.php:507 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "Kapat" -#: pro/fields/class-acf-field-gallery.php:580 +#: pro/fields/class-acf-field-gallery.php:602 msgid "Insert" msgstr "Ekle" -#: pro/fields/class-acf-field-gallery.php:581 +#: pro/fields/class-acf-field-gallery.php:603 msgid "Specify where new attachments are added" msgstr "Yeni eklerin nereye ekleneceğini belirtin" -#: pro/fields/class-acf-field-gallery.php:585 +#: pro/fields/class-acf-field-gallery.php:607 msgid "Append to the end" msgstr "Sona ekle" -#: pro/fields/class-acf-field-gallery.php:586 +#: pro/fields/class-acf-field-gallery.php:608 msgid "Prepend to the beginning" msgstr "En başa ekleyin" -#: pro/fields/class-acf-field-gallery.php:605 +#: pro/fields/class-acf-field-gallery.php:633 msgid "Minimum Selection" msgstr "En az seçim" -#: pro/fields/class-acf-field-gallery.php:613 +#: pro/fields/class-acf-field-gallery.php:644 msgid "Maximum Selection" msgstr "En fazla seçim" -#: pro/fields/class-acf-field-repeater.php:65 -#: pro/fields/class-acf-field-repeater.php:662 +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "En az satır sayısına ulaşıldı ({min} satır)" -#: pro/fields/class-acf-field-repeater.php:66 +#: pro/fields/class-acf-field-repeater.php:54 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:338 -msgid "Add row" -msgstr "Satır ekle" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" -#: pro/fields/class-acf-field-repeater.php:339 -msgid "Duplicate row" -msgstr "Satırı çoğalt" - -#: pro/fields/class-acf-field-repeater.php:340 -msgid "Remove row" -msgstr "Satır çıkar" - -#: pro/fields/class-acf-field-repeater.php:418 +#: pro/fields/class-acf-field-repeater.php:174 msgid "Collapsed" msgstr "Daraltılmış" -#: pro/fields/class-acf-field-repeater.php:419 +#: pro/fields/class-acf-field-repeater.php:175 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:429 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "En az satır" -#: pro/fields/class-acf-field-repeater.php:439 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "En fazla satır" -#: pro/locations/class-acf-location-block.php:69 +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Satır ekle" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Satırı çoğalt" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Satır çıkar" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +#: 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:68 +#: pro/locations/class-acf-location-options-page.php:70 msgid "No options pages exist" msgstr "Seçenekler sayfayı mevcut değil" -#: pro/options-page.php:82 -msgid "Options Updated" -msgstr "Seçenekler güncellendi" +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "Lisansı devre dışı bırak" -#: pro/updates.php:97 -#, php-format +#: 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 enable updates, please enter your license key on the Updates page. If you don't have a licence key, please see details & pricing." +"To unlock updates, please enter your license key below. 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." +"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." -#: tests/basic/test-blocks.php:279 -msgid "Hero" -msgstr "Manşet" +#: pro/admin/views/html-settings-updates.php:41 +msgid "License Key" +msgstr "Lisans anahtarı" -#: tests/basic/test-blocks.php:280 -msgid "Display a random hero image." -msgstr "Rastgele bir manşet görseli göster." +#: 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ış." -#. Plugin URI of the plugin/theme -#. Author URI of the plugin/theme -msgid "https://www.advancedcustomfields.com" -msgstr "https://www.advancedcustomfields.com" +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "Etkinleştirmeyi yeniden dene" -#. Description of the plugin/theme -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "Güçlü, profesyonel ve sezgisel alanlar ile WordPress'i özelleştirin." +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Güncelleme bilgisi" -#. Author of the plugin/theme -msgid "Elliot Condon" -msgstr "Elliot Condon" +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Mevcut sürüm" +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "En son sürüm" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Güncelleme mevcut" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above 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:109 +msgid "Update Plugin" +msgstr "Eklentiyi güncelle" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" +"Güncellemelerin kilidini açmak için lütfen lisansınızı yeniden etkinleştirin" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Değişiklik kayıtları" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Yükseltme bildirimi" + +#, php-format +#~ msgid "Field group deactivated." +#~ msgid_plural "%s field groups deactivated." +#~ msgstr[0] "Alan grubu silindi." +#~ msgstr[1] "%s alan grubu silindi." + +#, php-format +#~ msgid "Field group activated." +#~ msgid_plural "%s field groups activated." +#~ msgstr[0] "Alan grubu kaydedildi." +#~ msgstr[1] "%s alan grubu kaydedildi." + +#~ msgid "Deactivate" +#~ msgstr "Devre dışı bırak" + +#~ msgid "Deactivate this item" +#~ msgstr "Bu öğeyi devre dışı bırak" + +#~ msgid "Activate" +#~ msgstr "Etkinleştir" + +#~ msgid "Activate this item" +#~ msgstr "Bu öğeyi etkinleştir" + +#~ msgctxt "post status" +#~ msgid "Inactive" +#~ msgstr "Etkin değil" + +#~ msgid "Clone Field" +#~ msgstr "Kopya alanı" + +#, php-format #~ msgid "Inactive (%s)" #~ msgid_plural "Inactive (%s)" #~ msgstr[0] "Etkin olmayan (%s)" #~ msgstr[1] "Etkin olmayan (%s)" +#~ 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 ve Advanced Custom Fields PRO aynı anda etkin " +#~ "olmamalıdır. Advanced Custom Fields eklentisini otomatik olarak devre " +#~ "dışı bıraktık." + +#~ 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 ve Advanced Custom Fields PRO aynı anda etkin " +#~ "olmamalıdır. Advanced Custom Fields PRO eklentisini otomatik olarak devre " +#~ "dışı bıraktık." + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Çöpe taşımak istediğinizden emin misiniz?" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Dışa aktarma ve sonra dışa aktarma yöntemini seçtikten sonra alan " +#~ "gruplarını seçin. Sonra başka bir ACF yükleme içe bir .json dosyaya " +#~ "vermek için indirme düğmesini kullanın. Tema yerleştirebilirsiniz PHP " +#~ "kodu aktarma düğmesini kullanın." + +#~ msgid "Export File" +#~ msgstr "Dışarı aktarım dosyası" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "İçeri aktarmak istediğiniz Advanced Custom Fields JSON dosyasını seçin. " +#~ "Aşağıdaki içeri aktar tuşuna bastığınızda ACF alan gruplarını içeri " +#~ "aktaracak." + +#~ msgid "Import File" +#~ msgstr "Dosyayı içeri aktar" + +#~ msgid "Required?" +#~ msgstr "Gerekli mi?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Hiç alan yok. İlk alanınızı oluşturmak için + Alan ekle " +#~ "düğmesine tıklayın." + +#~ msgid "+ Add Field" +#~ msgstr "+ Alan ekle" + +#~ msgid "Upgrade to Pro" +#~ msgstr "Pro sürüme yükselt" + +#~ msgid "Allow Custom" +#~ msgstr "Özel değere izin ver" + +#~ msgid "Save Custom" +#~ msgstr "Özel alanı kaydet" + +#~ msgid "Toggle" +#~ msgstr "Aç - kapat" + +#~ msgid "Other" +#~ msgstr "Diğer" + +#~ msgid "Save Other" +#~ msgstr "Diğerini kaydet" + +#~ msgid "Stylised UI" +#~ msgstr "Stilize edilmiş kullanıcı arabirimi" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Önceki sekmelerin durması için bir uç nokta tanımlayın. Bu yeni sekmeler " +#~ "için bir grup başlatacaktır." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "%s yok" + +#~ msgid "Delicious Brains" +#~ msgstr "Delicious Brains" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Devre dışı" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Devre dışı (%s)" +#~ msgstr[1] "Devre dışı (%s)" + +#~ msgid "Hero" +#~ msgstr "Manşet" + +#~ msgid "Display a random hero image." +#~ msgstr "Rastgele bir manşet görseli göster." + +#~ msgid "Test JS" +#~ msgstr "JS test et" + +#~ msgid "A block for testing JS." +#~ msgstr "JS test etmek için bir blok." + +#~ msgid "Current Color" +#~ msgstr "Şu anki renk" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + #~ msgid "Status" #~ msgstr "Durum" @@ -3379,9 +3853,6 @@ msgstr "Elliot Condon" #~ "oEmbed alanı videolar, görseller, tweetler, ses ve diğer içeriği kolayca " #~ "gömebilmenizi sağlar." -#~ msgid "Clone Field" -#~ msgstr "Kopya alanı" - #~ msgid "The clone field allows you to select and display existing fields." #~ msgstr "" #~ "Kopya alanı var olan alanları seçme ve görüntülemenize olanak sağlar." @@ -3459,9 +3930,6 @@ msgstr "Elliot Condon" #~ "acf_form() artık gönderim halinde bir sürü yeni ayar ile yeni bir yazı " #~ "oluşturabilir." -#~ msgid "Better Validation" -#~ msgstr "Daha iyi doğrulama" - #~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." #~ msgstr "Form doğrulama artık sadece JS yerine PHP + AJAX ile yapılıyor." diff --git a/lang/acf-uk.mo b/lang/acf-uk.mo index a0fb2cd..56a5c5d 100644 Binary files a/lang/acf-uk.mo and b/lang/acf-uk.mo differ diff --git a/lang/acf-uk.po b/lang/acf-uk.po index 8dbafea..fa6694c 100644 --- a/lang/acf-uk.po +++ b/lang/acf-uk.po @@ -1,165 +1,3044 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2017-10-04 14:50+1000\n" -"PO-Revision-Date: 2018-02-06 10:06+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: skinik \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:67 -msgid "Advanced Custom Fields" -msgstr "Додаткові поля Pro" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -#: acf.php:369 includes/admin/admin.php:117 -msgid "Field Groups" -msgstr "Групи полів" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -#: acf.php:370 -msgid "Field Group" -msgstr "Група полів" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:371 acf.php:403 includes/admin/admin.php:118 -#: pro/fields/class-acf-field-flexible-content.php:557 -msgid "Add New" -msgstr "Додати нову" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:372 -msgid "Add New Field Group" -msgstr "Додати нову групу полів" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:373 -msgid "Edit Field Group" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Оновлення" + +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" + +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" + +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 +msgid "" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" + +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" + +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-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/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:7 +msgid "Flexible Content Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:6 +msgid "Repeater Field" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 +msgid "" +"Choose from over 30 field types. Learn " +"more." +msgstr "" + +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" + +#: includes/admin/views/field-group-fields.php:53 +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/field-group-fields.php:32 +msgid "#" +msgstr "" + +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" + +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" + +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" + +#: includes/admin/views/field-group-field.php:94 +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:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" + +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" +"Розширені настроювані поля та розширені настроювані поля не повинні бути " +"активними одночасно. Ми автоматично деактивували Advanced Custom Fields PRO." + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "Невірний запит." + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "Показати в REST API" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Увімкнути прозорість" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA Масив" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA рядок" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "HEX рядок" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "Діюча" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "'%s' неправильна адреса електронної пошти" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Значення кольору" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Вибрати колір за замовчуванням" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Очистити колір" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Блоки" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Параметри" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Користувачі" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Пункти Меню" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Віджети" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Вкладення" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Таксономії" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Записи" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Група полів JSON (новіша)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Оригінальна група полів" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Останнє оновлення: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "На жаль, ця група полів недоступна для порівняння різниць." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Недійсний ідентифікатор ID групи полів." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Недійсний параметр(и) групи полів." + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "Чекає збереження" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "Збережено" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "Імпорт" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "Перегляньте зміни" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "Розташовано в: %s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "Розташовано в плагіні: %s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "Розташовано в Темі: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "Різні" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "Синхронізувати зміни" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "Завантаження різного" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "Перегляньте локальні зміни JSON" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Відвідати Сайт" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Переглянути деталі" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Версія %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Інформація" + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" +"Служба Підтримки. Фахівці Служби " +"підтримки в нашому довідковому бюро допоможуть вирішити ваші більш детальні " +"технічні завдання." + +#: includes/admin/admin.php:156 +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:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" +"Документація. Наша розширена " +"документація містить посилання та інструкції щодо більшості ситуацій, з " +"якими ви можете зіткнутися." + +#: includes/admin/admin.php:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Довідка та Підтримка" + +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" +"Будь ласка, скористайтесь вкладкою Довідка та Підтримка, щоб зв’язатись, " +"якщо вам потрібна допомога." + +#: includes/admin/admin.php:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "Помилка при завантаженні поля." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:365 +msgid "%s value is required" +msgstr "%s значення обов'язкове" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "Показувати поле, якщо" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "Умовна логіка" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "та" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "Локальний JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "Клонувати поле" + +#: includes/admin/views/html-notice-upgrade.php:31 +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "" +"Також перевірте, чи всі додаткові доповнення (%s) оновлені до останньої " +"версії." + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "Ця версія містить вдосконалення вашої бази даних і вимагає оновлення." + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Дякуємо за оновлення до %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Необхідно оновити базу даних" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Сторінка опцій" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Галерея" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Гнучкий вміст" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Повторювальне поле" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Повернутися до всіх інструментів" + +#: includes/admin/views/field-group-options.php:161 +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/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "Оберіть що ховати з екрану редагування/створення." + +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "Ховати на екрані" + +#: includes/admin/views/field-group-options.php:152 +msgid "Send Trackbacks" +msgstr "Надіслати трекбеки" + +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "Позначки" + +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "Категорії" + +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "Властивості сторінки" + +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "Формат" + +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "Автор" + +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "Частина посилання" + +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "Редакції" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "Коментарі" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "Обговорення" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "Уривок" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "Редактор матеріалу" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "Постійне посилання" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "Відображається на сторінці груп полів" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "Групи полів з нижчим порядком з’являться спочатку" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "Порядок розташування" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "Під полями" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "Під ярликами" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "Розміщення інструкцій" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "Розміщення ярликів" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "Збоку" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "Стандартно (після тектового редактора)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "Вгорі (під заголовком)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "Положення" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "Спрощений (без метабоксу)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "Стандартний (WP метабокс)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "Стиль" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "Тип" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "Ключ" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "Порядок" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "Закрити поле" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "клас" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "ширина" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "Атрибути обгортки" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" +msgstr "Вимагається" + +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Напишіть короткий опис для поля" + +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "Інструкція" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "Тип поля" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Одне слово, без пробілів. Можете використовувати нижнє підкреслення." + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "Ярлик" + +#: includes/admin/views/field-group-field.php:122 +msgid "This is the name which will appear on the EDIT page" +msgstr "Ця назва відображується на сторінці редагування" + +#: includes/admin/views/field-group-field.php:121 +msgid "Field Label" +msgstr "Назва поля" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "Видалити" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "Видалити поле" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "Перемістити" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "Перемістити поле до іншої групи" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "Дублювати поле" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "Редагувати поле" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "Перетягніть, щоб змінити порядок" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "Показувати групу полів, якщо" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "Немає оновлень." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "" +"Оновлення бази даних завершено. Подивіться, що нового" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Читання завдань для оновлення…" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Помилка оновлення." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Оновлення завершено." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Оновлення даних до версії %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Виберіть принаймні один сайт для оновлення." + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Оновлення бази даних завершено. Повернутися до Майстерні" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Сайт оновлено" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "Для сайту потрібно оновити базу даних з %1$s до %2$s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Сайт" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Оновити сайти" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Додати групу умов" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Умови" + +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "Скопійовано" + +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "Копіювати в буфер обміну" + +#: includes/admin/tools/class-acf-admin-tool-export.php:362 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Оберіть групи полів" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Експортована 1 група полів." +msgstr[1] "Експортовано %s групи полів." +msgstr[2] "Експортовано %s груп полів." + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +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:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Імпортовано 1 групу полів." +msgstr[1] "Імпортовано %s групи полів." +msgstr[2] "Імпортовано %s груп полів." + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "Файл імпорту порожній" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "Невірний тип файлу" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "Помилка завантаження файлу. Спробуйте знову" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" +msgstr "" +"Виберіть файл JSON Advanced Custom Fields, який потрібно імпортувати. Якщо " +"натиснути кнопку імпорту нижче, ACF імпортує групи полів" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 +msgid "Import Field Groups" +msgstr "Імпортувати групи полів" + +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "Синхронізація" + +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "Вибрати %s" + +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "Дублювати" + +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "Дублювати цей елемент" + +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Опис" + +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "Доступна синхронізація" + +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Групу полів синхронізовано." +msgstr[1] "Синхронізовано %s групи полів." +msgstr[2] "Синхронізовано %s груп полів." + +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Групу полів продубльовано." +msgstr[1] "%s групи полів продубльовано." +msgstr[2] "%s груп полів продубльовано." + +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Активні (%s)" +msgstr[1] "Активні (%s)" +msgstr[2] "Активні (%s)" + +#: includes/admin/admin-upgrade.php:237 +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:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Оновити базу даних" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "Додаткові поля" + +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "Перемістити поле" + +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "Будь ласка, оберіть групу, в яку перемістити" + +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "Закрити вікно" + +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "" + +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "Переміщення завершене." + +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "Активно" + +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "Ключі поля" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "Налаштування" + +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "Розташування" + +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Нуль" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "копіювати" + +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(це поле)" + +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Перевірено" + +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "Перемістити поле" + +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "" + +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "Заголовок обов’язковий" + +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" +msgstr "" + +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "" + +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "Чернетку групи полів оновлено." + +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "" + +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "Групу полів надіслано." + +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "Групу полів збережено." + +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "Групу полів опубліковано." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "Групу полів видалено." + +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "Групу полів оновлено." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Сторінка" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Запис" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Вибір" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Загальне" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Невідомий" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Вміст" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Заголовок" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" msgstr "Редагувати групу полів" -#: acf.php:374 -msgid "New Field Group" -msgstr "Нова група полів" +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "" -#: acf.php:375 -msgid "View Field Group" -msgstr "Переглянути групу полів" +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "" -#: acf.php:376 -msgid "Search Field Groups" -msgstr "Шукати групи полів" +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "Значення меньше ніж" -#: acf.php:377 -msgid "No Field Groups found" -msgstr "Не знайдено груп полів" +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "Значення більше ніж" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "Значення містить" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "Значення відповідає шаблону" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 assets/build/js/acf-input.js:903 +#: assets/build/js/acf-input.js:1116 +msgid "Value is not equal to" +msgstr "Значення не дорівноє" + +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "Значення дорівнює" + +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Скасувати" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "Ви впевнені?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 +msgid "%d fields require attention" +msgstr "" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 поле потребує уваги" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "Помилка валідації" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "Валідація успішна" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 +msgid "Restricted" +msgstr "Обмежено" + +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "Згорнути деталі" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "Показати деталі" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 +msgid "Uploaded to this post" +msgstr "Завантажено до цього запису." + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "Оновлення" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Редагувати" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "Зміни, які ви внесли, буде втрачено, якщо ви перейдете з цієї сторінки" + +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "Тип файлу має бути %s." + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "або" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "Розмір файлу не повинен перевищувати %s." + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "Розмір файлу має бути принаймні %s." + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "Висота зображення не повинна перевищувати %dpx." + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "Висота зображення має бути принаймні %dpx." + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "Ширина зображення не повинна перевищувати %dpx." + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "Ширина зображення має бути принаймні %dpx." + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(без назви)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "Повний розмір" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "Великий" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "Середній" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "Мініатюра" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(Без мітки)" + +#: includes/fields/class-acf-field-textarea.php:142 +msgid "Sets the textarea height" +msgstr "Встановлює висоту текстової області" + +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "Рядки" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Текстова область" + +#: includes/fields/class-acf-field-checkbox.php:447 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Додайте додатковий прапорець, щоб перемикати всі варіанти" + +#: includes/fields/class-acf-field-checkbox.php:409 +msgid "Save 'custom' values to the field's choices" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "Додати новий вибір" + +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "Перемкнути всі" + +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Архіви" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Посилання сторінки" + +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Додати" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "Ім'я" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s доданий" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "ID терміну" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "Завантажити терміни" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "Зберегти терміни" + +#: includes/fields/class-acf-field-taxonomy.php:718 +msgid "Allow new terms to be created whilst editing" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:717 +msgid "Create Terms" +msgstr "Створити терміни" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "Радіо кнопка" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "Вибір декількох" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "Галочка" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "Декілька значень" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "Вигляд" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "Ні %s" + +#: includes/fields/class-acf-field-number.php:263 +msgid "Value must be equal to or lower than %d" +msgstr "" + +#: includes/fields/class-acf-field-number.php:256 +msgid "Value must be equal to or higher than %d" +msgstr "" + +#: includes/fields/class-acf-field-number.php:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "Додати вибір 'Інше', для користувацьких значень" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Радіо Кнопки" + +#: includes/fields/class-acf-field-accordion.php:105 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "Відкрити" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Акордеон" + +#: 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:217 +msgid "File ID" +msgstr "ID файлу" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "URL файлу" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "Масив файлу" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Додати файл" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Файл не вибрано" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Назва файлу" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Оновити файл" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Редагувати файл" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "Використати AJAX для завантаження значень?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Введіть значення. Одне значення в одному рядку" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "Вибрати" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Помилка завантаження" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Пошук…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Завантаження результатів…" + +#: includes/fields/class-acf-field-select.php:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Ви можете вибрати тільки 1 позицію" + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Будь ласка видаліть 1 символ" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "Введіть %d або більше символів" + +#: includes/fields/class-acf-field-select.php:110 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "Будь ласка введіть 1 або більше символів" + +#: includes/fields/class-acf-field-select.php:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Співпадінь не знайдено" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "Вибрати" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "ID користувача" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "Об'єкт користувача" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "Користувацький масив" + +#: includes/fields/class-acf-field-user.php:60 +msgid "All user roles" +msgstr "Всі ролі користувачів" + +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "Фільтр за ролями" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Обрати колір" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "За замовчуванням" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Обрати" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Готово" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Зараз" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Часовий пояс" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Мікросекунд" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Мілісекунд" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Секунд" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Хвилина" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Година" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Час" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "Кінцева точка" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "Зліва" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "Зверху" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "Розміщення" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Вкладка" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "Значення має бути адресою URl" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "URL посилання" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "Масив посилання" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "Розмір кроку" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "Максимальне значення" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "Мінімальне значення" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Діапазон (Range)" + +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "Галочка" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "Мітка" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "Значення" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "Вертикально" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "Горизонтально" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : Червоний" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "Для більшого контролю, Ви можете вказати маркувати значення:" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "У кожному рядку по варіанту" + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Варіанти вибору" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Група кнопок" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "Дозволити множинний вибір?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "Дозволити порожнє значення?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "Предок" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "Відкладена ініціалізація?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "Показувати кнопки завантаження файлів?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "Верхня панель" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "Лише текст" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "Візуальний лише" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "Візуальний і Текстовий" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "Вкладки" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Натисніть, щоб ініціалізувати TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Візуальний" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Візуальний редактор" + +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "Значення не має перевищувати %d символів" + +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Щоб зняти обмеження — нічого не вказуйте тут" + +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Ліміт символів" + +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "Розміщується в кінці поля" + +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "Після поля" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "Розміщується на початку поля" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "Перед полем" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "Показується, якщо поле порожнє" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "Текст заповнювач" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "ID Запису" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "Об’єкт запису" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "Максимум матеріалів" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "Мінімум записів" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "Головне зображення" + +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "Вибрані елементи будуть відображені в кожному результаті" + +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "Елементи" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Таксономія" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Тип запису" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "Фільтри" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "Всі таксономії" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "Фільтр за типом таксономією" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "Всі типи матеріалів" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "Фільтр за типом матеріалу" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Шукати..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Оберіть таксономію" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Вибір типу матеріалу" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "Співпадінь не знайдено" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Завантаження" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Досягнуто максимальних значень ( {max} values )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Зв'язок" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "Перелік, розділений комами. Залиште порожнім для всіх типів" + +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "Дозволені типи файлів" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "Максимум" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "Розмір файлу" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "Обмежте, які зображення можна завантажувати" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "Мінімум" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "Завантажено до матеріалу" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "Обмежте вибір медіатеки" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "Бібліотека" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "Розмір мініатюр" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "ID зображення" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "URL зображення" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "Масив зображення" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "Повернення значення" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Додати зображення" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "Зображення не вибране" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Видалити" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Редагувати" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "Усі зображення" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Оновити зображення" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Редагувати зображення" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "Обрати зображення" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Зображення" + +#: includes/fields/class-acf-field-message.php:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" + +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "Без форматування" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "Автоматичне перенесення рядків (додається теґ <br>)" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "Автоматично додавати абзаци" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "Вкажіть спосіб обробки нових рядків" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "Перенесення рядків" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Тиждень починається з" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Зберегти формат" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Wk" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Попередній" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Далі" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Сьогодні" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "Ширина" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "Розмір вставки" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "Текст відображається, коли неактивний" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "Текст вимкнено" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "Текст відображається, коли активний" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "На тексті" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "Стилізований інтерфейс користувача" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "Значення за замовчуванням" + +#: 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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "Повідомлення" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "Ні" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "Так" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Так / Ні" + +#: includes/fields/class-acf-field-group.php:471 +msgid "Row" +msgstr "Рядок" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "Таблиця" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "Блок" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "Укажіть стиль для візуалізації вибраних полів" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "Компонування" + +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "Підполя" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Група" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "Висота" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Встановіть початковий рівень масштабування" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Збільшити" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Відцентруйте початкову карту" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Центр" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Шукати адресу..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Знайдіть поточне місце розташування" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Очистити розміщення" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "Пошук" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "Формат повернення" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "Користувацький:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Неактивний (%s)" +msgstr[1] "Неактивні (%s)" +msgstr[2] "Неактивних (%s)" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "Не знайдено полів у кошику" + +#: acf.php:411 +msgid "No Fields found" +msgstr "Не знайдено полів" + +#: acf.php:410 +msgid "Search Fields" +msgstr "Шукати поля" + +#: acf.php:409 +msgid "View Field" +msgstr "Переглянути\t поле" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "Нове поле" + +#: acf.php:407 +msgid "Edit Field" +msgstr "Редагувати поле" + +#: acf.php:406 +msgid "Add New Field" +msgstr "Додати нове поле" + +#: acf.php:404 +msgid "Field" +msgstr "Поле" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "Поля" #: acf.php:378 msgid "No Field Groups found in Trash" msgstr "У кошику немає груп полів" -#: acf.php:401 includes/admin/admin-field-group.php:182 -#: includes/admin/admin-field-group.php:275 -#: includes/admin/admin-field-groups.php:510 -#: pro/fields/class-acf-field-clone.php:807 -msgid "Fields" -msgstr "Поля" +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Не знайдено груп полів" -#: acf.php:402 -msgid "Field" -msgstr "Поле" +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Шукати групи полів" -#: acf.php:404 -msgid "Add New Field" -msgstr "Додати нове поле" +#: acf.php:375 +msgid "View Field Group" +msgstr "Переглянути групу полів" -#: acf.php:405 -msgid "Edit Field" -msgstr "Редагувати поле" +#: acf.php:374 +msgid "New Field Group" +msgstr "Нова група полів" -#: acf.php:406 includes/admin/views/field-group-fields.php:41 -#: includes/admin/views/settings-info.php:105 -msgid "New Field" -msgstr "Нове поле" +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Редагувати групу полів" -#: acf.php:407 -msgid "View Field" -msgstr "Переглянути\t поле" +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Додати нову групу полів" -#: acf.php:408 -msgid "Search Fields" -msgstr "Шукати поля" +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Додати новий" -#: acf.php:409 -msgid "No Fields found" -msgstr "Не знайдено полів" +#: acf.php:370 +msgid "Field Group" +msgstr "Група полів" -#: acf.php:410 -msgid "No Fields found in Trash" -msgstr "Не знайдено полів у кошику" +#: acf.php:369 includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "Групи полів" + +#. Description of the plugin +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Налаштуйте WordPress за допомогою потужних, професійних та інтуїтивно " +"зрозумілих полів." + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" #: acf.php:449 includes/admin/admin-field-group.php:390 #: includes/admin/admin-field-groups.php:567 msgid "Inactive" msgstr "Неактивно" -#: acf.php:454 -#, php-format -msgid "Inactive (%s)" -msgid_plural "Inactive (%s)" -msgstr[0] "Неактивні (%s)" -msgstr[1] "Неактивні (%s)" -msgstr[2] "Неактивні (%s)" - -#: includes/admin/admin-field-group.php:68 -#: includes/admin/admin-field-group.php:69 -#: includes/admin/admin-field-group.php:71 -msgid "Field group updated." -msgstr "Групу полів оновлено." - -#: includes/admin/admin-field-group.php:70 -msgid "Field group deleted." -msgstr "Групу полів видалено." - -#: includes/admin/admin-field-group.php:73 -msgid "Field group published." -msgstr "Групу полів опубліковано." - -#: includes/admin/admin-field-group.php:74 -msgid "Field group saved." -msgstr "Групу полів збережено." - -#: includes/admin/admin-field-group.php:75 -msgid "Field group submitted." -msgstr "Групу полів надіслано." - -#: includes/admin/admin-field-group.php:76 -#, fuzzy -msgid "Field group scheduled for." -msgstr "Групу полів збережено." - -#: includes/admin/admin-field-group.php:77 -msgid "Field group draft updated." -msgstr "Чернетку групи полів оновлено." - -#: includes/admin/admin-field-group.php:183 -msgid "Location" -msgstr "Розміщення" - -#: includes/admin/admin-field-group.php:184 -msgid "Settings" -msgstr "Налаштування" - #: includes/admin/admin-field-group.php:269 msgid "Move to trash. Are you sure?" msgstr "Перемістити в кошик. Ви впевнені?" @@ -168,28 +3047,6 @@ msgstr "Перемістити в кошик. Ви впевнені?" msgid "checked" msgstr "" -#: includes/admin/admin-field-group.php:271 -msgid "No toggle fields available" -msgstr "" - -#: includes/admin/admin-field-group.php:272 -msgid "Field group title is required" -msgstr "Заголовок обов’язковий" - -#: includes/admin/admin-field-group.php:273 -#: includes/api/api-field-group.php:751 -msgid "copy" -msgstr "копіювати" - -#: includes/admin/admin-field-group.php:274 -#: includes/admin/views/field-group-field-conditional-logic.php:54 -#: includes/admin/views/field-group-field-conditional-logic.php:154 -#: includes/admin/views/field-group-locations.php:29 -#: includes/admin/views/html-location-group.php:3 -#: includes/api/api-helpers.php:3964 -msgid "or" -msgstr "або" - #: includes/admin/admin-field-group.php:276 msgid "Parent fields" msgstr "Батьківські поля" @@ -198,64 +3055,11 @@ msgstr "Батьківські поля" msgid "Sibling fields" msgstr "" -#: includes/admin/admin-field-group.php:278 -msgid "Move Custom Field" -msgstr "Перемістити поле" - -#: includes/admin/admin-field-group.php:279 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" - -#: includes/admin/admin-field-group.php:280 -msgid "Null" -msgstr "" - -#: includes/admin/admin-field-group.php:281 includes/input.php:258 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" - -#: includes/admin/admin-field-group.php:282 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" - -#: includes/admin/admin-field-group.php:360 -msgid "Field Keys" -msgstr "" - -#: includes/admin/admin-field-group.php:390 -#: includes/admin/views/field-group-options.php:9 -msgid "Active" -msgstr "Активно" - -#: includes/admin/admin-field-group.php:801 -msgid "Move Complete." -msgstr "Переміщення завершене." - #: includes/admin/admin-field-group.php:802 #, php-format msgid "The %s field can now be found in the %s field group" msgstr "Поле «%s» можете знайти у групі «%s»" -#: includes/admin/admin-field-group.php:803 -msgid "Close Window" -msgstr "Закрити вікно" - -#: includes/admin/admin-field-group.php:844 -msgid "Please select the destination for this field" -msgstr "Будь ласка, оберіть групу, в яку перемістити" - -#: includes/admin/admin-field-group.php:851 -msgid "Move Field" -msgstr "Перемістити поле" - -#: includes/admin/admin-field-groups.php:74 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "Активні (%s)" -msgstr[1] "Активні (%s)" -msgstr[2] "Активні (%s)" - #: includes/admin/admin-field-groups.php:142 #, php-format msgid "Field group duplicated. %s" @@ -282,24 +3086,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: includes/admin/admin-field-groups.php:394 -#: includes/admin/admin-field-groups.php:557 -msgid "Sync available" -msgstr "Доступна синхронізація" - -#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 -#: pro/fields/class-acf-field-gallery.php:355 -msgid "Title" -msgstr "Заголовок" - -#: includes/admin/admin-field-groups.php:508 -#: includes/admin/views/field-group-options.php:96 -#: includes/admin/views/install-network.php:21 -#: includes/admin/views/install-network.php:29 -#: pro/fields/class-acf-field-gallery.php:382 -msgid "Description" -msgstr "Опис" - #: includes/admin/admin-field-groups.php:509 msgid "Status" msgstr "Статус" @@ -347,37 +3133,10 @@ msgstr "Про" msgid "Thank you for creating with ACF." msgstr "Спасибі за використання ACF." -#: includes/admin/admin-field-groups.php:668 -msgid "Duplicate this item" -msgstr "Дублювати цей елемент" - -#: includes/admin/admin-field-groups.php:668 -#: includes/admin/admin-field-groups.php:684 -#: includes/admin/views/field-group-field.php:49 -#: pro/fields/class-acf-field-flexible-content.php:556 -msgid "Duplicate" -msgstr "Дублювати" - -#: includes/admin/admin-field-groups.php:701 -#: includes/fields/class-acf-field-google-map.php:112 -#: includes/fields/class-acf-field-relationship.php:656 -msgid "Search" -msgstr "Пошук" - -#: includes/admin/admin-field-groups.php:760 -#, php-format -msgid "Select %s" -msgstr "" - #: includes/admin/admin-field-groups.php:768 msgid "Synchronise field group" msgstr "" -#: includes/admin/admin-field-groups.php:768 -#: includes/admin/admin-field-groups.php:798 -msgid "Sync" -msgstr "" - #: includes/admin/admin-field-groups.php:780 msgid "Apply" msgstr "Застосувати" @@ -386,28 +3145,10 @@ msgstr "Застосувати" msgid "Bulk Actions" msgstr "Масові дії" -#: includes/admin/admin.php:113 -#: includes/admin/views/field-group-options.php:118 -msgid "Custom Fields" -msgstr "Додаткові поля" - -#: includes/admin/install-network.php:88 includes/admin/install.php:70 -#: includes/admin/install.php:121 -msgid "Upgrade Database" -msgstr "Оновити базу даних" - -#: includes/admin/install-network.php:140 -msgid "Review sites & upgrade" -msgstr "" - #: includes/admin/install.php:187 msgid "Error validating request" msgstr "" -#: includes/admin/install.php:210 includes/admin/views/install.php:105 -msgid "No updates available." -msgstr "Немає оновлень." - #: includes/admin/settings-addons.php:51 #: includes/admin/views/settings-addons.php:3 msgid "Add-ons" @@ -425,190 +3166,10 @@ msgstr "Інформація" msgid "What's New" msgstr "Що нового" -#: includes/admin/settings-tools.php:50 -#: includes/admin/views/settings-tools-export.php:19 -#: includes/admin/views/settings-tools.php:31 -msgid "Tools" -msgstr "Інструменти" - -#: includes/admin/settings-tools.php:147 includes/admin/settings-tools.php:380 -msgid "No field groups selected" -msgstr "Не обрано груп полів" - -#: includes/admin/settings-tools.php:184 -#: includes/fields/class-acf-field-file.php:155 -msgid "No file selected" -msgstr "Файл не обрано" - -#: includes/admin/settings-tools.php:197 -msgid "Error uploading file. Please try again" -msgstr "Помилка завантаження файлу. Спробуйте знову" - -#: includes/admin/settings-tools.php:206 -msgid "Incorrect file type" -msgstr "Невірний тип файлу" - -#: includes/admin/settings-tools.php:223 -msgid "Import file empty" -msgstr "Файл імпорту порожній" - -#: includes/admin/settings-tools.php:331 -#, fuzzy, php-format -#| msgid "Import Field Groups" -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "Імпортувати групи полів" -msgstr[1] "Імпортувати групи полів" -msgstr[2] "Імпортувати групи полів" - -#: includes/admin/views/field-group-field-conditional-logic.php:28 -msgid "Conditional Logic" -msgstr "Умовна логіка" - -#: includes/admin/views/field-group-field-conditional-logic.php:54 -msgid "Show this field if" -msgstr "Показувати поле, якщо" - -#: includes/admin/views/field-group-field-conditional-logic.php:103 -#: includes/locations.php:247 -msgid "is equal to" -msgstr "дорівнює" - -#: includes/admin/views/field-group-field-conditional-logic.php:104 -#: includes/locations.php:248 -msgid "is not equal to" -msgstr "не дорівнює" - -#: includes/admin/views/field-group-field-conditional-logic.php:141 -#: includes/admin/views/html-location-rule.php:80 -msgid "and" -msgstr "та" - -#: includes/admin/views/field-group-field-conditional-logic.php:156 -#: includes/admin/views/field-group-locations.php:31 -msgid "Add rule group" -msgstr "Додати групу умов" - -#: includes/admin/views/field-group-field.php:41 -#: pro/fields/class-acf-field-flexible-content.php:403 -#: pro/fields/class-acf-field-repeater.php:296 -msgid "Drag to reorder" -msgstr "Перетягніть, щоб змінити порядок" - -#: includes/admin/views/field-group-field.php:45 -#: includes/admin/views/field-group-field.php:48 -msgid "Edit field" -msgstr "Редагувати поле" - -#: includes/admin/views/field-group-field.php:48 -#: includes/fields/class-acf-field-file.php:137 -#: includes/fields/class-acf-field-image.php:122 -#: includes/fields/class-acf-field-link.php:139 -#: pro/fields/class-acf-field-gallery.php:342 -msgid "Edit" -msgstr "Редагувати" - -#: includes/admin/views/field-group-field.php:49 -msgid "Duplicate field" -msgstr "Дублювати поле" - -#: includes/admin/views/field-group-field.php:50 -msgid "Move field to another group" -msgstr "Перемістити поле до іншої групи" - -#: includes/admin/views/field-group-field.php:50 -msgid "Move" -msgstr "Перемістити" - -#: includes/admin/views/field-group-field.php:51 -msgid "Delete field" -msgstr "Видалити поле" - -#: includes/admin/views/field-group-field.php:51 -#: pro/fields/class-acf-field-flexible-content.php:555 -msgid "Delete" -msgstr "Видалити" - -#: includes/admin/views/field-group-field.php:67 -msgid "Field Label" -msgstr "Назва поля" - -#: includes/admin/views/field-group-field.php:68 -msgid "This is the name which will appear on the EDIT page" -msgstr "Ця назва відображується на сторінці редагування" - -#: includes/admin/views/field-group-field.php:77 -msgid "Field Name" -msgstr "Ярлик" - -#: includes/admin/views/field-group-field.php:78 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "Одне слово, без пробілів. Можете використовувати нижнє підкреслення." - -#: includes/admin/views/field-group-field.php:87 -msgid "Field Type" -msgstr "Тип поля" - -#: includes/admin/views/field-group-field.php:98 -#: includes/fields/class-acf-field-tab.php:88 -msgid "Instructions" -msgstr "Інструкція" - -#: includes/admin/views/field-group-field.php:99 -msgid "Instructions for authors. Shown when submitting data" -msgstr "Напишіть короткий опис для поля" - #: includes/admin/views/field-group-field.php:108 msgid "Required?" msgstr "Обов’язкове?" -#: includes/admin/views/field-group-field.php:131 -msgid "Wrapper Attributes" -msgstr "Атрибути обгортки" - -#: includes/admin/views/field-group-field.php:137 -msgid "width" -msgstr "ширина" - -#: includes/admin/views/field-group-field.php:152 -msgid "class" -msgstr "клас" - -#: includes/admin/views/field-group-field.php:165 -msgid "id" -msgstr "id" - -#: includes/admin/views/field-group-field.php:177 -msgid "Close Field" -msgstr "Закрити поле" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "Порядок" - -#: includes/admin/views/field-group-fields.php:5 -#: includes/fields/class-acf-field-button-group.php:198 -#: includes/fields/class-acf-field-checkbox.php:415 -#: includes/fields/class-acf-field-radio.php:306 -#: includes/fields/class-acf-field-select.php:432 -#: pro/fields/class-acf-field-flexible-content.php:582 -msgid "Label" -msgstr "Ярлик" - -#: includes/admin/views/field-group-fields.php:6 -#: includes/fields/class-acf-field-taxonomy.php:964 -#: pro/fields/class-acf-field-flexible-content.php:595 -msgid "Name" -msgstr "Назва" - -#: includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "Ключ" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "Тип" - #: includes/admin/views/field-group-fields.php:14 msgid "" "No fields. Click the + Add Field button to create your " @@ -620,238 +3181,20 @@ msgstr "" msgid "+ Add Field" msgstr "+ Додати поле" -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "Умови" - -#: includes/admin/views/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/field-group-options.php:23 -msgid "Style" -msgstr "Стиль" - -#: includes/admin/views/field-group-options.php:30 -msgid "Standard (WP metabox)" -msgstr "Стандартний (WP метабокс)" - -#: includes/admin/views/field-group-options.php:31 -msgid "Seamless (no metabox)" -msgstr "Спрощений (без метабоксу)" - -#: includes/admin/views/field-group-options.php:38 -msgid "Position" -msgstr "Розташування" - -#: includes/admin/views/field-group-options.php:45 -msgid "High (after title)" -msgstr "Вгорі (під заголовком)" - -#: includes/admin/views/field-group-options.php:46 -msgid "Normal (after content)" -msgstr "Стандартно (після тектового редактора)" - -#: includes/admin/views/field-group-options.php:47 -msgid "Side" -msgstr "Збоку" - -#: includes/admin/views/field-group-options.php:55 -msgid "Label placement" -msgstr "Розміщення ярликів" - -#: includes/admin/views/field-group-options.php:62 -#: includes/fields/class-acf-field-tab.php:102 -msgid "Top aligned" -msgstr "Зверху" - -#: includes/admin/views/field-group-options.php:63 -#: includes/fields/class-acf-field-tab.php:103 -msgid "Left aligned" -msgstr "Зліва" - -#: includes/admin/views/field-group-options.php:70 -msgid "Instruction placement" -msgstr "Розміщення інструкцій" - -#: includes/admin/views/field-group-options.php:77 -msgid "Below labels" -msgstr "Під ярликами" - -#: includes/admin/views/field-group-options.php:78 -msgid "Below fields" -msgstr "Під полями" - -#: includes/admin/views/field-group-options.php:85 -msgid "Order No." -msgstr "Порядок розташування" - -#: includes/admin/views/field-group-options.php:86 -msgid "Field groups with a lower order will appear first" -msgstr "Групи полів з нижчим порядком з’являться спочатку" - -#: includes/admin/views/field-group-options.php:97 -msgid "Shown in field group list" -msgstr "Відображається на сторінці груп полів" - -#: includes/admin/views/field-group-options.php:107 -msgid "Hide on screen" -msgstr "Ховати на екрані" - -#: includes/admin/views/field-group-options.php:108 -msgid "Select items to hide them from the edit screen." -msgstr "Оберіть що ховати з екрану редагування/створення." - -#: includes/admin/views/field-group-options.php:108 -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/field-group-options.php:115 -msgid "Permalink" -msgstr "Постійне посилання " - -#: includes/admin/views/field-group-options.php:116 -msgid "Content Editor" -msgstr "Редактор матеріалу" - -#: includes/admin/views/field-group-options.php:117 -msgid "Excerpt" -msgstr "Витяг" - -#: includes/admin/views/field-group-options.php:119 -msgid "Discussion" -msgstr "Дискусія" - -#: includes/admin/views/field-group-options.php:120 -msgid "Comments" -msgstr "Коментарі" - -#: includes/admin/views/field-group-options.php:121 -msgid "Revisions" -msgstr "Ревізії" - -#: includes/admin/views/field-group-options.php:122 -msgid "Slug" -msgstr "Ярлик URL" - -#: includes/admin/views/field-group-options.php:123 -msgid "Author" -msgstr "Автор" - -#: includes/admin/views/field-group-options.php:124 -msgid "Format" -msgstr "Формат" - -#: includes/admin/views/field-group-options.php:125 -msgid "Page Attributes" -msgstr "Атрибути сторінки" - -#: includes/admin/views/field-group-options.php:126 -#: includes/fields/class-acf-field-relationship.php:670 -msgid "Featured Image" -msgstr "Головне зображення" - -#: includes/admin/views/field-group-options.php:127 -msgid "Categories" -msgstr "Категорії" - -#: includes/admin/views/field-group-options.php:128 -msgid "Tags" -msgstr "Теґи" - -#: includes/admin/views/field-group-options.php:129 -msgid "Send Trackbacks" -msgstr "Надіслати трекбеки" - -#: includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "Показувати групу полів, якщо" - -#: includes/admin/views/install-network.php:4 -msgid "Upgrade Sites" -msgstr "Оновити сайти" - #: includes/admin/views/install-network.php:9 #: includes/admin/views/install.php:3 msgid "Advanced Custom Fields Database Upgrade" msgstr "" -#: includes/admin/views/install-network.php:11 -#, php-format -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click %s." -msgstr "" - -#: includes/admin/views/install-network.php:20 -#: includes/admin/views/install-network.php:28 -msgid "Site" -msgstr "Сайт" - #: includes/admin/views/install-network.php:48 #, php-format msgid "Site requires database upgrade from %s to %s" msgstr "" -#: includes/admin/views/install-network.php:50 -msgid "Site is up to date" -msgstr "Сайт оновлено" - -#: includes/admin/views/install-network.php:63 -#, php-format -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "" - -#: includes/admin/views/install-network.php:102 -#: includes/admin/views/install-notice.php:42 -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/install-network.php:158 msgid "Upgrade complete" msgstr "Оновлення завершено" -#: includes/admin/views/install-network.php:162 -#: includes/admin/views/install.php:9 -#, php-format -msgid "Upgrading data to version %s" -msgstr "Оновлення даних до версії %s" - -#: includes/admin/views/install-notice.php:8 -#: pro/fields/class-acf-field-repeater.php:25 -msgid "Repeater" -msgstr "Повторювальне поле" - -#: includes/admin/views/install-notice.php:9 -#: pro/fields/class-acf-field-flexible-content.php:25 -msgid "Flexible Content" -msgstr "Гнучкий вміст" - -#: includes/admin/views/install-notice.php:10 -#: pro/fields/class-acf-field-gallery.php:25 -msgid "Gallery" -msgstr "Галерея" - -#: includes/admin/views/install-notice.php:11 -#: pro/locations/class-acf-location-options-page.php:26 -msgid "Options Page" -msgstr "Сторінка опцій" - -#: includes/admin/views/install-notice.php:26 -msgid "Database Upgrade Required" -msgstr "Необхідно оновити базу даних" - #: includes/admin/views/install-notice.php:28 #, php-format msgid "Thank you for updating to %s v%s!" @@ -870,10 +3213,6 @@ msgid "" "latest version." msgstr "" -#: includes/admin/views/install.php:7 -msgid "Reading upgrade tasks..." -msgstr "" - #: includes/admin/views/install.php:11 #, php-format msgid "Database Upgrade complete. See what's new" @@ -1011,10 +3350,6 @@ msgstr "Більше AJAX" msgid "More fields use AJAX powered search to speed up page loading" msgstr "" -#: includes/admin/views/settings-info.php:81 -msgid "Local JSON" -msgstr "Локальний JSON" - #: includes/admin/views/settings-info.php:82 msgid "New auto export to JSON feature improves speed" msgstr "" @@ -1103,11 +3438,6 @@ msgid "" "parents" msgstr "" -#: includes/admin/views/settings-info.php:144 -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "Посилання на сторінку" - #: includes/admin/views/settings-info.php:145 msgid "New archives group in page_link field selection" msgstr "" @@ -1131,23 +3461,6 @@ msgstr "Думаємо, Вам сподобаються зміни у %s." msgid "Export Field Groups to PHP" msgstr "Експортувати групи полів в код PHP" -#: includes/admin/views/settings-tools-export.php:27 -msgid "" -"The following code can be used to register a local version of the selected " -"field group(s). A local field group 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." -msgstr "" - -#: includes/admin/views/settings-tools.php:5 -msgid "Select Field Groups" -msgstr "Оберіть групи полів" - -#: includes/admin/views/settings-tools.php:35 -msgid "Export Field Groups" -msgstr "Експортувати групи полів" - #: includes/admin/views/settings-tools.php:38 msgid "" "Select the field groups you would like to export and then select your export " @@ -1168,10 +3481,6 @@ msgstr "Завантажити файл експорту" msgid "Generate export code" msgstr "Створити код експорту" -#: includes/admin/views/settings-tools.php:64 -msgid "Import Field Groups" -msgstr "Імпортувати групи полів" - #: includes/admin/views/settings-tools.php:67 msgid "" "Select the Advanced Custom Fields JSON file you would like to import. When " @@ -1180,897 +3489,43 @@ msgstr "" "Виберіть JSON файл, який Ви хотіли б імпортувати. При натисканні кнопки " "імпорту, нижче, ACF буде імпортовано групи полів." -#: includes/admin/views/settings-tools.php:77 -#: includes/fields/class-acf-field-file.php:35 -msgid "Select File" -msgstr "Оберіть файл" - -#: includes/admin/views/settings-tools.php:86 -msgid "Import" -msgstr "Імпорт" - -#: includes/api/api-helpers.php:856 -msgid "Thumbnail" -msgstr "Мініатюра" - -#: includes/api/api-helpers.php:857 -msgid "Medium" -msgstr "Середній" - -#: includes/api/api-helpers.php:858 -msgid "Large" -msgstr "Великий" - -#: includes/api/api-helpers.php:907 -msgid "Full Size" -msgstr "Повний розмір" - -#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831 -#: pro/fields/class-acf-field-clone.php:992 -msgid "(no title)" -msgstr "(без заголовку)" - -#: includes/api/api-helpers.php:1868 -#: includes/fields/class-acf-field-page_link.php:269 -#: includes/fields/class-acf-field-post_object.php:268 -#: includes/fields/class-acf-field-taxonomy.php:986 -#, fuzzy -#| msgid "Page Parent" -msgid "Parent" -msgstr "Батьківська сторінка" - -#: includes/api/api-helpers.php:3885 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3890 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3906 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3911 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3929 -#, php-format -msgid "File size must be at least %s." -msgstr "" - #: includes/api/api-helpers.php:3934 #, php-format msgid "File size must must not exceed %s." msgstr "" -#: includes/api/api-helpers.php:3968 -#, fuzzy, php-format -msgid "File type must be %s." -msgstr "Тип поля не існує" - -#: includes/fields.php:144 -msgid "Basic" -msgstr "Загальне" - -#: includes/fields.php:145 includes/forms/form-front.php:47 -msgid "Content" -msgstr "Вміст" - -#: includes/fields.php:146 -msgid "Choice" -msgstr "Вибір" - -#: includes/fields.php:147 -msgid "Relational" -msgstr "" - -#: includes/fields.php:148 -msgid "jQuery" -msgstr "" - -#: includes/fields.php:149 -#: includes/fields/class-acf-field-button-group.php:177 -#: includes/fields/class-acf-field-checkbox.php:384 -#: includes/fields/class-acf-field-group.php:474 -#: includes/fields/class-acf-field-radio.php:285 -#: pro/fields/class-acf-field-clone.php:839 -#: pro/fields/class-acf-field-flexible-content.php:552 -#: pro/fields/class-acf-field-flexible-content.php:601 -#: pro/fields/class-acf-field-repeater.php:450 -msgid "Layout" -msgstr "Шаблон структури" - -#: includes/fields.php:326 -msgid "Field type does not exist" -msgstr "Тип поля не існує" - -#: includes/fields.php:326 -msgid "Unknown" -msgstr "Невідомо" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "Група кнопок" - -#: includes/fields/class-acf-field-button-group.php:149 -#: includes/fields/class-acf-field-checkbox.php:344 -#: includes/fields/class-acf-field-radio.php:235 -#: includes/fields/class-acf-field-select.php:368 -msgid "Choices" -msgstr "Варіанти вибору" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:369 -msgid "Enter each choice on a new line." -msgstr "У кожному рядку по варіанту" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:369 -msgid "For more control, you may specify both a value and label like this:" -msgstr "Для більшого контролю, Ви можете вказати маркувати значення:" - -#: includes/fields/class-acf-field-button-group.php:150 -#: includes/fields/class-acf-field-checkbox.php:345 -#: includes/fields/class-acf-field-radio.php:236 -#: includes/fields/class-acf-field-select.php:369 -msgid "red : Red" -msgstr "red : Червоний" - -#: includes/fields/class-acf-field-button-group.php:158 -#: includes/fields/class-acf-field-page_link.php:513 -#: includes/fields/class-acf-field-post_object.php:412 -#: includes/fields/class-acf-field-radio.php:244 -#: includes/fields/class-acf-field-select.php:386 -#: includes/fields/class-acf-field-taxonomy.php:793 -#: includes/fields/class-acf-field-user.php:408 -msgid "Allow Null?" -msgstr "Дозволити порожнє значення?" - -#: includes/fields/class-acf-field-button-group.php:168 -#: includes/fields/class-acf-field-checkbox.php:375 -#: includes/fields/class-acf-field-color_picker.php:131 -#: includes/fields/class-acf-field-email.php:118 -#: includes/fields/class-acf-field-number.php:127 -#: includes/fields/class-acf-field-radio.php:276 -#: includes/fields/class-acf-field-range.php:148 -#: includes/fields/class-acf-field-select.php:377 -#: includes/fields/class-acf-field-text.php:119 -#: includes/fields/class-acf-field-textarea.php:102 -#: includes/fields/class-acf-field-true_false.php:135 -#: includes/fields/class-acf-field-url.php:100 -#: includes/fields/class-acf-field-wysiwyg.php:410 -msgid "Default Value" -msgstr "Значення за замовчуванням" - -#: includes/fields/class-acf-field-button-group.php:169 -#: includes/fields/class-acf-field-email.php:119 -#: includes/fields/class-acf-field-number.php:128 -#: includes/fields/class-acf-field-radio.php:277 -#: includes/fields/class-acf-field-range.php:149 -#: includes/fields/class-acf-field-text.php:120 -#: includes/fields/class-acf-field-textarea.php:103 -#: includes/fields/class-acf-field-url.php:101 -#: includes/fields/class-acf-field-wysiwyg.php:411 -msgid "Appears when creating a new post" -msgstr "З'являється при створенні нового матеріалу" - -#: includes/fields/class-acf-field-button-group.php:183 -#: includes/fields/class-acf-field-checkbox.php:391 -#: includes/fields/class-acf-field-radio.php:292 -msgid "Horizontal" -msgstr "Горизонтально" - -#: includes/fields/class-acf-field-button-group.php:184 -#: includes/fields/class-acf-field-checkbox.php:390 -#: includes/fields/class-acf-field-radio.php:291 -msgid "Vertical" -msgstr "Вертикально" - -#: includes/fields/class-acf-field-button-group.php:191 -#: includes/fields/class-acf-field-checkbox.php:408 -#: includes/fields/class-acf-field-file.php:200 -#: includes/fields/class-acf-field-image.php:188 -#: includes/fields/class-acf-field-link.php:166 -#: includes/fields/class-acf-field-radio.php:299 -#: includes/fields/class-acf-field-taxonomy.php:833 -msgid "Return Value" -msgstr "Повернення значення" - -#: includes/fields/class-acf-field-button-group.php:192 -#: includes/fields/class-acf-field-checkbox.php:409 -#: includes/fields/class-acf-field-file.php:201 -#: includes/fields/class-acf-field-image.php:189 -#: includes/fields/class-acf-field-link.php:167 -#: includes/fields/class-acf-field-radio.php:300 -msgid "Specify the returned value on front end" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:197 -#: includes/fields/class-acf-field-checkbox.php:414 -#: includes/fields/class-acf-field-radio.php:305 -#: includes/fields/class-acf-field-select.php:431 -msgid "Value" -msgstr "Значення" - -#: includes/fields/class-acf-field-button-group.php:199 -#: includes/fields/class-acf-field-checkbox.php:416 -#: includes/fields/class-acf-field-radio.php:307 -#: includes/fields/class-acf-field-select.php:433 -msgid "Both (Array)" -msgstr "Галочка" - -#: includes/fields/class-acf-field-checkbox.php:25 -#: includes/fields/class-acf-field-taxonomy.php:780 -msgid "Checkbox" -msgstr "Галочка" - -#: includes/fields/class-acf-field-checkbox.php:154 -msgid "Toggle All" -msgstr "Вибрати все" - -#: includes/fields/class-acf-field-checkbox.php:221 -msgid "Add new choice" -msgstr "Додати новий вибір" - #: includes/fields/class-acf-field-checkbox.php:353 #, fuzzy #| msgid "Allow Null?" msgid "Allow Custom" msgstr "Дозволити порожнє значення?" -#: includes/fields/class-acf-field-checkbox.php:358 -msgid "Allow 'custom' values to be added" -msgstr "" - #: includes/fields/class-acf-field-checkbox.php:364 #, fuzzy #| msgid "Move Custom Field" msgid "Save Custom" msgstr "Перемістити поле" -#: includes/fields/class-acf-field-checkbox.php:369 -msgid "Save 'custom' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:376 -#: includes/fields/class-acf-field-select.php:378 -msgid "Enter each default value on a new line" -msgstr "Введіть значення. Одне значення в одному рядку" - #: includes/fields/class-acf-field-checkbox.php:398 msgid "Toggle" msgstr "" -#: includes/fields/class-acf-field-checkbox.php:399 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "Вибір кольору" - -#: includes/fields/class-acf-field-color_picker.php:68 -msgid "Clear" -msgstr "Очистити" - -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Default" -msgstr "Значення за замовчуванням" - -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Select Color" -msgstr "Обрати колір" - #: includes/fields/class-acf-field-color_picker.php:71 msgid "Current Color" msgstr "Поточна колір" -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "Вибір дати" - -#: includes/fields/class-acf-field-date_picker.php:33 -#, fuzzy -#| msgid "Done" -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "Готово" - -#: includes/fields/class-acf-field-date_picker.php:34 -#, fuzzy -#| msgid "Today" -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "Сьогодні" - -#: includes/fields/class-acf-field-date_picker.php:35 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:36 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:37 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:207 -#: includes/fields/class-acf-field-date_time_picker.php:181 -#: includes/fields/class-acf-field-time_picker.php:109 -msgid "Display Format" -msgstr "Формат показу" - -#: includes/fields/class-acf-field-date_picker.php:208 -#: includes/fields/class-acf-field-date_time_picker.php:182 -#: includes/fields/class-acf-field-time_picker.php:110 -msgid "The format displayed when editing a post" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:216 -#: includes/fields/class-acf-field-date_picker.php:247 -#: includes/fields/class-acf-field-date_time_picker.php:191 -#: includes/fields/class-acf-field-date_time_picker.php:208 -#: includes/fields/class-acf-field-time_picker.php:117 -#: includes/fields/class-acf-field-time_picker.php:132 -#, fuzzy -#| msgid "Custom Fields" -msgid "Custom:" -msgstr "Додаткові поля" - -#: includes/fields/class-acf-field-date_picker.php:226 -msgid "Save Format" -msgstr "Зберегти формат" - -#: includes/fields/class-acf-field-date_picker.php:227 -msgid "The format used when saving a value" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:237 -#: includes/fields/class-acf-field-date_time_picker.php:198 -#: includes/fields/class-acf-field-post_object.php:432 -#: includes/fields/class-acf-field-relationship.php:697 -#: includes/fields/class-acf-field-select.php:426 -#: includes/fields/class-acf-field-time_picker.php:124 -msgid "Return Format" -msgstr "Формат повернення" - -#: includes/fields/class-acf-field-date_picker.php:238 -#: includes/fields/class-acf-field-date_time_picker.php:199 -#: includes/fields/class-acf-field-time_picker.php:125 -msgid "The format returned via template functions" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:256 -#: includes/fields/class-acf-field-date_time_picker.php:215 -msgid "Week Starts On" -msgstr "Тиждень починається з" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "Вибір дати і часу" - -#: includes/fields/class-acf-field-date_time_picker.php:33 -#, fuzzy -#| msgid "Close Field" -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "Закрити поле" - -#: includes/fields/class-acf-field-date_time_picker.php:34 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:35 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:36 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:37 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:38 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:39 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:40 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:41 -#, fuzzy -#| msgid "No" -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "Ні" - -#: includes/fields/class-acf-field-date_time_picker.php:42 -#, fuzzy -#| msgid "Done" -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "Готово" - -#: includes/fields/class-acf-field-date_time_picker.php:43 -#, fuzzy -#| msgid "Select File" -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "Оберіть файл" - -#: includes/fields/class-acf-field-date_time_picker.php:45 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:46 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:49 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:50 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "" - -#: includes/fields/class-acf-field-email.php:127 -#: includes/fields/class-acf-field-number.php:136 -#: includes/fields/class-acf-field-password.php:71 -#: includes/fields/class-acf-field-text.php:128 -#: includes/fields/class-acf-field-textarea.php:111 -#: includes/fields/class-acf-field-url.php:109 -msgid "Placeholder Text" -msgstr "" - -#: includes/fields/class-acf-field-email.php:128 -#: includes/fields/class-acf-field-number.php:137 -#: includes/fields/class-acf-field-password.php:72 -#: includes/fields/class-acf-field-text.php:129 -#: includes/fields/class-acf-field-textarea.php:112 -#: includes/fields/class-acf-field-url.php:110 -msgid "Appears within the input" -msgstr "Показується, якщо поле порожнє" - -#: includes/fields/class-acf-field-email.php:136 -#: includes/fields/class-acf-field-number.php:145 -#: includes/fields/class-acf-field-password.php:80 -#: includes/fields/class-acf-field-range.php:187 -#: includes/fields/class-acf-field-text.php:137 -msgid "Prepend" -msgstr "Перед полем" - -#: includes/fields/class-acf-field-email.php:137 -#: includes/fields/class-acf-field-number.php:146 -#: includes/fields/class-acf-field-password.php:81 -#: includes/fields/class-acf-field-range.php:188 -#: includes/fields/class-acf-field-text.php:138 -msgid "Appears before the input" -msgstr "Розміщується на початку поля" - -#: includes/fields/class-acf-field-email.php:145 -#: includes/fields/class-acf-field-number.php:154 -#: includes/fields/class-acf-field-password.php:89 -#: includes/fields/class-acf-field-range.php:196 -#: includes/fields/class-acf-field-text.php:146 -msgid "Append" -msgstr "Після поля" - -#: includes/fields/class-acf-field-email.php:146 -#: includes/fields/class-acf-field-number.php:155 -#: includes/fields/class-acf-field-password.php:90 -#: includes/fields/class-acf-field-range.php:197 -#: includes/fields/class-acf-field-text.php:147 -msgid "Appears after the input" -msgstr "Розміщується в кінці поля" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "Файл" - -#: includes/fields/class-acf-field-file.php:36 -msgid "Edit File" -msgstr "Редагувати файл" - -#: includes/fields/class-acf-field-file.php:37 -msgid "Update File" -msgstr "Оновити файл" - -#: includes/fields/class-acf-field-file.php:38 -#: includes/fields/class-acf-field-image.php:43 includes/media.php:57 -#: pro/fields/class-acf-field-gallery.php:44 -msgid "Uploaded to this post" -msgstr "Завантажено до цього матеріалу" - -#: includes/fields/class-acf-field-file.php:126 -msgid "File name" -msgstr "Назва файлу" - -#: includes/fields/class-acf-field-file.php:130 -#: includes/fields/class-acf-field-file.php:233 -#: includes/fields/class-acf-field-file.php:244 -#: includes/fields/class-acf-field-image.php:248 -#: includes/fields/class-acf-field-image.php:277 -#: pro/fields/class-acf-field-gallery.php:690 -#: pro/fields/class-acf-field-gallery.php:719 -msgid "File size" -msgstr "Розмір файлу" - -#: includes/fields/class-acf-field-file.php:139 -#: includes/fields/class-acf-field-image.php:124 -#: includes/fields/class-acf-field-link.php:140 includes/input.php:269 -#: pro/fields/class-acf-field-gallery.php:343 -#: pro/fields/class-acf-field-gallery.php:531 -msgid "Remove" -msgstr "Видалити" - -#: includes/fields/class-acf-field-file.php:155 -msgid "Add File" -msgstr "Додати файл" - -#: includes/fields/class-acf-field-file.php:206 -msgid "File Array" -msgstr "Масив файлу" - -#: includes/fields/class-acf-field-file.php:207 -msgid "File URL" -msgstr "URL файлу" - -#: includes/fields/class-acf-field-file.php:208 -msgid "File ID" -msgstr "ID файлу" - -#: includes/fields/class-acf-field-file.php:215 -#: includes/fields/class-acf-field-image.php:213 -#: pro/fields/class-acf-field-gallery.php:655 -msgid "Library" -msgstr "Бібліотека" - -#: includes/fields/class-acf-field-file.php:216 -#: includes/fields/class-acf-field-image.php:214 -#: pro/fields/class-acf-field-gallery.php:656 -msgid "Limit the media library choice" -msgstr "" - -#: includes/fields/class-acf-field-file.php:221 -#: includes/fields/class-acf-field-image.php:219 -#: includes/locations/class-acf-location-attachment.php:101 -#: includes/locations/class-acf-location-comment.php:79 -#: includes/locations/class-acf-location-nav-menu.php:102 -#: includes/locations/class-acf-location-taxonomy.php:79 -#: includes/locations/class-acf-location-user-form.php:87 -#: includes/locations/class-acf-location-user-role.php:111 -#: includes/locations/class-acf-location-widget.php:83 -#: pro/fields/class-acf-field-gallery.php:661 -msgid "All" -msgstr "Все" - -#: includes/fields/class-acf-field-file.php:222 -#: includes/fields/class-acf-field-image.php:220 -#: pro/fields/class-acf-field-gallery.php:662 -msgid "Uploaded to post" -msgstr "Завантажено до матеріалу" - -#: includes/fields/class-acf-field-file.php:229 -#: includes/fields/class-acf-field-image.php:227 -#: pro/fields/class-acf-field-gallery.php:669 -msgid "Minimum" -msgstr "Мінімум" - -#: includes/fields/class-acf-field-file.php:230 -#: includes/fields/class-acf-field-file.php:241 -msgid "Restrict which files can be uploaded" -msgstr "" - -#: includes/fields/class-acf-field-file.php:240 -#: includes/fields/class-acf-field-image.php:256 -#: pro/fields/class-acf-field-gallery.php:698 -msgid "Maximum" -msgstr "Максимум" - -#: includes/fields/class-acf-field-file.php:251 -#: includes/fields/class-acf-field-image.php:285 -#: pro/fields/class-acf-field-gallery.php:727 -msgid "Allowed file types" -msgstr "Дозволені типи файлів" - -#: includes/fields/class-acf-field-file.php:252 -#: includes/fields/class-acf-field-image.php:286 -#: pro/fields/class-acf-field-gallery.php:728 -msgid "Comma separated list. Leave blank for all types" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "Google карта" - #: includes/fields/class-acf-field-google-map.php:40 msgid "Locating" msgstr "Розміщення" -#: includes/fields/class-acf-field-google-map.php:41 -msgid "Sorry, this browser does not support geolocation" -msgstr "Вибачте, цей браузер не підтримує автоматичне визначення локації" - -#: includes/fields/class-acf-field-google-map.php:113 -msgid "Clear location" -msgstr "Очистити розміщення" - -#: includes/fields/class-acf-field-google-map.php:114 -msgid "Find current location" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:117 -msgid "Search for address..." -msgstr "Шукати адресу..." - -#: includes/fields/class-acf-field-google-map.php:147 -#: includes/fields/class-acf-field-google-map.php:158 -msgid "Center" -msgstr "Центрування" - -#: includes/fields/class-acf-field-google-map.php:148 -#: includes/fields/class-acf-field-google-map.php:159 -msgid "Center the initial map" -msgstr "Початкове розміщення карти" - -#: includes/fields/class-acf-field-google-map.php:170 -msgid "Zoom" -msgstr "Збільшення" - -#: includes/fields/class-acf-field-google-map.php:171 -msgid "Set the initial zoom level" -msgstr "Вкажіть початковий масштаб" - -#: includes/fields/class-acf-field-google-map.php:180 -#: includes/fields/class-acf-field-image.php:239 -#: includes/fields/class-acf-field-image.php:268 -#: includes/fields/class-acf-field-oembed.php:281 -#: pro/fields/class-acf-field-gallery.php:681 -#: pro/fields/class-acf-field-gallery.php:710 -msgid "Height" -msgstr "Висота" - #: includes/fields/class-acf-field-google-map.php:181 msgid "Customise the map height" msgstr "Налаштуйте висоту карти" -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "Група" - -#: includes/fields/class-acf-field-group.php:459 -#: pro/fields/class-acf-field-repeater.php:389 -msgid "Sub Fields" -msgstr "Дочірні поля" - -#: includes/fields/class-acf-field-group.php:475 -#: pro/fields/class-acf-field-clone.php:840 -msgid "Specify the style used to render the selected fields" -msgstr "" - -#: includes/fields/class-acf-field-group.php:480 -#: pro/fields/class-acf-field-clone.php:845 -#: pro/fields/class-acf-field-flexible-content.php:612 -#: pro/fields/class-acf-field-repeater.php:458 -msgid "Block" -msgstr "Блок" - -#: includes/fields/class-acf-field-group.php:481 -#: pro/fields/class-acf-field-clone.php:846 -#: pro/fields/class-acf-field-flexible-content.php:611 -#: pro/fields/class-acf-field-repeater.php:457 -msgid "Table" -msgstr "Таблиця" - -#: includes/fields/class-acf-field-group.php:482 -#: pro/fields/class-acf-field-clone.php:847 -#: pro/fields/class-acf-field-flexible-content.php:613 -#: pro/fields/class-acf-field-repeater.php:459 -msgid "Row" -msgstr "Рядок" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "Зображення" - -#: includes/fields/class-acf-field-image.php:40 -msgid "Select Image" -msgstr "Обрати зображення" - -#: includes/fields/class-acf-field-image.php:41 -#: pro/fields/class-acf-field-gallery.php:42 -msgid "Edit Image" -msgstr "Редагувати зображення" - -#: includes/fields/class-acf-field-image.php:42 -#: pro/fields/class-acf-field-gallery.php:43 -msgid "Update Image" -msgstr "Оновити зображення" - -#: includes/fields/class-acf-field-image.php:44 -msgid "All images" -msgstr "Усі зображення" - -#: includes/fields/class-acf-field-image.php:140 -msgid "No image selected" -msgstr "Зображення не обрано" - -#: includes/fields/class-acf-field-image.php:140 -msgid "Add Image" -msgstr "Додати зображення" - -#: includes/fields/class-acf-field-image.php:194 -msgid "Image Array" -msgstr "Масив зображення" - -#: includes/fields/class-acf-field-image.php:195 -msgid "Image URL" -msgstr "URL зображення" - -#: includes/fields/class-acf-field-image.php:196 -msgid "Image ID" -msgstr "ID зображення" - -#: includes/fields/class-acf-field-image.php:203 -msgid "Preview Size" -msgstr "Розмір мініатюр" - #: includes/fields/class-acf-field-image.php:204 msgid "Shown when entering data" msgstr "" -#: includes/fields/class-acf-field-image.php:228 -#: includes/fields/class-acf-field-image.php:257 -#: pro/fields/class-acf-field-gallery.php:670 -#: pro/fields/class-acf-field-gallery.php:699 -msgid "Restrict which images can be uploaded" -msgstr "" - -#: includes/fields/class-acf-field-image.php:231 -#: includes/fields/class-acf-field-image.php:260 -#: includes/fields/class-acf-field-oembed.php:270 -#: pro/fields/class-acf-field-gallery.php:673 -#: pro/fields/class-acf-field-gallery.php:702 -msgid "Width" -msgstr "Ширина" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "Посилання" - -#: includes/fields/class-acf-field-link.php:133 -msgid "Select Link" -msgstr "Оберіть посилання" - -#: includes/fields/class-acf-field-link.php:138 -msgid "Opens in a new window/tab" -msgstr "" - -#: includes/fields/class-acf-field-link.php:172 -msgid "Link Array" -msgstr "Масив посилання" - -#: includes/fields/class-acf-field-link.php:173 -msgid "Link URL" -msgstr "URL посилання" - -#: includes/fields/class-acf-field-message.php:25 -#: includes/fields/class-acf-field-message.php:101 -#: includes/fields/class-acf-field-true_false.php:126 -msgid "Message" -msgstr "Повідомлення" - -#: includes/fields/class-acf-field-message.php:110 -#: includes/fields/class-acf-field-textarea.php:139 -msgid "New Lines" -msgstr "Перенесення рядків" - -#: includes/fields/class-acf-field-message.php:111 -#: includes/fields/class-acf-field-textarea.php:140 -msgid "Controls how new lines are rendered" -msgstr "Вкажіть спосіб обробки нових рядків" - -#: includes/fields/class-acf-field-message.php:115 -#: includes/fields/class-acf-field-textarea.php:144 -msgid "Automatically add paragraphs" -msgstr "Автоматично додавати абзаци" - -#: includes/fields/class-acf-field-message.php:116 -#: includes/fields/class-acf-field-textarea.php:145 -msgid "Automatically add <br>" -msgstr "Автоматичне перенесення рядків (додається теґ <br>)" - -#: includes/fields/class-acf-field-message.php:117 -#: includes/fields/class-acf-field-textarea.php:146 -msgid "No Formatting" -msgstr "Без форматування" - -#: includes/fields/class-acf-field-message.php:124 -msgid "Escape HTML" -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-number.php:25 -msgid "Number" -msgstr "Число" - -#: includes/fields/class-acf-field-number.php:163 -#: includes/fields/class-acf-field-range.php:157 -msgid "Minimum Value" -msgstr "Мінімальне значення" - -#: includes/fields/class-acf-field-number.php:172 -#: includes/fields/class-acf-field-range.php:167 -msgid "Maximum Value" -msgstr "Максимальне значення" - -#: includes/fields/class-acf-field-number.php:181 -#: includes/fields/class-acf-field-range.php:177 -msgid "Step Size" -msgstr "Розмір кроку" - -#: includes/fields/class-acf-field-number.php:219 -msgid "Value must be a number" -msgstr "Значення має бути числом" - -#: includes/fields/class-acf-field-number.php:237 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "" - -#: includes/fields/class-acf-field-number.php:245 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:219 -msgid "Enter URL" -msgstr "Введіть URL" - #: includes/fields/class-acf-field-oembed.php:234 #: includes/fields/class-acf-field-taxonomy.php:898 msgid "Error." @@ -2080,153 +3535,19 @@ msgstr "Помилка." msgid "No embed found for the given URL." msgstr "" -#: includes/fields/class-acf-field-oembed.php:267 -#: includes/fields/class-acf-field-oembed.php:278 -msgid "Embed Size" -msgstr "Розмір вставки" - -#: includes/fields/class-acf-field-page_link.php:177 -msgid "Archives" -msgstr "Архіви" - -#: includes/fields/class-acf-field-page_link.php:485 -#: includes/fields/class-acf-field-post_object.php:384 -#: includes/fields/class-acf-field-relationship.php:623 -msgid "Filter by Post Type" -msgstr "Фільтр за типом матеріалу" - -#: includes/fields/class-acf-field-page_link.php:493 -#: includes/fields/class-acf-field-post_object.php:392 -#: includes/fields/class-acf-field-relationship.php:631 -msgid "All post types" -msgstr "Всі типи матеріалів" - -#: includes/fields/class-acf-field-page_link.php:499 -#: includes/fields/class-acf-field-post_object.php:398 -#: includes/fields/class-acf-field-relationship.php:637 -msgid "Filter by Taxonomy" -msgstr "Фільтр за типом таксономією" - -#: includes/fields/class-acf-field-page_link.php:507 -#: includes/fields/class-acf-field-post_object.php:406 -#: includes/fields/class-acf-field-relationship.php:645 -msgid "All taxonomies" -msgstr "Всі таксономії" - -#: includes/fields/class-acf-field-page_link.php:523 -msgid "Allow Archives URLs" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:533 -#: includes/fields/class-acf-field-post_object.php:422 -#: includes/fields/class-acf-field-select.php:396 -#: includes/fields/class-acf-field-user.php:418 -msgid "Select multiple values?" -msgstr "Дозволити множинний вибір?" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "Пароль" - -#: includes/fields/class-acf-field-post_object.php:25 -#: includes/fields/class-acf-field-post_object.php:437 -#: includes/fields/class-acf-field-relationship.php:702 -msgid "Post Object" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:438 -#: includes/fields/class-acf-field-relationship.php:703 -msgid "Post ID" -msgstr "ID публікації" - -#: includes/fields/class-acf-field-radio.php:25 -msgid "Radio Button" -msgstr "" - #: includes/fields/class-acf-field-radio.php:254 msgid "Other" msgstr "Інше" -#: includes/fields/class-acf-field-radio.php:259 -msgid "Add 'other' choice to allow for custom values" -msgstr "Додати вибір 'Інше', для користувацьких значень" - #: includes/fields/class-acf-field-radio.php:265 #, fuzzy msgid "Save Other" msgstr "Зберегти інше" -#: includes/fields/class-acf-field-radio.php:270 -msgid "Save 'other' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "Діапазон (Range)" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "" - #: includes/fields/class-acf-field-relationship.php:37 msgid "Minimum values reached ( {min} values )" msgstr "" -#: includes/fields/class-acf-field-relationship.php:38 -msgid "Maximum values reached ( {max} values )" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:39 -msgid "Loading" -msgstr "Завантаження" - -#: includes/fields/class-acf-field-relationship.php:40 -msgid "No matches found" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:423 -msgid "Select post type" -msgstr "Вибір типу матеріалу" - -#: includes/fields/class-acf-field-relationship.php:449 -msgid "Select taxonomy" -msgstr "Вибір таксономії" - -#: includes/fields/class-acf-field-relationship.php:539 -msgid "Search..." -msgstr "Шукати..." - -#: includes/fields/class-acf-field-relationship.php:651 -msgid "Filters" -msgstr "Фільтри" - -#: includes/fields/class-acf-field-relationship.php:657 -#: includes/locations/class-acf-location-post-type.php:27 -msgid "Post Type" -msgstr "Тип матеріалу" - -#: includes/fields/class-acf-field-relationship.php:658 -#: includes/fields/class-acf-field-taxonomy.php:28 -#: includes/fields/class-acf-field-taxonomy.php:763 -msgid "Taxonomy" -msgstr "Таксономія" - -#: includes/fields/class-acf-field-relationship.php:665 -msgid "Elements" -msgstr "Елементи" - -#: includes/fields/class-acf-field-relationship.php:666 -msgid "Selected elements will be displayed in each result" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:677 -msgid "Minimum posts" -msgstr "Мінімум матеріалів" - -#: includes/fields/class-acf-field-relationship.php:686 -msgid "Maximum posts" -msgstr "Максимум матеріалів" - #: includes/fields/class-acf-field-relationship.php:790 #: pro/fields/class-acf-field-gallery.php:800 #, php-format @@ -2236,112 +3557,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: includes/fields/class-acf-field-select.php:25 -#: includes/fields/class-acf-field-taxonomy.php:785 -#, fuzzy -#| msgid "Select File" -msgctxt "noun" -msgid "Select" -msgstr "Оберіть файл" - -#: includes/fields/class-acf-field-select.php:38 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" - -#: includes/fields/class-acf-field-select.php:39 -#, php-format -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:40 -#, fuzzy -#| msgid "No Fields found" -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "Не знайдено полів" - -#: includes/fields/class-acf-field-select.php:41 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "" - -#: includes/fields/class-acf-field-select.php:42 -#, php-format -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "" - -#: includes/fields/class-acf-field-select.php:43 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "" - -#: includes/fields/class-acf-field-select.php:44 -#, php-format -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "" - -#: includes/fields/class-acf-field-select.php:45 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "" - -#: includes/fields/class-acf-field-select.php:46 -#, php-format -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "" - -#: includes/fields/class-acf-field-select.php:47 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "" - -#: includes/fields/class-acf-field-select.php:48 -#, fuzzy -#| msgid "Search Fields" -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "Шукати поля" - -#: includes/fields/class-acf-field-select.php:49 -#, fuzzy -#| msgid "Loading" -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "Завантаження" - -#: includes/fields/class-acf-field-select.php:255 includes/media.php:54 -#, fuzzy -#| msgid "Select File" -msgctxt "verb" -msgid "Select" -msgstr "Оберіть файл" - #: includes/fields/class-acf-field-select.php:406 #: includes/fields/class-acf-field-true_false.php:144 msgid "Stylised UI" msgstr "Покращений стиль" -#: includes/fields/class-acf-field-select.php:416 -msgid "Use AJAX to lazy load choices?" -msgstr "Використати AJAX для завантаження значень?" - -#: includes/fields/class-acf-field-select.php:427 -msgid "Specify the value returned" -msgstr "" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "Розділювач" - -#: includes/fields/class-acf-field-tab.php:25 -msgid "Tab" -msgstr "Вкладка" - #: includes/fields/class-acf-field-tab.php:82 msgid "" "The tab field will display incorrectly when added to a Table style repeater " @@ -2361,10 +3581,6 @@ msgid "" "heading." msgstr "" -#: includes/fields/class-acf-field-tab.php:98 -msgid "Placement" -msgstr "Розміщення" - #: includes/fields/class-acf-field-tab.php:110 msgid "End-point" msgstr "" @@ -2383,448 +3599,14 @@ msgstr "" msgid "None" msgstr "Нічого" -#: includes/fields/class-acf-field-taxonomy.php:764 -msgid "Select the taxonomy to be displayed" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:773 -msgid "Appearance" -msgstr "Вигляд" - -#: includes/fields/class-acf-field-taxonomy.php:774 -msgid "Select the appearance of this field" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:779 -msgid "Multiple Values" -msgstr "Множинний вибір" - -#: includes/fields/class-acf-field-taxonomy.php:781 -msgid "Multi Select" -msgstr "Множинний вибір" - -#: includes/fields/class-acf-field-taxonomy.php:783 -msgid "Single Value" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:784 -msgid "Radio Buttons" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:803 -msgid "Create Terms" -msgstr "Створити терміни" - -#: includes/fields/class-acf-field-taxonomy.php:804 -msgid "Allow new terms to be created whilst editing" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:813 -msgid "Save Terms" -msgstr "Зберегти терміни" - -#: includes/fields/class-acf-field-taxonomy.php:814 -msgid "Connect selected terms to the post" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:823 -msgid "Load Terms" -msgstr "Завантажити терміни" - -#: includes/fields/class-acf-field-taxonomy.php:824 -msgid "Load value from posts terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:838 -msgid "Term Object" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:839 -msgid "Term ID" -msgstr "ID терміну" - -#: includes/fields/class-acf-field-taxonomy.php:898 -#, php-format -msgid "User unable to add new %s" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:911 -#, php-format -msgid "%s already exists" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:952 -#, php-format -msgid "%s added" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:997 -msgid "Add" -msgstr "Додати" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "Текст" - -#: includes/fields/class-acf-field-text.php:155 -#: includes/fields/class-acf-field-textarea.php:120 -msgid "Character Limit" -msgstr "Ліміт символів" - -#: includes/fields/class-acf-field-text.php:156 -#: includes/fields/class-acf-field-textarea.php:121 -msgid "Leave blank for no limit" -msgstr "Щоб зняти обмеження — нічого не вказуйте тут" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "Область тексту" - -#: includes/fields/class-acf-field-textarea.php:129 -msgid "Rows" -msgstr "Рядки" - -#: includes/fields/class-acf-field-textarea.php:130 -msgid "Sets the textarea height" -msgstr "Вкажіть висоту текстового блоку" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "Вибір часу" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "Так / Ні" - -#: includes/fields/class-acf-field-true_false.php:79 -#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267 -#: pro/admin/views/html-settings-updates.php:89 -msgid "Yes" -msgstr "Так" - -#: includes/fields/class-acf-field-true_false.php:80 -#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268 -#: pro/admin/views/html-settings-updates.php:99 -msgid "No" -msgstr "Ні" - -#: includes/fields/class-acf-field-true_false.php:127 -msgid "Displays text alongside the checkbox" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:155 -#, fuzzy -#| msgid "Text" -msgid "On Text" -msgstr "Текст" - -#: includes/fields/class-acf-field-true_false.php:156 -msgid "Text shown when active" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:165 -#, fuzzy -#| msgid "Text" -msgid "Off Text" -msgstr "Текст" - -#: includes/fields/class-acf-field-true_false.php:166 -msgid "Text shown when inactive" -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "" - -#: includes/fields/class-acf-field-url.php:151 -msgid "Value must be a valid URL" -msgstr "Значення має бути адресою URl" - -#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 -msgid "User" -msgstr "Користувач" - -#: includes/fields/class-acf-field-user.php:393 -msgid "Filter by role" -msgstr "Фільтр за ролями" - -#: includes/fields/class-acf-field-user.php:401 -msgid "All user roles" -msgstr "Всі ролі користувачів" - -#: includes/fields/class-acf-field-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "Візуальний редактор" - -#: includes/fields/class-acf-field-wysiwyg.php:359 -msgid "Visual" -msgstr "Візуальний" - -#: includes/fields/class-acf-field-wysiwyg.php:360 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:366 -msgid "Click to initialize TinyMCE" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:419 -msgid "Tabs" -msgstr "Вкладки" - -#: includes/fields/class-acf-field-wysiwyg.php:424 -msgid "Visual & Text" -msgstr "Візуальний і Текстовий" - -#: includes/fields/class-acf-field-wysiwyg.php:425 -msgid "Visual Only" -msgstr "Візуальний лише" - -#: includes/fields/class-acf-field-wysiwyg.php:426 -msgid "Text Only" -msgstr "Лише текст" - -#: includes/fields/class-acf-field-wysiwyg.php:433 -msgid "Toolbar" -msgstr "Панель інструментів" - -#: includes/fields/class-acf-field-wysiwyg.php:443 -msgid "Show Media Upload Buttons?" -msgstr "Показувати кнопки завантаження файлів?" - -#: includes/fields/class-acf-field-wysiwyg.php:453 -msgid "Delay initialization?" -msgstr "" - #: includes/fields/class-acf-field-wysiwyg.php:454 msgid "TinyMCE will not be initalized until field is clicked" msgstr "" -#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 -#: pro/admin/admin-options-page.php:308 -msgid "Edit field group" -msgstr "Редагувати групу полів" - -#: includes/forms/form-front.php:55 -msgid "Validate Email" -msgstr "" - -#: includes/forms/form-front.php:103 -#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 -msgid "Update" -msgstr "Оновити" - -#: includes/forms/form-front.php:104 -msgid "Post updated" -msgstr "Матеріал оновлено" - -#: includes/forms/form-front.php:229 -msgid "Spam Detected" -msgstr "" - -#: includes/input.php:259 -msgid "Expand Details" -msgstr "Показати деталі" - -#: includes/input.php:260 -msgid "Collapse Details" -msgstr "Сховати деталі" - -#: includes/input.php:261 -msgid "Validation successful" -msgstr "" - -#: includes/input.php:262 includes/validation.php:285 -#: includes/validation.php:296 -msgid "Validation failed" -msgstr "" - -#: includes/input.php:263 -msgid "1 field requires attention" -msgstr "" - -#: includes/input.php:264 -#, php-format -msgid "%d fields require attention" -msgstr "" - -#: includes/input.php:265 -msgid "Restricted" -msgstr "" - -#: includes/input.php:266 -msgid "Are you sure?" -msgstr "Ви впевнені?" - -#: includes/input.php:270 -msgid "Cancel" -msgstr "Скасувати" - -#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 -msgid "Post" -msgstr "Публікація" - -#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 -msgid "Page" -msgstr "Сторінка" - -#: includes/locations.php:96 -msgid "Forms" -msgstr "Форми" - -#: includes/locations/class-acf-location-attachment.php:27 -msgid "Attachment" -msgstr "Вкладення" - -#: includes/locations/class-acf-location-attachment.php:109 -#, php-format -msgid "All %s formats" -msgstr "" - -#: includes/locations/class-acf-location-comment.php:27 -msgid "Comment" -msgstr "Коментар" - -#: includes/locations/class-acf-location-current-user-role.php:27 -msgid "Current User Role" -msgstr "Поточна роль користувача" - -#: includes/locations/class-acf-location-current-user-role.php:110 -msgid "Super Admin" -msgstr "Головний адмін" - -#: includes/locations/class-acf-location-current-user.php:27 -msgid "Current User" -msgstr "Поточний користувач" - -#: includes/locations/class-acf-location-current-user.php:97 -#, fuzzy -msgid "Logged in" -msgstr "Роль залоґованого користувача" - -#: includes/locations/class-acf-location-current-user.php:98 -msgid "Viewing front end" -msgstr "" - -#: includes/locations/class-acf-location-current-user.php:99 -msgid "Viewing back end" -msgstr "" - -#: includes/locations/class-acf-location-nav-menu-item.php:27 -msgid "Menu Item" -msgstr "Елемент меню" - -#: includes/locations/class-acf-location-nav-menu.php:27 -msgid "Menu" -msgstr "Меню" - -#: includes/locations/class-acf-location-nav-menu.php:109 -msgid "Menu Locations" -msgstr "Розміщення меню" - -#: includes/locations/class-acf-location-nav-menu.php:119 -msgid "Menus" -msgstr "Меню" - -#: includes/locations/class-acf-location-page-parent.php:27 -msgid "Page Parent" -msgstr "Батьківська сторінка" - -#: includes/locations/class-acf-location-page-template.php:27 -msgid "Page Template" -msgstr "Шаблон сторінки" - -#: includes/locations/class-acf-location-page-template.php:98 -#: includes/locations/class-acf-location-post-template.php:151 -msgid "Default Template" -msgstr "Стандартний шаблон" - -#: includes/locations/class-acf-location-page-type.php:27 -msgid "Page Type" -msgstr "Тип сторінки" - -#: includes/locations/class-acf-location-page-type.php:145 -msgid "Front Page" -msgstr "Головна сторінка" - -#: includes/locations/class-acf-location-page-type.php:146 -msgid "Posts Page" -msgstr "Сторінка з публікаціями" - -#: includes/locations/class-acf-location-page-type.php:147 -msgid "Top Level Page (no parent)" -msgstr "Верхній рівень сторінки (без батьків)" - -#: includes/locations/class-acf-location-page-type.php:148 -msgid "Parent Page (has children)" -msgstr "Батьківська сторінка (має дочірні)" - -#: includes/locations/class-acf-location-page-type.php:149 -msgid "Child Page (has parent)" -msgstr "Дочірня сторінка (має батьківську)" - -#: includes/locations/class-acf-location-post-category.php:27 -msgid "Post Category" -msgstr "Категорія" - -#: includes/locations/class-acf-location-post-format.php:27 -msgid "Post Format" -msgstr "Формат" - -#: includes/locations/class-acf-location-post-status.php:27 -msgid "Post Status" -msgstr "Статус матеріалу" - -#: includes/locations/class-acf-location-post-taxonomy.php:27 -msgid "Post Taxonomy" -msgstr "Таксономія" - -#: includes/locations/class-acf-location-post-template.php:27 -#, fuzzy -#| msgid "Page Template" -msgid "Post Template" -msgstr "Шаблон сторінки" - #: includes/locations/class-acf-location-taxonomy.php:27 msgid "Taxonomy Term" msgstr "Термін таксономії" -#: includes/locations/class-acf-location-user-form.php:27 -msgid "User Form" -msgstr "Форма користувача" - -#: includes/locations/class-acf-location-user-form.php:88 -msgid "Add / Edit" -msgstr "Додати / Редагувати" - -#: includes/locations/class-acf-location-user-form.php:89 -msgid "Register" -msgstr "Реєстрація" - -#: includes/locations/class-acf-location-user-role.php:27 -msgid "User Role" -msgstr "Роль користувача" - -#: includes/locations/class-acf-location-widget.php:27 -msgid "Widget" -msgstr "Віджет" - -#: includes/media.php:55 -msgctxt "verb" -msgid "Edit" -msgstr "Редагувати" - -#: includes/media.php:56 -msgctxt "verb" -msgid "Update" -msgstr "Оновити" - -#: includes/validation.php:364 -#, php-format -msgid "%s value is required" -msgstr "" - #. Plugin Name of the plugin/theme #: pro/acf-pro.php:28 msgid "Advanced Custom Fields PRO" @@ -2847,11 +3629,6 @@ msgstr "" msgid "Error. Could not connect to update server" msgstr "Помилка. Неможливо під’єднатися до сервера оновлення" -#: pro/admin/admin-settings-updates.php:162 -#: pro/admin/views/html-settings-updates.php:13 -msgid "Updates" -msgstr "Оновлення" - #: pro/admin/views/html-settings-updates.php:7 msgid "Deactivate License" msgstr "Деактивувати ліцензію" @@ -3192,10 +3969,6 @@ msgstr "Максимум рядків" msgid "No options pages exist" msgstr "" -#: pro/options-page.php:51 -msgid "Options" -msgstr "Опції" - #: pro/options-page.php:82 msgid "Options Updated" msgstr "Опції оновлено" @@ -3222,6 +3995,9 @@ msgstr "" msgid "http://www.elliotcondon.com/" msgstr "" +#~ msgid "Gallery Field" +#~ msgstr "Поле галереї" + #~ msgid "See what's new in" #~ msgstr "Перегляньте, що нового у" @@ -3451,9 +4227,6 @@ msgstr "" #~ msgid "Visit the ACF website" #~ msgstr "Відвідайте сайт плаґіну" -#~ msgid "Gallery Field" -#~ msgstr "Поле галереї" - #~ msgid "Export XML" #~ msgstr "Експортувати XML" diff --git a/lang/acf-zh_CN.mo b/lang/acf-zh_CN.mo index c4bfb80..d6efba2 100644 Binary files a/lang/acf-zh_CN.mo and b/lang/acf-zh_CN.mo differ diff --git a/lang/acf-zh_CN.po b/lang/acf-zh_CN.po index d5a42d7..b1f8381 100644 --- a/lang/acf-zh_CN.po +++ b/lang/acf-zh_CN.po @@ -1,835 +1,766 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2015-08-11 23:50+0200\n" -"PO-Revision-Date: 2018-03-14 09:58+1000\n" -"Last-Translator: Elliot Condon \n" -"Language-Team: Amos Lee <470266798@qq.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: Poedit 1.8.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" -#: acf.php:63 -msgid "Advanced Custom Fields" -msgstr "高级自定义字段" +#: includes/fields/class-acf-field-tab.php:122 +msgid "Start a new group of tabs at this tab." +msgstr "" -#: acf.php:205 admin/admin.php:61 -msgid "Field Groups" -msgstr "字段组" +#: includes/fields/class-acf-field-tab.php:121 +msgid "New Tab Group" +msgstr "" -#: acf.php:206 -msgid "Field Group" -msgstr "字段组" +#: includes/fields/class-acf-field-select.php:446 +#: includes/fields/class-acf-field-true_false.php:197 +msgid "Use a stylized checkbox using select2" +msgstr "" -#: acf.php:207 acf.php:239 admin/admin.php:62 -#: pro/fields/flexible-content.php:517 -msgid "Add New" -msgstr "新建" +#: includes/fields/class-acf-field-radio.php:257 +msgid "Save Other Choice" +msgstr "" -#: acf.php:208 -msgid "Add New Field Group" -msgstr "添加字段组" +#: includes/fields/class-acf-field-radio.php:246 +msgid "Allow Other Choice" +msgstr "" -#: acf.php:209 -msgid "Edit Field Group" -msgstr "编辑字段组" +#: includes/fields/class-acf-field-checkbox.php:446 +msgid "Add Toggle All" +msgstr "" -#: acf.php:210 -msgid "New Field Group" -msgstr "新建字段组" +#: includes/fields/class-acf-field-checkbox.php:405 +msgid "Save Custom Values" +msgstr "" -#: acf.php:211 -msgid "View Field Group" -msgstr "查看字段组" +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Allow Custom Values" +msgstr "" -#: acf.php:212 -msgid "Search Field Groups" -msgstr "搜索字段组" +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Checkbox custom values cannot be empty. Uncheck any empty values." +msgstr "" -#: acf.php:213 -msgid "No Field Groups found" -msgstr "没有找到字段组" - -#: acf.php:214 -msgid "No Field Groups found in Trash" -msgstr "回收站中没有找到字段组" - -#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 -#: admin/field-groups.php:519 -msgid "Fields" -msgstr "字段" - -#: acf.php:238 -msgid "Field" -msgstr "字段" - -#: acf.php:240 -msgid "Add New Field" -msgstr "添加新字段" - -#: acf.php:241 -msgid "Edit Field" -msgstr "编辑字段" - -#: acf.php:242 admin/views/field-group-fields.php:18 -#: admin/views/settings-info.php:111 -msgid "New Field" -msgstr "新字段" - -#: acf.php:243 -msgid "View Field" -msgstr "新字段" - -#: acf.php:244 -msgid "Search Fields" -msgstr "搜索字段" - -#: acf.php:245 -msgid "No Fields found" -msgstr "没找到字段" - -#: acf.php:246 -msgid "No Fields found in Trash" -msgstr "回收站里没有字段" - -#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 -#: admin/views/field-group-options.php:18 -msgid "Disabled" -msgstr "禁用" - -#: acf.php:273 -#, php-format -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "禁用 (%s)" - -#: admin/admin.php:57 admin/views/field-group-options.php:120 -msgid "Custom Fields" -msgstr "字段" - -#: admin/field-group.php:68 admin/field-group.php:69 admin/field-group.php:71 -msgid "Field group updated." -msgstr "字段组已更新。" - -#: admin/field-group.php:70 -msgid "Field group deleted." -msgstr "字段组已删除。" - -#: admin/field-group.php:73 -msgid "Field group published." -msgstr "字段组已发布。" - -#: admin/field-group.php:74 -msgid "Field group saved." -msgstr "字段组已保存。" - -#: admin/field-group.php:75 -msgid "Field group submitted." -msgstr "字段组已提交。" - -#: admin/field-group.php:76 -msgid "Field group scheduled for." -msgstr "字段组已定时。" - -#: admin/field-group.php:77 -msgid "Field group draft updated." -msgstr "字段组草稿已更新。" - -#: admin/field-group.php:176 -msgid "Move to trash. Are you sure?" -msgstr "确定要删除吗?" - -#: admin/field-group.php:177 -msgid "checked" -msgstr "已选" - -#: admin/field-group.php:178 -msgid "No toggle fields available" -msgstr "没有可用的切换字段" - -#: admin/field-group.php:179 -msgid "Field group title is required" -msgstr "字段组的标题是必填项" - -#: admin/field-group.php:180 api/api-field-group.php:607 -msgid "copy" -msgstr "复制" - -#: admin/field-group.php:181 -#: admin/views/field-group-field-conditional-logic.php:67 -#: admin/views/field-group-field-conditional-logic.php:162 -#: admin/views/field-group-locations.php:23 -#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262 -msgid "or" -msgstr "或" - -#: admin/field-group.php:183 -msgid "Parent fields" -msgstr "父字段" - -#: admin/field-group.php:184 -msgid "Sibling fields" -msgstr "兄弟字段" - -#: admin/field-group.php:185 -msgid "Move Custom Field" -msgstr "移动自定义字段" - -#: admin/field-group.php:186 -msgid "This field cannot be moved until its changes have been saved" -msgstr "保存这个字段的修改以后才能移动这个字段" - -#: admin/field-group.php:187 -msgid "Null" -msgstr "Null" - -#: admin/field-group.php:188 core/input.php:128 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "如果浏览其它页面,会丢失当前所做的修改" - -#: admin/field-group.php:189 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "\"field_\" 这个字符串不能作为字段名字的开始部分" - -#: admin/field-group.php:214 -msgid "Location" -msgstr "位置" - -#: admin/field-group.php:215 -msgid "Settings" -msgstr "设置" - -#: admin/field-group.php:253 -msgid "Field Keys" -msgstr "字段 Keys" - -#: admin/field-group.php:283 admin/views/field-group-options.php:17 -msgid "Active" -msgstr "激活" - -#: admin/field-group.php:744 -msgid "Front Page" -msgstr "首页" - -#: admin/field-group.php:745 -msgid "Posts Page" -msgstr "文章页" - -#: admin/field-group.php:746 -msgid "Top Level Page (no parent)" -msgstr "顶级页面 (无父页面)" - -#: admin/field-group.php:747 -msgid "Parent Page (has children)" -msgstr "父页面(有子页)" - -#: admin/field-group.php:748 -msgid "Child Page (has parent)" -msgstr "子页面(有父页面)" - -#: admin/field-group.php:764 -msgid "Default Template" -msgstr "默认模板" - -#: admin/field-group.php:786 -msgid "Logged in" -msgstr "登录" - -#: admin/field-group.php:787 -msgid "Viewing front end" -msgstr "查看前端" - -#: admin/field-group.php:788 -msgid "Viewing back end" -msgstr "查看后端" - -#: admin/field-group.php:807 -msgid "Super Admin" -msgstr "超级管理员" - -#: admin/field-group.php:818 admin/field-group.php:826 -#: admin/field-group.php:840 admin/field-group.php:847 -#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 -#: fields/image.php:226 pro/fields/gallery.php:653 -msgid "All" -msgstr "所有" - -#: admin/field-group.php:827 -msgid "Add / Edit" -msgstr "添加 / 编辑" - -#: admin/field-group.php:828 -msgid "Register" -msgstr "注册" - -#: admin/field-group.php:1059 -msgid "Move Complete." -msgstr "移动完成。" - -#: admin/field-group.php:1060 -#, php-format -msgid "The %s field can now be found in the %s field group" -msgstr "%s 字段现在会在 %s 字段组里" - -#: admin/field-group.php:1062 -msgid "Close Window" -msgstr "关闭窗口" - -#: admin/field-group.php:1097 -msgid "Please select the destination for this field" -msgstr "请选择这个字段的位置" - -#: admin/field-group.php:1104 -msgid "Move Field" -msgstr "移动字段" - -#: admin/field-groups.php:74 -#, php-format -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "启用 (%s)" - -#: admin/field-groups.php:142 -#, php-format -msgid "Field group duplicated. %s" -msgstr "字段组已被复制。%s" - -#: admin/field-groups.php:146 -#, php-format -msgid "%s field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "%s 字段组已被复制。" - -#: admin/field-groups.php:228 -#, php-format -msgid "Field group synchronised. %s" -msgstr "字段组已同步。 %s" - -#: admin/field-groups.php:232 -#, php-format -msgid "%s field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "%s 字段组已同步。" - -#: admin/field-groups.php:403 admin/field-groups.php:573 -msgid "Sync available" -msgstr "有可用同步" - -#: admin/field-groups.php:516 -msgid "Title" -msgstr "标题" - -#: admin/field-groups.php:517 admin/views/field-group-options.php:98 -#: admin/views/update-network.php:20 admin/views/update-network.php:28 -msgid "Description" -msgstr "描述" - -#: admin/field-groups.php:518 admin/views/field-group-options.php:10 -msgid "Status" -msgstr "状态" - -#: admin/field-groups.php:616 admin/settings-info.php:76 -#: pro/admin/views/settings-updates.php:111 -msgid "Changelog" -msgstr "更新日志" - -#: admin/field-groups.php:617 -msgid "See what's new in" -msgstr "查看更新内容于" - -#: admin/field-groups.php:617 -msgid "version" -msgstr "版本" - -#: admin/field-groups.php:619 -msgid "Resources" -msgstr "资源" - -#: admin/field-groups.php:621 -msgid "Getting Started" -msgstr "起步" - -#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 -#: pro/admin/views/settings-updates.php:17 +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 msgid "Updates" msgstr "更新" -#: admin/field-groups.php:623 -msgid "Field Types" -msgstr "字段类型" +#: includes/admin/views/html-admin-navigation.php:79 +msgid "Advanced Custom Fields logo" +msgstr "" -#: admin/field-groups.php:624 -msgid "Functions" -msgstr "功能" +#: includes/admin/views/html-admin-form-top.php:22 +msgid "Save Changes" +msgstr "" -#: admin/field-groups.php:625 -msgid "Actions" -msgstr "操作" +#: includes/admin/views/html-admin-form-top.php:16 +msgid "Field Group Title" +msgstr "" -#: admin/field-groups.php:626 fields/relationship.php:718 -msgid "Filters" -msgstr "过滤器" +#: includes/admin/views/html-admin-form-top.php:3 +msgid "Add title" +msgstr "" -#: admin/field-groups.php:627 -msgid "'How to' guides" -msgstr "新手向导" - -#: admin/field-groups.php:628 -msgid "Tutorials" -msgstr "教程" - -#: admin/field-groups.php:633 -msgid "Created by" -msgstr "创建者" - -#: admin/field-groups.php:673 -msgid "Duplicate this item" -msgstr "复制此项" - -#: admin/field-groups.php:673 admin/field-groups.php:685 -#: admin/views/field-group-field.php:58 pro/fields/flexible-content.php:516 -msgid "Duplicate" -msgstr "复制" - -#: admin/field-groups.php:724 -#, php-format -msgid "Select %s" -msgstr "选择 %s" - -#: admin/field-groups.php:730 -msgid "Synchronise field group" -msgstr "同步字段组" - -#: admin/field-groups.php:730 admin/field-groups.php:750 -msgid "Sync" -msgstr "同步" - -#: admin/settings-addons.php:51 admin/views/settings-addons.php:9 -msgid "Add-ons" -msgstr "附加功能" - -#: admin/settings-addons.php:87 -msgid "Error. Could not load add-ons list" -msgstr "错误,无法加载扩展列表" - -#: admin/settings-info.php:50 -msgid "Info" -msgstr "信息" - -#: admin/settings-info.php:75 -msgid "What's New" -msgstr "更新日志" - -#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 -#: admin/views/settings-tools.php:31 -msgid "Tools" -msgstr "工具" - -#: admin/settings-tools.php:151 admin/settings-tools.php:365 -msgid "No field groups selected" -msgstr "没选择字段组" - -#: admin/settings-tools.php:188 -msgid "No file selected" -msgstr "没选择文件" - -#: admin/settings-tools.php:201 -msgid "Error uploading file. Please try again" -msgstr "文件上传失败,请重试" - -#: admin/settings-tools.php:210 -msgid "Incorrect file type" -msgstr "文本类型不对" - -#: admin/settings-tools.php:227 -msgid "Import file empty" -msgstr "导入的文件是空白的" - -#: admin/settings-tools.php:323 -#, php-format -msgid "Success. Import tool added %s field groups: %s" -msgstr "成功,导入工具添加了 %s 字段组: %s" - -#: admin/settings-tools.php:332 -#, php-format +#. translators: %s url to getting started guide +#: includes/admin/views/field-groups-empty.php:20 msgid "" -"Warning. Import tool detected %s field groups already exist and have " -"been ignored: %s" -msgstr "警告,导入工具检测到 %s 字段组已经存在了。忽略的字段组:%s" +"New to ACF? Take a look at our getting " +"started guide." +msgstr "" -#: admin/update.php:113 -msgid "Upgrade ACF" -msgstr "升级 ACF" +#: includes/admin/views/field-groups-empty.php:15 +msgid "Add Field Group" +msgstr "" -#: admin/update.php:143 -msgid "Review sites & upgrade" -msgstr "检查网站并升级" - -#: admin/update.php:298 -msgid "Upgrade" -msgstr "升级" - -#: admin/update.php:328 -msgid "Upgrade Database" -msgstr "升级数据库" - -#: admin/views/field-group-field-conditional-logic.php:29 -msgid "Conditional Logic" -msgstr "条件逻辑" - -#: admin/views/field-group-field-conditional-logic.php:40 -#: admin/views/field-group-field.php:137 fields/checkbox.php:246 -#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 -#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 -#: fields/select.php:425 fields/select.php:439 fields/select.php:453 -#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784 -#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457 -#: fields/user.php:471 fields/wysiwyg.php:384 -#: pro/admin/views/settings-updates.php:93 -msgid "Yes" -msgstr "是" - -#: admin/views/field-group-field-conditional-logic.php:41 -#: admin/views/field-group-field.php:138 fields/checkbox.php:247 -#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 -#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 -#: fields/select.php:426 fields/select.php:440 fields/select.php:454 -#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771 -#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813 -#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385 -#: pro/admin/views/settings-updates.php:103 -msgid "No" -msgstr "否" - -#: admin/views/field-group-field-conditional-logic.php:65 -msgid "Show this field if" -msgstr "显示此字段的条件" - -#: admin/views/field-group-field-conditional-logic.php:111 -#: admin/views/field-group-locations.php:88 -msgid "is equal to" -msgstr "等于" - -#: admin/views/field-group-field-conditional-logic.php:112 -#: admin/views/field-group-locations.php:89 -msgid "is not equal to" -msgstr "不等于" - -#: admin/views/field-group-field-conditional-logic.php:149 -#: admin/views/field-group-locations.php:118 -msgid "and" -msgstr "与" - -#: admin/views/field-group-field-conditional-logic.php:164 -#: admin/views/field-group-locations.php:133 -msgid "Add rule group" -msgstr "添加规则组" - -#: admin/views/field-group-field.php:54 admin/views/field-group-field.php:57 -msgid "Edit field" -msgstr "编辑字段" - -#: admin/views/field-group-field.php:57 pro/fields/gallery.php:355 -msgid "Edit" -msgstr "编辑" - -#: admin/views/field-group-field.php:58 -msgid "Duplicate field" -msgstr "复制字段" - -#: admin/views/field-group-field.php:59 -msgid "Move field to another group" -msgstr "把字段移动到其它群组" - -#: admin/views/field-group-field.php:59 -msgid "Move" -msgstr "移动" - -#: admin/views/field-group-field.php:60 -msgid "Delete field" -msgstr "删除字段" - -#: admin/views/field-group-field.php:60 pro/fields/flexible-content.php:515 -msgid "Delete" -msgstr "删除" - -#: admin/views/field-group-field.php:68 fields/oembed.php:212 -#: fields/taxonomy.php:886 -msgid "Error" -msgstr "错误" - -#: fields/oembed.php:220 fields/taxonomy.php:900 -msgid "Error." -msgstr "错误。" - -#: admin/views/field-group-field.php:68 -msgid "Field type does not exist" -msgstr "字段类型不存在" - -#: admin/views/field-group-field.php:81 -msgid "Field Label" -msgstr "字段标签" - -#: admin/views/field-group-field.php:82 -msgid "This is the name which will appear on the EDIT page" -msgstr "在编辑界面显示的名字" - -#: admin/views/field-group-field.php:93 -msgid "Field Name" -msgstr "字段名称" - -#: admin/views/field-group-field.php:94 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "单个字符串,不能有空格,可以用横线或下画线。" - -#: admin/views/field-group-field.php:105 -msgid "Field Type" -msgstr "字段类型" - -#: admin/views/field-group-field.php:118 fields/tab.php:143 -msgid "Instructions" -msgstr "说明" - -#: admin/views/field-group-field.php:119 -msgid "Instructions for authors. Shown when submitting data" -msgstr "显示给内容作者的说明文字,在提交数据时显示" - -#: admin/views/field-group-field.php:130 -msgid "Required?" -msgstr "必填?" - -#: admin/views/field-group-field.php:158 -msgid "Wrapper Attributes" -msgstr "包装属性" - -#: admin/views/field-group-field.php:164 -msgid "width" -msgstr "宽度" - -#: admin/views/field-group-field.php:178 -msgid "class" -msgstr "class" - -#: admin/views/field-group-field.php:191 -msgid "id" -msgstr "id" - -#: admin/views/field-group-field.php:203 -msgid "Close Field" -msgstr "关闭字段" - -#: admin/views/field-group-fields.php:29 -msgid "Order" -msgstr "序号" - -#: admin/views/field-group-fields.php:30 pro/fields/flexible-content.php:541 -msgid "Label" -msgstr "标签" - -#: admin/views/field-group-fields.php:31 pro/fields/flexible-content.php:554 -msgid "Name" -msgstr "名称" - -#: admin/views/field-group-fields.php:32 -msgid "Type" -msgstr "类型" - -#: admin/views/field-group-fields.php:44 +#. translators: %s url to creating a field group page +#: includes/admin/views/field-groups-empty.php:10 msgid "" -"No fields. Click the + Add Field button to create your " -"first field." -msgstr "没有字段,点击添加按钮创建第一个字段。" +"ACF uses field groups to group custom " +"fields together, and then attach those fields to edit screens." +msgstr "" -#: admin/views/field-group-fields.php:51 -msgid "Drag and drop to reorder" -msgstr "拖拽排序" +#: includes/admin/views/field-groups-empty.php:5 +msgid "Add Your First Field Group" +msgstr "" -#: admin/views/field-group-fields.php:54 -msgid "+ Add Field" -msgstr "+ 添加字段" +#: includes/admin/views/field-group-pro-features.php:16 +msgid "Upgrade Now" +msgstr "" -#: admin/views/field-group-locations.php:5 -msgid "Rules" -msgstr "规则" +#: includes/admin/views/field-group-pro-features.php:11 +msgid "Options Pages" +msgstr "" -#: admin/views/field-group-locations.php:6 +#: includes/admin/views/field-group-pro-features.php:10 +msgid "ACF Blocks" +msgstr "" + +#: includes/admin/views/field-group-pro-features.php:4 +#: includes/admin/views/html-admin-navigation.php:97 +msgid "Unlock Extra Features with ACF PRO" +msgstr "" + +#: includes/admin/views/field-group-options.php:244 +msgid "Delete Field Group" +msgstr "" + +#. translators: 1: Post creation date 2: Post creation time +#: includes/admin/views/field-group-options.php:238 +msgid "Created on %1$s at %2$s" +msgstr "" + +#: includes/admin/views/field-group-options.php:180 +msgid "Group Settings" +msgstr "" + +#: includes/admin/views/field-group-options.php:28 +msgid "Location Rules" +msgstr "" + +#. translators: %s url to field types list +#: includes/admin/views/field-group-fields.php:61 msgid "" -"Create a set of rules to determine which edit screens will use these " -"advanced custom fields" -msgstr "创建一组规则以确定自定义字段在哪个编辑界面上显示" +"Choose from over 30 field types. Learn " +"more." +msgstr "" -#: admin/views/field-group-locations.php:21 -msgid "Show this field group if" -msgstr "显示此字段组的条件" +#: includes/admin/views/field-group-fields.php:54 +msgid "" +"Get started creating new custom fields for your posts, pages, custom post " +"types and other WordPress content." +msgstr "" -#: admin/views/field-group-locations.php:41 -#: admin/views/field-group-locations.php:47 -msgid "Post" -msgstr "内容" +#: includes/admin/views/field-group-fields.php:53 +msgid "Add Your First Field" +msgstr "" -#: admin/views/field-group-locations.php:42 fields/relationship.php:724 -msgid "Post Type" -msgstr "内容类型" +#. translators: A symbol (or text, if not available in your locale) meaning +#. "Order Number", in terms of positional placement. +#: includes/admin/views/field-group-fields.php:32 +msgid "#" +msgstr "" -#: admin/views/field-group-locations.php:43 -msgid "Post Status" -msgstr "内容状态" +#: includes/admin/views/field-group-fields.php:22 +#: includes/admin/views/field-group-fields.php:56 +#: includes/admin/views/field-group-fields.php:92 +#: includes/admin/views/html-admin-form-top.php:21 +msgid "Add Field" +msgstr "" -#: admin/views/field-group-locations.php:44 -msgid "Post Format" -msgstr "内容格式" +#: includes/admin/views/field-group-field.php:192 +#: includes/admin/views/field-group-options.php:40 +msgid "Presentation" +msgstr "" -#: admin/views/field-group-locations.php:45 -msgid "Post Category" -msgstr "内容类别" +#: includes/admin/views/field-group-field.php:160 +msgid "Validation" +msgstr "" -#: admin/views/field-group-locations.php:46 -msgid "Post Taxonomy" -msgstr "内容分类法" +#: includes/admin/views/field-group-field.php:94 +msgid "General" +msgstr "" -#: admin/views/field-group-locations.php:49 -#: admin/views/field-group-locations.php:53 -msgid "Page" -msgstr "页面" +#: includes/admin/tools/class-acf-admin-tool-import.php:70 +msgid "Import JSON" +msgstr "" -#: admin/views/field-group-locations.php:50 -msgid "Page Template" -msgstr "页面模板" +#: includes/admin/tools/class-acf-admin-tool-export.php:361 +msgid "Export Field Groups - Generate PHP" +msgstr "" -#: admin/views/field-group-locations.php:51 -msgid "Page Type" -msgstr "页面类型" +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "Export As JSON" +msgstr "" -#: admin/views/field-group-locations.php:52 -msgid "Page Parent" -msgstr "父级页面" +#: includes/admin/admin-field-groups.php:638 +msgid "Field group deactivated." +msgid_plural "%s field groups deactivated." +msgstr[0] "" -#: admin/views/field-group-locations.php:55 fields/user.php:36 -msgid "User" +#: includes/admin/admin-field-groups.php:585 +msgid "Field group activated." +msgid_plural "%s field groups activated." +msgstr[0] "" + +#: includes/admin/admin-field-groups.php:537 +#: includes/admin/admin-field-groups.php:558 +msgid "Deactivate" +msgstr "" + +#: includes/admin/admin-field-groups.php:537 +msgid "Deactivate this item" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +#: includes/admin/admin-field-groups.php:557 +msgid "Activate" +msgstr "" + +#: includes/admin/admin-field-groups.php:533 +msgid "Activate this item" +msgstr "" + +#: includes/admin/admin-field-group.php:158 +#: assets/build/js/acf-field-group.js:2174 +#: assets/build/js/acf-field-group.js:2582 +msgid "Move field group to trash?" +msgstr "" + +#: acf.php:447 includes/admin/admin-field-group.php:351 +#: includes/admin/admin-field-groups.php:232 +msgctxt "post status" +msgid "Inactive" +msgstr "" + +#. Author of the plugin +msgid "WP Engine" +msgstr "" + +#: acf.php:505 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields should not be active at " +"the same time. We've automatically deactivated Advanced Custom Fields PRO." +msgstr "" + +#: acf.php:503 +msgid "" +"Advanced Custom Fields and Advanced Custom Fields 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:537 +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:528 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:366 +msgid "Invalid request." +msgstr "" + +#: includes/fields/class-acf-field-select.php:679 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:669 +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:653 +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:644 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-file.php:468 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/admin/views/field-group-options.php:206 +msgid "Show in REST API" +msgstr "在 REST API 中显示" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "启用透明度" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA 数组" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA 字符串" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "十六进制字符串" + +#: includes/admin/admin-field-group.php:185 +#: assets/build/js/acf-field-group.js:754 +#: assets/build/js/acf-field-group.js:919 +msgid "Gallery (Pro only)" +msgstr "画廊(仅限专业版)" + +#: includes/admin/admin-field-group.php:184 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:909 +msgid "Clone (Pro only)" +msgstr "克隆(仅限专业版)" + +#: includes/admin/admin-field-group.php:183 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:906 +msgid "Flexible Content (Pro only)" +msgstr "弹性内容(仅限专业版)" + +#: includes/admin/admin-field-group.php:182 +#: assets/build/js/acf-field-group.js:751 +#: assets/build/js/acf-field-group.js:903 +msgid "Repeater (Pro only)" +msgstr "中继器(仅限专业版)" + +#: includes/admin/admin-field-group.php:351 +msgctxt "post status" +msgid "Active" +msgstr "启用" + +#: includes/fields/class-acf-field-email.php:178 +msgid "'%s' is not a valid email address" +msgstr "“%s”不是有效的电子邮件地址" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "颜色值" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "选择默认颜色" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "清除颜色" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "区块" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "选项" + +#: includes/acf-wp-functions.php:79 +msgid "Users" msgstr "用户" -#: admin/views/field-group-locations.php:56 -msgid "Current User" -msgstr "当前用户" +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "菜单项" -#: admin/views/field-group-locations.php:57 -msgid "Current User Role" -msgstr "当前用户角色" +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "小工具" -#: admin/views/field-group-locations.php:58 -msgid "User Form" -msgstr "用户表单" - -#: admin/views/field-group-locations.php:59 -msgid "User Role" -msgstr "用户角色" - -#: admin/views/field-group-locations.php:61 pro/admin/options-page.php:48 -msgid "Forms" -msgstr "表单" - -#: admin/views/field-group-locations.php:62 -msgid "Attachment" +#: includes/acf-wp-functions.php:59 +msgid "Attachments" msgstr "附件" -#: admin/views/field-group-locations.php:63 -msgid "Taxonomy Term" -msgstr "分类词汇" +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "分类法" -#: admin/views/field-group-locations.php:64 -msgid "Comment" -msgstr "评论" +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "文章" -#: admin/views/field-group-locations.php:65 +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON字段组(较新)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "原始字段组" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "最后更新:%s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "抱歉,该字段组无法进行差异比较。" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "无效的字段组ID。" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "无效的字段组参数。" + +#: includes/admin/admin-field-groups.php:506 +msgid "Awaiting save" +msgstr "等待保存" + +#: includes/admin/admin-field-groups.php:503 +msgid "Saved" +msgstr "已保存" + +#: includes/admin/admin-field-groups.php:499 +msgid "Import" +msgstr "导入" + +#: includes/admin/admin-field-groups.php:495 +msgid "Review changes" +msgstr "查看变更" + +#: includes/admin/admin-field-groups.php:471 +msgid "Located in: %s" +msgstr "位于:%s" + +#: includes/admin/admin-field-groups.php:467 +msgid "Located in plugin: %s" +msgstr "位于插件中:%s" + +#: includes/admin/admin-field-groups.php:463 +msgid "Located in theme: %s" +msgstr "位于主题中:%s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Various" +msgstr "各种各样的" + +#: includes/admin/admin-field-groups.php:200 +#: includes/admin/admin-field-groups.php:565 +msgid "Sync changes" +msgstr "同步更改" + +#: includes/admin/admin-field-groups.php:199 +msgid "Loading diff" +msgstr "加载差异" + +#: includes/admin/admin-field-groups.php:198 +msgid "Review local JSON changes" +msgstr "查看本地JSON更改" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "访问网站" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "查看详情" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "版本 %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "信息" + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" +"服务台。我们服务台上的支持专业人员将协助" +"您解决更深入的技术难题。" + +#: includes/admin/admin.php:156 +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:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" +"文档。我们详尽的文档包含您可能遇到的大多" +"数情况的参考和指南。" + +#: includes/admin/admin.php:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "帮助和支持" + +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "如果您需要帮助,请使用“帮助和支持”选项卡进行联系。" + +#: includes/admin/admin.php:134 +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:132 +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:129 includes/admin/admin.php:131 +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:361 +msgid "Error loading field." +msgstr "加载字段时出错。" + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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 "小工具" -#: admin/views/field-group-options.php:25 -msgid "Style" -msgstr "样式" +#: includes/locations/class-acf-location-user-role.php:24 +msgid "User Role" +msgstr "用户角色" -#: admin/views/field-group-options.php:32 -msgid "Standard (WP metabox)" -msgstr "标准(WP Metabox)" +#: includes/locations/class-acf-location-comment.php:22 +msgid "Comment" +msgstr "评论" -#: admin/views/field-group-options.php:33 -msgid "Seamless (no metabox)" -msgstr "无缝(无 metabox)" +#: includes/locations/class-acf-location-post-format.php:22 +msgid "Post Format" +msgstr "文章格式" -#: admin/views/field-group-options.php:40 -msgid "Position" -msgstr "位置" +#: includes/locations/class-acf-location-nav-menu-item.php:22 +msgid "Menu Item" +msgstr "菜单项" -#: admin/views/field-group-options.php:47 -msgid "High (after title)" -msgstr "高(标题之后)" +#: includes/locations/class-acf-location-post-status.php:22 +msgid "Post Status" +msgstr "文章状态" -#: admin/views/field-group-options.php:48 -msgid "Normal (after content)" -msgstr "正常(内容之后)" +#: includes/acf-wp-functions.php:71 +#: includes/locations/class-acf-location-nav-menu.php:89 +msgid "Menus" +msgstr "菜单" -#: admin/views/field-group-options.php:49 -msgid "Side" -msgstr "边栏" +#: includes/locations/class-acf-location-nav-menu.php:80 +msgid "Menu Locations" +msgstr "菜单位置" -#: admin/views/field-group-options.php:57 -msgid "Label placement" -msgstr "标签位置" +#: includes/locations/class-acf-location-nav-menu.php:22 +msgid "Menu" +msgstr "菜单" -#: admin/views/field-group-options.php:64 fields/tab.php:159 -msgid "Top aligned" -msgstr "顶部对齐" +#: includes/locations/class-acf-location-post-taxonomy.php:22 +msgid "Post Taxonomy" +msgstr "文章分类法" -#: admin/views/field-group-options.php:65 fields/tab.php:160 -msgid "Left aligned" -msgstr "左对齐" +#: includes/locations/class-acf-location-page-type.php:114 +msgid "Child Page (has parent)" +msgstr "子页面(有父页面)" -#: admin/views/field-group-options.php:72 -msgid "Instruction placement" -msgstr "说明位置" +#: includes/locations/class-acf-location-page-type.php:113 +msgid "Parent Page (has children)" +msgstr "父页面(有子页)" -#: admin/views/field-group-options.php:79 -msgid "Below labels" -msgstr "标签之下" +#: includes/locations/class-acf-location-page-type.php:112 +msgid "Top Level Page (no parent)" +msgstr "顶级页面 (无父页面)" -#: admin/views/field-group-options.php:80 -msgid "Below fields" -msgstr "字段之下" +#: includes/locations/class-acf-location-page-type.php:111 +msgid "Posts Page" +msgstr "文章页" -#: admin/views/field-group-options.php:87 -msgid "Order No." -msgstr "序号" +#: includes/locations/class-acf-location-page-type.php:110 +msgid "Front Page" +msgstr "首页" -#: admin/views/field-group-options.php:88 -msgid "Field groups with a lower order will appear first" -msgstr "序号小的字段组会排在最前面" +#: includes/locations/class-acf-location-page-type.php:22 +msgid "Page Type" +msgstr "页面类型" -#: admin/views/field-group-options.php:99 -msgid "Shown in field group list" -msgstr "在字段组列表中显示" +#: includes/locations/class-acf-location-current-user.php:73 +msgid "Viewing back end" +msgstr "查看后端" -#: admin/views/field-group-options.php:109 -msgid "Hide on screen" -msgstr "隐藏元素" +#: includes/locations/class-acf-location-current-user.php:72 +msgid "Viewing front end" +msgstr "查看前端" -#: admin/views/field-group-options.php:110 -msgid "Select items to hide them from the edit screen." -msgstr "选择需要在编辑界面隐藏的条目。 " +#: includes/locations/class-acf-location-current-user.php:71 +msgid "Logged in" +msgstr "登录" -#: admin/views/field-group-options.php:110 +#: 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:365 +msgid "%s value is required" +msgstr "%s 的值是必填项" + +#: includes/admin/views/field-group-field-conditional-logic.php:59 +msgid "Show this field if" +msgstr "显示此字段的条件" + +#: includes/admin/views/field-group-field-conditional-logic.php:26 +#: includes/admin/views/field-group-field.php:280 +msgid "Conditional Logic" +msgstr "条件逻辑" + +#: includes/admin/admin.php:207 +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "与" + +#: includes/admin/admin-field-groups.php:290 +msgid "Local JSON" +msgstr "本地 JSON" + +#: includes/admin/views/field-group-pro-features.php:9 +msgid "Clone Field" +msgstr "克隆字段" + +#: includes/admin/views/html-notice-upgrade.php:31 +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "还请检查所有高级扩展(%s)是否已更新到最新版本。" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "此版本包含对数据库的改进,需要升级。" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "感谢您更新到 %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "需要升级数据库" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "选项页面" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "相册" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "大段内容" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "重复器" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "返回所有工具" + +#: includes/admin/views/field-group-options.php:161 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)" @@ -837,320 +768,318 @@ msgstr "" "如果多个字段组同时出现在编辑界面,会使用第一个字段组里的选项(就是序号最小的" "那个字段组)" -#: admin/views/field-group-options.php:117 -msgid "Permalink" -msgstr "固定链接" +#: includes/admin/views/field-group-options.php:161 +msgid "Select items to hide them from the edit screen." +msgstr "选择需要在编辑界面隐藏的条目。" -#: admin/views/field-group-options.php:118 -msgid "Content Editor" -msgstr "内容编辑器" +#: includes/admin/views/field-group-options.php:160 +msgid "Hide on screen" +msgstr "隐藏元素" -#: admin/views/field-group-options.php:119 -msgid "Excerpt" -msgstr "摘要" - -#: admin/views/field-group-options.php:121 -msgid "Discussion" -msgstr "讨论" - -#: admin/views/field-group-options.php:122 -msgid "Comments" -msgstr "评论" - -#: admin/views/field-group-options.php:123 -msgid "Revisions" -msgstr "修订" - -#: admin/views/field-group-options.php:124 -msgid "Slug" -msgstr "别名" - -#: admin/views/field-group-options.php:125 -msgid "Author" -msgstr "作者" - -#: admin/views/field-group-options.php:126 -msgid "Format" -msgstr "格式" - -#: admin/views/field-group-options.php:127 -msgid "Page Attributes" -msgstr "页面属性" - -#: admin/views/field-group-options.php:128 fields/relationship.php:737 -msgid "Featured Image" -msgstr "特色图像" - -#: admin/views/field-group-options.php:129 -msgid "Categories" -msgstr "类别" - -#: admin/views/field-group-options.php:130 -msgid "Tags" -msgstr "标签" - -#: admin/views/field-group-options.php:131 +#: includes/admin/views/field-group-options.php:152 msgid "Send Trackbacks" msgstr "发送 Trackbacks" -#: admin/views/settings-addons.php:23 -msgid "Download & Install" -msgstr "下载并安装" +#: includes/admin/views/field-group-options.php:151 +msgid "Tags" +msgstr "标签" -#: admin/views/settings-addons.php:42 -msgid "Installed" -msgstr "已安装" +#: includes/admin/views/field-group-options.php:150 +msgid "Categories" +msgstr "类别" -#: admin/views/settings-info.php:9 -msgid "Welcome to Advanced Custom Fields" -msgstr "欢迎使用高级自定义字段" +#: includes/admin/views/field-group-options.php:148 +msgid "Page Attributes" +msgstr "页面属性" -#: admin/views/settings-info.php:10 -#, php-format -msgid "" -"Thank you for updating! ACF %s is bigger and better than ever before. We " -"hope you like it." -msgstr "感谢升级到更好的 ACF %s,你会喜欢上它的。" +#: includes/admin/views/field-group-options.php:147 +msgid "Format" +msgstr "格式" -#: admin/views/settings-info.php:23 -msgid "A smoother custom field experience" -msgstr "平滑的自定义字段体验" +#: includes/admin/views/field-group-options.php:146 +msgid "Author" +msgstr "作者" -#: admin/views/settings-info.php:28 -msgid "Improved Usability" -msgstr "改善用户体验" +#: includes/admin/views/field-group-options.php:145 +msgid "Slug" +msgstr "别名" -#: admin/views/settings-info.php:29 -msgid "" -"Including the popular Select2 library has improved both usability and speed " -"across a number of field types including post object, page link, taxonomy " -"and select." +#: includes/admin/views/field-group-options.php:144 +msgid "Revisions" +msgstr "修订" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:143 +msgid "Comments" +msgstr "评论" + +#: includes/admin/views/field-group-options.php:142 +msgid "Discussion" +msgstr "讨论" + +#: includes/admin/views/field-group-options.php:140 +msgid "Excerpt" +msgstr "摘要" + +#: includes/admin/views/field-group-options.php:139 +msgid "Content Editor" +msgstr "内容编辑器" + +#: includes/admin/views/field-group-options.php:138 +msgid "Permalink" +msgstr "固定链接" + +#: includes/admin/views/field-group-options.php:223 +msgid "Shown in field group list" +msgstr "在字段组列表中显示" + +#: includes/admin/views/field-group-options.php:122 +msgid "Field groups with a lower order will appear first" +msgstr "序号小的字段组会排在最前面" + +#: includes/admin/views/field-group-options.php:121 +msgid "Order No." +msgstr "序号" + +#: includes/admin/views/field-group-options.php:112 +msgid "Below fields" +msgstr "字段之下" + +#: includes/admin/views/field-group-options.php:111 +msgid "Below labels" +msgstr "标签之下" + +#: includes/admin/views/field-group-options.php:104 +msgid "Instruction placement" +msgstr "说明位置" + +#: includes/admin/views/field-group-options.php:87 +msgid "Label placement" +msgstr "标签位置" + +#: includes/admin/views/field-group-options.php:77 +msgid "Side" +msgstr "边栏" + +#: includes/admin/views/field-group-options.php:76 +msgid "Normal (after content)" +msgstr "正常(内容之后)" + +#: includes/admin/views/field-group-options.php:75 +msgid "High (after title)" +msgstr "高(标题之后)" + +#: includes/admin/views/field-group-options.php:68 +msgid "Position" +msgstr "位置" + +#: includes/admin/views/field-group-options.php:59 +msgid "Seamless (no metabox)" +msgstr "无缝(无 metabox)" + +#: includes/admin/views/field-group-options.php:58 +msgid "Standard (WP metabox)" +msgstr "标准(WP Metabox)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Style" +msgstr "样式" + +#: includes/admin/views/field-group-fields.php:44 +msgid "Type" +msgstr "类型" + +#: includes/admin/admin-field-groups.php:285 +#: includes/admin/views/field-group-fields.php:43 +msgid "Key" +msgstr "密钥" + +#. translators: Hidden accessibility text for the positional order number of +#. the field. +#: includes/admin/views/field-group-fields.php:37 +msgid "Order" +msgstr "序号" + +#: includes/admin/views/field-group-field.php:295 +msgid "Close Field" +msgstr "关闭字段" + +#: includes/admin/views/field-group-field.php:236 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:220 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:257 +msgid "width" +msgstr "宽度" + +#: includes/admin/views/field-group-field.php:251 +msgid "Wrapper Attributes" +msgstr "包装属性" + +#: includes/admin/views/field-group-field.php:172 +msgid "Required" msgstr "" -"Select2 这个库,改善了内容对象,分类法,选择列表等字段的用户体验与速度。" -#: admin/views/settings-info.php:33 -msgid "Improved Design" -msgstr "改善的设计" +#: includes/admin/views/field-group-field.php:204 +msgid "Instructions for authors. Shown when submitting data" +msgstr "显示给内容作者的说明文字,在提交数据时显示" -#: admin/views/settings-info.php:34 +#: includes/admin/views/field-group-field.php:203 +msgid "Instructions" +msgstr "说明" + +#: includes/admin/views/field-group-field.php:107 +msgid "Field Type" +msgstr "字段类型" + +#: includes/admin/views/field-group-field.php:135 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "单个字符串,不能有空格,可以用横线或下画线。" + +#: includes/admin/views/field-group-field.php:134 +msgid "Field Name" +msgstr "字段名称" + +#: includes/admin/views/field-group-field.php:122 +msgid "This is the name which will appear on the EDIT page" +msgstr "在编辑界面显示的名字" + +#: includes/admin/views/field-group-field.php:121 +msgid "Field Label" +msgstr "字段标签" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete" +msgstr "删除" + +#: includes/admin/views/field-group-field.php:70 +msgid "Delete field" +msgstr "删除字段" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move" +msgstr "移动" + +#: includes/admin/views/field-group-field.php:68 +msgid "Move field to another group" +msgstr "把字段移动到其它群组" + +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate field" +msgstr "复制字段" + +#: includes/admin/views/field-group-field.php:62 +#: includes/admin/views/field-group-field.php:65 +msgid "Edit field" +msgstr "编辑字段" + +#: includes/admin/views/field-group-field.php:58 +msgid "Drag to reorder" +msgstr "拖拽排序" + +#: includes/admin/admin-field-group.php:166 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1771 +#: assets/build/js/acf-field-group.js:2130 +msgid "Show this field group if" +msgstr "显示此字段组的条件" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "没有可用更新。" + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "数据库升级完成。查看新的部分 。" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "阅读更新任务..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "升级失败。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "升级完成。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "升级数据到 %s 版本" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 msgid "" -"Many fields have undergone a visual refresh to make ACF look better than " -"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " -"(new) fields!" -msgstr "很多字段变漂亮了,比如相册,关系,oEmbed 。" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "升级前最好先备份一下。确定现在升级吗?" -#: admin/views/settings-info.php:38 -msgid "Improved Data" -msgstr "改善的数据" +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "请选择至少一个要升级的站点。" -#: admin/views/settings-info.php:39 +#: includes/admin/views/html-admin-page-upgrade-network.php:97 msgid "" -"Redesigning the data architecture has allowed sub fields to live " -"independently from their parents. This allows you to drag and drop fields in " -"and out of parent fields!" -msgstr "" -"重新设计了数据结构,让子字段独立于它的爸爸。这样我们可以把字段放到父字段里," -"也可以从父字段里拿出来。" +"Database Upgrade complete. Return to network dashboard" +msgstr "数据库升级完成,返回网络面板" -#: admin/views/settings-info.php:45 -msgid "Goodbye Add-ons. Hello PRO" -msgstr "再见了扩展,欢迎专业版" +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "网站已是最新版" -#: admin/views/settings-info.php:50 -msgid "Introducing ACF PRO" -msgstr "ACF 专业版介绍" +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "站点需要将数据库从 %1$s 升级到 %2$s" -#: admin/views/settings-info.php:51 +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "网站" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "升级站点" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 msgid "" -"We're changing the way premium functionality is delivered in an exciting way!" -msgstr "我们改进了为您提供高级功能的方法。" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "下面的网站需要升级数据库,点击 %s 。" -#: admin/views/settings-info.php:52 -#, php-format +#: includes/admin/views/field-group-field-conditional-logic.php:171 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "添加规则组" + +#: includes/admin/views/field-group-locations.php:10 msgid "" -"All 4 premium add-ons have been combined into a new Pro " -"version of ACF. With both personal and developer licenses available, " -"premium functionality is more affordable and accessible than ever before!" -msgstr "" -"之前的 4 个高级功能扩展现在被组合成了一个新的 ACF 专业版。" -"许可证分为两种,个人与开发者,现在这些高级功能更实惠也更易用。" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "创建一组规则以确定自定义字段在哪个编辑界面上显示" -#: admin/views/settings-info.php:56 -msgid "Powerful Features" -msgstr "强大的功能" +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "规则" -#: admin/views/settings-info.php:57 -msgid "" -"ACF PRO contains powerful features such as repeatable data, flexible content " -"layouts, a beautiful gallery field and the ability to create extra admin " -"options pages!" -msgstr "" -"ACF 专业版有重复数据,弹性内容布局,相册功能,还可以创建页面的管理选项。" +#: includes/admin/tools/class-acf-admin-tool-export.php:478 +msgid "Copied" +msgstr "复制" -#: admin/views/settings-info.php:58 -#, php-format -msgid "Read more about ACF PRO features." -msgstr "了解更多关于 ACF PRO 的功能。" +#: includes/admin/tools/class-acf-admin-tool-export.php:441 +msgid "Copy to clipboard" +msgstr "复制到剪贴板" -#: admin/views/settings-info.php:62 -msgid "Easy Upgrading" -msgstr "便捷的升级" - -#: admin/views/settings-info.php:63 -#, php-format -msgid "" -"To help make upgrading easy, login to your store account " -"and claim a free copy of ACF PRO!" -msgstr "登录到商店帐户,可以方便以后升级。" - -#: admin/views/settings-info.php:64 -#, php-format -msgid "" -"We also wrote an upgrade guide to answer any questions, " -"but if you do have one, please contact our support team via the help desk" -msgstr "" -"阅读 升级手册,需要帮助请联系 客服" - -#: admin/views/settings-info.php:72 -msgid "Under the Hood" -msgstr "工作原理" - -#: admin/views/settings-info.php:77 -msgid "Smarter field settings" -msgstr "更聪明的字段设置" - -#: admin/views/settings-info.php:78 -msgid "ACF now saves its field settings as individual post objects" -msgstr "ACF 现在用单独的内容对象字段设置" - -#: admin/views/settings-info.php:82 -msgid "More AJAX" -msgstr "更多 AJAX" - -#: admin/views/settings-info.php:83 -msgid "More fields use AJAX powered search to speed up page loading" -msgstr "更多字段使用 AJAX 搜索,这让页面加载速度更快" - -#: admin/views/settings-info.php:87 -msgid "Local JSON" -msgstr "本地 JSON" - -#: admin/views/settings-info.php:88 -msgid "New auto export to JSON feature improves speed" -msgstr "改进了新的自动导出 JSON 功能的速度" - -#: admin/views/settings-info.php:94 -msgid "Better version control" -msgstr "更好的版本控制" - -#: admin/views/settings-info.php:95 -msgid "" -"New auto export to JSON feature allows field settings to be version " -"controlled" -msgstr "新的自动 JSON 导出功能让字段设置可以包含在版本控制里" - -#: admin/views/settings-info.php:99 -msgid "Swapped XML for JSON" -msgstr "用 JSON 替代 XML" - -#: admin/views/settings-info.php:100 -msgid "Import / Export now uses JSON in favour of XML" -msgstr "导入 / 导出现在用 JSON 代替以前的 XML" - -#: admin/views/settings-info.php:104 -msgid "New Forms" -msgstr "新表单" - -#: admin/views/settings-info.php:105 -msgid "Fields can now be mapped to comments, widgets and all user forms!" -msgstr "字段现在可以用在评论,小工具还有所有的用户表单上。" - -#: admin/views/settings-info.php:112 -msgid "A new field for embedding content has been added" -msgstr "新添加了一个嵌入内容用的字段" - -#: admin/views/settings-info.php:116 -msgid "New Gallery" -msgstr "新相册" - -#: admin/views/settings-info.php:117 -msgid "The gallery field has undergone a much needed facelift" -msgstr "改进了相册字段的显示" - -#: admin/views/settings-info.php:121 -msgid "New Settings" -msgstr "新设置" - -#: admin/views/settings-info.php:122 -msgid "" -"Field group settings have been added for label placement and instruction " -"placement" -msgstr "字段组设置添加了标签位置与介绍位置" - -#: admin/views/settings-info.php:128 -msgid "Better Front End Forms" -msgstr "更好的前端表单" - -#: admin/views/settings-info.php:129 -msgid "acf_form() can now create a new post on submission" -msgstr "acf_form() 现在可以在提交的时候创建新的内容" - -#: admin/views/settings-info.php:133 -msgid "Better Validation" -msgstr "更好的验证方式" - -#: admin/views/settings-info.php:134 -msgid "Form validation is now done via PHP + AJAX in favour of only JS" -msgstr "表单验证现在使用 PHP + AJAX 的方式" - -#: admin/views/settings-info.php:138 -msgid "Relationship Field" -msgstr "关系字段" - -#: admin/views/settings-info.php:139 -msgid "" -"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" -msgstr "新的用来过滤的关系字段设置(搜索,内容类型,分类法)" - -#: admin/views/settings-info.php:145 -msgid "Moving Fields" -msgstr "移动字段" - -#: admin/views/settings-info.php:146 -msgid "" -"New field group functionality allows you to move a field between groups & " -"parents" -msgstr "新的字段组功能可以让我们在群组与爸爸之间移动字段" - -#: admin/views/settings-info.php:150 fields/page_link.php:36 -msgid "Page Link" -msgstr "页面链接" - -#: admin/views/settings-info.php:151 -msgid "New archives group in page_link field selection" -msgstr "在 page_link 字段选择里的新的存档群组" - -#: admin/views/settings-info.php:155 -msgid "Better Options Pages" -msgstr "选项页面" - -#: admin/views/settings-info.php:156 -msgid "" -"New functions for options page allow creation of both parent and child menu " -"pages" -msgstr "选项页面的新功能,可以让你同时创建父菜单与子菜单页面" - -#: admin/views/settings-info.php:165 -#, php-format -msgid "We think you'll love the changes in %s." -msgstr "你会喜欢在 %s 里做的修改。" - -#: admin/views/settings-tools-export.php:13 -msgid "Export Field Groups to PHP" -msgstr "导出字段组到PHP" - -#: admin/views/settings-tools-export.php:17 +#: includes/admin/tools/class-acf-admin-tool-export.php:362 msgid "" "The following code can be used to register a local version of the selected " "field group(s). A local field group can provide many benefits such as faster " @@ -1159,1378 +1088,2958 @@ msgid "" "an external file." msgstr "" "下面的代码可以用来创建一个本地版本的所选字段组。本地字段组加载更快,可以版本" -"控制。你可以把下面这些代码放在你的主题的 functions.php 文件里。" +"控制。您可以把下面这些代码放在您的主题的 functions.php 文件里。" -#: admin/views/settings-tools.php:5 +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups 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 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 msgid "Select Field Groups" msgstr "选择字段组" -#: admin/views/settings-tools.php:35 +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "已导出%s个字段组。" + +#: 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:337 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "生成 PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:35 msgid "Export Field Groups" msgstr "导出字段组" -#: admin/views/settings-tools.php:38 +#: includes/admin/tools/class-acf-admin-tool-import.php:147 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "已导入%s个字段组" + +#: includes/admin/tools/class-acf-admin-tool-import.php:116 +msgid "Import file empty" +msgstr "导入的文件是空白的" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Incorrect file type" +msgstr "文本类型不对" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Error uploading file. Please try again" +msgstr "文件上传失败,请重试" + +#: includes/admin/tools/class-acf-admin-tool-import.php:51 msgid "" -"Select the field groups you would like to export and then select your export " -"method. Use the download button to export to a .json file which you can then " -"import to another ACF installation. Use the generate button to export to PHP " -"code which you can place in your theme." +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups" msgstr "" -"选择你想导出的字段组,然后选择导出的方法。使用 下载 按钮可以导出一个 ." -"json 文件,你可以在其它的网站里导入它。使用 生成 按钮可以导出 PHP 代" -"码,这些代码可以放在你的主题或插件里。" -#: admin/views/settings-tools.php:50 -msgid "Download export file" -msgstr "下载导出文件" - -#: admin/views/settings-tools.php:51 -msgid "Generate export code" -msgstr "生成导出代码" - -#: admin/views/settings-tools.php:64 +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +#: includes/admin/tools/class-acf-admin-tool-import.php:50 msgid "Import Field Groups" msgstr "导入字段组" -#: admin/views/settings-tools.php:67 -msgid "" -"Select the Advanced Custom Fields JSON file you would like to import. When " -"you click the import button below, ACF will import the field groups." -msgstr "" -"选择你想导入的 Advanced Custom Fields JSON 文件,然后点击 导入 按钮可" -"以导入 JSON 文件里定义的字段组。" +#: includes/admin/admin-field-groups.php:494 +msgid "Sync" +msgstr "同步" -#: admin/views/settings-tools.php:77 fields/file.php:46 -msgid "Select File" -msgstr "选择文件" +#: includes/admin/admin-field-groups.php:942 +msgid "Select %s" +msgstr "选择 %s" -#: admin/views/settings-tools.php:86 -msgid "Import" -msgstr "导入" +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/admin-field-groups.php:556 +#: includes/admin/views/field-group-field.php:66 +msgid "Duplicate" +msgstr "复制" -#: admin/views/update-network.php:8 admin/views/update.php:8 -msgid "Advanced Custom Fields Database Upgrade" -msgstr "Advanced Custom Fields 数据库升级" +#: includes/admin/admin-field-groups.php:527 +msgid "Duplicate this item" +msgstr "复制此项" -#: admin/views/update-network.php:10 -msgid "" -"The following sites require a DB upgrade. Check the ones you want to update " -"and then click “Upgrade Database”." -msgstr "下面的网站需要升级数据库,点击 “升级数据库” 。" +#: includes/admin/admin-field-groups.php:284 +#: includes/admin/views/field-group-options.php:222 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "描述" -#: admin/views/update-network.php:19 admin/views/update-network.php:27 -msgid "Site" -msgstr "网站" +#: includes/admin/admin-field-groups.php:491 +#: includes/admin/admin-field-groups.php:829 +msgid "Sync available" +msgstr "有可用同步" -#: admin/views/update-network.php:47 -#, php-format -msgid "Site requires database upgrade from %s to %s" -msgstr "网站需要从 %s 升级到 %s" +#: includes/admin/admin-field-groups.php:754 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s已同步字段组。" -#: admin/views/update-network.php:49 -msgid "Site is up to date" -msgstr "网站已是最新版" +#: includes/admin/admin-field-groups.php:696 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s已复制字段组。" -#: admin/views/update-network.php:62 admin/views/update.php:16 -msgid "" -"Database Upgrade complete. Return to network dashboard" -msgstr "数据库升级完成,返回网络面板" +#: includes/admin/admin-field-groups.php:118 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "启用 (%s)" -#: admin/views/update-network.php:101 admin/views/update-notice.php:35 -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/admin-upgrade.php:237 +msgid "Review sites & upgrade" +msgstr "检查网站并升级" -#: admin/views/update-network.php:157 -msgid "Upgrade complete" -msgstr "升级完成" +#: includes/admin/admin-upgrade.php:59 includes/admin/admin-upgrade.php:93 +#: includes/admin/admin-upgrade.php:94 includes/admin/admin-upgrade.php:213 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "升级数据库" -#: admin/views/update-network.php:161 -msgid "Upgrading data to" -msgstr "升级数据到" +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:141 +msgid "Custom Fields" +msgstr "字段" -#: admin/views/update-notice.php:23 -msgid "Database Upgrade Required" -msgstr "需要升级数据库" +#: includes/admin/admin-field-group.php:714 +msgid "Move Field" +msgstr "移动字段" -#: admin/views/update-notice.php:25 -#, php-format -msgid "Thank you for updating to %s v%s!" -msgstr "感谢升级 %s v%s!" +#: includes/admin/admin-field-group.php:707 +msgid "Please select the destination for this field" +msgstr "请选择这个字段的位置" -#: admin/views/update-notice.php:25 -msgid "" -"Before you start using the new awesome features, please update your database " -"to the newest version." -msgstr "先把数据库更新到最新版。" +#: includes/admin/admin-field-group.php:669 +msgid "Close Window" +msgstr "关闭窗口" -#: admin/views/update.php:12 -msgid "Reading upgrade tasks..." -msgstr "阅读更新任务..." +#. translators: Confirmation message once a field has been moved to a different +#. field group. +#: includes/admin/admin-field-group.php:665 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "现在可以在 %2$s 字段组中找到 %1$s 字段" -#: admin/views/update.php:14 -#, php-format -msgid "Upgrading data to version %s" -msgstr "升级数据到 %s 版本" +#: includes/admin/admin-field-group.php:662 +msgid "Move Complete." +msgstr "移动完成。" -#: admin/views/update.php:16 -msgid "See what's new" -msgstr "查看更新" +#: includes/admin/views/field-group-field.php:274 +#: includes/admin/views/field-group-options.php:190 +msgid "Active" +msgstr "激活" -#: admin/views/update.php:110 -msgid "No updates available." -msgstr "没有可用更新。" +#: includes/admin/admin-field-group.php:323 +msgid "Field Keys" +msgstr "字段 Keys" -#: api/api-helpers.php:821 -msgid "Thumbnail" -msgstr "缩略图" +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:286 +msgid "Settings" +msgstr "设置" -#: api/api-helpers.php:822 -msgid "Medium" -msgstr "中" +#: includes/admin/admin-field-groups.php:286 +msgid "Location" +msgstr "位置" -#: api/api-helpers.php:823 -msgid "Large" -msgstr "大" +#: includes/admin/admin-field-group.php:167 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" -#: api/api-helpers.php:871 -msgid "Full Size" -msgstr "原图" +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:1035 +#: assets/build/js/acf-field-group.js:1285 +msgid "copy" +msgstr "复制" -#: api/api-helpers.php:1581 -msgid "(no title)" -msgstr "(无标题)" +#: includes/admin/admin-field-group.php:163 +#: assets/build/js/acf-field-group.js:323 +#: assets/build/js/acf-field-group.js:389 +msgid "(this field)" +msgstr "(这个字段)" -#: api/api-helpers.php:3183 -#, php-format -msgid "Image width must be at least %dpx." -msgstr "图像宽度至少得是 %dpx。" +#: includes/admin/admin-field-group.php:161 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "已选中" -#: api/api-helpers.php:3188 -#, php-format -msgid "Image width must not exceed %dpx." -msgstr "图像宽度最大不能超过 %dpx。" +#: includes/admin/admin-field-group.php:160 +#: assets/build/js/acf-field-group.js:1116 +#: assets/build/js/acf-field-group.js:1383 +msgid "Move Custom Field" +msgstr "移动自定义字段" -#: api/api-helpers.php:3204 -#, php-format -msgid "Image height must be at least %dpx." -msgstr "图像高度至少得是 %dpx。" +#: includes/admin/admin-field-group.php:159 +#: assets/build/js/acf-field-group.js:346 +#: assets/build/js/acf-field-group.js:415 +msgid "No toggle fields available" +msgstr "没有可用的切换字段" -#: api/api-helpers.php:3209 -#, php-format -msgid "Image height must not exceed %dpx." -msgstr "图像高度最大不能超过 %dpx。" +#: includes/admin/admin-field-group.php:157 +#: assets/build/js/acf-field-group.js:2158 +#: assets/build/js/acf-field-group.js:2562 +msgid "Field group title is required" +msgstr "字段组的标题是必填项" -#: api/api-helpers.php:3227 -#, php-format -msgid "File size must be at least %s." -msgstr "文件尺寸至少得是 %s。" +#: includes/admin/admin-field-group.php:156 +#: assets/build/js/acf-field-group.js:1104 +#: assets/build/js/acf-field-group.js:1369 +msgid "This field cannot be moved until its changes have been saved" +msgstr "保存这个字段的修改以后才能移动这个字段" -#: api/api-helpers.php:3232 -#, php-format -msgid "File size must must not exceed %s." -msgstr "文件尺寸最大不能超过 %s。" +#: includes/admin/admin-field-group.php:155 +#: assets/build/js/acf-field-group.js:934 +#: assets/build/js/acf-field-group.js:1167 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "\"field_\" 这个字符串不能作为字段名字的开始部分" -#: api/api-helpers.php:3266 -#, php-format -msgid "File type must be %s." -msgstr "字段类型必须是 %s。" +#: includes/admin/admin-field-group.php:82 +msgid "Field group draft updated." +msgstr "字段组草稿已更新。" -#: api/api-template.php:1289 pro/fields/gallery.php:564 -msgid "Update" -msgstr "更新" +#: includes/admin/admin-field-group.php:81 +msgid "Field group scheduled for." +msgstr "字段组已定时。" -#: api/api-template.php:1290 -msgid "Post updated" -msgstr "内容已更新" +#: includes/admin/admin-field-group.php:80 +msgid "Field group submitted." +msgstr "字段组已提交。" -#: core/field.php:131 -msgid "Basic" -msgstr "基本" +#: includes/admin/admin-field-group.php:79 +msgid "Field group saved." +msgstr "字段组已保存。" -#: core/field.php:132 -msgid "Content" -msgstr "内容" +#: includes/admin/admin-field-group.php:78 +msgid "Field group published." +msgstr "字段组已发布。" -#: core/field.php:133 -msgid "Choice" -msgstr "选项" +#: includes/admin/admin-field-group.php:75 +msgid "Field group deleted." +msgstr "字段组已删除。" -#: core/field.php:134 -msgid "Relational" -msgstr "关系" +#: includes/admin/admin-field-group.php:73 +#: includes/admin/admin-field-group.php:74 +#: includes/admin/admin-field-group.php:76 +msgid "Field group updated." +msgstr "字段组已更新。" -#: core/field.php:135 +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-navigation.php:109 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "页面" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "文章" + +#: includes/fields.php:358 msgid "jQuery" msgstr "jQuery" -#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 -#: pro/fields/flexible-content.php:512 pro/fields/repeater.php:392 -msgid "Layout" -msgstr "样式" +#: includes/fields.php:357 +msgid "Relational" +msgstr "关系" -#: core/input.php:129 -msgid "Expand Details" -msgstr "展开" +#: includes/fields.php:356 +msgid "Choice" +msgstr "选项" -#: core/input.php:130 -msgid "Collapse Details" -msgstr "折叠" +#: includes/fields.php:354 +msgid "Basic" +msgstr "基本" -#: core/input.php:131 -msgid "Validation successful" -msgstr "验证成功" +#: includes/fields.php:313 +msgid "Unknown" +msgstr "未知" -#: core/input.php:132 -msgid "Validation failed" -msgstr "验证失败" +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "字段类型不存在" -#: core/input.php:133 -msgid "1 field requires attention" -msgstr "1 个字段需要注意" +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "检测到垃圾邮件" -#: core/input.php:134 -#, php-format +#: 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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "内容" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "标题" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6894 assets/build/js/acf-input.js:7849 +msgid "Edit field group" +msgstr "编辑字段组" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "选择小于" + +#: includes/admin/admin-field-group.php:178 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "选择大于" + +#: includes/admin/admin-field-group.php:177 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "值小于" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "值大于" + +#: includes/admin/admin-field-group.php:175 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "值包含" + +#: includes/admin/admin-field-group.php:174 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "值匹配模式" + +#: includes/admin/admin-field-group.php:173 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 assets/build/js/acf-input.js:903 +#: assets/build/js/acf-input.js:1116 +msgid "Value is not equal to" +msgstr "值不等于" + +#: includes/admin/admin-field-group.php:172 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 assets/build/js/acf-input.js:864 +#: assets/build/js/acf-input.js:1053 +msgid "Value is equal to" +msgstr "值等于" + +#: includes/admin/admin-field-group.php:171 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "没有价值" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "有任何价值" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "退出" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "确定吗?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8823 +#: assets/build/js/acf-input.js:10145 msgid "%d fields require attention" msgstr "%d 个字段需要注意" -#: core/input.php:135 +#: includes/assets.php:367 assets/build/js/acf-input.js:8821 +#: assets/build/js/acf-input.js:10141 +msgid "1 field requires attention" +msgstr "1 个字段需要注意" + +#: includes/assets.php:366 includes/validation.php:287 +#: includes/validation.php:297 assets/build/js/acf-input.js:8814 +#: assets/build/js/acf-input.js:10136 +msgid "Validation failed" +msgstr "验证失败" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8969 +#: assets/build/js/acf-input.js:10319 +msgid "Validation successful" +msgstr "验证成功" + +#: includes/media.php:54 assets/build/js/acf-input.js:6723 +#: assets/build/js/acf-input.js:7653 msgid "Restricted" msgstr "限制" -#: core/input.php:533 -#, php-format -msgid "%s value is required" -msgstr "%s 的值是必填项" - -#: fields/checkbox.php:36 fields/taxonomy.php:752 -msgid "Checkbox" -msgstr "复选框" - -#: fields/checkbox.php:144 -msgid "Toggle All" -msgstr "切换所有" - -#: fields/checkbox.php:208 fields/radio.php:193 fields/select.php:388 -msgid "Choices" -msgstr "选项" - -#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 -msgid "Enter each choice on a new line." -msgstr "输入选项,每行一个" - -#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 -msgid "For more control, you may specify both a value and label like this:" -msgstr "如果需要更多控制,你按照一下格式,定义一个值和标签对:" - -#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 -msgid "red : Red" -msgstr " red : Red " - -#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 -#: fields/number.php:150 fields/radio.php:222 fields/select.php:397 -#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115 -#: fields/url.php:117 fields/wysiwyg.php:345 -msgid "Default Value" -msgstr "默认值" - -#: fields/checkbox.php:218 fields/select.php:398 -msgid "Enter each default value on a new line" -msgstr "每行输入一个默认值" - -#: fields/checkbox.php:232 fields/radio.php:237 -msgid "Vertical" -msgstr "垂直" - -#: fields/checkbox.php:233 fields/radio.php:238 -msgid "Horizontal" -msgstr "水平" - -#: fields/checkbox.php:240 -msgid "Toggle" -msgstr "切换" - -#: fields/checkbox.php:241 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "添加一个可以切换所有选择的复选框" - -#: fields/color_picker.php:36 -msgid "Color Picker" -msgstr "颜色选择" - -#: fields/color_picker.php:94 -msgid "Clear" -msgstr "清除" - -#: fields/color_picker.php:95 -msgid "Default" -msgstr "默认" - -#: fields/color_picker.php:96 -msgid "Select Color" -msgstr "选择颜色" - -#: fields/date_picker.php:36 -msgid "Date Picker" -msgstr "日期选择" - -#: fields/date_picker.php:72 -msgid "Done" -msgstr "完成" - -#: fields/date_picker.php:73 -msgid "Today" -msgstr "今天" - -#: fields/date_picker.php:76 -msgid "Show a different month" -msgstr "显示其他月份" - -#: fields/date_picker.php:149 -msgid "Display Format" -msgstr "显示格式" - -#: fields/date_picker.php:150 -msgid "The format displayed when editing a post" -msgstr "编辑内容的时候显示的格式" - -#: fields/date_picker.php:164 -msgid "Return format" -msgstr "返回格式" - -#: fields/date_picker.php:165 -msgid "The format returned via template functions" -msgstr "通过模板函数返回的格式" - -#: fields/date_picker.php:180 -msgid "Week Starts On" -msgstr "每周开始于" - -#: fields/email.php:36 -msgid "Email" -msgstr "电子邮件" - -#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 -#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118 -#: fields/wysiwyg.php:346 -msgid "Appears when creating a new post" -msgstr "创建新内容的时候显示" - -#: fields/email.php:133 fields/number.php:159 fields/password.php:137 -#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126 -msgid "Placeholder Text" -msgstr "点位符文本" - -#: fields/email.php:134 fields/number.php:160 fields/password.php:138 -#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127 -msgid "Appears within the input" -msgstr "在 input 内部显示" - -#: fields/email.php:142 fields/number.php:168 fields/password.php:146 -#: fields/text.php:166 -msgid "Prepend" -msgstr "前置" - -#: fields/email.php:143 fields/number.php:169 fields/password.php:147 -#: fields/text.php:167 -msgid "Appears before the input" -msgstr "在 input 前面显示" - -#: fields/email.php:151 fields/number.php:177 fields/password.php:155 -#: fields/text.php:175 -msgid "Append" -msgstr "追加" - -#: fields/email.php:152 fields/number.php:178 fields/password.php:156 -#: fields/text.php:176 -msgid "Appears after the input" -msgstr "在 input 后面显示" - -#: fields/file.php:36 -msgid "File" -msgstr "文件" - -#: fields/file.php:47 -msgid "Edit File" -msgstr "编辑文件" - -#: fields/file.php:48 -msgid "Update File" -msgstr "更新文件" - -#: fields/file.php:49 pro/fields/gallery.php:55 -msgid "uploaded to this post" -msgstr "上传到这个内容" - -#: fields/file.php:142 -msgid "File Name" -msgstr "文件名" - -#: fields/file.php:146 -msgid "File Size" -msgstr "文件尺寸" - -#: fields/file.php:169 -msgid "No File selected" -msgstr "没有选择文件" - -#: fields/file.php:169 -msgid "Add File" -msgstr "添加文件" - -#: fields/file.php:214 fields/image.php:195 fields/taxonomy.php:821 -msgid "Return Value" -msgstr "返回值" - -#: fields/file.php:215 fields/image.php:196 -msgid "Specify the returned value on front end" -msgstr "指定前端返回的值" - -#: fields/file.php:220 -msgid "File Array" -msgstr "文件数组" - -#: fields/file.php:221 -msgid "File URL" -msgstr "文件URL" - -#: fields/file.php:222 -msgid "File ID" -msgstr "文件ID" - -#: fields/file.php:229 fields/image.php:220 pro/fields/gallery.php:647 -msgid "Library" -msgstr "库" - -#: fields/file.php:230 fields/image.php:221 pro/fields/gallery.php:648 -msgid "Limit the media library choice" -msgstr "限制媒体库的选择" - -#: fields/file.php:236 fields/image.php:227 pro/fields/gallery.php:654 -msgid "Uploaded to post" -msgstr "上传到内容" - -#: fields/file.php:243 fields/image.php:234 pro/fields/gallery.php:661 -msgid "Minimum" -msgstr "最小" - -#: fields/file.php:244 fields/file.php:255 -msgid "Restrict which files can be uploaded" -msgstr "限制什么类型的文件可以上传" - -#: fields/file.php:247 fields/file.php:258 fields/image.php:257 -#: fields/image.php:290 pro/fields/gallery.php:684 pro/fields/gallery.php:717 -msgid "File size" -msgstr "文件尺寸" - -#: fields/file.php:254 fields/image.php:267 pro/fields/gallery.php:694 -msgid "Maximum" -msgstr "最大" - -#: fields/file.php:265 fields/image.php:300 pro/fields/gallery.php:727 -msgid "Allowed file types" -msgstr "允许的文字类型" - -#: fields/file.php:266 fields/image.php:301 pro/fields/gallery.php:728 -msgid "Comma separated list. Leave blank for all types" -msgstr "用英文逗号分隔开,留空则为全部类型" - -#: fields/google-map.php:36 -msgid "Google Map" -msgstr "谷歌地图" - -#: fields/google-map.php:51 -msgid "Locating" -msgstr "定位" - -#: fields/google-map.php:52 -msgid "Sorry, this browser does not support geolocation" -msgstr "抱歉,浏览器不支持定位" - -#: fields/google-map.php:135 -msgid "Clear location" -msgstr "清除位置" - -#: fields/google-map.php:140 -msgid "Find current location" -msgstr "搜索当前位置" - -#: fields/google-map.php:141 -msgid "Search for address..." -msgstr "搜索地址... " - -#: fields/google-map.php:173 fields/google-map.php:184 -msgid "Center" -msgstr "居中" - -#: fields/google-map.php:174 fields/google-map.php:185 -msgid "Center the initial map" -msgstr "居中显示初始地图" - -#: fields/google-map.php:198 -msgid "Zoom" -msgstr "缩放" - -#: fields/google-map.php:199 -msgid "Set the initial zoom level" -msgstr "设置初始缩放级别" - -#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 -#: fields/oembed.php:262 pro/fields/gallery.php:673 pro/fields/gallery.php:706 -msgid "Height" -msgstr "高度" - -#: fields/google-map.php:209 -msgid "Customise the map height" -msgstr "自定义地图高度" - -#: fields/image.php:36 -msgid "Image" -msgstr "图像" - -#: fields/image.php:51 -msgid "Select Image" -msgstr "选择图像" - -#: fields/image.php:52 pro/fields/gallery.php:53 -msgid "Edit Image" -msgstr "编辑图片" - -#: fields/image.php:53 pro/fields/gallery.php:54 -msgid "Update Image" -msgstr "更新图像" - -#: fields/image.php:54 +#: includes/media.php:53 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7417 +msgid "Collapse Details" +msgstr "折叠" + +#: includes/media.php:52 assets/build/js/acf-input.js:6553 +#: assets/build/js/acf-input.js:7414 +msgid "Expand Details" +msgstr "展开" + +#: includes/media.php:51 assets/build/js/acf-input.js:6425 +#: assets/build/js/acf-input.js:7262 msgid "Uploaded to this post" -msgstr "上传到这个内容" - -#: fields/image.php:55 -msgid "All images" -msgstr "所有图片" - -#: fields/image.php:147 -msgid "No image selected" -msgstr "没有选择图片" - -#: fields/image.php:147 -msgid "Add Image" -msgstr "添加图片" - -#: fields/image.php:201 -msgid "Image Array" -msgstr "图像数组" - -#: fields/image.php:202 -msgid "Image URL" -msgstr "图像 URL" - -#: fields/image.php:203 -msgid "Image ID" -msgstr "图像ID" - -#: fields/image.php:210 pro/fields/gallery.php:637 -msgid "Preview Size" -msgstr "预览图大小" - -#: fields/image.php:211 pro/fields/gallery.php:638 -msgid "Shown when entering data" -msgstr "输入数据时显示" - -#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 -#: pro/fields/gallery.php:695 -msgid "Restrict which images can be uploaded" -msgstr "限制可以上传的图像" - -#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 -#: pro/fields/gallery.php:665 pro/fields/gallery.php:698 -msgid "Width" -msgstr "宽度" - -#: fields/message.php:36 fields/message.php:103 fields/true_false.php:106 -msgid "Message" -msgstr "消息" - -#: fields/message.php:104 -msgid "Please note that all text will first be passed through the wp function " -msgstr "请注意,所有文本将首页通过WP过滤功能" - -#: fields/message.php:112 -msgid "Escape HTML" -msgstr "转义 HTML" - -#: fields/message.php:113 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "显示 HTML 文本,而不是渲染 HTML" - -#: fields/number.php:36 -msgid "Number" -msgstr "号码" - -#: fields/number.php:186 -msgid "Minimum Value" -msgstr "最小值" - -#: fields/number.php:195 -msgid "Maximum Value" -msgstr "最大值" - -#: fields/number.php:204 -msgid "Step Size" -msgstr "步长" - -#: fields/number.php:242 -msgid "Value must be a number" -msgstr "值必须是数字" - -#: fields/number.php:260 -#, php-format -msgid "Value must be equal to or higher than %d" -msgstr "值要大于等于 %d" - -#: fields/number.php:268 -#, php-format -msgid "Value must be equal to or lower than %d" -msgstr "值要小于等于 %d" - -#: fields/oembed.php:36 -msgid "oEmbed" -msgstr "oEmbed" - -#: fields/oembed.php:199 -msgid "Enter URL" -msgstr "输入 URL" - -#: fields/oembed.php:212 -msgid "No embed found for the given URL." -msgstr "在 URL 里没发现嵌入。" - -#: fields/oembed.php:248 fields/oembed.php:259 -msgid "Embed Size" -msgstr "嵌入尺寸" - -#: fields/page_link.php:206 -msgid "Archives" -msgstr "存档" - -#: fields/page_link.php:535 fields/post_object.php:401 -#: fields/relationship.php:690 -msgid "Filter by Post Type" -msgstr "按内容类型筛选" - -#: fields/page_link.php:543 fields/post_object.php:409 -#: fields/relationship.php:698 -msgid "All post types" -msgstr "所有内容类型" - -#: fields/page_link.php:549 fields/post_object.php:415 -#: fields/relationship.php:704 -msgid "Filter by Taxonomy" -msgstr "按分类筛选" - -#: fields/page_link.php:557 fields/post_object.php:423 -#: fields/relationship.php:712 -msgid "All taxonomies" -msgstr "所有分类法" - -#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 -#: fields/taxonomy.php:765 fields/user.php:452 -msgid "Allow Null?" -msgstr "是否允许空值?" - -#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 -#: fields/user.php:466 -msgid "Select multiple values?" -msgstr "是否选择多个值?" - -#: fields/password.php:36 -msgid "Password" -msgstr "密码" - -#: fields/post_object.php:36 fields/post_object.php:462 -#: fields/relationship.php:769 -msgid "Post Object" -msgstr "文章对象" - -#: fields/post_object.php:457 fields/relationship.php:764 -msgid "Return Format" -msgstr "返回格式" - -#: fields/post_object.php:463 fields/relationship.php:770 -msgid "Post ID" -msgstr "Post ID" - -#: fields/radio.php:36 -msgid "Radio Button" -msgstr "单选按钮" - -#: fields/radio.php:202 -msgid "Other" -msgstr "其他" - -#: fields/radio.php:206 -msgid "Add 'other' choice to allow for custom values" -msgstr "为自定义值添加 'other' 选择" - -#: fields/radio.php:212 -msgid "Save Other" -msgstr "保存其它" - -#: fields/radio.php:216 -msgid "Save 'other' values to the field's choices" -msgstr "存档为字段的选择的 'other' 的值" - -#: fields/relationship.php:36 -msgid "Relationship" -msgstr "关系" - -#: fields/relationship.php:48 -msgid "Minimum values reached ( {min} values )" -msgstr "已到最小值 ( {min} values )" - -#: fields/relationship.php:49 -msgid "Maximum values reached ( {max} values )" -msgstr "达到了最大值 ( {max} 值 ) " - -#: fields/relationship.php:50 -msgid "Loading" -msgstr "加载" - -#: fields/relationship.php:51 -msgid "No matches found" -msgstr "没找到匹配的结果" - -#: fields/relationship.php:571 -msgid "Search..." -msgstr "搜索..." - -#: fields/relationship.php:580 -msgid "Select post type" -msgstr "选择内容类型" - -#: fields/relationship.php:593 -msgid "Select taxonomy" -msgstr "选择分类" - -#: fields/relationship.php:723 -msgid "Search" -msgstr "搜索" - -#: fields/relationship.php:725 fields/taxonomy.php:36 fields/taxonomy.php:735 -msgid "Taxonomy" -msgstr "分类法" - -#: fields/relationship.php:732 -msgid "Elements" -msgstr "元素" - -#: fields/relationship.php:733 -msgid "Selected elements will be displayed in each result" -msgstr "选择的元素将在每个结果中显示。" - -#: fields/relationship.php:744 -msgid "Minimum posts" -msgstr "最小内容" - -#: fields/relationship.php:753 -msgid "Maximum posts" -msgstr "最大文章数" - -#: fields/select.php:36 fields/select.php:174 fields/taxonomy.php:757 -msgid "Select" -msgstr "选择" - -#: fields/select.php:434 -msgid "Stylised UI" -msgstr "装饰的界面" - -#: fields/select.php:448 -msgid "Use AJAX to lazy load choices?" -msgstr "使用 AJAX 惰性选择?" - -#: fields/tab.php:36 -msgid "Tab" -msgstr "选项卡" - -#: fields/tab.php:128 -msgid "Warning" -msgstr "警告" - -#: fields/tab.php:133 -msgid "" -"The tab field will display incorrectly when added to a Table style repeater " -"field or flexible content field layout" -msgstr "标签字段不能在 Table 样式的重复字段或者灵活内容字段布局里正常显示" - -#: fields/tab.php:146 -msgid "" -"Use \"Tab Fields\" to better organize your edit screen by grouping fields " -"together." -msgstr "使用 \"标签字段\" 可以把字段组织起来更好地在编辑界面上显示。" - -#: fields/tab.php:148 -msgid "" -"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." -msgstr "" -"在这个 \"tab field\" (或直到定义了其它的 \"tab field\" ) 以下的所有字段,都会" -"被用这个字段标签作为标题的标签(Tab)组织到一块。" - -#: fields/tab.php:155 -msgid "Placement" -msgstr "位置" - -#: fields/tab.php:167 -msgid "End-point" -msgstr "端点" - -#: fields/tab.php:168 -msgid "Use this field as an end-point and start a new group of tabs" -msgstr "使用这个字段作为端点去创建新的标签群组" - -#: fields/taxonomy.php:565 -#, php-format -msgid "Add new %s " -msgstr "添加新的 %s" - -#: fields/taxonomy.php:704 -msgid "None" -msgstr "None" - -#: fields/taxonomy.php:736 -msgid "Select the taxonomy to be displayed" -msgstr "选择要显示的分类法" - -#: fields/taxonomy.php:745 -msgid "Appearance" -msgstr "外观" - -#: fields/taxonomy.php:746 -msgid "Select the appearance of this field" -msgstr "为这个字段选择外观" - -#: fields/taxonomy.php:751 -msgid "Multiple Values" -msgstr "多选" - -#: fields/taxonomy.php:753 -msgid "Multi Select" -msgstr "多选" - -#: fields/taxonomy.php:755 -msgid "Single Value" -msgstr "单个值" - -#: fields/taxonomy.php:756 -msgid "Radio Buttons" -msgstr "单选框" - -#: fields/taxonomy.php:779 -msgid "Create Terms" -msgstr "创建分类词汇" - -#: fields/taxonomy.php:780 -msgid "Allow new terms to be created whilst editing" -msgstr "在编辑时允许可以创建新的分类词汇" - -#: fields/taxonomy.php:793 -msgid "Save Terms" -msgstr "保存分类词汇" - -#: fields/taxonomy.php:794 -msgid "Connect selected terms to the post" -msgstr "连接所选分类词汇到内容" - -#: fields/taxonomy.php:807 -msgid "Load Terms" -msgstr "加载分类词汇" - -#: fields/taxonomy.php:808 -msgid "Load value from posts terms" -msgstr "载入内容分类词汇的值" - -#: fields/taxonomy.php:826 -msgid "Term Object" -msgstr "对象缓存" - -#: fields/taxonomy.php:827 -msgid "Term ID" -msgstr "内容ID" - -#: fields/taxonomy.php:886 -#, php-format -msgid "User unable to add new %s" -msgstr "用户无法添加新的 %s" - -#: fields/taxonomy.php:899 -#, php-format -msgid "%s already exists" -msgstr "%s 已存在" - -#: fields/taxonomy.php:940 -#, php-format -msgid "%s added" -msgstr "%s 已添加" - -#: fields/taxonomy.php:985 -msgid "Add" -msgstr "添加" - -#: fields/text.php:36 -msgid "Text" -msgstr "文本" - -#: fields/text.php:184 fields/textarea.php:163 -msgid "Character Limit" -msgstr "字符限制" - -#: fields/text.php:185 fields/textarea.php:164 -msgid "Leave blank for no limit" -msgstr "留空则不限制" - -#: fields/textarea.php:36 -msgid "Text Area" -msgstr "文本段" - -#: fields/textarea.php:172 -msgid "Rows" -msgstr "行" - -#: fields/textarea.php:173 +msgstr "上传到这个文章" + +#: includes/media.php:50 assets/build/js/acf-input.js:6461 +#: assets/build/js/acf-input.js:7301 +msgctxt "verb" +msgid "Update" +msgstr "更新" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "编辑" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8591 +#: assets/build/js/acf-input.js:9907 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "如果浏览其它页面,会丢失当前所做的修改" + +#: includes/api/api-helpers.php:3409 +msgid "File type must be %s." +msgstr "字段类型必须是 %s。" + +#: includes/admin/admin-field-group.php:165 +#: includes/admin/views/field-group-field-conditional-logic.php:59 +#: includes/admin/views/field-group-field-conditional-logic.php:169 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3405 assets/build/js/acf-field-group.js:452 +#: assets/build/js/acf-field-group.js:1804 +#: assets/build/js/acf-field-group.js:544 +#: assets/build/js/acf-field-group.js:2174 +msgid "or" +msgstr "或" + +#: includes/api/api-helpers.php:3378 +msgid "File size must not exceed %s." +msgstr "文件尺寸最大不能超过 %s。" + +#: includes/api/api-helpers.php:3373 +msgid "File size must be at least %s." +msgstr "文件尺寸至少得是 %s。" + +#: includes/api/api-helpers.php:3358 +msgid "Image height must not exceed %dpx." +msgstr "图像高度最大不能超过 %dpx。" + +#: includes/api/api-helpers.php:3353 +msgid "Image height must be at least %dpx." +msgstr "图像高度至少得是 %dpx。" + +#: includes/api/api-helpers.php:3339 +msgid "Image width must not exceed %dpx." +msgstr "图像宽度最大不能超过 %dpx。" + +#: includes/api/api-helpers.php:3334 +msgid "Image width must be at least %dpx." +msgstr "图像宽度至少得是 %dpx。" + +#: includes/api/api-helpers.php:1566 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(无标题)" + +#: includes/api/api-helpers.php:861 +msgid "Full Size" +msgstr "原图" + +#: includes/api/api-helpers.php:820 +msgid "Large" +msgstr "大" + +#: includes/api/api-helpers.php:819 +msgid "Medium" +msgstr "中" + +#: includes/api/api-helpers.php:818 +msgid "Thumbnail" +msgstr "缩略图" + +#: includes/acf-field-functions.php:849 +#: includes/admin/admin-field-group.php:162 +#: assets/build/js/acf-field-group.js:718 +#: assets/build/js/acf-field-group.js:857 +msgid "(no label)" +msgstr "(无标签)" + +#: includes/fields/class-acf-field-textarea.php:142 msgid "Sets the textarea height" msgstr "设置文本区域的高度" -#: fields/textarea.php:182 -msgid "New Lines" -msgstr "新行" +#: includes/fields/class-acf-field-textarea.php:141 +msgid "Rows" +msgstr "行" -#: fields/textarea.php:183 -msgid "Controls how new lines are rendered" -msgstr "控制怎么显示新行" +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "文本区域" -#: fields/textarea.php:187 -msgid "Automatically add paragraphs" -msgstr "自动添加段落" +#: includes/fields/class-acf-field-checkbox.php:447 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "添加一个可以全选的复选框" -#: fields/textarea.php:188 -msgid "Automatically add <br>" -msgstr "自动添加 <br>" +#: includes/fields/class-acf-field-checkbox.php:409 +msgid "Save 'custom' values to the field's choices" +msgstr "将 \"自定义\" 值保存到字段的选择中" -#: fields/textarea.php:189 -msgid "No Formatting" -msgstr "无格式" +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Allow 'custom' values to be added" +msgstr "允许添加 \"自定义\" 值" -#: fields/true_false.php:36 -msgid "True / False" -msgstr "真/假" +#: includes/fields/class-acf-field-checkbox.php:233 +msgid "Add new choice" +msgstr "添加新选项" -#: fields/true_false.php:107 -msgid "eg. Show extra content" -msgstr "例如:显示附加内容" +#: includes/fields/class-acf-field-checkbox.php:170 +msgid "Toggle All" +msgstr "全选" -#: fields/url.php:36 -msgid "Url" -msgstr "地址" +#: includes/fields/class-acf-field-page_link.php:477 +msgid "Allow Archives URLs" +msgstr "允许存档 url" -#: fields/url.php:160 -msgid "Value must be a valid URL" -msgstr "值必须是有效的地址" +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "存档" -#: fields/user.php:437 -msgid "Filter by role" -msgstr "根据角色过滤" +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "页面链接" -#: fields/user.php:445 +#: includes/fields/class-acf-field-taxonomy.php:955 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "添加" + +#: includes/admin/views/field-group-fields.php:42 +#: includes/fields/class-acf-field-taxonomy.php:920 +msgid "Name" +msgstr "名称" + +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "%s added" +msgstr "%s 已添加" + +#: includes/fields/class-acf-field-taxonomy.php:868 +msgid "%s already exists" +msgstr "%s 已存在" + +#: includes/fields/class-acf-field-taxonomy.php:856 +msgid "User unable to add new %s" +msgstr "用户无法添加新的 %s" + +#: includes/fields/class-acf-field-taxonomy.php:756 +msgid "Term ID" +msgstr "内容ID" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Term Object" +msgstr "对象缓存" + +#: includes/fields/class-acf-field-taxonomy.php:740 +msgid "Load value from posts terms" +msgstr "从文章项目中加载值" + +#: includes/fields/class-acf-field-taxonomy.php:739 +msgid "Load Terms" +msgstr "加载项目" + +#: includes/fields/class-acf-field-taxonomy.php:729 +msgid "Connect selected terms to the post" +msgstr "连接所选项目到文章" + +#: includes/fields/class-acf-field-taxonomy.php:728 +msgid "Save Terms" +msgstr "保存项目" + +#: includes/fields/class-acf-field-taxonomy.php:718 +msgid "Allow new terms to be created whilst editing" +msgstr "在编辑时允许可以创建新的项目" + +#: includes/fields/class-acf-field-taxonomy.php:717 +msgid "Create Terms" +msgstr "创建项目" + +#: includes/fields/class-acf-field-taxonomy.php:776 +msgid "Radio Buttons" +msgstr "单选框" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Single Value" +msgstr "单个值" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Multi Select" +msgstr "多选" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Checkbox" +msgstr "复选框" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Multiple Values" +msgstr "多选" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Select the appearance of this field" +msgstr "为这个字段选择外观" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Appearance" +msgstr "外观" + +#: includes/fields/class-acf-field-taxonomy.php:707 +msgid "Select the taxonomy to be displayed" +msgstr "选择要显示的分类法" + +#: includes/fields/class-acf-field-taxonomy.php:668 +msgctxt "No Terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-number.php:263 +msgid "Value must be equal to or lower than %d" +msgstr "值要小于等于 %d" + +#: includes/fields/class-acf-field-number.php:256 +msgid "Value must be equal to or higher than %d" +msgstr "值要大于等于 %d" + +#: includes/fields/class-acf-field-number.php:241 +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:261 +msgid "Save 'other' values to the field's choices" +msgstr "存档为字段的选择的 'other' 的值" + +#: includes/fields/class-acf-field-radio.php:250 +msgid "Add 'other' choice to allow for custom values" +msgstr "为自定义值添加 'other' 选择" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "单选按钮" + +#: includes/fields/class-acf-field-accordion.php:105 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "定义上一个手风琴停止的端点。此手风琴将不可见。" + +#: includes/fields/class-acf-field-accordion.php:94 +msgid "Allow this accordion to open without closing others." +msgstr "允许此手风琴打开而不关闭其他。" + +#: includes/fields/class-acf-field-accordion.php:93 +msgid "Multi-expand" +msgstr "多扩展" + +#: includes/fields/class-acf-field-accordion.php:83 +msgid "Display this accordion as open on page load." +msgstr "将此手风琴显示为在页面加载时打开。" + +#: includes/fields/class-acf-field-accordion.php:82 +msgid "Open" +msgstr "打开" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "手风琴" + +#: 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:217 +msgid "File ID" +msgstr "文件ID" + +#: includes/fields/class-acf-field-file.php:216 +msgid "File URL" +msgstr "文件URL" + +#: includes/fields/class-acf-field-file.php:215 +msgid "File Array" +msgstr "文件数组" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "添加文件" + +#: includes/admin/tools/class-acf-admin-tool-import.php:94 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "没选择文件" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "文件名" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "更新文件" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "编辑文件" + +#: includes/admin/tools/class-acf-admin-tool-import.php:59 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:387 +msgid "Specify the value returned" +msgstr "指定返回的值" + +#: includes/fields/class-acf-field-select.php:456 +msgid "Use AJAX to lazy load choices?" +msgstr "使用 AJAX 惰性选择?" + +#: includes/fields/class-acf-field-checkbox.php:358 +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "每行输入一个默认值" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6335 assets/build/js/acf-input.js:7147 +msgctxt "verb" +msgid "Select" +msgstr "选择" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "加载失败" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "搜索中…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "载入更多结果…" + +#: includes/fields/class-acf-field-select.php:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "只能选择 %d 项" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "您只能选择1项" + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "请删除 %d 个字符" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "请删除1个字符" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "请输入 %d 或者更多字符" + +#: includes/fields/class-acf-field-select.php:110 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "请输入至少一个字符" + +#: includes/fields/class-acf-field-select.php:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "找不到匹配项" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:777 +msgctxt "noun" +msgid "Select" +msgstr "下拉选择" + +#: includes/fields/class-acf-field-user.php:74 +msgid "User ID" +msgstr "用户 ID" + +#: includes/fields/class-acf-field-user.php:73 +msgid "User Object" +msgstr "用户对象" + +#: includes/fields/class-acf-field-user.php:72 +msgid "User Array" +msgstr "數組" + +#: includes/fields/class-acf-field-user.php:60 msgid "All user roles" msgstr "所有用户角色" -#: fields/wysiwyg.php:37 -msgid "Wysiwyg Editor" -msgstr "可视化编辑器" +#: includes/fields/class-acf-field-user.php:52 +msgid "Filter by role" +msgstr "根据角色过滤" -#: fields/wysiwyg.php:297 -msgid "Visual" -msgstr "显示" +#: includes/fields/class-acf-field-user.php:20 includes/locations.php:101 +msgid "User" +msgstr "用户" -#: fields/wysiwyg.php:298 +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "分隔线" + +#: includes/fields/class-acf-field-color_picker.php:73 +msgid "Select Color" +msgstr "选择颜色" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "默认" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "下午" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "上午" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "选择" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "已完成" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "现在" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "时区" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "微秒" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "毫秒" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "秒" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "分钟" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "小时" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "时间" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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:104 +msgid "Endpoint" +msgstr "端点" + +#: includes/admin/views/field-group-options.php:95 +#: includes/fields/class-acf-field-tab.php:112 +msgid "Left aligned" +msgstr "左对齐" + +#: includes/admin/views/field-group-options.php:94 +#: includes/fields/class-acf-field-tab.php:111 +msgid "Top aligned" +msgstr "顶部对齐" + +#: includes/fields/class-acf-field-tab.php:107 +msgid "Placement" +msgstr "位置" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "选项卡" + +#: includes/fields/class-acf-field-url.php:159 +msgid "Value must be a valid URL" +msgstr "值必须是有效的地址" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "地址" + +#: includes/fields/class-acf-field-link.php:174 +msgid "Link URL" +msgstr "链接 URL" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link Array" +msgstr "链接数组" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "在新窗口/选项卡中打开" + +#: includes/fields/class-acf-field-link.php:137 +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:185 +#: includes/fields/class-acf-field-range.php:214 +msgid "Step Size" +msgstr "步长" + +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-range.php:192 +msgid "Maximum Value" +msgstr "最大值" + +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-range.php:181 +msgid "Minimum Value" +msgstr "最小值" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "范围(滑块)" + +#: includes/fields/class-acf-field-button-group.php:172 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-radio.php:217 +#: includes/fields/class-acf-field-select.php:394 +msgid "Both (Array)" +msgstr "两个 (阵列)" + +#: includes/admin/views/field-group-fields.php:41 +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-checkbox.php:374 +#: includes/fields/class-acf-field-radio.php:216 +#: includes/fields/class-acf-field-select.php:393 +msgid "Label" +msgstr "标签" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:373 +#: includes/fields/class-acf-field-radio.php:215 +#: includes/fields/class-acf-field-select.php:392 +msgid "Value" +msgstr "值" + +#: includes/fields/class-acf-field-button-group.php:219 +#: includes/fields/class-acf-field-checkbox.php:437 +#: includes/fields/class-acf-field-radio.php:289 +msgid "Vertical" +msgstr "垂直" + +#: includes/fields/class-acf-field-button-group.php:218 +#: includes/fields/class-acf-field-checkbox.php:438 +#: includes/fields/class-acf-field-radio.php:290 +msgid "Horizontal" +msgstr "水平" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : Red" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "如果需要更多控制,您按照一下格式,定义一个值和标签对:" + +#: includes/fields/class-acf-field-button-group.php:145 +#: includes/fields/class-acf-field-checkbox.php:348 +#: includes/fields/class-acf-field-radio.php:190 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "输入选项,每行一个。" + +#: includes/fields/class-acf-field-button-group.php:144 +#: includes/fields/class-acf-field-checkbox.php:347 +#: includes/fields/class-acf-field-radio.php:189 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "选项" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "按钮组" + +#: includes/fields/class-acf-field-page_link.php:488 +#: includes/fields/class-acf-field-post_object.php:404 +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-user.php:83 +msgid "Select multiple values?" +msgstr "是否选择多个值?" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-page_link.php:509 +#: includes/fields/class-acf-field-post_object.php:426 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:424 +#: includes/fields/class-acf-field-taxonomy.php:796 +#: includes/fields/class-acf-field-user.php:104 +msgid "Allow Null?" +msgstr "是否允许空值?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:942 +msgid "Parent" +msgstr "父级" + +#: includes/fields/class-acf-field-wysiwyg.php:326 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "TinyMCE 在栏位没有点击之前不会初始化" + +#: includes/fields/class-acf-field-wysiwyg.php:325 +msgid "Delay initialization?" +msgstr "延迟初始化?" + +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Show Media Upload Buttons?" +msgstr "是否显示媒体上传按钮?" + +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Toolbar" +msgstr "工具条" + +#: includes/fields/class-acf-field-wysiwyg.php:374 +msgid "Text Only" +msgstr "纯文本" + +#: includes/fields/class-acf-field-wysiwyg.php:373 +msgid "Visual Only" +msgstr "只有显示" + +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Visual & Text" +msgstr "显示与文本" + +#: includes/fields/class-acf-field-wysiwyg.php:367 +msgid "Tabs" +msgstr "标签" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "点击初始化 TinyMCE 编辑器" + +#: includes/fields/class-acf-field-wysiwyg.php:283 msgctxt "Name for the Text editor tab (formerly HTML)" msgid "Text" msgstr "文本" -#: fields/wysiwyg.php:354 -msgid "Tabs" -msgstr "标签" +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "显示" -#: fields/wysiwyg.php:359 -msgid "Visual & Text" -msgstr "显示与文本" +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "可视化编辑器" -#: fields/wysiwyg.php:360 -msgid "Visual Only" -msgstr "只有显示" +#: includes/fields/class-acf-field-text.php:180 +#: includes/fields/class-acf-field-textarea.php:233 +msgid "Value must not exceed %d characters" +msgstr "值不得超过%d个字符" -#: fields/wysiwyg.php:361 -msgid "Text Only" -msgstr "纯文本" +#: includes/fields/class-acf-field-text.php:115 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "留空则不限制" -#: fields/wysiwyg.php:368 -msgid "Toolbar" -msgstr "工具条" +#: includes/fields/class-acf-field-text.php:114 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "字符限制" -#: fields/wysiwyg.php:378 -msgid "Show Media Upload Buttons?" -msgstr "是否显示媒体上传按钮?" +#: includes/fields/class-acf-field-email.php:155 +#: includes/fields/class-acf-field-number.php:206 +#: includes/fields/class-acf-field-password.php:102 +#: includes/fields/class-acf-field-range.php:236 +#: includes/fields/class-acf-field-text.php:155 +msgid "Appears after the input" +msgstr "在 input 后面显示" -#: forms/post.php:297 pro/admin/options-page.php:373 -msgid "Edit field group" +#: includes/fields/class-acf-field-email.php:154 +#: includes/fields/class-acf-field-number.php:205 +#: includes/fields/class-acf-field-password.php:101 +#: includes/fields/class-acf-field-range.php:235 +#: includes/fields/class-acf-field-text.php:154 +msgid "Append" +msgstr "追加" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:196 +#: includes/fields/class-acf-field-password.php:92 +#: includes/fields/class-acf-field-range.php:226 +#: includes/fields/class-acf-field-text.php:145 +msgid "Appears before the input" +msgstr "在 input 前面显示" + +#: includes/fields/class-acf-field-email.php:144 +#: includes/fields/class-acf-field-number.php:195 +#: includes/fields/class-acf-field-password.php:91 +#: includes/fields/class-acf-field-range.php:225 +#: includes/fields/class-acf-field-text.php:144 +msgid "Prepend" +msgstr "前置" + +#: includes/fields/class-acf-field-email.php:135 +#: includes/fields/class-acf-field-number.php:176 +#: includes/fields/class-acf-field-password.php:82 +#: includes/fields/class-acf-field-text.php:135 +#: includes/fields/class-acf-field-textarea.php:153 +#: includes/fields/class-acf-field-url.php:119 +msgid "Appears within the input" +msgstr "在 input 内部显示" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:175 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-text.php:134 +#: includes/fields/class-acf-field-textarea.php:152 +#: includes/fields/class-acf-field-url.php:118 +msgid "Placeholder Text" +msgstr "占位符文本" + +#: includes/fields/class-acf-field-button-group.php:155 +#: includes/fields/class-acf-field-email.php:115 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:200 +#: includes/fields/class-acf-field-range.php:162 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:101 +#: includes/fields/class-acf-field-url.php:99 +#: includes/fields/class-acf-field-wysiwyg.php:316 +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:760 +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:395 +#: includes/fields/class-acf-field-relationship.php:622 +msgid "Post ID" +msgstr "文章 ID" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-relationship.php:621 +msgid "Post Object" +msgstr "文章对象" + +#: includes/fields/class-acf-field-relationship.php:654 +msgid "Maximum posts" +msgstr "最大文章数" + +#: includes/fields/class-acf-field-relationship.php:644 +msgid "Minimum posts" +msgstr "最小文章数" + +#: includes/admin/views/field-group-options.php:149 +#: includes/fields/class-acf-field-relationship.php:679 +msgid "Featured Image" +msgstr "特色图像" + +#: includes/fields/class-acf-field-relationship.php:675 +msgid "Selected elements will be displayed in each result" +msgstr "选择的元素将在每个结果中显示" + +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Elements" +msgstr "元素" + +#: includes/fields/class-acf-field-relationship.php:608 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:706 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "分类法" + +#: includes/fields/class-acf-field-relationship.php:607 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "文章类型" + +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Filters" +msgstr "过滤器" + +#: includes/fields/class-acf-field-page_link.php:470 +#: includes/fields/class-acf-field-post_object.php:382 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "All taxonomies" +msgstr "所有分类法" + +#: includes/fields/class-acf-field-page_link.php:462 +#: includes/fields/class-acf-field-post_object.php:374 +#: includes/fields/class-acf-field-relationship.php:586 +msgid "Filter by Taxonomy" +msgstr "按分类筛选" + +#: includes/fields/class-acf-field-page_link.php:455 +#: includes/fields/class-acf-field-post_object.php:367 +#: includes/fields/class-acf-field-relationship.php:579 +msgid "All post types" +msgstr "所有文章类型" + +#: includes/fields/class-acf-field-page_link.php:447 +#: includes/fields/class-acf-field-post_object.php:359 +#: includes/fields/class-acf-field-relationship.php:571 +msgid "Filter by Post Type" +msgstr "按文章类型筛选" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "搜索..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "选择分类" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "选择文章类型" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "找不到匹配项" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "加载" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "达到了最大值 ( {max} 值 )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "关系" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:314 +msgid "Comma separated list. Leave blank for all types" +msgstr "用英文逗号分隔开,留空则为全部类型" + +#: includes/fields/class-acf-field-file.php:287 +#: includes/fields/class-acf-field-image.php:313 +msgid "Allowed file types" +msgstr "允许的文字类型" + +#: includes/fields/class-acf-field-file.php:275 +#: includes/fields/class-acf-field-image.php:277 +msgid "Maximum" +msgstr "最大" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-file.php:279 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-image.php:304 +msgid "File size" +msgstr "文件尺寸" + +#: includes/fields/class-acf-field-image.php:242 +#: includes/fields/class-acf-field-image.php:278 +msgid "Restrict which images can be uploaded" +msgstr "限制可以上传的图像" + +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:241 +msgid "Minimum" +msgstr "最小" + +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-image.php:207 +msgid "Uploaded to post" +msgstr "上传到文章" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:206 +#: 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:226 +#: includes/fields/class-acf-field-image.php:201 +msgid "Limit the media library choice" +msgstr "限制媒体库的选择" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:200 +msgid "Library" +msgstr "库" + +#: includes/fields/class-acf-field-image.php:333 +msgid "Preview Size" +msgstr "预览图大小" + +#: includes/fields/class-acf-field-image.php:192 +msgid "Image ID" +msgstr "图像ID" + +#: includes/fields/class-acf-field-image.php:191 +msgid "Image URL" +msgstr "图像 URL" + +#: includes/fields/class-acf-field-image.php:190 +msgid "Image Array" +msgstr "图像数组" + +#: includes/fields/class-acf-field-button-group.php:165 +#: includes/fields/class-acf-field-checkbox.php:368 +#: includes/fields/class-acf-field-file.php:210 +#: includes/fields/class-acf-field-link.php:168 +#: includes/fields/class-acf-field-radio.php:210 +msgid "Specify the returned value on front end" +msgstr "指定前端返回的值" + +#: includes/fields/class-acf-field-button-group.php:164 +#: includes/fields/class-acf-field-checkbox.php:367 +#: includes/fields/class-acf-field-file.php:209 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:209 +#: includes/fields/class-acf-field-taxonomy.php:750 +msgid "Return Value" +msgstr "返回值" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "添加图片" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "没有选择图片" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "删除" + +#: includes/admin/views/field-group-field.php:65 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "编辑" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6378 assets/build/js/acf-input.js:7201 +msgid "All images" +msgstr "所有图片" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "更新图像" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "编辑图片" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +msgid "Select Image" +msgstr "选择图像" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "图像" + +#: includes/fields/class-acf-field-message.php:123 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "显示 HTML 文本,而不是渲染 HTML" + +#: includes/fields/class-acf-field-message.php:122 +msgid "Escape HTML" +msgstr "转义 HTML" + +#: includes/fields/class-acf-field-message.php:114 +#: includes/fields/class-acf-field-textarea.php:169 +msgid "No Formatting" +msgstr "无格式" + +#: includes/fields/class-acf-field-message.php:113 +#: includes/fields/class-acf-field-textarea.php:168 +msgid "Automatically add <br>" +msgstr "自动添加 <br>" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Automatically add paragraphs" +msgstr "自动添加段落" + +#: includes/fields/class-acf-field-message.php:108 +#: includes/fields/class-acf-field-textarea.php:163 +msgid "Controls how new lines are rendered" +msgstr "控制怎么显示新行" + +#: includes/fields/class-acf-field-message.php:107 +#: includes/fields/class-acf-field-textarea.php:162 +msgid "New Lines" +msgstr "新行" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "每周开始于" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "保存值时使用的格式" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "保存格式" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "周" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "上一页" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "下一个" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "今日" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:245 +#: includes/fields/class-acf-field-image.php:281 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Width" +msgstr "宽度" + +#: includes/fields/class-acf-field-oembed.php:262 +#: includes/fields/class-acf-field-oembed.php:274 +msgid "Embed Size" +msgstr "嵌入尺寸" + +#: includes/fields/class-acf-field-oembed.php:219 +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:181 +msgid "Text shown when inactive" +msgstr "非激活时显示的文字" + +#: includes/fields/class-acf-field-true_false.php:180 +msgid "Off Text" +msgstr "关闭文本" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Text shown when active" +msgstr "激活时显示的文本" + +#: includes/fields/class-acf-field-true_false.php:164 +msgid "On Text" +msgstr "打开文本" + +#: includes/fields/class-acf-field-select.php:445 +#: includes/fields/class-acf-field-true_false.php:196 +msgid "Stylized UI" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:154 +#: includes/fields/class-acf-field-checkbox.php:357 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:114 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:199 +#: includes/fields/class-acf-field-range.php:161 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:94 +#: includes/fields/class-acf-field-textarea.php:100 +#: includes/fields/class-acf-field-true_false.php:144 +#: includes/fields/class-acf-field-url.php:98 +#: includes/fields/class-acf-field-wysiwyg.php:315 +msgid "Default Value" +msgstr "默认值" + +#: 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:97 +#: includes/fields/class-acf-field-true_false.php:134 +msgid "Message" +msgstr "消息" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:184 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "否" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:168 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +msgid "Yes" +msgstr "是" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "真 / 假 (开关/切换)" + +#: includes/fields/class-acf-field-group.php:471 +msgid "Row" +msgstr "行" + +#: includes/fields/class-acf-field-group.php:470 +msgid "Table" +msgstr "表" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Block" +msgstr "区块" + +#: includes/fields/class-acf-field-group.php:464 +msgid "Specify the style used to render the selected fields" +msgstr "指定用于呈现所选字段的样式" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:212 +#: includes/fields/class-acf-field-checkbox.php:431 +#: includes/fields/class-acf-field-group.php:463 +#: includes/fields/class-acf-field-radio.php:283 +msgid "Layout" +msgstr "样式" + +#: includes/fields/class-acf-field-group.php:447 +msgid "Sub Fields" +msgstr "子字段" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "分组" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "自定义地图高度" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:292 +#: includes/fields/class-acf-field-oembed.php:277 +msgid "Height" +msgstr "高度" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "设置初始缩放级别" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "缩放" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "居中显示初始地图" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "居中" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "搜索地址..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "搜索当前位置" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "清除位置" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:606 +msgid "Search" +msgstr "搜索" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:209 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:129 +msgid "The format returned via template functions" +msgstr "通过模板函数返回的格式" + +#: includes/fields/class-acf-field-color_picker.php:179 +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-image.php:184 +#: includes/fields/class-acf-field-post_object.php:389 +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-time_picker.php:128 +#: includes/fields/class-acf-field-user.php:67 +msgid "Return Format" +msgstr "返回格式" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:189 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-time_picker.php:120 +#: includes/fields/class-acf-field-time_picker.php:136 +msgid "Custom:" +msgstr "自定义:" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:180 +#: includes/fields/class-acf-field-time_picker.php:113 +msgid "The format displayed when editing a post" +msgstr "编辑文章的时候显示的格式" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:179 +#: includes/fields/class-acf-field-time_picker.php:112 +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:453 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "" + +#: acf.php:412 +msgid "No Fields found in Trash" +msgstr "回收站里没有字段" + +#: acf.php:411 +msgid "No Fields found" +msgstr "没找到字段" + +#: acf.php:410 +msgid "Search Fields" +msgstr "搜索字段" + +#: acf.php:409 +msgid "View Field" +msgstr "视图字段" + +#: acf.php:408 includes/admin/views/field-group-fields.php:104 +msgid "New Field" +msgstr "新字段" + +#: acf.php:407 +msgid "Edit Field" +msgstr "编辑字段" + +#: acf.php:406 +msgid "Add New Field" +msgstr "添加新字段" + +#: acf.php:404 +msgid "Field" +msgstr "字段" + +#: acf.php:403 includes/admin/admin-field-group.php:218 +#: includes/admin/admin-field-groups.php:287 +#: includes/admin/views/field-group-fields.php:21 +msgid "Fields" +msgstr "字段" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "回收站中没有找到字段组" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "没有找到字段组" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "搜索字段组" + +#: acf.php:375 +msgid "View Field Group" +msgstr "查看字段组" + +#: acf.php:374 +msgid "New Field Group" +msgstr "新建字段组" + +#: acf.php:373 +msgid "Edit Field Group" msgstr "编辑字段组" -#: pro/acf-pro.php:24 +#: acf.php:372 +msgid "Add New Field Group" +msgstr "添加字段组" + +#: acf.php:371 acf.php:405 includes/admin/admin.php:51 +msgid "Add New" +msgstr "新建" + +#: acf.php:370 +msgid "Field Group" +msgstr "字段组" + +#: acf.php:369 includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "字段组" + +#. Description of the plugin +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "【高级自定义字段】使用强大、专业和直观的字段自定义WordPress。" + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:91 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: pro/acf-pro.php:27 msgid "Advanced Custom Fields PRO" msgstr "Advanced Custom Fields 专业版" -#: pro/acf-pro.php:175 -msgid "Flexible Content requires at least 1 layout" -msgstr "灵活内容字段需要至少一个布局" +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" -#: pro/admin/options-page.php:48 -msgid "Options Page" -msgstr "选项页面" +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" -#: pro/admin/options-page.php:83 -msgid "No options pages exist" -msgstr "还没有选项页面" +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" -#: pro/admin/options-page.php:298 +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: pro/options-page.php:78 msgid "Options Updated" msgstr "选项已更新" -#: pro/admin/options-page.php:304 +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "重新检查" + +#: pro/updates.php:561 +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/settings-updates.php:137 +#: pro/admin/admin-updates.php:52 msgid "Error. Could not connect to update server" msgstr "错误,不能连接到更新服务器" -#: pro/admin/settings-updates.php:267 pro/admin/settings-updates.php:338 -msgid "Connection Error. Sorry, please try again" -msgstr "连接错误,再试一次" - -#: pro/admin/views/options-page.php:48 -msgid "Publish" -msgstr "发布" - -#: pro/admin/views/options-page.php:54 -msgid "Save Options" -msgstr "保存" - -#: pro/admin/views/settings-updates.php:11 -msgid "Deactivate License" -msgstr "关闭许可证" - -#: pro/admin/views/settings-updates.php:11 -msgid "Activate License" -msgstr "激活许可证" - -#: pro/admin/views/settings-updates.php:21 -msgid "License" -msgstr "许可" - -#: pro/admin/views/settings-updates.php:24 +#: pro/admin/admin-updates.php:209 msgid "" -"To unlock updates, please enter your license key below. If you don't have a " -"licence key, please see" -msgstr "解锁更新,输入许可证号。还没有许可证号,请看" - -#: pro/admin/views/settings-updates.php:24 -msgid "details & pricing" -msgstr "详情与定价" - -#: pro/admin/views/settings-updates.php:33 -msgid "License Key" -msgstr "许可证号" - -#: pro/admin/views/settings-updates.php:65 -msgid "Update Information" -msgstr "更新信息" - -#: pro/admin/views/settings-updates.php:72 -msgid "Current Version" -msgstr "当前版本" - -#: pro/admin/views/settings-updates.php:80 -msgid "Latest Version" -msgstr "最新版本" - -#: pro/admin/views/settings-updates.php:88 -msgid "Update Available" -msgstr "可用更新" - -#: pro/admin/views/settings-updates.php:96 -msgid "Update Plugin" -msgstr "更新插件" - -#: pro/admin/views/settings-updates.php:98 -msgid "Please enter your license key above to unlock updates" -msgstr "在上面输入许可证号解锁更新" - -#: pro/admin/views/settings-updates.php:104 -msgid "Check Again" -msgstr "重新检查" - -#: pro/admin/views/settings-updates.php:121 -msgid "Upgrade Notice" -msgstr "更新通知" - -#: pro/api/api-options-page.php:22 pro/api/api-options-page.php:23 -msgid "Options" -msgstr "选项" - -#: pro/core/updates.php:186 -#, php-format -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" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." msgstr "" -"启用更新,先在 更新 页面输入许可证。还没有许可证,请查看 " -"详情与定价" -#: pro/fields/flexible-content.php:36 -msgid "Flexible Content" -msgstr "大段内容" +#: pro/admin/admin-updates.php:196 +msgid "" +"Error. Your license for this site has expired or been deactivated. " +"Please reactivate your ACF PRO license." +msgstr "" -#: pro/fields/flexible-content.php:42 pro/fields/repeater.php:43 -msgid "Add Row" -msgstr "添加行" +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "" -#: pro/fields/flexible-content.php:45 -msgid "layout" -msgstr "布局" +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "" -#: pro/fields/flexible-content.php:46 -msgid "layouts" -msgstr "布局" - -#: pro/fields/flexible-content.php:47 -msgid "remove {layout}?" -msgstr "删除 {layout}?" - -#: pro/fields/flexible-content.php:48 -msgid "This field requires at least {min} {identifier}" -msgstr "这个字段需要至少 {min} {identifier}" - -#: pro/fields/flexible-content.php:49 -msgid "This field has a limit of {max} {identifier}" -msgstr "这个字段限制最大为 {max} {identifier}" - -#: pro/fields/flexible-content.php:50 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "这个字段需要至少 {min} {label} {identifier}" - -#: pro/fields/flexible-content.php:51 -msgid "Maximum {label} limit reached ({max} {identifier})" -msgstr "{label} 已到最大限制 ({max} {identifier})" - -#: pro/fields/flexible-content.php:52 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "{available} {label} {identifier} 可用 (max {max})" - -#: pro/fields/flexible-content.php:53 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "{required} {label} {identifier} 需要 (min {min})" - -#: pro/fields/flexible-content.php:211 -#, php-format -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "点击下面的 \"%s\" 按钮创建布局" - -#: pro/fields/flexible-content.php:369 -msgid "Add layout" -msgstr "添加布局" - -#: pro/fields/flexible-content.php:372 -msgid "Remove layout" -msgstr "删除布局" - -#: pro/fields/flexible-content.php:514 -msgid "Reorder Layout" -msgstr "重排序布局" - -#: pro/fields/flexible-content.php:514 -msgid "Reorder" -msgstr "重排序" - -#: pro/fields/flexible-content.php:515 -msgid "Delete Layout" -msgstr "删除布局" - -#: pro/fields/flexible-content.php:516 -msgid "Duplicate Layout" -msgstr "复制布局" - -#: pro/fields/flexible-content.php:517 -msgid "Add New Layout" -msgstr "添加新布局" - -#: pro/fields/flexible-content.php:561 +#: pro/fields/class-acf-field-clone.php:834 msgid "Display" msgstr "显示" -#: pro/fields/flexible-content.php:572 pro/fields/repeater.php:399 -msgid "Table" -msgstr "表" +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "" -#: pro/fields/flexible-content.php:573 pro/fields/repeater.php:400 -msgid "Block" -msgstr "区块" +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" -#: pro/fields/flexible-content.php:574 pro/fields/repeater.php:401 -msgid "Row" -msgstr "行" +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" -#: pro/fields/flexible-content.php:589 +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "添加行" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "布局" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "布局" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "这个字段需要至少 {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} 可用 (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} 需要 (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "灵活内容字段需要至少一个布局" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "点击下面的 \"%s\" 按钮创建布局" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "添加布局" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "删除布局" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "重排序布局" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "重排序" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "删除布局" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "复制布局" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "添加新布局" + +#: pro/fields/class-acf-field-flexible-content.php:635 msgid "Min" msgstr "最小" -#: pro/fields/flexible-content.php:602 +#: pro/fields/class-acf-field-flexible-content.php:650 msgid "Max" msgstr "最大" -#: pro/fields/flexible-content.php:630 pro/fields/repeater.php:408 +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 msgid "Button Label" msgstr "按钮标签" -#: pro/fields/flexible-content.php:639 +#: pro/fields/class-acf-field-flexible-content.php:690 msgid "Minimum Layouts" msgstr "最小布局" -#: pro/fields/flexible-content.php:648 +#: pro/fields/class-acf-field-flexible-content.php:701 msgid "Maximum Layouts" msgstr "最大布局" -#: pro/fields/gallery.php:36 -msgid "Gallery" -msgstr "相册" +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" -#: pro/fields/gallery.php:52 +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 msgid "Add Image to Gallery" msgstr "添加图片到相册" -#: pro/fields/gallery.php:56 +#: pro/fields/class-acf-field-gallery.php:74 msgid "Maximum selection reached" msgstr "已到最大选择" -#: pro/fields/gallery.php:335 +#: pro/fields/class-acf-field-gallery.php:320 msgid "Length" msgstr "长度" -#: pro/fields/gallery.php:355 -msgid "Remove" -msgstr "删除" +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "标题" -#: pro/fields/gallery.php:535 +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:500 msgid "Add to gallery" msgstr "添加到相册" -#: pro/fields/gallery.php:539 +#: pro/fields/class-acf-field-gallery.php:504 msgid "Bulk actions" msgstr "批量动作" -#: pro/fields/gallery.php:540 +#: pro/fields/class-acf-field-gallery.php:505 msgid "Sort by date uploaded" msgstr "按上传日期排序" -#: pro/fields/gallery.php:541 +#: pro/fields/class-acf-field-gallery.php:506 msgid "Sort by date modified" msgstr "按修改日期排序" -#: pro/fields/gallery.php:542 +#: pro/fields/class-acf-field-gallery.php:507 msgid "Sort by title" msgstr "按标题排序" -#: pro/fields/gallery.php:543 +#: pro/fields/class-acf-field-gallery.php:508 msgid "Reverse current order" msgstr "颠倒当前排序" -#: pro/fields/gallery.php:561 +#: pro/fields/class-acf-field-gallery.php:520 msgid "Close" msgstr "关闭" -#: pro/fields/gallery.php:619 +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:633 msgid "Minimum Selection" msgstr "最小选择" -#: pro/fields/gallery.php:628 +#: pro/fields/class-acf-field-gallery.php:644 msgid "Maximum Selection" msgstr "最大选择" -#: pro/fields/gallery.php:809 -#, php-format -msgid "%s requires at least %s selection" -msgid_plural "%s requires at least %s selections" -msgstr[0] "%s 需要至少 %s 个选择" - -#: pro/fields/repeater.php:36 -msgid "Repeater" -msgstr "重复器" - -#: pro/fields/repeater.php:46 +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 msgid "Minimum rows reached ({min} rows)" msgstr "已到最小行数 ({min} 行)" -#: pro/fields/repeater.php:47 +#: pro/fields/class-acf-field-repeater.php:54 msgid "Maximum rows reached ({max} rows)" msgstr "已到最大行数 ({max} 行)" -#: pro/fields/repeater.php:259 -msgid "Drag to reorder" -msgstr "拖拽排序" +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" -#: pro/fields/repeater.php:301 -msgid "Add row" -msgstr "添加行" +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "" -#: pro/fields/repeater.php:302 -msgid "Remove row" -msgstr "删除行" +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "" -#: pro/fields/repeater.php:350 -msgid "Sub Fields" -msgstr "子字段" - -#: pro/fields/repeater.php:372 +#: pro/fields/class-acf-field-repeater.php:187 msgid "Minimum Rows" msgstr "最小行数" -#: pro/fields/repeater.php:382 +#: pro/fields/class-acf-field-repeater.php:199 msgid "Maximum Rows" msgstr "最大行数" -#. Plugin Name of the plugin/theme -msgid "Advanced Custom Fields Pro" -msgstr "Advanced Custom Fields 专业版" +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" -#. Plugin URI of the plugin/theme -msgid "http://www.advancedcustomfields.com/" -msgstr "http://www.advancedcustomfields.com/" +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" -#. Description of the plugin/theme -msgid "Customise WordPress with powerful, professional and intuitive fields." -msgstr "用强大专业的字段定制 WordPress。" +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" -#. Author of the plugin/theme -msgid "elliot condon" -msgstr "elliot condon" +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" -#. Author URI of the plugin/theme -msgid "http://www.elliotcondon.com/" -msgstr "http://www.elliotcondon.com/" +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "添加行" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "删除行" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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:41 +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:76 +msgid "Update Information" +msgstr "更新信息" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "当前版本" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "最新版本" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "可用更新" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "在上面输入许可证号解锁更新" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "更新插件" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "更新日志" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "更新通知" + +#~ msgid "Gallery Field" +#~ msgstr "相册字段" + +#~ msgid "Flexible Content Field" +#~ msgstr "多样内容字段" + +#~ msgid "Repeater Field" +#~ msgstr "复制字段" + +#~ msgid "Disabled" +#~ msgstr "禁用" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "禁用 (%s)" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "确定要删除吗?" + +#~ msgid "checked" +#~ msgstr "已选" + +#~ msgid "Parent fields" +#~ msgstr "父字段" + +#~ msgid "Sibling fields" +#~ msgstr "兄弟字段" + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "%s 字段现在会在 %s 字段组里" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "字段组已被复制。%s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s 字段组已被复制。" + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "字段组已同步。 %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s 字段组已同步。" + +#~ msgid "Status" +#~ msgstr "状态" + +#~ msgid "See what's new in" +#~ msgstr "查看更新内容于" + +#~ msgid "version" +#~ msgstr "版本" + +#~ msgid "Resources" +#~ msgstr "资源" + +#~ msgid "Getting Started" +#~ msgstr "起步" + +#~ msgid "Field Types" +#~ msgstr "字段类型" + +#~ msgid "Functions" +#~ msgstr "功能" + +#~ msgid "Actions" +#~ msgstr "操作" + +#~ msgid "'How to' guides" +#~ msgstr "新手向导" + +#~ msgid "Tutorials" +#~ msgstr "教程" + +#~ msgid "Created by" +#~ msgstr "创建者" + +#~ msgid "Synchronise field group" +#~ msgstr "同步字段组" + +#~ msgid "Add-ons" +#~ msgstr "附加功能" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "错误,无法加载扩展列表" + +#~ msgid "Info" +#~ msgstr "信息" + +#~ msgid "What's New" +#~ msgstr "更新日志" + +#, php-format +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "成功,导入工具添加了 %s 字段组: %s" + +#, php-format +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "警告,导入工具检测到 %s 字段组已经存在了。忽略的字段组:%s" + +#~ msgid "Upgrade ACF" +#~ msgstr "升级 ACF" + +#~ msgid "Upgrade" +#~ msgstr "升级" + +#~ msgid "Error" +#~ msgstr "错误" + +#~ msgid "Error." +#~ msgstr "错误。" + +#~ msgid "Required?" +#~ msgstr "必填?" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "没有字段,点击添加按钮创建第一个字段。" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "拖拽排序" + +#~ msgid "+ Add Field" +#~ msgstr "+ 添加字段" + +#~ msgid "Taxonomy Term" +#~ msgstr "分类词汇" + +#~ msgid "Download & Install" +#~ msgstr "下载并安装" + +#~ msgid "Installed" +#~ msgstr "已安装" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "欢迎使用高级自定义字段" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "感谢升级到更好的 ACF %s,你会喜欢上它的。" + +#~ msgid "A smoother custom field experience" +#~ msgstr "平滑的自定义字段体验" + +#~ msgid "Improved Usability" +#~ msgstr "改善用户体验" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Select2 这个库,改善了内容对象,分类法,选择列表等字段的用户体验与速度。" + +#~ msgid "Improved Design" +#~ msgstr "改善的设计" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "很多字段变漂亮了,比如相册,关系,oEmbed 。" + +#~ msgid "Improved Data" +#~ msgstr "改善的数据" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "重新设计了数据结构,让子字段独立于它的爸爸。这样我们可以把字段放到父字段" +#~ "里,也可以从父字段里拿出来。" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "再见了扩展,欢迎专业版" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF 专业版介绍" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "我们改进了为您提供高级功能的方法。" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "之前的 4 个高级功能扩展现在被组合成了一个新的 ACF 专业版。许可证分为两种,个人与开发者,现在这些高级功能更实惠也更易用。" + +#~ msgid "Powerful Features" +#~ msgstr "强大的功能" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF 专业版有重复数据,弹性内容布局,相册功能,还可以创建页面的管理选项。" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "了解更多关于 ACF PRO 的功能。" + +#~ msgid "Easy Upgrading" +#~ msgstr "便捷的升级" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "登录到商店帐户,可以方便以后升级。" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "阅读 升级手册,需要帮助请联系 客服" + +#~ msgid "Under the Hood" +#~ msgstr "工作原理" + +#~ msgid "Smarter field settings" +#~ msgstr "更聪明的字段设置" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF 现在用单独的内容对象字段设置" + +#~ msgid "More AJAX" +#~ msgstr "更多 AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "更多字段使用 AJAX 搜索,这让页面加载速度更快" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "改进了新的自动导出 JSON 功能的速度" + +#~ msgid "Better version control" +#~ msgstr "更好的版本控制" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "新的自动 JSON 导出功能让字段设置可以包含在版本控制里" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "用 JSON 替代 XML" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "导入 / 导出现在用 JSON 代替以前的 XML" + +#~ msgid "New Forms" +#~ msgstr "新表单" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "字段现在可以用在评论,小工具还有所有的用户表单上。" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "新添加了一个嵌入内容用的字段" + +#~ msgid "New Gallery" +#~ msgstr "新相册" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "改进了相册字段的显示" + +#~ msgid "New Settings" +#~ msgstr "新设置" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "字段组设置添加了标签位置与介绍位置" + +#~ msgid "Better Front End Forms" +#~ msgstr "更好的前端表单" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() 现在可以在提交的时候创建新的内容" + +#~ msgid "Better Validation" +#~ msgstr "更好的验证方式" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "表单验证现在使用 PHP + AJAX 的方式" + +#~ msgid "Relationship Field" +#~ msgstr "关系字段" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "新的用来过滤的关系字段设置(搜索,内容类型,分类法)" + +#~ msgid "Moving Fields" +#~ msgstr "移动字段" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "新的字段组功能可以让我们在群组与爸爸之间移动字段" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "在 page_link 字段选择里的新的存档群组" + +#~ msgid "Better Options Pages" +#~ msgstr "选项页面" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "选项页面的新功能,可以让你同时创建父菜单与子菜单页面" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "你会喜欢在 %s 里做的修改。" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "导出字段组到PHP" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "选择你想导出的字段组,然后选择导出的方法。使用 下载 按钮可以导出一" +#~ "个 .json 文件,你可以在其它的网站里导入它。使用 生成 按钮可以导出 " +#~ "PHP 代码,这些代码可以放在你的主题或插件里。" + +#~ msgid "Download export file" +#~ msgstr "下载导出文件" + +#~ msgid "Generate export code" +#~ msgstr "生成导出代码" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "选择你想导入的 Advanced Custom Fields JSON 文件,然后点击 导入 按钮" +#~ "可以导入 JSON 文件里定义的字段组。" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields 数据库升级" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "下面的网站需要升级数据库,点击 “升级数据库” 。" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "网站需要从 %s 升级到 %s" + +#~ msgid "Upgrade complete" +#~ msgstr "升级完成" + +#~ msgid "Upgrading data to" +#~ msgstr "升级数据到" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "感谢升级 %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "先把数据库更新到最新版。" + +#~ msgid "See what's new" +#~ msgstr "查看更新" + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "文件尺寸最大不能超过 %s。" + +#~ msgid "Toggle" +#~ msgstr "切换" + +#~ msgid "Done" +#~ msgstr "完成" + +#~ msgid "Today" +#~ msgstr "今天" + +#~ msgid "Show a different month" +#~ msgstr "显示其他月份" + +#~ msgid "Return format" +#~ msgstr "返回格式" + +#~ msgid "uploaded to this post" +#~ msgstr "上传到这个内容" + +#~ msgid "File Name" +#~ msgstr "文件名" + +#~ msgid "File Size" +#~ msgstr "文件尺寸" + +#~ msgid "No File selected" +#~ msgstr "没有选择文件" + +#~ msgid "Locating" +#~ msgstr "定位" + +#~ msgid "Customise the map height" +#~ msgstr "自定义地图高度" + +#~ msgid "Shown when entering data" +#~ msgstr "输入数据时显示" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "请注意,所有文本将首页通过WP过滤功能" + +#~ msgid "No embed found for the given URL." +#~ msgstr "在 URL 里没发现嵌入。" + +#~ msgid "Other" +#~ msgstr "其他" + +#~ msgid "Save Other" +#~ msgstr "保存其它" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "已到最小值 ( {min} values )" + +#~ msgid "Select" +#~ msgstr "选择" + +#~ msgid "Stylised UI" +#~ msgstr "装饰的界面" + +#~ msgid "Warning" +#~ msgstr "警告" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "标签字段不能在 Table 样式的重复字段或者灵活内容字段布局里正常显示" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "使用 \"标签字段\" 可以把字段组织起来更好地在编辑界面上显示。" + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "在这个 \"tab field\" (或直到定义了其它的 \"tab field\" ) 以下的所有字段," +#~ "都会被用这个字段标签作为标题的标签(Tab)组织到一块。" + +#~ msgid "End-point" +#~ msgstr "端点" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "使用这个字段作为端点去创建新的标签群组" + +#, php-format +#~ msgid "Add new %s " +#~ msgstr "添加新的 %s" + +#~ msgid "None" +#~ msgstr "None" + +#~ msgid "eg. Show extra content" +#~ msgstr "例如:显示附加内容" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "连接错误,再试一次" + +#~ msgid "Save Options" +#~ msgstr "保存" + +#~ msgid "License" +#~ msgstr "许可" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "解锁更新,输入许可证号。还没有许可证号,请看" + +#~ msgid "details & pricing" +#~ msgstr "详情与定价" + +#, php-format +#~ 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 "" +#~ "启用更新,先在 更新 页面输入许可证。还没有许可证,请查" +#~ "看 详情与定价" + +#~ msgid "remove {layout}?" +#~ msgstr "删除 {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "这个字段需要至少 {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "这个字段限制最大为 {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "{label} 已到最大限制 ({max} {identifier})" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s 需要至少 %s 个选择" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields 专业版" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "用强大专业的字段定制 WordPress。" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" #, fuzzy #~ msgid "Show Field Keys" @@ -2629,25 +4138,16 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "No ACF groups selected" #~ msgstr "没有选择ACF组" -#~ msgid "Repeater Field" -#~ msgstr "复制字段" - #~ msgid "" #~ "Create infinite rows of repeatable data with this versatile interface!" #~ msgstr "使用这个方面的界面为重复数据创建无限行。 " -#~ msgid "Gallery Field" -#~ msgstr "相册字段" - #~ msgid "Create image galleries in a simple and intuitive interface!" #~ msgstr "使用简单直观的界面创建画廊!" #~ msgid "Create global data to use throughout your website!" #~ msgstr "创建整个站点可用的全局数据。" -#~ msgid "Flexible Content Field" -#~ msgstr "多样内容字段" - #~ msgid "Create unique designs with a flexible content layout manager!" #~ msgstr "通过强大的内容布局管理功能创建一个独有的设计。" @@ -2993,9 +4493,6 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Learn more" #~ msgstr "了解更多" -#~ msgid "Overview" -#~ msgstr "预览" - #~ msgid "" #~ "Previously, all Add-ons were unlocked via an activation code (purchased " #~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " @@ -3282,9 +4779,6 @@ msgstr "http://www.elliotcondon.com/" #~ msgid "Alternate Text" #~ msgstr "替换文本" -#~ msgid "Caption" -#~ msgstr "标题" - #~ msgid "Thumbnail is advised" #~ msgstr "建设使用缩略图" diff --git a/lang/acf-zh_TW.mo b/lang/acf-zh_TW.mo index 3cdd04f..efb412b 100644 Binary files a/lang/acf-zh_TW.mo and b/lang/acf-zh_TW.mo differ diff --git a/lang/acf-zh_TW.po b/lang/acf-zh_TW.po index 56fae40..f3478a6 100644 --- a/lang/acf-zh_TW.po +++ b/lang/acf-zh_TW.po @@ -1,26 +1,25 @@ +# 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 "" -"Project-Id-Version: Advanced Custom Fields Pro v5.8.7\n" +"PO-Revision-Date: 2022-09-29T12:15:07+00:00\n" "Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" -"POT-Creation-Date: 2020-02-13 17:09+0800\n" -"PO-Revision-Date: 2020-03-10 13:40+0800\n" -"Last-Translator: Audi Lu \n" -"Language-Team: Audi Lu \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: Poedit 2.1.1\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-WPHeader: acf.php\n" -"X-Textdomain-Support: yes\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Generator: gettext\n" +"Project-Id-Version: Advanced Custom Fields\n" #: acf.php:68 msgid "Advanced Custom Fields" @@ -1584,7 +1583,7 @@ msgstr "儲存自訂" #: includes/fields/class-acf-field-checkbox.php:369 msgid "Save 'custom' values to the field's choices" -msgstr "儲存\b [自訂] 值到欄位的選項" +msgstr "儲存 [自訂] 值到欄位的選項" #: includes/fields/class-acf-field-checkbox.php:381 #: includes/fields/class-acf-field-select.php:374 diff --git a/lang/acf.pot b/lang/acf.pot deleted file mode 100644 index 38a6d08..0000000 --- a/lang/acf.pot +++ /dev/null @@ -1,2872 +0,0 @@ -# Copyright (C) 2022 Advanced Custom Fields -# This file is distributed under the same license as the Advanced Custom Fields package. -msgid "" -msgstr "" -"Project-Id-Version: Advanced Custom Fields\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language-Team: Delicious Brains \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" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SourceCharset: UTF-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: acf.php:3, pro/acf-pro.php:27 -msgid "Advanced Custom Fields PRO" -msgstr "" - -#: acf.php:4, acf.php:8 -msgid "https://www.advancedcustomfields.com" -msgstr "" - -#: acf.php:5 -msgid "Customize WordPress with powerful, professional and intuitive fields." -msgstr "" - -#: acf.php:7 -msgid "Delicious Brains" -msgstr "" - -#: acf.php:71 -msgid "Advanced Custom Fields" -msgstr "" - -#: acf.php:360, includes/admin/admin.php:50, includes/admin/admin.php:50 -msgid "Field Groups" -msgstr "" - -#: acf.php:361 -msgid "Field Group" -msgstr "" - -#: acf.php:362, acf.php:396, includes/admin/admin.php:51, includes/admin/admin.php:51, pro/fields/class-acf-field-flexible-content.php:554 -msgid "Add New" -msgstr "" - -#: acf.php:363 -msgid "Add New Field Group" -msgstr "" - -#: acf.php:364 -msgid "Edit Field Group" -msgstr "" - -#: acf.php:365 -msgid "New Field Group" -msgstr "" - -#: acf.php:366 -msgid "View Field Group" -msgstr "" - -#: acf.php:367 -msgid "Search Field Groups" -msgstr "" - -#: acf.php:368 -msgid "No Field Groups found" -msgstr "" - -#: acf.php:369 -msgid "No Field Groups found in Trash" -msgstr "" - -#: acf.php:394, includes/admin/admin-field-group.php:233, includes/admin/admin-field-groups.php:266, pro/fields/class-acf-field-clone.php:814 -msgid "Fields" -msgstr "" - -#: acf.php:395 -msgid "Field" -msgstr "" - -#: acf.php:397 -msgid "Add New Field" -msgstr "" - -#: acf.php:398 -msgid "Edit Field" -msgstr "" - -#: acf.php:399, includes/admin/views/field-group-fields.php:56 -msgid "New Field" -msgstr "" - -#: acf.php:400 -msgid "View Field" -msgstr "" - -#: acf.php:401 -msgid "Search Fields" -msgstr "" - -#: acf.php:402 -msgid "No Fields found" -msgstr "" - -#: acf.php:403 -msgid "No Fields found in Trash" -msgstr "" - -#: acf.php:441, includes/admin/admin-field-group.php:385, includes/admin/admin-field-groups.php:230 -msgctxt "post status" -msgid "Disabled" -msgstr "" - -#: acf.php:446 -msgid "Disabled (%s)" -msgid_plural "Disabled (%s)" -msgstr[0] "" -msgstr[1] "" - -#: acf.php:496 -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 "" - -#: acf.php:498 -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 "" - -#: includes/acf-field-functions.php:841, includes/admin/admin-field-group.php:171 -msgid "(no label)" -msgstr "" - -#: includes/acf-field-group-functions.php:846, includes/admin/admin-field-group.php:173 -msgid "copy" -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/acf-wp-functions.php:41 -msgid "Posts" -msgstr "" - -#: includes/acf-wp-functions.php:54 -msgid "Taxonomies" -msgstr "" - -#: includes/acf-wp-functions.php:59 -msgid "Attachments" -msgstr "" - -#: includes/acf-wp-functions.php:63, includes/admin/views/field-group-options.php:144 -msgid "Comments" -msgstr "" - -#: includes/acf-wp-functions.php:67 -msgid "Widgets" -msgstr "" - -#: includes/acf-wp-functions.php:71, includes/locations/class-acf-location-nav-menu.php:89 -msgid "Menus" -msgstr "" - -#: includes/acf-wp-functions.php:75 -msgid "Menu items" -msgstr "" - -#: includes/acf-wp-functions.php:79 -msgid "Users" -msgstr "" - -#: includes/acf-wp-functions.php:83, pro/options-page.php:47 -msgid "Options" -msgstr "" - -#: includes/acf-wp-functions.php:87 -msgid "Blocks" -msgstr "" - -#: includes/assets.php:348 -msgid "Are you sure?" -msgstr "" - -#: includes/assets.php:349, includes/fields/class-acf-field-true_false.php:80, includes/fields/class-acf-field-true_false.php:176, pro/admin/views/html-settings-updates.php:104 -msgid "Yes" -msgstr "" - -#: includes/assets.php:350, includes/fields/class-acf-field-true_false.php:83, includes/fields/class-acf-field-true_false.php:193, pro/admin/views/html-settings-updates.php:116 -msgid "No" -msgstr "" - -#: includes/assets.php:351, includes/fields/class-acf-field-file.php:159, includes/fields/class-acf-field-image.php:139, includes/fields/class-acf-field-link.php:142, pro/fields/class-acf-field-gallery.php:336, pro/fields/class-acf-field-gallery.php:491 -msgid "Remove" -msgstr "" - -#: includes/assets.php:352 -msgid "Cancel" -msgstr "" - -#: includes/assets.php:362 -msgid "The changes you made will be lost if you navigate away from this page" -msgstr "" - -#: includes/assets.php:365 -msgid "Validation successful" -msgstr "" - -#: includes/assets.php:366, includes/validation.php:286, includes/validation.php:296 -msgid "Validation failed" -msgstr "" - -#: includes/assets.php:367 -msgid "1 field requires attention" -msgstr "" - -#: includes/assets.php:368 -msgid "%d fields require attention" -msgstr "" - -#: includes/assets.php:371, includes/forms/form-comment.php:160, pro/admin/admin-options-page.php:309 -msgid "Edit field group" -msgstr "" - -#: includes/fields.php:313 -msgid "Field type does not exist" -msgstr "" - -#: includes/fields.php:313 -msgid "Unknown" -msgstr "" - -#: includes/fields.php:354 -msgid "Basic" -msgstr "" - -#: includes/fields.php:355, includes/forms/form-front.php:49 -msgid "Content" -msgstr "" - -#: includes/fields.php:356 -msgid "Choice" -msgstr "" - -#: includes/fields.php:357 -msgid "Relational" -msgstr "" - -#: includes/fields.php:358 -msgid "jQuery" -msgstr "" - -#: includes/fields.php:359, includes/fields/class-acf-field-button-group.php:181, includes/fields/class-acf-field-checkbox.php:377, includes/fields/class-acf-field-group.php:462, includes/fields/class-acf-field-radio.php:256, pro/fields/class-acf-field-clone.php:850, pro/fields/class-acf-field-flexible-content.php:549, pro/fields/class-acf-field-flexible-content.php:604, pro/fields/class-acf-field-repeater.php:451 -msgid "Layout" -msgstr "" - -#: includes/locations.php:25 -msgid "Class \"%s\" does not exist." -msgstr "" - -#: includes/locations.php:36 -msgid "Location type \"%s\" is already registered." -msgstr "" - -#: includes/locations.php:99, includes/locations/class-acf-location-post.php:22 -msgid "Post" -msgstr "" - -#: includes/locations.php:100, includes/locations/class-acf-location-page.php:22 -msgid "Page" -msgstr "" - -#: includes/locations.php:101, includes/fields/class-acf-field-user.php:20 -msgid "User" -msgstr "" - -#: includes/locations.php:102 -msgid "Forms" -msgstr "" - -#: includes/media.php:48, includes/fields/class-acf-field-select.php:255 -msgctxt "verb" -msgid "Select" -msgstr "" - -#: includes/media.php:49 -msgctxt "verb" -msgid "Edit" -msgstr "" - -#: includes/media.php:50 -msgctxt "verb" -msgid "Update" -msgstr "" - -#: includes/media.php:51 -msgid "Uploaded to this post" -msgstr "" - -#: includes/media.php:52 -msgid "Expand Details" -msgstr "" - -#: includes/media.php:53 -msgid "Collapse Details" -msgstr "" - -#: includes/media.php:54 -msgid "Restricted" -msgstr "" - -#: includes/media.php:55, includes/fields/class-acf-field-image.php:67 -msgid "All images" -msgstr "" - -#: includes/validation.php:364 -msgid "%s value is required" -msgstr "" - -#: pro/blocks.php:37 -msgid "Block type name is required." -msgstr "" - -#: pro/blocks.php:44 -msgid "Block type \"%s\" is already registered." -msgstr "" - -#: pro/blocks.php:496 -msgid "Switch to Edit" -msgstr "" - -#: pro/blocks.php:497 -msgid "Switch to Preview" -msgstr "" - -#: pro/blocks.php:498 -msgid "Change content alignment" -msgstr "" - -#. translators: %s: Block type title -#: pro/blocks.php:501 -msgid "%s settings" -msgstr "" - -#: pro/options-page.php:77, includes/forms/form-front.php:106, pro/fields/class-acf-field-gallery.php:523 -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 "" - -#: 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, pro/admin/views/html-settings-updates.php:117 -msgid "Check Again" -msgstr "" - -#: pro/updates.php:561 -msgid "ACF Activation Error. Could not connect to activation server" -msgstr "" - -#: includes/admin/admin-field-group.php:84, includes/admin/admin-field-group.php:85, includes/admin/admin-field-group.php:87 -msgid "Field group updated." -msgstr "" - -#: includes/admin/admin-field-group.php:86 -msgid "Field group deleted." -msgstr "" - -#: includes/admin/admin-field-group.php:89 -msgid "Field group published." -msgstr "" - -#: includes/admin/admin-field-group.php:90 -msgid "Field group saved." -msgstr "" - -#: includes/admin/admin-field-group.php:91 -msgid "Field group submitted." -msgstr "" - -#: includes/admin/admin-field-group.php:92 -msgid "Field group scheduled for." -msgstr "" - -#: includes/admin/admin-field-group.php:93 -msgid "Field group draft updated." -msgstr "" - -#: includes/admin/admin-field-group.php:164 -msgid "The string \"field_\" may not be used at the start of a field name" -msgstr "" - -#: includes/admin/admin-field-group.php:165 -msgid "This field cannot be moved until its changes have been saved" -msgstr "" - -#: includes/admin/admin-field-group.php:166 -msgid "Field group title is required" -msgstr "" - -#: includes/admin/admin-field-group.php:167 -msgid "Move to trash. Are you sure?" -msgstr "" - -#: includes/admin/admin-field-group.php:168 -msgid "No toggle fields available" -msgstr "" - -#: includes/admin/admin-field-group.php:169 -msgid "Move Custom Field" -msgstr "" - -#: includes/admin/admin-field-group.php:170 -msgid "Checked" -msgstr "" - -#: includes/admin/admin-field-group.php:172 -msgid "(this field)" -msgstr "" - -#: includes/admin/admin-field-group.php:174, includes/api/api-helpers.php:3409, includes/admin/views/field-group-field-conditional-logic.php:60, includes/admin/views/field-group-field-conditional-logic.php:170, includes/admin/views/field-group-locations.php:36, includes/admin/views/html-location-group.php:3 -msgid "or" -msgstr "" - -#: includes/admin/admin-field-group.php:175, includes/admin/views/html-location-group.php:3 -msgid "Show this field group if" -msgstr "" - -#: includes/admin/admin-field-group.php:176 -msgid "Null" -msgstr "" - -#: includes/admin/admin-field-group.php:179 -msgid "Has any value" -msgstr "" - -#: includes/admin/admin-field-group.php:180 -msgid "Has no value" -msgstr "" - -#: includes/admin/admin-field-group.php:181 -msgid "Value is equal to" -msgstr "" - -#: includes/admin/admin-field-group.php:182 -msgid "Value is not equal to" -msgstr "" - -#: includes/admin/admin-field-group.php:183 -msgid "Value matches pattern" -msgstr "" - -#: includes/admin/admin-field-group.php:184 -msgid "Value contains" -msgstr "" - -#: includes/admin/admin-field-group.php:185 -msgid "Value is greater than" -msgstr "" - -#: includes/admin/admin-field-group.php:186 -msgid "Value is less than" -msgstr "" - -#: includes/admin/admin-field-group.php:187 -msgid "Selection is greater than" -msgstr "" - -#: includes/admin/admin-field-group.php:188 -msgid "Selection is less than" -msgstr "" - -#: includes/admin/admin-field-group.php:191 -msgid "Repeater (Pro only)" -msgstr "" - -#: includes/admin/admin-field-group.php:192 -msgid "Flexible Content (Pro only)" -msgstr "" - -#: includes/admin/admin-field-group.php:193 -msgid "Clone (Pro only)" -msgstr "" - -#: includes/admin/admin-field-group.php:194 -msgid "Gallery (Pro only)" -msgstr "" - -#: includes/admin/admin-field-group.php:234, includes/admin/admin-field-groups.php:265 -msgid "Location" -msgstr "" - -#: includes/admin/admin-field-group.php:235, includes/admin/tools/class-acf-admin-tool-export.php:288 -msgid "Settings" -msgstr "" - -#: includes/admin/admin-field-group.php:361 -msgid "Field Keys" -msgstr "" - -#: includes/admin/admin-field-group.php:385 -msgctxt "post status" -msgid "Active" -msgstr "" - -#: includes/admin/admin-field-group.php:752 -msgid "Move Complete." -msgstr "" - -#: includes/admin/admin-field-group.php:754 -msgid "The %1$s field can now be found in the %2$s field group" -msgstr "" - -#: includes/admin/admin-field-group.php:758 -msgid "Close Window" -msgstr "" - -#: includes/admin/admin-field-group.php:797 -msgid "Please select the destination for this field" -msgstr "" - -#: includes/admin/admin-field-group.php:804 -msgid "Move Field" -msgstr "" - -#: includes/admin/admin-field-groups.php:116 -msgid "Active (%s)" -msgid_plural "Active (%s)" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-field-groups.php:196 -msgid "Review local JSON changes" -msgstr "" - -#: includes/admin/admin-field-groups.php:197 -msgid "Loading diff" -msgstr "" - -#: includes/admin/admin-field-groups.php:198, includes/admin/admin-field-groups.php:533 -msgid "Sync changes" -msgstr "" - -#: includes/admin/admin-field-groups.php:263, pro/fields/class-acf-field-gallery.php:388, includes/admin/views/field-group-options.php:127, includes/admin/views/html-admin-page-upgrade-network.php:38, includes/admin/views/html-admin-page-upgrade-network.php:49 -msgid "Description" -msgstr "" - -#: includes/admin/admin-field-groups.php:264, includes/admin/views/field-group-fields.php:7 -msgid "Key" -msgstr "" - -#: includes/admin/admin-field-groups.php:269 -msgid "Local JSON" -msgstr "" - -#: includes/admin/admin-field-groups.php:419 -msgid "Various" -msgstr "" - -#: includes/admin/admin-field-groups.php:449 -msgid "Located in: %s" -msgstr "" - -#: includes/admin/admin-field-groups.php:445 -msgid "Located in plugin: %s" -msgstr "" - -#: includes/admin/admin-field-groups.php:441 -msgid "Located in theme: %s" -msgstr "" - -#: includes/admin/admin-field-groups.php:484 -msgid "Awaiting save" -msgstr "" - -#: includes/admin/admin-field-groups.php:481 -msgid "Saved" -msgstr "" - -#: includes/admin/admin-field-groups.php:469, includes/admin/admin-field-groups.php:687 -msgid "Sync available" -msgstr "" - -#: includes/admin/admin-field-groups.php:477 -msgid "Import" -msgstr "" - -#: includes/admin/admin-field-groups.php:472 -msgid "Sync" -msgstr "" - -#: includes/admin/admin-field-groups.php:473 -msgid "Review changes" -msgstr "" - -#: includes/admin/admin-field-groups.php:505 -msgid "Duplicate this item" -msgstr "" - -#: includes/admin/admin-field-groups.php:505, includes/admin/admin-field-groups.php:525, pro/fields/class-acf-field-flexible-content.php:553, includes/admin/views/field-group-field.php:57 -msgid "Duplicate" -msgstr "" - -#: includes/admin/admin-field-groups.php:555 -msgid "Field group duplicated." -msgid_plural "%s field groups duplicated." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-field-groups.php:612 -msgid "Field group synchronised." -msgid_plural "%s field groups synchronised." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/admin-field-groups.php:800 -msgid "Select %s" -msgstr "" - -#: includes/admin/admin-tools.php:119, includes/admin/admin-tools.php:119, includes/admin/views/html-admin-tools.php:21 -msgid "Tools" -msgstr "" - -#: includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:113, includes/admin/admin-upgrade.php:114, includes/admin/admin-upgrade.php:177, includes/admin/views/html-admin-page-upgrade-network.php:24, includes/admin/views/html-admin-page-upgrade.php:26 -msgid "Upgrade Database" -msgstr "" - -#: includes/admin/admin-upgrade.php:201 -msgid "Review sites & upgrade" -msgstr "" - -#: includes/admin/admin.php:49, includes/admin/admin.php:49, includes/admin/views/field-group-options.php:142 -msgid "Custom Fields" -msgstr "" - -#: includes/admin/admin.php:129, includes/admin/admin.php:131 -msgid "Overview" -msgstr "" - -#: includes/admin/admin.php:132 -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:134 -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:137 -msgid "Please use the Help & Support tab to get in touch should you find yourself requiring assistance." -msgstr "" - -#: includes/admin/admin.php:146, includes/admin/admin.php:148 -msgid "Help & Support" -msgstr "" - -#: includes/admin/admin.php:149 -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:152 -msgid "Documentation. Our extensive documentation contains references and guides for most situations you may encounter." -msgstr "" - -#: includes/admin/admin.php:156 -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:160 -msgid "Help Desk. The support professionals on our Help Desk will assist with your more in depth, technical challenges." -msgstr "" - -#: includes/admin/admin.php:169 -msgid "Information" -msgstr "" - -#: includes/admin/admin.php:170 -msgid "Version %s" -msgstr "" - -#: includes/admin/admin.php:171 -msgid "View details" -msgstr "" - -#: includes/admin/admin.php:172 -msgid "Visit website" -msgstr "" - -#: includes/admin/admin.php:201, includes/admin/views/field-group-field-conditional-logic.php:157, includes/admin/views/html-location-rule.php:92 -msgid "and" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:36 -msgid "Invalid field group parameter(s)." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:43 -msgid "Invalid field group ID." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:53 -msgid "Sorry, this field group is unavailable for diff comparison." -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:59 -msgid "Last updated: %s" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:64 -msgid "Original field group" -msgstr "" - -#: includes/ajax/class-acf-ajax-local-json-diff.php:68 -msgid "JSON field group (newer)" -msgstr "" - -#: includes/ajax/class-acf-ajax-upgrade.php:34, includes/admin/views/html-admin-page-upgrade.php:94 -msgid "No updates available." -msgstr "" - -#: includes/ajax/class-acf-ajax.php:157 -msgid "Invalid nonce." -msgstr "" - -#: includes/api/api-helpers.php:821 -msgid "Thumbnail" -msgstr "" - -#: includes/api/api-helpers.php:822 -msgid "Medium" -msgstr "" - -#: includes/api/api-helpers.php:823 -msgid "Large" -msgstr "" - -#: includes/api/api-helpers.php:864 -msgid "Full Size" -msgstr "" - -#: includes/api/api-helpers.php:1569, includes/api/api-term.php:147, pro/fields/class-acf-field-clone.php:1005 -msgid "(no title)" -msgstr "" - -#: includes/api/api-helpers.php:3343 -msgid "Image width must not exceed %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3338 -msgid "Image width must be at least %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3362 -msgid "Image height must not exceed %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3357 -msgid "Image height must be at least %dpx." -msgstr "" - -#: includes/api/api-helpers.php:3382 -msgid "File size must not exceed %s." -msgstr "" - -#: includes/api/api-helpers.php:3377 -msgid "File size must be at least %s." -msgstr "" - -#: includes/api/api-helpers.php:3413 -msgid "File type must be %s." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:25 -msgid "Accordion" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:102 -msgid "Open" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:103 -msgid "Display this accordion as open on page load." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:114 -msgid "Multi-expand" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:115 -msgid "Allow this accordion to open without closing others." -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:126, includes/fields/class-acf-field-tab.php:117 -msgid "Endpoint" -msgstr "" - -#: includes/fields/class-acf-field-accordion.php:127 -msgid "Define an endpoint for the previous accordion to stop. This accordion will not be visible." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:24 -msgid "Button Group" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:147, includes/fields/class-acf-field-checkbox.php:324, includes/fields/class-acf-field-radio.php:191, includes/fields/class-acf-field-select.php:364 -msgid "Choices" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:148, includes/fields/class-acf-field-checkbox.php:325, includes/fields/class-acf-field-radio.php:192, includes/fields/class-acf-field-select.php:365 -msgid "Enter each choice on a new line." -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:148, includes/fields/class-acf-field-checkbox.php:325, includes/fields/class-acf-field-radio.php:192, includes/fields/class-acf-field-select.php:365 -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:325, includes/fields/class-acf-field-radio.php:192, includes/fields/class-acf-field-select.php:365 -msgid "red : Red" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:158, includes/fields/class-acf-field-page_link.php:482, includes/fields/class-acf-field-post_object.php:394, includes/fields/class-acf-field-radio.php:202, includes/fields/class-acf-field-select.php:386, includes/fields/class-acf-field-taxonomy.php:748, includes/fields/class-acf-field-user.php:68 -msgid "Allow Null?" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:170, includes/fields/class-acf-field-checkbox.php:366, includes/fields/class-acf-field-color_picker.php:155, includes/fields/class-acf-field-email.php:117, includes/fields/class-acf-field-number.php:125, includes/fields/class-acf-field-radio.php:245, includes/fields/class-acf-field-range.php:163, includes/fields/class-acf-field-select.php:375, includes/fields/class-acf-field-text.php:97, includes/fields/class-acf-field-textarea.php:103, includes/fields/class-acf-field-true_false.php:148, includes/fields/class-acf-field-url.php:101, includes/fields/class-acf-field-wysiwyg.php:334 -msgid "Default Value" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:171, includes/fields/class-acf-field-email.php:118, includes/fields/class-acf-field-number.php:126, includes/fields/class-acf-field-radio.php:246, includes/fields/class-acf-field-range.php:164, includes/fields/class-acf-field-text.php:98, includes/fields/class-acf-field-textarea.php:104, includes/fields/class-acf-field-url.php:102, includes/fields/class-acf-field-wysiwyg.php:335 -msgid "Appears when creating a new post" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:187, includes/fields/class-acf-field-checkbox.php:384, includes/fields/class-acf-field-radio.php:263 -msgid "Horizontal" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:188, includes/fields/class-acf-field-checkbox.php:383, includes/fields/class-acf-field-radio.php:262 -msgid "Vertical" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:197, includes/fields/class-acf-field-checkbox.php:405, includes/fields/class-acf-field-file.php:227, includes/fields/class-acf-field-link.php:170, includes/fields/class-acf-field-radio.php:272, includes/fields/class-acf-field-taxonomy.php:801 -msgid "Return Value" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:198, includes/fields/class-acf-field-checkbox.php:406, includes/fields/class-acf-field-file.php:228, includes/fields/class-acf-field-link.php:171, includes/fields/class-acf-field-radio.php:273 -msgid "Specify the returned value on front end" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:203, includes/fields/class-acf-field-checkbox.php:411, includes/fields/class-acf-field-radio.php:278, includes/fields/class-acf-field-select.php:444 -msgid "Value" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:204, includes/fields/class-acf-field-checkbox.php:412, includes/fields/class-acf-field-radio.php:279, includes/fields/class-acf-field-select.php:445, pro/fields/class-acf-field-flexible-content.php:581, includes/admin/views/field-group-fields.php:5 -msgid "Label" -msgstr "" - -#: includes/fields/class-acf-field-button-group.php:205, includes/fields/class-acf-field-checkbox.php:413, includes/fields/class-acf-field-radio.php:280, includes/fields/class-acf-field-select.php:446 -msgid "Both (Array)" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:25, includes/fields/class-acf-field-taxonomy.php:733 -msgid "Checkbox" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:144 -msgid "Toggle All" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:207 -msgid "Add new choice" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:335 -msgid "Allow Custom" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:340 -msgid "Allow 'custom' values to be added" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:348 -msgid "Save Custom" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:353 -msgid "Save 'custom' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:367, includes/fields/class-acf-field-select.php:376 -msgid "Enter each default value on a new line" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:393 -msgid "Toggle" -msgstr "" - -#: includes/fields/class-acf-field-checkbox.php:394 -msgid "Prepend an extra checkbox to toggle all choices" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:25 -msgid "Color Picker" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:69 -msgid "Clear" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:70 -msgid "Clear color" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:71 -msgid "Default" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:72 -msgid "Select default color" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:73 -msgid "Select Color" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:74 -msgid "Color value" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:95, includes/fields/class-acf-field-color_picker.php:185 -msgid "Hex String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:96 -msgid "RGBA String" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:167 -msgid "Enable Transparency" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:179, includes/fields/class-acf-field-date_picker.php:216, includes/fields/class-acf-field-date_time_picker.php:201, includes/fields/class-acf-field-image.php:204, includes/fields/class-acf-field-post_object.php:418, includes/fields/class-acf-field-relationship.php:662, includes/fields/class-acf-field-select.php:439, includes/fields/class-acf-field-time_picker.php:131, includes/fields/class-acf-field-user.php:90, pro/fields/class-acf-field-gallery.php:573 -msgid "Return Format" -msgstr "" - -#: includes/fields/class-acf-field-color_picker.php:186 -msgid "RGBA Array" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:25 -msgid "Date Picker" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:60 -msgctxt "Date Picker JS closeText" -msgid "Done" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:61 -msgctxt "Date Picker JS currentText" -msgid "Today" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:62 -msgctxt "Date Picker JS nextText" -msgid "Next" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:63 -msgctxt "Date Picker JS prevText" -msgid "Prev" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:64 -msgctxt "Date Picker JS weekHeader" -msgid "Wk" -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:114 -msgid "Display Format" -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:115 -msgid "The format displayed when editing a post" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:190, includes/fields/class-acf-field-date_picker.php:226, includes/fields/class-acf-field-date_time_picker.php:192, includes/fields/class-acf-field-date_time_picker.php:211, includes/fields/class-acf-field-time_picker.php:122, includes/fields/class-acf-field-time_picker.php:139 -msgid "Custom:" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:217, includes/fields/class-acf-field-date_time_picker.php:202, includes/fields/class-acf-field-time_picker.php:132 -msgid "The format returned via template functions" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:202 -msgid "Save Format" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:203 -msgid "The format used when saving a value" -msgstr "" - -#: includes/fields/class-acf-field-date_picker.php:237, includes/fields/class-acf-field-date_time_picker.php:220 -msgid "Week Starts On" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:25 -msgid "Date Time Picker" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:68 -msgctxt "Date Time Picker JS timeOnlyTitle" -msgid "Choose Time" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:69 -msgctxt "Date Time Picker JS timeText" -msgid "Time" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:70 -msgctxt "Date Time Picker JS hourText" -msgid "Hour" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:71 -msgctxt "Date Time Picker JS minuteText" -msgid "Minute" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:72 -msgctxt "Date Time Picker JS secondText" -msgid "Second" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:73 -msgctxt "Date Time Picker JS millisecText" -msgid "Millisecond" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:74 -msgctxt "Date Time Picker JS microsecText" -msgid "Microsecond" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:75 -msgctxt "Date Time Picker JS timezoneText" -msgid "Time Zone" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:76 -msgctxt "Date Time Picker JS currentText" -msgid "Now" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:77 -msgctxt "Date Time Picker JS closeText" -msgid "Done" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:78 -msgctxt "Date Time Picker JS selectText" -msgid "Select" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:80 -msgctxt "Date Time Picker JS amText" -msgid "AM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:81 -msgctxt "Date Time Picker JS amTextShort" -msgid "A" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:84 -msgctxt "Date Time Picker JS pmText" -msgid "PM" -msgstr "" - -#: includes/fields/class-acf-field-date_time_picker.php:85 -msgctxt "Date Time Picker JS pmTextShort" -msgid "P" -msgstr "" - -#: includes/fields/class-acf-field-email.php:25 -msgid "Email" -msgstr "" - -#: includes/fields/class-acf-field-email.php:128, includes/fields/class-acf-field-number.php:136, includes/fields/class-acf-field-password.php:73, includes/fields/class-acf-field-text.php:108, includes/fields/class-acf-field-textarea.php:114, includes/fields/class-acf-field-url.php:112 -msgid "Placeholder Text" -msgstr "" - -#: includes/fields/class-acf-field-email.php:129, includes/fields/class-acf-field-number.php:137, includes/fields/class-acf-field-password.php:74, includes/fields/class-acf-field-text.php:109, includes/fields/class-acf-field-textarea.php:115, includes/fields/class-acf-field-url.php:113 -msgid "Appears within the input" -msgstr "" - -#: includes/fields/class-acf-field-email.php:139, includes/fields/class-acf-field-number.php:147, includes/fields/class-acf-field-password.php:84, includes/fields/class-acf-field-range.php:210, includes/fields/class-acf-field-text.php:119 -msgid "Prepend" -msgstr "" - -#: includes/fields/class-acf-field-email.php:140, includes/fields/class-acf-field-number.php:148, includes/fields/class-acf-field-password.php:85, includes/fields/class-acf-field-range.php:211, includes/fields/class-acf-field-text.php:120 -msgid "Appears before the input" -msgstr "" - -#: includes/fields/class-acf-field-email.php:150, includes/fields/class-acf-field-number.php:158, includes/fields/class-acf-field-password.php:95, includes/fields/class-acf-field-range.php:221, includes/fields/class-acf-field-text.php:130 -msgid "Append" -msgstr "" - -#: includes/fields/class-acf-field-email.php:151, includes/fields/class-acf-field-number.php:159, includes/fields/class-acf-field-password.php:96, includes/fields/class-acf-field-range.php:222, includes/fields/class-acf-field-text.php:131 -msgid "Appears after the input" -msgstr "" - -#: includes/fields/class-acf-field-email.php:175 -msgid "'%s' is not a valid email address" -msgstr "" - -#: includes/fields/class-acf-field-file.php:25 -msgid "File" -msgstr "" - -#: includes/fields/class-acf-field-file.php:58, includes/admin/tools/class-acf-admin-tool-import.php:55 -msgid "Select File" -msgstr "" - -#: includes/fields/class-acf-field-file.php:59 -msgid "Edit File" -msgstr "" - -#: includes/fields/class-acf-field-file.php:60 -msgid "Update File" -msgstr "" - -#: includes/fields/class-acf-field-file.php:147 -msgid "File name" -msgstr "" - -#: includes/fields/class-acf-field-file.php:151, includes/fields/class-acf-field-file.php:264, includes/fields/class-acf-field-file.php:277, includes/fields/class-acf-field-image.php:276, includes/fields/class-acf-field-image.php:313, pro/fields/class-acf-field-gallery.php:682, pro/fields/class-acf-field-gallery.php:719 -msgid "File size" -msgstr "" - -#: includes/fields/class-acf-field-file.php:157, includes/fields/class-acf-field-image.php:137, includes/fields/class-acf-field-link.php:142, pro/fields/class-acf-field-gallery.php:335, includes/admin/views/field-group-field.php:56 -msgid "Edit" -msgstr "" - -#: includes/fields/class-acf-field-file.php:182, includes/admin/tools/class-acf-admin-tool-import.php:89 -msgid "No file selected" -msgstr "" - -#: includes/fields/class-acf-field-file.php:182 -msgid "Add File" -msgstr "" - -#: includes/fields/class-acf-field-file.php:233 -msgid "File Array" -msgstr "" - -#: includes/fields/class-acf-field-file.php:234 -msgid "File URL" -msgstr "" - -#: includes/fields/class-acf-field-file.php:235 -msgid "File ID" -msgstr "" - -#: includes/fields/class-acf-field-file.php:244, includes/fields/class-acf-field-image.php:233, pro/fields/class-acf-field-gallery.php:617 -msgid "Library" -msgstr "" - -#: includes/fields/class-acf-field-file.php:245, includes/fields/class-acf-field-image.php:234, pro/fields/class-acf-field-gallery.php:618 -msgid "Limit the media library choice" -msgstr "" - -#: includes/fields/class-acf-field-file.php:250, includes/fields/class-acf-field-image.php:239, 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, pro/fields/class-acf-field-gallery.php:623, pro/locations/class-acf-location-block.php:66 -msgid "All" -msgstr "" - -#: includes/fields/class-acf-field-file.php:251, includes/fields/class-acf-field-image.php:240, pro/fields/class-acf-field-gallery.php:624 -msgid "Uploaded to post" -msgstr "" - -#: includes/fields/class-acf-field-file.php:260, includes/fields/class-acf-field-image.php:249, pro/fields/class-acf-field-gallery.php:655 -msgid "Minimum" -msgstr "" - -#: includes/fields/class-acf-field-file.php:261, includes/fields/class-acf-field-file.php:274 -msgid "Restrict which files can be uploaded" -msgstr "" - -#: includes/fields/class-acf-field-file.php:273, includes/fields/class-acf-field-image.php:286, pro/fields/class-acf-field-gallery.php:692 -msgid "Maximum" -msgstr "" - -#: includes/fields/class-acf-field-file.php:286, includes/fields/class-acf-field-image.php:323, pro/fields/class-acf-field-gallery.php:729 -msgid "Allowed file types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:287, includes/fields/class-acf-field-image.php:324, pro/fields/class-acf-field-gallery.php:730 -msgid "Comma separated list. Leave blank for all types" -msgstr "" - -#: includes/fields/class-acf-field-file.php:469 -msgid "%s requires a valid attachment ID." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:25 -msgid "Google Map" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:60 -msgid "Sorry, this browser does not support geolocation" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:155, includes/fields/class-acf-field-relationship.php:615 -msgid "Search" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:156 -msgid "Clear location" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:157 -msgid "Find current location" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:160 -msgid "Search for address..." -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:192, includes/fields/class-acf-field-google-map.php:205 -msgid "Center" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:193, includes/fields/class-acf-field-google-map.php:206 -msgid "Center the initial map" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:219 -msgid "Zoom" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:220 -msgid "Set the initial zoom level" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:231, includes/fields/class-acf-field-image.php:264, includes/fields/class-acf-field-image.php:301, includes/fields/class-acf-field-oembed.php:292, pro/fields/class-acf-field-gallery.php:670, pro/fields/class-acf-field-gallery.php:707 -msgid "Height" -msgstr "" - -#: includes/fields/class-acf-field-google-map.php:232 -msgid "Customize the map height" -msgstr "" - -#: includes/fields/class-acf-field-group.php:25 -msgid "Group" -msgstr "" - -#: includes/fields/class-acf-field-group.php:446, pro/fields/class-acf-field-repeater.php:381 -msgid "Sub Fields" -msgstr "" - -#: includes/fields/class-acf-field-group.php:463, pro/fields/class-acf-field-clone.php:851 -msgid "Specify the style used to render the selected fields" -msgstr "" - -#: includes/fields/class-acf-field-group.php:468, pro/fields/class-acf-field-clone.php:856, pro/fields/class-acf-field-flexible-content.php:617, pro/fields/class-acf-field-repeater.php:459, pro/locations/class-acf-location-block.php:22 -msgid "Block" -msgstr "" - -#: includes/fields/class-acf-field-group.php:469, pro/fields/class-acf-field-clone.php:857, pro/fields/class-acf-field-flexible-content.php:616, pro/fields/class-acf-field-repeater.php:458 -msgid "Table" -msgstr "" - -#: includes/fields/class-acf-field-group.php:470, pro/fields/class-acf-field-clone.php:858, pro/fields/class-acf-field-flexible-content.php:618, pro/fields/class-acf-field-repeater.php:460 -msgid "Row" -msgstr "" - -#: includes/fields/class-acf-field-image.php:25 -msgid "Image" -msgstr "" - -#: includes/fields/class-acf-field-image.php:64 -msgid "Select Image" -msgstr "" - -#: includes/fields/class-acf-field-image.php:65 -msgid "Edit Image" -msgstr "" - -#: includes/fields/class-acf-field-image.php:66 -msgid "Update Image" -msgstr "" - -#: includes/fields/class-acf-field-image.php:158 -msgid "No image selected" -msgstr "" - -#: includes/fields/class-acf-field-image.php:158 -msgid "Add Image" -msgstr "" - -#: includes/fields/class-acf-field-image.php:210, pro/fields/class-acf-field-gallery.php:579 -msgid "Image Array" -msgstr "" - -#: includes/fields/class-acf-field-image.php:211, pro/fields/class-acf-field-gallery.php:580 -msgid "Image URL" -msgstr "" - -#: includes/fields/class-acf-field-image.php:212, pro/fields/class-acf-field-gallery.php:581 -msgid "Image ID" -msgstr "" - -#: includes/fields/class-acf-field-image.php:221, pro/fields/class-acf-field-gallery.php:590 -msgid "Preview Size" -msgstr "" - -#: includes/fields/class-acf-field-image.php:250, includes/fields/class-acf-field-image.php:287, pro/fields/class-acf-field-gallery.php:656, pro/fields/class-acf-field-gallery.php:693 -msgid "Restrict which images can be uploaded" -msgstr "" - -#: includes/fields/class-acf-field-image.php:253, includes/fields/class-acf-field-image.php:290, includes/fields/class-acf-field-oembed.php:279, pro/fields/class-acf-field-gallery.php:659, pro/fields/class-acf-field-gallery.php:696 -msgid "Width" -msgstr "" - -#: includes/fields/class-acf-field-link.php:25 -msgid "Link" -msgstr "" - -#: includes/fields/class-acf-field-link.php:137 -msgid "Select Link" -msgstr "" - -#: includes/fields/class-acf-field-link.php:142 -msgid "Opens in a new window/tab" -msgstr "" - -#: includes/fields/class-acf-field-link.php:176 -msgid "Link Array" -msgstr "" - -#: includes/fields/class-acf-field-link.php:177 -msgid "Link URL" -msgstr "" - -#: includes/fields/class-acf-field-message.php:26, includes/fields/class-acf-field-message.php:100, includes/fields/class-acf-field-true_false.php:137 -msgid "Message" -msgstr "" - -#: includes/fields/class-acf-field-message.php:111, includes/fields/class-acf-field-textarea.php:148 -msgid "New Lines" -msgstr "" - -#: includes/fields/class-acf-field-message.php:112, includes/fields/class-acf-field-textarea.php:149 -msgid "Controls how new lines are rendered" -msgstr "" - -#: includes/fields/class-acf-field-message.php:116, includes/fields/class-acf-field-textarea.php:153 -msgid "Automatically add paragraphs" -msgstr "" - -#: includes/fields/class-acf-field-message.php:117, includes/fields/class-acf-field-textarea.php:154 -msgid "Automatically add <br>" -msgstr "" - -#: includes/fields/class-acf-field-message.php:118, includes/fields/class-acf-field-textarea.php:155 -msgid "No Formatting" -msgstr "" - -#: includes/fields/class-acf-field-message.php:127 -msgid "Escape HTML" -msgstr "" - -#: includes/fields/class-acf-field-message.php:128 -msgid "Allow HTML markup to display as visible text instead of rendering" -msgstr "" - -#: includes/fields/class-acf-field-number.php:25 -msgid "Number" -msgstr "" - -#: includes/fields/class-acf-field-number.php:169, includes/fields/class-acf-field-range.php:174 -msgid "Minimum Value" -msgstr "" - -#: includes/fields/class-acf-field-number.php:180, includes/fields/class-acf-field-range.php:186 -msgid "Maximum Value" -msgstr "" - -#: includes/fields/class-acf-field-number.php:191, includes/fields/class-acf-field-range.php:198 -msgid "Step Size" -msgstr "" - -#: includes/fields/class-acf-field-number.php:229 -msgid "Value must be a number" -msgstr "" - -#: includes/fields/class-acf-field-number.php:244 -msgid "Value must be equal to or higher than %d" -msgstr "" - -#: includes/fields/class-acf-field-number.php:251 -msgid "Value must be equal to or lower than %d" -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:25 -msgid "oEmbed" -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:230 -msgid "Enter URL" -msgstr "" - -#: includes/fields/class-acf-field-oembed.php:276, includes/fields/class-acf-field-oembed.php:289 -msgid "Embed Size" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:25 -msgid "Page Link" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:165 -msgid "Archives" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:249, includes/fields/class-acf-field-post_object.php:250, includes/fields/class-acf-field-taxonomy.php:948 -msgid "Parent" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:450, includes/fields/class-acf-field-post_object.php:362, includes/fields/class-acf-field-relationship.php:578 -msgid "Filter by Post Type" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:458, includes/fields/class-acf-field-post_object.php:370, includes/fields/class-acf-field-relationship.php:586 -msgid "All post types" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:466, includes/fields/class-acf-field-post_object.php:378, includes/fields/class-acf-field-relationship.php:594 -msgid "Filter by Taxonomy" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:474, includes/fields/class-acf-field-post_object.php:386, includes/fields/class-acf-field-relationship.php:602 -msgid "All taxonomies" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:494 -msgid "Allow Archives URLs" -msgstr "" - -#: includes/fields/class-acf-field-page_link.php:506, includes/fields/class-acf-field-post_object.php:406, includes/fields/class-acf-field-select.php:398, includes/fields/class-acf-field-user.php:79 -msgid "Select multiple values?" -msgstr "" - -#: includes/fields/class-acf-field-password.php:25 -msgid "Password" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:25, includes/fields/class-acf-field-post_object.php:423, includes/fields/class-acf-field-relationship.php:667 -msgid "Post Object" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:424, includes/fields/class-acf-field-relationship.php:668 -msgid "Post ID" -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:642 -msgid "%1$s must have a valid post ID." -msgstr "" - -#: includes/fields/class-acf-field-post_object.php:651 -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:667 -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-radio.php:25 -msgid "Radio Button" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:214 -msgid "Other" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:219 -msgid "Add 'other' choice to allow for custom values" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:227 -msgid "Save Other" -msgstr "" - -#: includes/fields/class-acf-field-radio.php:232 -msgid "Save 'other' values to the field's choices" -msgstr "" - -#: includes/fields/class-acf-field-range.php:25 -msgid "Range" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:25 -msgid "Relationship" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:63 -msgid "Maximum values reached ( {max} values )" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:64 -msgid "Loading" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:65 -msgid "No matches found" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:390 -msgid "Select post type" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:399 -msgid "Select taxonomy" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:469 -msgid "Search..." -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:610 -msgid "Filters" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:616, includes/locations/class-acf-location-post-type.php:22 -msgid "Post Type" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:617, includes/fields/class-acf-field-taxonomy.php:28, includes/fields/class-acf-field-taxonomy.php:714, includes/locations/class-acf-location-taxonomy.php:22 -msgid "Taxonomy" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:626 -msgid "Elements" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:627 -msgid "Selected elements will be displayed in each result" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:631, includes/admin/views/field-group-options.php:150 -msgid "Featured Image" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:640 -msgid "Minimum posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:651 -msgid "Maximum posts" -msgstr "" - -#: includes/fields/class-acf-field-relationship.php:752, pro/fields/class-acf-field-gallery.php:832 -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-select.php:25, includes/fields/class-acf-field-taxonomy.php:738 -msgctxt "noun" -msgid "Select" -msgstr "" - -#: includes/fields/class-acf-field-select.php:107 -msgctxt "Select2 JS matches_1" -msgid "One result is available, press enter to select it." -msgstr "" - -#: includes/fields/class-acf-field-select.php:108 -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:109 -msgctxt "Select2 JS matches_0" -msgid "No matches found" -msgstr "" - -#: includes/fields/class-acf-field-select.php:110 -msgctxt "Select2 JS input_too_short_1" -msgid "Please enter 1 or more characters" -msgstr "" - -#: includes/fields/class-acf-field-select.php:111 -msgctxt "Select2 JS input_too_short_n" -msgid "Please enter %d or more characters" -msgstr "" - -#: includes/fields/class-acf-field-select.php:112 -msgctxt "Select2 JS input_too_long_1" -msgid "Please delete 1 character" -msgstr "" - -#: includes/fields/class-acf-field-select.php:113 -msgctxt "Select2 JS input_too_long_n" -msgid "Please delete %d characters" -msgstr "" - -#: includes/fields/class-acf-field-select.php:114 -msgctxt "Select2 JS selection_too_long_1" -msgid "You can only select 1 item" -msgstr "" - -#: includes/fields/class-acf-field-select.php:115 -msgctxt "Select2 JS selection_too_long_n" -msgid "You can only select %d items" -msgstr "" - -#: includes/fields/class-acf-field-select.php:116 -msgctxt "Select2 JS load_more" -msgid "Loading more results…" -msgstr "" - -#: includes/fields/class-acf-field-select.php:117 -msgctxt "Select2 JS searching" -msgid "Searching…" -msgstr "" - -#: includes/fields/class-acf-field-select.php:118 -msgctxt "Select2 JS load_fail" -msgid "Loading failed" -msgstr "" - -#: includes/fields/class-acf-field-select.php:410, includes/fields/class-acf-field-true_false.php:159 -msgid "Stylised UI" -msgstr "" - -#: includes/fields/class-acf-field-select.php:422 -msgid "Use AJAX to lazy load choices?" -msgstr "" - -#: includes/fields/class-acf-field-select.php:440 -msgid "Specify the value returned" -msgstr "" - -#: includes/fields/class-acf-field-select.php:663 -msgid "%1$s is not one of %2$s" -msgstr "" - -#: includes/fields/class-acf-field-separator.php:25 -msgid "Separator" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:26 -msgid "Tab" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:103 -msgid "Placement" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:107, includes/admin/views/field-group-options.php:87 -msgid "Top aligned" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:108, includes/admin/views/field-group-options.php:88 -msgid "Left aligned" -msgstr "" - -#: includes/fields/class-acf-field-tab.php:118 -msgid "Define an endpoint for the previous tabs to stop. This will start a new group of tabs." -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:673 -msgctxt "No terms" -msgid "No %s" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:715 -msgid "Select the taxonomy to be displayed" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:726 -msgid "Appearance" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:727 -msgid "Select the appearance of this field" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:732 -msgid "Multiple Values" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:734 -msgid "Multi Select" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:736 -msgid "Single Value" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:737 -msgid "Radio Buttons" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:765 -msgid "Create Terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:766 -msgid "Allow new terms to be created whilst editing" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:777 -msgid "Save Terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:778 -msgid "Connect selected terms to the post" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:789 -msgid "Load Terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:790 -msgid "Load value from posts terms" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:806 -msgid "Term Object" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:807 -msgid "Term ID" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:862 -msgid "User unable to add new %s" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:874 -msgid "%s already exists" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:910 -msgid "%s added" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:926, pro/fields/class-acf-field-flexible-content.php:597, includes/admin/views/field-group-fields.php:6 -msgid "Name" -msgstr "" - -#: includes/fields/class-acf-field-taxonomy.php:961, includes/locations/class-acf-location-user-form.php:72 -msgid "Add" -msgstr "" - -#: includes/fields/class-acf-field-text.php:25 -msgid "Text" -msgstr "" - -#: includes/fields/class-acf-field-text.php:141, includes/fields/class-acf-field-textarea.php:125 -msgid "Character Limit" -msgstr "" - -#: includes/fields/class-acf-field-text.php:142, includes/fields/class-acf-field-textarea.php:126 -msgid "Leave blank for no limit" -msgstr "" - -#: includes/fields/class-acf-field-text.php:168, includes/fields/class-acf-field-textarea.php:221 -msgid "Value must not exceed %d characters" -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:25 -msgid "Text Area" -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:136 -msgid "Rows" -msgstr "" - -#: includes/fields/class-acf-field-textarea.php:137 -msgid "Sets the textarea height" -msgstr "" - -#: includes/fields/class-acf-field-time_picker.php:25 -msgid "Time Picker" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:25 -msgid "True / False" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:138 -msgid "Displays text alongside the checkbox" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:172 -msgid "On Text" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:173 -msgid "Text shown when active" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:189 -msgid "Off Text" -msgstr "" - -#: includes/fields/class-acf-field-true_false.php:190 -msgid "Text shown when inactive" -msgstr "" - -#: includes/fields/class-acf-field-url.php:25 -msgid "Url" -msgstr "" - -#: includes/fields/class-acf-field-url.php:154 -msgid "Value must be a valid URL" -msgstr "" - -#: includes/fields/class-acf-field-user.php:53 -msgid "Filter by role" -msgstr "" - -#: includes/fields/class-acf-field-user.php:61 -msgid "All user roles" -msgstr "" - -#: includes/fields/class-acf-field-user.php:95 -msgid "User Array" -msgstr "" - -#: includes/fields/class-acf-field-user.php:96 -msgid "User Object" -msgstr "" - -#: includes/fields/class-acf-field-user.php:97 -msgid "User ID" -msgstr "" - -#: includes/fields/class-acf-field-user.php:350 -msgid "Error loading field." -msgstr "" - -#: includes/fields/class-acf-field-user.php:355 -msgid "Invalid request." -msgstr "" - -#: includes/fields/class-acf-field-user.php:517 -msgid "%1$s must have a valid user ID." -msgstr "" - -#: includes/fields/class-acf-field-user.php:526 -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-wysiwyg.php:25 -msgid "Wysiwyg Editor" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:282 -msgid "Visual" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:283 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:289 -msgid "Click to initialize TinyMCE" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:345 -msgid "Tabs" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:350 -msgid "Visual & Text" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:351 -msgid "Visual Only" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:352 -msgid "Text Only" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:361 -msgid "Toolbar" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:378 -msgid "Show Media Upload Buttons?" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:390 -msgid "Delay initialization?" -msgstr "" - -#: includes/fields/class-acf-field-wysiwyg.php:391 -msgid "TinyMCE will not be initialized until field is clicked" -msgstr "" - -#: includes/forms/form-front.php:40, pro/fields/class-acf-field-gallery.php:352 -msgid "Title" -msgstr "" - -#: includes/forms/form-front.php:57 -msgid "Validate Email" -msgstr "" - -#: includes/forms/form-front.php:107 -msgid "Post updated" -msgstr "" - -#: includes/forms/form-front.php:236 -msgid "Spam Detected" -msgstr "" - -#: includes/forms/form-user.php:353 -msgid "Error: %s" -msgstr "" - -#: includes/locations/abstract-acf-location.php:105 -msgid "is equal to" -msgstr "" - -#: includes/locations/abstract-acf-location.php:106 -msgid "is not equal to" -msgstr "" - -#: includes/locations/class-acf-location-attachment.php:22 -msgid "Attachment" -msgstr "" - -#: includes/locations/class-acf-location-attachment.php:84 -msgid "All %s formats" -msgstr "" - -#: includes/locations/class-acf-location-comment.php:22 -msgid "Comment" -msgstr "" - -#: includes/locations/class-acf-location-current-user-role.php:22 -msgid "Current User Role" -msgstr "" - -#: includes/locations/class-acf-location-current-user-role.php:77 -msgid "Super Admin" -msgstr "" - -#: includes/locations/class-acf-location-current-user.php:22 -msgid "Current User" -msgstr "" - -#: includes/locations/class-acf-location-current-user.php:71 -msgid "Logged in" -msgstr "" - -#: includes/locations/class-acf-location-current-user.php:72 -msgid "Viewing front end" -msgstr "" - -#: includes/locations/class-acf-location-current-user.php:73 -msgid "Viewing back end" -msgstr "" - -#: includes/locations/class-acf-location-nav-menu-item.php:22 -msgid "Menu Item" -msgstr "" - -#: includes/locations/class-acf-location-nav-menu.php:22 -msgid "Menu" -msgstr "" - -#: includes/locations/class-acf-location-nav-menu.php:80 -msgid "Menu Locations" -msgstr "" - -#: includes/locations/class-acf-location-page-parent.php:22 -msgid "Page Parent" -msgstr "" - -#: includes/locations/class-acf-location-page-template.php:22 -msgid "Page Template" -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-page-type.php:22 -msgid "Page Type" -msgstr "" - -#: includes/locations/class-acf-location-page-type.php:110 -msgid "Front Page" -msgstr "" - -#: includes/locations/class-acf-location-page-type.php:111 -msgid "Posts Page" -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:113 -msgid "Parent Page (has children)" -msgstr "" - -#: includes/locations/class-acf-location-page-type.php:114 -msgid "Child Page (has parent)" -msgstr "" - -#: includes/locations/class-acf-location-post-category.php:22 -msgid "Post Category" -msgstr "" - -#: includes/locations/class-acf-location-post-format.php:22 -msgid "Post Format" -msgstr "" - -#: includes/locations/class-acf-location-post-status.php:22 -msgid "Post Status" -msgstr "" - -#: includes/locations/class-acf-location-post-taxonomy.php:22 -msgid "Post Taxonomy" -msgstr "" - -#: includes/locations/class-acf-location-post-template.php:22 -msgid "Post Template" -msgstr "" - -#: includes/locations/class-acf-location-user-form.php:22 -msgid "User Form" -msgstr "" - -#: includes/locations/class-acf-location-user-form.php:73 -msgid "Add / Edit" -msgstr "" - -#: includes/locations/class-acf-location-user-form.php:74 -msgid "Register" -msgstr "" - -#: includes/locations/class-acf-location-user-role.php:24 -msgid "User Role" -msgstr "" - -#: includes/locations/class-acf-location-widget.php:22 -msgid "Widget" -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:122, pro/admin/admin-updates.php:122, pro/admin/views/html-settings-updates.php:12 -msgid "Updates" -msgstr "" - -#: pro/admin/admin-updates.php:209 -msgid "Error. Could not authenticate update package. Please check again or deactivate and reactivate your ACF PRO license." -msgstr "" - -#: pro/admin/admin-updates.php:196 -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:815 -msgid "Select one or more fields you wish to clone" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:834 -msgid "Display" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:835 -msgid "Specify the style used to render the clone field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:840 -msgid "Group (displays selected fields in a group within this field)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:841 -msgid "Seamless (replaces this field with selected fields)" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:864 -msgid "Labels will be displayed as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:869 -msgid "Prefix Field Labels" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:880 -msgid "Values will be saved as %s" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:885 -msgid "Prefix Field Names" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1001 -msgid "Unknown field" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1038 -msgid "Unknown field group" -msgstr "" - -#: pro/fields/class-acf-field-clone.php:1042 -msgid "All fields from %s field group" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:25, includes/admin/views/html-notice-upgrade.php:12 -msgid "Flexible Content" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:31, pro/fields/class-acf-field-repeater.php:182, pro/fields/class-acf-field-repeater.php:473 -msgid "Add Row" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:71, pro/fields/class-acf-field-flexible-content.php:917, pro/fields/class-acf-field-flexible-content.php:996 -msgid "layout" -msgid_plural "layouts" -msgstr[0] "" -msgstr[1] "" - -#: pro/fields/class-acf-field-flexible-content.php:72 -msgid "layouts" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:75, pro/fields/class-acf-field-flexible-content.php:916, pro/fields/class-acf-field-flexible-content.php:995 -msgid "This field requires at least {min} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:76 -msgid "This field has a limit of {max} {label} {identifier}" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:79 -msgid "{available} {label} {identifier} available (max {max})" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:80 -msgid "{required} {label} {identifier} required (min {min})" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:83 -msgid "Flexible Content requires at least 1 layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:276 -msgid "Click the \"%s\" button below to start creating your layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:410, pro/fields/class-acf-field-repeater.php:295, includes/admin/views/field-group-field.php:49 -msgid "Drag to reorder" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:413 -msgid "Add layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:414 -msgid "Duplicate layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:415 -msgid "Remove layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:416, pro/fields/class-acf-field-repeater.php:297 -msgid "Click to toggle" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:551 -msgid "Reorder Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:551 -msgid "Reorder" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:552 -msgid "Delete Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:552, includes/admin/views/field-group-field.php:59 -msgid "Delete" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:553 -msgid "Duplicate Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:554 -msgid "Add New Layout" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:635 -msgid "Min" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:650 -msgid "Max" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:679, pro/fields/class-acf-field-repeater.php:469 -msgid "Button Label" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:690 -msgid "Minimum Layouts" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:701 -msgid "Maximum Layouts" -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1704, pro/fields/class-acf-field-repeater.php:1108 -msgid "%s must be of type array or null." -msgstr "" - -#: pro/fields/class-acf-field-flexible-content.php:1715 -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:1731 -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, includes/admin/views/html-notice-upgrade.php:15 -msgid "Gallery" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:73 -msgid "Add Image to Gallery" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:74 -msgid "Maximum selection reached" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:320 -msgid "Length" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:364 -msgid "Caption" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:376 -msgid "Alt Text" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:500 -msgid "Add to gallery" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:504 -msgid "Bulk actions" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:505 -msgid "Sort by date uploaded" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:506 -msgid "Sort by date modified" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:507 -msgid "Sort by title" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:508 -msgid "Reverse current order" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:520 -msgid "Close" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:602 -msgid "Insert" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:603 -msgid "Specify where new attachments are added" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:607 -msgid "Append to the end" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:608 -msgid "Prepend to the beginning" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:633 -msgid "Minimum Selection" -msgstr "" - -#: pro/fields/class-acf-field-gallery.php:644 -msgid "Maximum Selection" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:25, includes/admin/views/html-notice-upgrade.php:9 -msgid "Repeater" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:64, pro/fields/class-acf-field-repeater.php:659 -msgid "Minimum rows reached ({min} rows)" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:65 -msgid "Maximum rows reached ({max} rows)" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:334 -msgid "Add row" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:335 -msgid "Duplicate row" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:336 -msgid "Remove row" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:414 -msgid "Collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:415 -msgid "Select a sub field to show when row is collapsed" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:427 -msgid "Minimum Rows" -msgstr "" - -#: pro/fields/class-acf-field-repeater.php:439 -msgid "Maximum Rows" -msgstr "" - -#: pro/locations/class-acf-location-block.php:71 -msgid "No block types exist" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:22, includes/admin/views/html-notice-upgrade.php:18 -msgid "Options Page" -msgstr "" - -#: pro/locations/class-acf-location-options-page.php:70 -msgid "No options pages exist" -msgstr "" - -#: tests/basic/test-blocks.php:456 -msgid "Hero" -msgstr "" - -#: tests/basic/test-blocks.php:457 -msgid "Display a random hero image." -msgstr "" - -#: tests/basic/test-blocks.php:630 -msgid "Test JS" -msgstr "" - -#: tests/basic/test-blocks.php:631 -msgid "A block for testing JS." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:35 -msgid "Export Field Groups" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:39, includes/admin/tools/class-acf-admin-tool-export.php:335, includes/admin/tools/class-acf-admin-tool-export.php:364 -msgid "Generate PHP" -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:167 -msgid "Exported 1 field group." -msgid_plural "Exported %s field groups." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:233, includes/admin/tools/class-acf-admin-tool-export.php:262 -msgid "Select Field Groups" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:329 -msgid "Select the field groups you would like to export and then select your export method. Use the download button to export to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code which you can place in your theme." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:334 -msgid "Export File" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:405 -msgid "The following code can be used to register a local version of the selected field group(s). A local field group 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." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:435 -msgid "Copy to clipboard" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-export.php:472 -msgid "Copied" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:28 -msgid "Import Field Groups" -msgstr "" - -#: 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 field groups." -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:66 -msgid "Import File" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:97 -msgid "Error uploading file. Please try again" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:102 -msgid "Incorrect file type" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:111 -msgid "Import file empty" -msgstr "" - -#: includes/admin/tools/class-acf-admin-tool-import.php:142 -msgid "Imported 1 field group" -msgid_plural "Imported %s field groups" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/views/field-group-field-conditional-logic.php:25 -msgid "Conditional Logic" -msgstr "" - -#: includes/admin/views/field-group-field-conditional-logic.php:60 -msgid "Show this field if" -msgstr "" - -#: includes/admin/views/field-group-field-conditional-logic.php:172, includes/admin/views/field-group-locations.php:38 -msgid "Add rule group" -msgstr "" - -#: includes/admin/views/field-group-field.php:53, includes/admin/views/field-group-field.php:56 -msgid "Edit field" -msgstr "" - -#: includes/admin/views/field-group-field.php:57 -msgid "Duplicate field" -msgstr "" - -#: includes/admin/views/field-group-field.php:58 -msgid "Move field to another group" -msgstr "" - -#: includes/admin/views/field-group-field.php:58 -msgid "Move" -msgstr "" - -#: includes/admin/views/field-group-field.php:59 -msgid "Delete field" -msgstr "" - -#: includes/admin/views/field-group-field.php:78 -msgid "Field Label" -msgstr "" - -#: includes/admin/views/field-group-field.php:79 -msgid "This is the name which will appear on the EDIT page" -msgstr "" - -#: includes/admin/views/field-group-field.php:92 -msgid "Field Name" -msgstr "" - -#: includes/admin/views/field-group-field.php:93 -msgid "Single word, no spaces. Underscores and dashes allowed" -msgstr "" - -#: includes/admin/views/field-group-field.php:106 -msgid "Field Type" -msgstr "" - -#: includes/admin/views/field-group-field.php:121 -msgid "Instructions" -msgstr "" - -#: includes/admin/views/field-group-field.php:122 -msgid "Instructions for authors. Shown when submitting data" -msgstr "" - -#: includes/admin/views/field-group-field.php:135 -msgid "Required?" -msgstr "" - -#: includes/admin/views/field-group-field.php:161 -msgid "Wrapper Attributes" -msgstr "" - -#: includes/admin/views/field-group-field.php:167 -msgid "width" -msgstr "" - -#: includes/admin/views/field-group-field.php:185 -msgid "class" -msgstr "" - -#: includes/admin/views/field-group-field.php:201 -msgid "id" -msgstr "" - -#: includes/admin/views/field-group-field.php:215, includes/admin/views/field-group-field.php:215 -msgid "Close Field" -msgstr "" - -#: includes/admin/views/field-group-fields.php:4 -msgid "Order" -msgstr "" - -#: includes/admin/views/field-group-fields.php:8 -msgid "Type" -msgstr "" - -#: includes/admin/views/field-group-fields.php:19 -msgid "No fields. Click the + Add Field button to create your first field." -msgstr "" - -#: includes/admin/views/field-group-fields.php:44 -msgid "+ Add Field" -msgstr "" - -#: includes/admin/views/field-group-locations.php:9 -msgid "Rules" -msgstr "" - -#: includes/admin/views/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/field-group-options.php:10 -msgid "Active" -msgstr "" - -#: includes/admin/views/field-group-options.php:27 -msgid "Show in REST API" -msgstr "" - -#: includes/admin/views/field-group-options.php:44 -msgid "Style" -msgstr "" - -#: includes/admin/views/field-group-options.php:51 -msgid "Standard (WP metabox)" -msgstr "" - -#: includes/admin/views/field-group-options.php:52 -msgid "Seamless (no metabox)" -msgstr "" - -#: includes/admin/views/field-group-options.php:61 -msgid "Position" -msgstr "" - -#: includes/admin/views/field-group-options.php:68 -msgid "High (after title)" -msgstr "" - -#: includes/admin/views/field-group-options.php:69 -msgid "Normal (after content)" -msgstr "" - -#: includes/admin/views/field-group-options.php:70 -msgid "Side" -msgstr "" - -#: includes/admin/views/field-group-options.php:80 -msgid "Label placement" -msgstr "" - -#: includes/admin/views/field-group-options.php:97 -msgid "Instruction placement" -msgstr "" - -#: includes/admin/views/field-group-options.php:104 -msgid "Below labels" -msgstr "" - -#: includes/admin/views/field-group-options.php:105 -msgid "Below fields" -msgstr "" - -#: includes/admin/views/field-group-options.php:114 -msgid "Order No." -msgstr "" - -#: includes/admin/views/field-group-options.php:115 -msgid "Field groups with a lower order will appear first" -msgstr "" - -#: includes/admin/views/field-group-options.php:128 -msgid "Shown in field group list" -msgstr "" - -#: includes/admin/views/field-group-options.php:139 -msgid "Permalink" -msgstr "" - -#: includes/admin/views/field-group-options.php:140 -msgid "Content Editor" -msgstr "" - -#: includes/admin/views/field-group-options.php:141 -msgid "Excerpt" -msgstr "" - -#: includes/admin/views/field-group-options.php:143 -msgid "Discussion" -msgstr "" - -#: includes/admin/views/field-group-options.php:145 -msgid "Revisions" -msgstr "" - -#: includes/admin/views/field-group-options.php:146 -msgid "Slug" -msgstr "" - -#: includes/admin/views/field-group-options.php:147 -msgid "Author" -msgstr "" - -#: includes/admin/views/field-group-options.php:148 -msgid "Format" -msgstr "" - -#: includes/admin/views/field-group-options.php:149 -msgid "Page Attributes" -msgstr "" - -#: includes/admin/views/field-group-options.php:151 -msgid "Categories" -msgstr "" - -#: includes/admin/views/field-group-options.php:152 -msgid "Tags" -msgstr "" - -#: includes/admin/views/field-group-options.php:153 -msgid "Send Trackbacks" -msgstr "" - -#: includes/admin/views/field-group-options.php:161 -msgid "Hide on screen" -msgstr "" - -#: includes/admin/views/field-group-options.php:162 -msgid "Select items to hide them from the edit screen." -msgstr "" - -#: includes/admin/views/field-group-options.php:162 -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/html-admin-navigation.php:89 -msgid "Upgrade to Pro" -msgstr "" - -#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:26, includes/admin/views/html-admin-page-upgrade-network.php:27, includes/admin/views/html-admin-page-upgrade-network.php:96 -msgid "Upgrade Sites" -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:36, includes/admin/views/html-admin-page-upgrade-network.php:47 -msgid "Site" -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:80 -msgid "Site is up to date" -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:78 -msgid "Site requires database upgrade from %1$s to %2$s" -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:97 -msgid "Database Upgrade complete. Return to network dashboard" -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:117 -msgid "Please select at least one site to upgrade." -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:121, includes/admin/views/html-notice-upgrade.php:45 -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/html-admin-page-upgrade-network.php:148, includes/admin/views/html-admin-page-upgrade.php:31 -msgid "Upgrading data to version %s" -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:162 -msgid "Upgrade complete." -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade-network.php:165, includes/admin/views/html-admin-page-upgrade.php:65 -msgid "Upgrade failed." -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade.php:30 -msgid "Reading upgrade tasks..." -msgstr "" - -#: includes/admin/views/html-admin-page-upgrade.php:33 -msgid "Database upgrade complete. See what's new" -msgstr "" - -#: includes/admin/views/html-admin-tools.php:24 -msgid "Back to all tools" -msgstr "" - -#: includes/admin/views/html-notice-upgrade.php:28 -msgid "Database Upgrade Required" -msgstr "" - -#: includes/admin/views/html-notice-upgrade.php:29 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: includes/admin/views/html-notice-upgrade.php:29 -msgid "This version contains improvements to your database and requires an upgrade." -msgstr "" - -#: includes/admin/views/html-notice-upgrade.php:31 -msgid "Please also check all premium add-ons (%s) are updated to the latest version." -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:41 -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:76 -msgid "Update Information" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:83 -msgid "Current Version" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:91 -msgid "Latest Version" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:99 -msgid "Update Available" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:111 -msgid "Please enter your license key above to unlock updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:109 -msgid "Update Plugin" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:107 -msgid "Please reactivate your license to unlock updates" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:124 -msgid "Changelog" -msgstr "" - -#: pro/admin/views/html-settings-updates.php:134 -msgid "Upgrade Notice" -msgstr "" diff --git a/lang/pro/acf-ar.po b/lang/pro/acf-ar.po new file mode 100644 index 0000000..78a2807 --- /dev/null +++ b/lang/pro/acf-ar.po @@ -0,0 +1,3595 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"POT-Creation-Date: 2020-06-27 13:40+0200\n" +"PO-Revision-Date: 2020-06-27 15:50+0200\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: Adil el hallaoui \n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.3.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:68 +msgid "Advanced Custom Fields" +msgstr "الحقول المخصصة المتقدمة" + +#: acf.php:342 includes/admin/admin.php:52 +msgid "Field Groups" +msgstr "مجموعات الحقول" + +#: acf.php:343 +msgid "Field Group" +msgstr "مجموعة الحقول" + +#: acf.php:344 acf.php:376 includes/admin/admin.php:53 +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New" +msgstr "إضافة جديد" + +#: acf.php:345 +msgid "Add New Field Group" +msgstr "إضافة مجموعة حقول جديدة" + +#: acf.php:346 +msgid "Edit Field Group" +msgstr "تحرير مجموعة الحقول" + +#: acf.php:347 +msgid "New Field Group" +msgstr "مجموعة حقول جديدة" + +#: acf.php:348 +msgid "View Field Group" +msgstr "عرض مجموعة الحقول" + +#: acf.php:349 +msgid "Search Field Groups" +msgstr "بحث في مجموعات الحقول" + +#: acf.php:350 +msgid "No Field Groups found" +msgstr "لم يتم العثور على نتائج" + +#: acf.php:351 +msgid "No Field Groups found in Trash" +msgstr "لا توجد مجموعات حقول في سلة المهملات" + +#: acf.php:374 includes/admin/admin-field-group.php:220 +#: includes/admin/admin-field-groups.php:530 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "حقول" + +#: acf.php:375 +msgid "Field" +msgstr "حقل" + +#: acf.php:377 +msgid "Add New Field" +msgstr "إضافة حقل جديد" + +#: acf.php:378 +msgid "Edit Field" +msgstr "تحرير الحقل" + +#: acf.php:379 includes/admin/views/field-group-fields.php:41 +msgid "New Field" +msgstr "حقل جديد" + +#: acf.php:380 +msgid "View Field" +msgstr "عرض الحقل" + +#: acf.php:381 +msgid "Search Fields" +msgstr "بحث في الحقول" + +#: acf.php:382 +msgid "No Fields found" +msgstr "لم يتم العثور على أية حقول" + +#: acf.php:383 +msgid "No Fields found in Trash" +msgstr "لم يتم العثور على أية حقول في سلة المهملات" + +#: acf.php:418 includes/admin/admin-field-group.php:402 +#: includes/admin/admin-field-groups.php:587 +msgid "Inactive" +msgstr "غير نشط" + +#: acf.php:423 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "غير نشطة (%s)" +msgstr[1] "غير نشط (%s)" +msgstr[2] "غير نشطة (%s)" +msgstr[3] "غير نشطة (%s)" +msgstr[4] "غير نشطة (%s)" +msgstr[5] "غير نشطة (%s)" + +#: includes/acf-field-functions.php:831 +#: includes/admin/admin-field-group.php:178 +msgid "(no label)" +msgstr "(بدون عنوان)" + +#: includes/acf-field-group-functions.php:819 +#: includes/admin/admin-field-group.php:180 +msgid "copy" +msgstr "نسخ" + +#: includes/admin/admin-field-group.php:86 +#: includes/admin/admin-field-group.php:87 +#: includes/admin/admin-field-group.php:89 +msgid "Field group updated." +msgstr "تم تحديث مجموعة الحقول." + +#: includes/admin/admin-field-group.php:88 +msgid "Field group deleted." +msgstr "تم حذف مجموعة الحقول." + +#: includes/admin/admin-field-group.php:91 +msgid "Field group published." +msgstr "تم نشر مجموعة الحقول." + +#: includes/admin/admin-field-group.php:92 +msgid "Field group saved." +msgstr "تم حفظ مجموعة الحقول." + +#: includes/admin/admin-field-group.php:93 +msgid "Field group submitted." +msgstr "تم تقديم مجموعة الحقول." + +#: includes/admin/admin-field-group.php:94 +msgid "Field group scheduled for." +msgstr "تم جدولة مجموعة الحقول لـ." + +#: includes/admin/admin-field-group.php:95 +msgid "Field group draft updated." +msgstr "تم تحديث مسودة مجموعة الحقول." + +#: includes/admin/admin-field-group.php:171 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "لا يجوز استخدام المقطع \"field_\" في بداية اسم الحقل" + +#: includes/admin/admin-field-group.php:172 +msgid "This field cannot be moved until its changes have been saved" +msgstr "لا يمكن نقل هذا الحقل حتى يتم حفظ تغييراته" + +#: includes/admin/admin-field-group.php:173 +msgid "Field group title is required" +msgstr "عنوان مجموعة الحقول مطلوب" + +#: includes/admin/admin-field-group.php:174 +msgid "Move to trash. Are you sure?" +msgstr "ارسال إلى سلة المهملات. هل أنت متأكد؟" + +#: includes/admin/admin-field-group.php:175 +msgid "No toggle fields available" +msgstr "تبديل الحقول غير متوفر" + +#: includes/admin/admin-field-group.php:176 +msgid "Move Custom Field" +msgstr "نقل الحقل المخصص" + +#: includes/admin/admin-field-group.php:177 +msgid "Checked" +msgstr "مفحوص" + +#: includes/admin/admin-field-group.php:179 +msgid "(this field)" +msgstr "(هذا الحقل)" + +#: includes/admin/admin-field-group.php:181 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3665 +msgid "or" +msgstr "او" + +#: includes/admin/admin-field-group.php:182 +msgid "Null" +msgstr "لا شيء" + +#: includes/admin/admin-field-group.php:221 +msgid "Location" +msgstr "الموقع" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "الإعدادات" + +#: includes/admin/admin-field-group.php:372 +msgid "Field Keys" +msgstr "مفاتيح الحقل" + +#: includes/admin/admin-field-group.php:402 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "نشط" + +#: includes/admin/admin-field-group.php:763 +msgid "Move Complete." +msgstr "تم النقل." + +#: includes/admin/admin-field-group.php:764 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "الحقل %s يمكن الآن إيجاده في مجموعة الحقول %s" + +#: includes/admin/admin-field-group.php:765 +msgid "Close Window" +msgstr "إغلاق النافذة" + +#: includes/admin/admin-field-group.php:806 +msgid "Please select the destination for this field" +msgstr "الرجاء تحديد الوجهة لهذا الحقل" + +#: includes/admin/admin-field-group.php:813 +msgid "Move Field" +msgstr "نقل الحقل" + +#: includes/admin/admin-field-groups.php:89 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "نشط (%s)" +msgstr[1] "نشط (%s)" +msgstr[2] "نشطة (%s)" +msgstr[3] "نشطة (%s)" +msgstr[4] "نشطة (%s)" +msgstr[5] "نشطة (%s)" + +#: includes/admin/admin-field-groups.php:156 +#, php-format +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "تم تكرار مجموعة الحقول %s." +msgstr[1] "تم تكرار مجموعة الحقول %s." +msgstr[2] "تم تكرار مجموعة الحقول %s." +msgstr[3] "تم تكرار مجموعة الحقول %s." +msgstr[4] "تم تكرار مجموعة الحقول %s." +msgstr[5] "تم تكرار مجموعة الحقول %s." + +#: includes/admin/admin-field-groups.php:243 +#, php-format +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "تمت مزامنة مجموعة الحقول %s." +msgstr[1] "تمت مزامنة مجموعة الحقول %s." +msgstr[2] "تمت مزامنة مجموعة الحقول %s." +msgstr[3] "تمت مزامنة مجموعة الحقول %s." +msgstr[4] "تمت مزامنة مجموعة الحقول %s." +msgstr[5] "تمت مزامنة مجموعة الحقول %s." + +#: includes/admin/admin-field-groups.php:414 +#: includes/admin/admin-field-groups.php:577 +msgid "Sync available" +msgstr "المزامنة متوفرة" + +#: includes/admin/admin-field-groups.php:527 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:353 +msgid "Title" +msgstr "العنوان" + +#: includes/admin/admin-field-groups.php:528 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +#: pro/fields/class-acf-field-gallery.php:380 +msgid "Description" +msgstr "الوصف" + +#: includes/admin/admin-field-groups.php:529 +msgid "Status" +msgstr "الحالة" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:626 +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "خصص ووردبرس بحقول قوية، مهنية، وبديهية‪." + +#: includes/admin/admin-field-groups.php:628 includes/admin/admin.php:126 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "سجل التغييرات" + +#: includes/admin/admin-field-groups.php:633 +#, php-format +msgid "See what's new in version %s." +msgstr "اطلع على الجديد في النسخة %s." + +#: includes/admin/admin-field-groups.php:636 +msgid "Resources" +msgstr "الموارد" + +#: includes/admin/admin-field-groups.php:638 +msgid "Website" +msgstr "الموقع الإليكتروني" + +#: includes/admin/admin-field-groups.php:639 +msgid "Documentation" +msgstr "التوثيق" + +#: includes/admin/admin-field-groups.php:640 +msgid "Support" +msgstr "الدعم" + +#: includes/admin/admin-field-groups.php:642 +#: includes/admin/views/settings-info.php:81 +msgid "Pro" +msgstr "احترافي" + +#: includes/admin/admin-field-groups.php:647 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "شكرا لك لاستخدامك ACF." + +#: includes/admin/admin-field-groups.php:686 +msgid "Duplicate this item" +msgstr "تكرار هذا العنصر" + +#: includes/admin/admin-field-groups.php:686 +#: includes/admin/admin-field-groups.php:702 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate" +msgstr "تكرار" + +#: includes/admin/admin-field-groups.php:719 +#: includes/fields/class-acf-field-google-map.php:146 +#: includes/fields/class-acf-field-relationship.php:587 +msgid "Search" +msgstr "بحث" + +#: includes/admin/admin-field-groups.php:778 +#, php-format +msgid "Select %s" +msgstr "اختيار %s" + +#: includes/admin/admin-field-groups.php:786 +msgid "Synchronise field group" +msgstr "مزامنة مجموعة الحقول" + +#: includes/admin/admin-field-groups.php:786 +#: includes/admin/admin-field-groups.php:816 +msgid "Sync" +msgstr "مزامنة" + +#: includes/admin/admin-field-groups.php:798 +msgid "Apply" +msgstr "تطبيق" + +#: includes/admin/admin-field-groups.php:816 +msgid "Bulk Actions" +msgstr "اجراءات جماعية" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "أدوات" + +#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 +#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "ترقية قاعدة البيانات" + +#: includes/admin/admin-upgrade.php:199 +msgid "Review sites & upgrade" +msgstr "استعراض المواقع والترقية" + +#: includes/admin/admin.php:51 includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "الحقول المخصصة" + +#: includes/admin/admin.php:57 +msgid "Info" +msgstr "معلومات" + +#: includes/admin/admin.php:125 +msgid "What's New" +msgstr "ما الجديد" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "تصدير مجموعات الحقول" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "توليد PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "لم يتم تحديد مجموعات الحقول" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "تم تصدير مجموعة حقول واحدة." +msgstr[1] "تم تصدير مجموعة حقول واحدة" +msgstr[2] "تم تصدير مجموعتي حقول" +msgstr[3] "تم تصدير %s مجموعات حقول" +msgstr[4] "تم تصدير %s مجموعات حقول" +msgstr[5] "تم تصدير %s مجموعات حقول" + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "حدد مجموعات الحقول" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"حدد مجموعات الحقول التي ترغب في تصديرها ومن ثم حدد طريقة التصدير. استخدام زر " +"التحميل للتصدير إلى ملف .json الذي يمكنك من ثم استيراده إلى تثبيت ACF آخر. " +"استخدم زر التوليد للتصدير بصيغة PHP الذي يمكنك ادراجه في القالب الخاص بك." + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "تصدير الملف" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"يمكن استخدام الكود التالي لتسجيل نسخة محلية من مجموعة الحقول المحددة. مجموعة " +"الحقول المحلية يمكن أن توفر العديد من المزايا مثل التحميل بشكل أسرع، والتحكم " +"في الإصدار والإعدادات والحقول الديناميكية. ببساطة أنسخ وألصق الكود التالي " +"إلى ملف functions.php بالقالب الخاص بك أو إدراجه ضمن ملف خارجي." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "نسخ إلى الحافظة" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "تم النسخ" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "استيراد مجموعات الحقول" + +#: includes/admin/tools/class-acf-admin-tool-import.php:47 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"حدد ملف JSON الذي ترغب في استيراده. عند النقر على زر استيراد أدناه، ACF " +"ستقوم باستيراد مجموعات الحقول." + +#: includes/admin/tools/class-acf-admin-tool-import.php:52 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "إختر ملف" + +#: includes/admin/tools/class-acf-admin-tool-import.php:62 +msgid "Import File" +msgstr "استيراد ملف" + +#: includes/admin/tools/class-acf-admin-tool-import.php:85 +#: includes/fields/class-acf-field-file.php:169 +msgid "No file selected" +msgstr "لم يتم إختيار ملف" + +#: includes/admin/tools/class-acf-admin-tool-import.php:93 +msgid "Error uploading file. Please try again" +msgstr "خطأ في تحميل الملف . حاول مرة أخرى" + +#: includes/admin/tools/class-acf-admin-tool-import.php:98 +msgid "Incorrect file type" +msgstr "نوع الملف غير صحيح" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Import file empty" +msgstr "الملف المستورد فارغ" + +#: includes/admin/tools/class-acf-admin-tool-import.php:138 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "تم استيراد مجموعة حقول واحدة" +msgstr[1] "تم استيراد مجموعة حقول واحدة" +msgstr[2] "تم استيراد مجموعتي حقول" +msgstr[3] "تم استيراد %s مجموعات حقول" +msgstr[4] "تم استيراد %s مجموعات حقول" +msgstr[5] "تم استيراد %s مجموعات حقول" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "المنطق الشرطي" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "إظهار هذا الحقل إذا" + +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:86 +msgid "and" +msgstr "و" + +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "إضافة مجموعة قاعدة" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:410 +#: pro/fields/class-acf-field-repeater.php:299 +msgid "Drag to reorder" +msgstr "اسحب لإعادة الترتيب" + +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "تحرير الحقل" + +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-image.php:132 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:337 +msgid "Edit" +msgstr "تحرير" + +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "تكرار الحقل" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "نقل الحقل إلى مجموعة أخرى" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "نقل" + +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "حذف الحقل" + +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete" +msgstr "حذف" + +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "تسمية الحقل" + +#: includes/admin/views/field-group-field.php:66 +msgid "This is the name which will appear on the EDIT page" +msgstr "هذا هو الاسم الذي سيظهر في صفحة التحرير" + +#: includes/admin/views/field-group-field.php:75 +msgid "Field Name" +msgstr "اسم الحقل" + +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "كلمة واحدة، بدون مسافات. مسموح بالشرطات والشرطات السفلية" + +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "نوع الحقل" + +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "التعليمات" + +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "تعليمات للمؤلفين. سيظهر عند إرسال البيانات" + +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "مطلوب؟" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "سمات المجمع" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "العرض" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "class (الفئة)" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id (المعرف)" + +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "أغلق الحقل" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "ترتيب" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:433 +#: pro/fields/class-acf-field-flexible-content.php:582 +msgid "Label" +msgstr "تسمية" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:936 +#: pro/fields/class-acf-field-flexible-content.php:596 +msgid "Name" +msgstr "الاسم" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "المفتاح" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "النوع" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "لا توجد حقول. انقر على زر + إضافة حقل لإنشاء أول حقل." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ اضف حقل" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "القواعد" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "نمط" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "قياسي (WP metabox)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "سلس (بدون metabox)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "الموضع" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "عالي (بعد العنوان)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "عادي (بعد المحتوى)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "الجانب" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "تعيين مكان التسمية" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "محاذاة إلى الأعلى" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "محاذاة لليسار" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "تعيين مكان التعليمات" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "أسفل التسميات" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "بعد الحقول" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "رقم الترتيب." + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "مجموعات الحقول ذات الترتيب الأدنى ستظهر أولا" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "اظهار في قائمة مجموعة الحقول" + +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "الرابط الدائم" + +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "محرر المحتوى" + +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "مختصر الموضوع" + +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "النقاش" + +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "التعليقات" + +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "المراجعة" + +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "الاسم اللطيف" + +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "الكاتب" + +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "الشكل" + +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "سمات الصفحة" + +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Featured Image" +msgstr "صورة بارزة" + +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "التصنيفات" + +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "الوسوم" + +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "إرسال Trackbacks" + +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "إخفاء على الشاشة" + +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "تحديد العناصر لإخفائها من شاشة التحرير." + +#: includes/admin/views/field-group-options.php:129 +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/html-admin-page-upgrade-network.php:26 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"تتطلب المواقع التالية ترقية قاعدة البيانات. تحقق من تلك التي تحتاج إلى " +"ترقيتها ومن ثم انقر على %s." + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "ترقية المواقع" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "الموقع" + +#: includes/admin/views/html-admin-page-upgrade-network.php:74 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "يتطلب الموقع ترقية قاعدة البيانات من %s إلى %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:76 +msgid "Site is up to date" +msgstr "الموقع محدث" + +#: includes/admin/views/html-admin-page-upgrade-network.php:93 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"تمت ترقية قاعدة البيانات. العودة إلى لوحة معلومات الشبكة" + +#: includes/admin/views/html-admin-page-upgrade-network.php:113 +msgid "Please select at least one site to upgrade." +msgstr "يرجى تحديد موقع واحد على الأقل للترقية." + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +#: includes/admin/views/html-notice-upgrade.php:38 +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/html-admin-page-upgrade-network.php:144 +#: includes/admin/views/html-admin-page-upgrade.php:31 +#, php-format +msgid "Upgrading data to version %s" +msgstr "ترقية البيانات إلى الإصدار %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:158 +msgid "Upgrade complete." +msgstr "اكتملت عملية الترقية." + +#: includes/admin/views/html-admin-page-upgrade-network.php:161 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "فشلت الترقية." + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "قراءة مهام الترقية..." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, php-format +msgid "Database upgrade complete. See what's new" +msgstr "تمت ترقية قاعدة البيانات. اطلع على الجديد" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:32 +msgid "No updates available." +msgstr "لا توجد تحديثات متوفرة." + +#: includes/admin/views/html-admin-tools.php:21 +msgid "Back to all tools" +msgstr "العودة إلى جميع الأدوات" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "إظهار هذه المجموعة إذا" + +#: includes/admin/views/html-notice-upgrade.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "المكرر" + +#: includes/admin/views/html-notice-upgrade.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "المحتوى المرن" + +#: includes/admin/views/html-notice-upgrade.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "الالبوم" + +#: includes/admin/views/html-notice-upgrade.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "خيارات الصفحة" + +#: includes/admin/views/html-notice-upgrade.php:21 +msgid "Database Upgrade Required" +msgstr "ترقية قاعدة البيانات مطلوبة" + +#: includes/admin/views/html-notice-upgrade.php:22 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "شكرا لك على تحديث %s إلى الإصدار %s!" + +#: includes/admin/views/html-notice-upgrade.php:22 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "يحتوي هذا الإصدار على تحسينات لقاعدة البيانات الخاصة بك ويتطلب ترقية." + +#: includes/admin/views/html-notice-upgrade.php:24 +#, php-format +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "يرجى أيضا التأكد من تحديث أي إضافات مدفوعة (%s) أولا إلى أحدث إصدار." + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "مرحبا بك في الحقول المخصصة المتقدمة" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"شكرا لك للتحديث! ACF %s أكبر وأفضل من أي وقت مضى. نأمل أن تنال إعجابكم." + +#: includes/admin/views/settings-info.php:15 +msgid "A Smoother Experience" +msgstr "تجربة أكثر سلاسة" + +#: includes/admin/views/settings-info.php:18 +msgid "Improved Usability" +msgstr "تحسين قابلية الاستخدام" + +#: includes/admin/views/settings-info.php:19 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"دمج مكتبة Select2 حسن قابلية الاستخدام والسرعة عبر عدد من أنواع الحقول بما " +"في ذلك موضوع المنشور، رابط الصفحة، التصنيف والتحديد." + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Design" +msgstr "تصميم محسّن" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"شهدت العديد من الحقول تحديث مرئي جعل ACF تبدو أفضل من أي وقت مضى! تلاحظ " +"التغييرات في المعرض، العلاقة وحقول oEmbed (جديد)!" + +#: includes/admin/views/settings-info.php:26 +msgid "Improved Data" +msgstr "بيانات محسّنة" + +#: includes/admin/views/settings-info.php:27 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"إعادة تصميم هيكل البيانات سمحت للحقول الفرعية للعمل بشكل مستقل عن الحقول " +"الأصلية. هذا يسمح لك بسحب وافلات الحقول داخل وخارج الحقول الأصلية!" + +#: includes/admin/views/settings-info.php:35 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "وداعا للوظائف الإضافية. مرحبا برو" + +#: includes/admin/views/settings-info.php:38 +msgid "Introducing ACF PRO" +msgstr "نقدم ACF برو" + +#: includes/admin/views/settings-info.php:39 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "نحن نغير الطريقة التي يتم بها تقديم الأداء المتميز بطريقة مثيرة!" + +#: includes/admin/views/settings-info.php:40 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"تم دمج الإضافات المدفوعة الأربعة في النسخة الإحترافية من ACF. مع توفير رخص شخصية واخرى للمطورين، لتصبح الوظائف المميزة بأسعار معقولة " +"ويمكن الوصول إليها أكثر من أي وقت مضى!" + +#: includes/admin/views/settings-info.php:44 +msgid "Powerful Features" +msgstr "ميزات قوية" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"يحتوي ACF PRO على ميزات قوية مثل البيانات القابلة للتكرار، والمحتوى المرن، " +"وحقل المعرض الجميل والقدرة على إنشاء صفحات خيارات إضافية للمشرفين!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "اقرأ المزيد حول ميزات ACF PRO." + +#: includes/admin/views/settings-info.php:50 +msgid "Easy Upgrading" +msgstr "ترقية سهلة" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"Upgrading to ACF PRO is easy. Simply purchase a license online and download " +"the plugin!" +msgstr "" +"الترقية إلى ACF PRO سهلة. ببساطة اشتري ترخيص عبر الإنترنت وحمّل الإضافة!" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk." +msgstr "" +"نحن كتبنا أيضا دليل للتحديث للرد على أية أسئلة، ولكن إذا " +"كان إذا كان لديك اي سؤال، الرجاء الاتصال بفريق الدعم الخاص بنا عن طريق مكتب المساعدة." + +#: includes/admin/views/settings-info.php:61 +msgid "New Features" +msgstr "ميزات جديدة" + +#: includes/admin/views/settings-info.php:66 +msgid "Link Field" +msgstr "حقل الارتباط" + +#: includes/admin/views/settings-info.php:67 +msgid "" +"The Link field provides a simple way to select or define a link (url, title, " +"target)." +msgstr "" +"يوفر حقل الارتباط طريقة بسيطة لتحديد او تعريف رابط (عنوان url ، العنوان ، " +"الهدف)." + +#: includes/admin/views/settings-info.php:71 +msgid "Group Field" +msgstr "حقل المجموعة" + +#: includes/admin/views/settings-info.php:72 +msgid "The Group field provides a simple way to create a group of fields." +msgstr "يوفر حقل المجموعة طريقة بسيطة لإنشاء مجموعة من الحقول." + +#: includes/admin/views/settings-info.php:76 +msgid "oEmbed Field" +msgstr "حقل تضمين oEmbed" + +#: includes/admin/views/settings-info.php:77 +msgid "" +"The oEmbed field allows an easy way to embed videos, images, tweets, audio, " +"and other content." +msgstr "" +"يتيح حقل oEmbed طريقة سهلة لتضمين مقاطع الفيديو والصور والتغريدات والصوت " +"والمحتويات الأخرى." + +#: includes/admin/views/settings-info.php:81 +msgid "Clone Field" +msgstr "حقل التكرار" + +#: includes/admin/views/settings-info.php:82 +msgid "The clone field allows you to select and display existing fields." +msgstr "يسمح لك حقل التكرار تحديد الحقول الموجودة وعرضها." + +#: includes/admin/views/settings-info.php:86 +msgid "More AJAX" +msgstr "اجاكس أكثر" + +#: includes/admin/views/settings-info.php:87 +msgid "More fields use AJAX powered search to speed up page loading." +msgstr "حقول اكثر تستخدم بحث أجاكس لتسريع تحميل الصفحة." + +#: includes/admin/views/settings-info.php:91 +msgid "Local JSON" +msgstr "JSON محلي" + +#: includes/admin/views/settings-info.php:92 +msgid "" +"New auto export to JSON feature improves speed and allows for syncronisation." +msgstr "" +"يعمل التصدير التلقائي الجديد إلى JSON على تحسين السرعة ويسمح بالمزامنة." + +#: includes/admin/views/settings-info.php:96 +msgid "Easy Import / Export" +msgstr "سهولة الاستيراد / التصدير" + +#: includes/admin/views/settings-info.php:97 +msgid "Both import and export can easily be done through a new tools page." +msgstr "يمكن إجراء الاستيراد والتصدير بسهولة من خلال صفحة الأدوات الجديدة." + +#: includes/admin/views/settings-info.php:101 +msgid "New Form Locations" +msgstr "نموذج جديد للمواقع" + +#: includes/admin/views/settings-info.php:102 +msgid "" +"Fields can now be mapped to menus, menu items, comments, widgets and all " +"user forms!" +msgstr "" +"يمكن الآن تعيين الحقول للقوائم وعناصر القائمة والتعليقات والودجات وجميع " +"نماذج المستخدم!" + +#: includes/admin/views/settings-info.php:106 +msgid "More Customization" +msgstr "المزيد من التخصيص" + +#: includes/admin/views/settings-info.php:107 +msgid "" +"New PHP (and JS) actions and filters have been added to allow for more " +"customization." +msgstr "تمت إضافة إجراءات وفلاتر PHP (و JS) جديدة للسماح بمزيد من التخصيص." + +#: includes/admin/views/settings-info.php:111 +msgid "Fresh UI" +msgstr "واجهة مستخدم جديدة" + +#: includes/admin/views/settings-info.php:112 +msgid "" +"The entire plugin has had a design refresh including new field types, " +"settings and design!" +msgstr "" +"تحتوي الإضافة على تحديث كامل للتصميم بما في ذلك أنواع حقول جديدة والإعدادات " +"والتصميم!" + +#: includes/admin/views/settings-info.php:116 +msgid "New Settings" +msgstr "إعدادات جديدة" + +#: includes/admin/views/settings-info.php:117 +msgid "" +"Field group settings have been added for Active, Label Placement, " +"Instructions Placement and Description." +msgstr "" +"تمت إضافة إعدادات مجموعة الحقول للتنشيط و تعيين مكان التسمية و تعيين مكان " +"التعليمات والوصف." + +#: includes/admin/views/settings-info.php:121 +msgid "Better Front End Forms" +msgstr "نماذج افضل" + +#: includes/admin/views/settings-info.php:122 +msgid "" +"acf_form() can now create a new post on submission with lots of new settings." +msgstr "" +"يمكن الآن لـ acf_form() إنشاء مشاركة جديدة عند الإرسال مع الكثير من " +"الإعدادات الجديدة." + +#: includes/admin/views/settings-info.php:126 +msgid "Better Validation" +msgstr "تحقق افضل" + +#: includes/admin/views/settings-info.php:127 +msgid "Form validation is now done via PHP + AJAX in favour of only JS." +msgstr "" +"يتم الآن التحقق من صحة النموذج عن طريق PHP + AJAX بدلا من جافا سكريبت فقط." + +#: includes/admin/views/settings-info.php:131 +msgid "Moving Fields" +msgstr "نقل الحقول" + +#: includes/admin/views/settings-info.php:132 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents." +msgstr "يمكن الان نقل الحقل بين المجموعات و المجموعات الأصلية." + +#: includes/admin/views/settings-info.php:143 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "نعتقد أنك ستحب هذه التغييرات في %s." + +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "غير صالح" + +#: includes/api/api-helpers.php:827 +msgid "Thumbnail" +msgstr "الصورة المصغرة" + +#: includes/api/api-helpers.php:828 +msgid "Medium" +msgstr "متوسط" + +#: includes/api/api-helpers.php:829 +msgid "Large" +msgstr "كبير" + +#: includes/api/api-helpers.php:878 +msgid "Full Size" +msgstr "العرض الكامل" + +#: includes/api/api-helpers.php:1615 includes/api/api-term.php:147 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(بدون عنوان)" + +#: includes/api/api-helpers.php:3586 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "يجب أن يكون عرض الصورة على الأقل %dpx." + +#: includes/api/api-helpers.php:3591 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "يجب إلا يتجاوز عرض الصورة %dpx." + +#: includes/api/api-helpers.php:3607 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "يجب أن يكون ارتفاع الصورة على الأقل %dpx." + +#: includes/api/api-helpers.php:3612 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "يجب إلا يتجاوز ارتفاع الصورة %dpx." + +#: includes/api/api-helpers.php:3630 +#, php-format +msgid "File size must be at least %s." +msgstr "يجب إلا يقل حجم الملف عن %s." + +#: includes/api/api-helpers.php:3635 +#, php-format +msgid "File size must must not exceed %s." +msgstr "حجم الملف يجب يجب أن لا يتجاوز %s." + +#: includes/api/api-helpers.php:3669 +#, php-format +msgid "File type must be %s." +msgstr "يجب أن يكون نوع الملف %s." + +#: includes/assets.php:184 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "سيتم فقدان التغييرات التي أجريتها إذا غادرت هذه الصفحة" + +#: includes/assets.php:187 includes/fields/class-acf-field-select.php:259 +msgctxt "verb" +msgid "Select" +msgstr "اختار" + +#: includes/assets.php:188 +msgctxt "verb" +msgid "Edit" +msgstr "تحرير" + +#: includes/assets.php:189 +msgctxt "verb" +msgid "Update" +msgstr "تحديث" + +#: includes/assets.php:190 +msgid "Uploaded to this post" +msgstr "مرفوع الى هذه المقالة" + +#: includes/assets.php:191 +msgid "Expand Details" +msgstr "توسيع التفاصيل" + +#: includes/assets.php:192 +msgid "Collapse Details" +msgstr "طي التفاصيل" + +#: includes/assets.php:193 +msgid "Restricted" +msgstr "محظور" + +#: includes/assets.php:194 includes/fields/class-acf-field-image.php:66 +msgid "All images" +msgstr "جميع الصور" + +#: includes/assets.php:197 +msgid "Validation successful" +msgstr "عملية التحقق تمت بنجاح" + +#: includes/assets.php:198 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "فشل في عملية التحقق" + +#: includes/assets.php:199 +msgid "1 field requires attention" +msgstr "حقل واحد يتطلب الاهتمام" + +#: includes/assets.php:200 +#, php-format +msgid "%d fields require attention" +msgstr "%d حقول تتطلب الاهتمام" + +#: includes/assets.php:203 +msgid "Are you sure?" +msgstr "هل أنت متأكد؟" + +#: includes/assets.php:204 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "نعم" + +#: includes/assets.php:205 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "لا" + +#: includes/assets.php:206 includes/fields/class-acf-field-file.php:153 +#: includes/fields/class-acf-field-image.php:134 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:338 +#: pro/fields/class-acf-field-gallery.php:478 +msgid "Remove" +msgstr "ازالة" + +#: includes/assets.php:207 +msgid "Cancel" +msgstr "الغاء" + +#: includes/assets.php:210 +msgid "Has any value" +msgstr "له أي قيمة" + +#: includes/assets.php:211 +msgid "Has no value" +msgstr "ليس له قيمة" + +#: includes/assets.php:212 +msgid "Value is equal to" +msgstr "القيمة تساوي" + +#: includes/assets.php:213 +msgid "Value is not equal to" +msgstr "القيمة لا تساوي" + +#: includes/assets.php:214 +msgid "Value matches pattern" +msgstr "تتطابق القيمة مع النمط" + +#: includes/assets.php:215 +msgid "Value contains" +msgstr "تحتوي القيمة على" + +#: includes/assets.php:216 +msgid "Value is greater than" +msgstr "القيمة أكبر من" + +#: includes/assets.php:217 +msgid "Value is less than" +msgstr "القيمة أقل من" + +#: includes/assets.php:218 +msgid "Selection is greater than" +msgstr "التحديد أكبر من" + +#: includes/assets.php:219 +msgid "Selection is less than" +msgstr "التحديد أقل من" + +#: includes/assets.php:222 includes/forms/form-comment.php:166 +#: pro/admin/admin-options-page.php:325 +msgid "Edit field group" +msgstr "تحرير مجموعة الحقول" + +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "نوع الحقل غير موجود" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "غير معروف" + +#: includes/fields.php:349 +msgid "Basic" +msgstr "أساسية" + +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "المحتوى" + +#: includes/fields.php:351 +msgid "Choice" +msgstr "خيار" + +#: includes/fields.php:352 +msgid "Relational" +msgstr "ذو علاقة" + +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:553 +#: pro/fields/class-acf-field-flexible-content.php:602 +#: pro/fields/class-acf-field-repeater.php:448 +msgid "Layout" +msgstr "المخطط" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "الأكورديون" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "فتح" + +#: includes/fields/class-acf-field-accordion.php:100 +msgid "Display this accordion as open on page load." +msgstr "اعرض هذا الأكورديون على أنه مفتوح عند تحميل الصفحة." + +#: includes/fields/class-acf-field-accordion.php:109 +msgid "Multi-expand" +msgstr "توسع متعدد" + +#: includes/fields/class-acf-field-accordion.php:110 +msgid "Allow this accordion to open without closing others." +msgstr "اسمح بفتح الأكورديون دون إغلاق الآخرين." + +#: includes/fields/class-acf-field-accordion.php:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "نقطة النهاية" + +#: includes/fields/class-acf-field-accordion.php:120 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "حدد نقطة نهاية لإيقاف الأكورديون السابق. هذا الأكورديون لن يكون مرئيًا." + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "مجموعة ازرار" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "خيارات" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "أدخل كل خيار في سطر جديد." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "لمزيد من التحكم، يمكنك تحديد كل من القيمة والتسمية كما يلي:" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "أحمر : أحمر" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:382 +#: includes/fields/class-acf-field-taxonomy.php:781 +#: includes/fields/class-acf-field-user.php:63 +msgid "Allow Null?" +msgstr "السماح بالفارغ؟" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:155 +#: includes/fields/class-acf-field-select.php:373 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:381 +msgid "Default Value" +msgstr "قيمة إفتراضية" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:156 +#: includes/fields/class-acf-field-text.php:96 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Appears when creating a new post" +msgstr "يظهر عند إنشاء مقالة جديدة" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "أفقي" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "عمودي" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:214 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:826 +msgid "Return Value" +msgstr "القيمة المرجعة" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +msgid "Specify the returned value on front end" +msgstr "حدد القيمة التي سيتم إرجاعها في الواجهة الأمامية" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:432 +msgid "Value" +msgstr "القيمة" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:434 +msgid "Both (Array)" +msgstr "كلاهما (Array)" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:768 +msgid "Checkbox" +msgstr "مربع اختيار" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "تبديل الكل" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "إضافة اختيار جديد" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "اسمح بالتخصيص" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "السماح بإضافة قيم \"مخصصة\"" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "حفظ المخصص" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "حفظ القيم \"المخصصة\" لخيارات الحقل" + +#: includes/fields/class-acf-field-checkbox.php:381 +#: includes/fields/class-acf-field-select.php:374 +msgid "Enter each default value on a new line" +msgstr "ادخل كل قيمة افتراضية في سطر جديد" + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "تبديل" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "أضف مربع اختيار إضافي في البداية لتبديل جميع الخيارات" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "محدد اللون" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "مسح" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "الافتراضي" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "اختر اللون" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "اللون الحالي" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "عنصر إختيار التاريخ" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "تم" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "اليوم" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "التالي" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "السابق" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "اسبوع" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "تنسيق العرض" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "تنسيق العرض عند تحرير المقال" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "مخصص:" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "حفظ التنسيق" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "التنسيق المستخدم عند حفظ القيمة" + +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-image.php:195 +#: includes/fields/class-acf-field-post_object.php:431 +#: includes/fields/class-acf-field-relationship.php:628 +#: includes/fields/class-acf-field-select.php:427 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:79 +#: pro/fields/class-acf-field-gallery.php:557 +msgid "Return Format" +msgstr "التنسيق المسترجع" + +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "التنسيق المسترجع عن طريق وظائف القالب" + +#: includes/fields/class-acf-field-date_picker.php:227 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "يبدأ الأسبوع في" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "اختيار التاريخ والوقت" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "اختر الوقت" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "الوقت" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "الساعة" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "الدقيقة" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "الثانية" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "ميلي ثانية" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "ميكرو ثانية" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "المنطقة الزمنية" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "الان" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "تم" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "اختر" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "صباحا" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "ص" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "مساء" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "م" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "البريد الإلكتروني" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:104 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "نص الـ placeholder" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:105 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "سيظهر داخل مربع الإدخال" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:194 +#: includes/fields/class-acf-field-text.php:113 +msgid "Prepend" +msgstr "بادئة" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:195 +#: includes/fields/class-acf-field-text.php:114 +msgid "Appears before the input" +msgstr "يظهر قبل الإدخال" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:203 +#: includes/fields/class-acf-field-text.php:122 +msgid "Append" +msgstr "لاحقة" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:204 +#: includes/fields/class-acf-field-text.php:123 +msgid "Appears after the input" +msgstr "يظهر بعد الإدخال" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "ملف" + +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "تعديل الملف" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "تحديث الملف" + +#: includes/fields/class-acf-field-file.php:141 +msgid "File name" +msgstr "إسم الملف" + +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:247 +#: includes/fields/class-acf-field-file.php:258 +#: includes/fields/class-acf-field-image.php:255 +#: includes/fields/class-acf-field-image.php:284 +#: pro/fields/class-acf-field-gallery.php:642 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "File size" +msgstr "حجم الملف" + +#: includes/fields/class-acf-field-file.php:169 +msgid "Add File" +msgstr "إضافة ملف" + +#: includes/fields/class-acf-field-file.php:220 +msgid "File Array" +msgstr "مصفوفة الملف" + +#: includes/fields/class-acf-field-file.php:221 +msgid "File URL" +msgstr "رابط الملف URL" + +#: includes/fields/class-acf-field-file.php:222 +msgid "File ID" +msgstr "معرف الملف" + +#: includes/fields/class-acf-field-file.php:229 +#: includes/fields/class-acf-field-image.php:220 +#: pro/fields/class-acf-field-gallery.php:592 +msgid "Library" +msgstr "المكتبة" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:221 +#: pro/fields/class-acf-field-gallery.php:593 +msgid "Limit the media library choice" +msgstr "الحد من اختيار مكتبة الوسائط" + +#: includes/fields/class-acf-field-file.php:235 +#: includes/fields/class-acf-field-image.php:226 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:72 +#: includes/locations/class-acf-location-user-role.php:88 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:598 +#: pro/locations/class-acf-location-block.php:79 +msgid "All" +msgstr "الكل" + +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:227 +#: pro/fields/class-acf-field-gallery.php:599 +msgid "Uploaded to post" +msgstr "مرفوع الى المقالة" + +#: includes/fields/class-acf-field-file.php:243 +#: includes/fields/class-acf-field-image.php:234 +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Minimum" +msgstr "الحد الأدنى" + +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-file.php:255 +msgid "Restrict which files can be uploaded" +msgstr "تقييد الملفات التي يمكن رفعها" + +#: includes/fields/class-acf-field-file.php:254 +#: includes/fields/class-acf-field-image.php:263 +#: pro/fields/class-acf-field-gallery.php:650 +msgid "Maximum" +msgstr "الحد الأقصى" + +#: includes/fields/class-acf-field-file.php:265 +#: includes/fields/class-acf-field-image.php:292 +#: pro/fields/class-acf-field-gallery.php:678 +msgid "Allowed file types" +msgstr "أنواع الملفات المسموح بها" + +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:293 +#: pro/fields/class-acf-field-gallery.php:679 +msgid "Comma separated list. Leave blank for all types" +msgstr "قائمة مفصولة بفواصل. اترك المساحة فارغة للسماح بالكل" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "خرائط جوجل" + +#: includes/fields/class-acf-field-google-map.php:59 +msgid "Sorry, this browser does not support geolocation" +msgstr "عذراً، هذا المتصفح لا يدعم تحديد الموقع الجغرافي" + +#: includes/fields/class-acf-field-google-map.php:147 +msgid "Clear location" +msgstr "مسح الموقع" + +#: includes/fields/class-acf-field-google-map.php:148 +msgid "Find current location" +msgstr "البحث عن الموقع الحالي" + +#: includes/fields/class-acf-field-google-map.php:151 +msgid "Search for address..." +msgstr "البحث عن عنوان..." + +#: includes/fields/class-acf-field-google-map.php:181 +#: includes/fields/class-acf-field-google-map.php:192 +msgid "Center" +msgstr "منتصف" + +#: includes/fields/class-acf-field-google-map.php:182 +#: includes/fields/class-acf-field-google-map.php:193 +msgid "Center the initial map" +msgstr "مركز الخريطة الأولي" + +#: includes/fields/class-acf-field-google-map.php:204 +msgid "Zoom" +msgstr "تكبير" + +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Set the initial zoom level" +msgstr "ضبط مستوى التكبير" + +#: includes/fields/class-acf-field-google-map.php:214 +#: includes/fields/class-acf-field-image.php:246 +#: includes/fields/class-acf-field-image.php:275 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:633 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Height" +msgstr "الإرتفاع" + +#: includes/fields/class-acf-field-google-map.php:215 +msgid "Customize the map height" +msgstr "تخصيص ارتفاع الخريطة" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "مجموعة" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:384 +msgid "Sub Fields" +msgstr "الحقول الفرعية" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "حدد النمط المستخدم لعرض الحقول المحددة" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:613 +#: pro/fields/class-acf-field-repeater.php:456 +#: pro/locations/class-acf-location-block.php:27 +msgid "Block" +msgstr "كتلة" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:612 +#: pro/fields/class-acf-field-repeater.php:455 +msgid "Table" +msgstr "جدول" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:614 +#: pro/fields/class-acf-field-repeater.php:457 +msgid "Row" +msgstr "صف" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "صورة" + +#: includes/fields/class-acf-field-image.php:63 +msgid "Select Image" +msgstr "إختر صورة" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Edit Image" +msgstr "تحرير الصورة" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Update Image" +msgstr "تحديث الصورة" + +#: includes/fields/class-acf-field-image.php:149 +msgid "No image selected" +msgstr "لم يتم اختيار صورة" + +#: includes/fields/class-acf-field-image.php:149 +msgid "Add Image" +msgstr "اضافة صورة" + +#: includes/fields/class-acf-field-image.php:201 +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Image Array" +msgstr "مصفوفة الصور" + +#: includes/fields/class-acf-field-image.php:202 +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Image URL" +msgstr "رابط الصورة" + +#: includes/fields/class-acf-field-image.php:203 +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Image ID" +msgstr "معرف الصورة" + +#: includes/fields/class-acf-field-image.php:210 +#: pro/fields/class-acf-field-gallery.php:571 +msgid "Preview Size" +msgstr "حجم المعاينة" + +#: includes/fields/class-acf-field-image.php:235 +#: includes/fields/class-acf-field-image.php:264 +#: pro/fields/class-acf-field-gallery.php:622 +#: pro/fields/class-acf-field-gallery.php:651 +msgid "Restrict which images can be uploaded" +msgstr "تقييد الصور التي يمكن رفعها" + +#: includes/fields/class-acf-field-image.php:238 +#: includes/fields/class-acf-field-image.php:267 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:625 +#: pro/fields/class-acf-field-gallery.php:654 +msgid "Width" +msgstr "العرض" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "الرابط" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "إختر رابط" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "فتح في نافذة / علامة تبويب جديدة" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "مصفوفة الرابط" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "رابط URL" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "الرسالة" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "سطور جديدة" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "تحكم في طريقة عرض السطور الجديدة" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "إضافة الفقرات تلقائيا" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "اضف <br> تلقائياً." + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "بدون تنسيق" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "استبعاد كود HTML" + +#: 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-number.php:25 +msgid "Number" +msgstr "رقم" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:164 +msgid "Minimum Value" +msgstr "قيمة الحد الأدنى" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:174 +msgid "Maximum Value" +msgstr "قيمة الحد الأقصى" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:184 +msgid "Step Size" +msgstr "حجم الخطوة" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "يجب أن تكون القيمة رقماً" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "يجب أن تكون القيمة مساوية أو أكبر من %d" + +#: includes/fields/class-acf-field-number.php:245 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "يجب أن تكون القيمة مساوية أو أقل من %d" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "قم بإدخال عنوان URL" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "حجم المضمن" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "رابط الصفحة" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "الأرشيفات" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:267 +#: includes/fields/class-acf-field-taxonomy.php:958 +msgid "Parent" +msgstr "الأب" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:383 +#: includes/fields/class-acf-field-relationship.php:554 +msgid "Filter by Post Type" +msgstr "فرز حسب نوع المقالة" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:391 +#: includes/fields/class-acf-field-relationship.php:562 +msgid "All post types" +msgstr "كافة أنواع المقالات" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:397 +#: includes/fields/class-acf-field-relationship.php:568 +msgid "Filter by Taxonomy" +msgstr "تصفية حسب التصنيف" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:405 +#: includes/fields/class-acf-field-relationship.php:576 +msgid "All taxonomies" +msgstr "كافة التصنيفات" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "السماح بالعناوين المؤرشفة" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-user.php:71 +msgid "Select multiple values?" +msgstr "تحديد قيم متعددة؟" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "كلمة السر" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:436 +#: includes/fields/class-acf-field-relationship.php:633 +msgid "Post Object" +msgstr "Post Object" + +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:634 +msgid "Post ID" +msgstr "معرف المقال" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "زر الراديو" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "أخرى" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "إضافة خيار 'آخر' للسماح بقيم مخصصة" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "حفظ الأخرى" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "حفظ القيم الأخرى لخيارات الحقل" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "نطاق" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "علاقة" + +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "وصلت إلى الحد الأقصى للقيم ( {max} قيمة )" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "تحميل" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "لم يتم العثور على مطابقات" + +#: includes/fields/class-acf-field-relationship.php:411 +msgid "Select post type" +msgstr "اختر نوع المقال" + +#: includes/fields/class-acf-field-relationship.php:420 +msgid "Select taxonomy" +msgstr "اختر التصنيف" + +#: includes/fields/class-acf-field-relationship.php:476 +msgid "Search..." +msgstr "بحث..." + +#: includes/fields/class-acf-field-relationship.php:582 +msgid "Filters" +msgstr "فرز" + +#: includes/fields/class-acf-field-relationship.php:588 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "نوع المقال" + +#: includes/fields/class-acf-field-relationship.php:589 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:751 +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy" +msgstr "التصنيف" + +#: includes/fields/class-acf-field-relationship.php:596 +msgid "Elements" +msgstr "العناصر" + +#: includes/fields/class-acf-field-relationship.php:597 +msgid "Selected elements will be displayed in each result" +msgstr "سيتم عرض العناصر المحددة في كل نتيجة" + +#: includes/fields/class-acf-field-relationship.php:608 +msgid "Minimum posts" +msgstr "الحد الأدنى للمقالات" + +#: includes/fields/class-acf-field-relationship.php:617 +msgid "Maximum posts" +msgstr "الحد الأقصى للمقالات" + +#: includes/fields/class-acf-field-relationship.php:721 +#: pro/fields/class-acf-field-gallery.php:779 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %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 تحديد" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:773 +msgctxt "noun" +msgid "Select" +msgstr "اختار" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "نتيجة واحدة متاحة، اضغط على زر الإدخال لتحديدها." + +#: includes/fields/class-acf-field-select.php:112 +#, php-format +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:113 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "لم يتم العثور على مطابقات" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "الرجاء إدخال حرف واحد أو أكثر" + +#: includes/fields/class-acf-field-select.php:115 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "الرجاء إدخال %d حرف أو أكثر" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "الرجاء حذف حرف واحد" + +#: includes/fields/class-acf-field-select.php:117 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "الرجاء حذف %d حرف" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "يمكنك تحديد عنصر واحد فقط" + +#: includes/fields/class-acf-field-select.php:119 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "يمكنك تحديد %d عنصر فقط" + +#: includes/fields/class-acf-field-select.php:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "تحميل نتائج أكثر…" + +#: includes/fields/class-acf-field-select.php:121 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "بحث …" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "عملية التحميل فشلت" + +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "واجهة المستخدم الأنيقة" + +#: includes/fields/class-acf-field-select.php:412 +msgid "Use AJAX to lazy load choices?" +msgstr "استخدام AJAX لخيارات التحميل الكسول؟" + +#: includes/fields/class-acf-field-select.php:428 +msgid "Specify the value returned" +msgstr "حدد القيمة التي سيتم إرجاعها" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "فاصل" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "تبويب" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "الموضع" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"حدد نقطة نهاية لإيقاف علامات التبويب السابقة. سيؤدي هذا إلى بدء مجموعة جديدة " +"من علامات التبويب." + +#: includes/fields/class-acf-field-taxonomy.php:711 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "لا %s" + +#: includes/fields/class-acf-field-taxonomy.php:752 +msgid "Select the taxonomy to be displayed" +msgstr "حدد التصنيف الذي سيتم عرضه" + +#: includes/fields/class-acf-field-taxonomy.php:761 +msgid "Appearance" +msgstr "المظهر" + +#: includes/fields/class-acf-field-taxonomy.php:762 +msgid "Select the appearance of this field" +msgstr "حدد مظهر هذا الحقل" + +#: includes/fields/class-acf-field-taxonomy.php:767 +msgid "Multiple Values" +msgstr "قيم متعددة" + +#: includes/fields/class-acf-field-taxonomy.php:769 +msgid "Multi Select" +msgstr "متعددة الاختيار" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Single Value" +msgstr "قيمة مفردة" + +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Radio Buttons" +msgstr "ازرار الراديو" + +#: includes/fields/class-acf-field-taxonomy.php:796 +msgid "Create Terms" +msgstr "إنشاء شروط" + +#: includes/fields/class-acf-field-taxonomy.php:797 +msgid "Allow new terms to be created whilst editing" +msgstr "السماح بإنشاء شروط جديدة أثناء التحرير" + +#: includes/fields/class-acf-field-taxonomy.php:806 +msgid "Save Terms" +msgstr "حفظ الشروط" + +#: includes/fields/class-acf-field-taxonomy.php:807 +msgid "Connect selected terms to the post" +msgstr "وصل الشروط المحددة بالمقالة" + +#: includes/fields/class-acf-field-taxonomy.php:816 +msgid "Load Terms" +msgstr "تحميل الشروط" + +#: includes/fields/class-acf-field-taxonomy.php:817 +msgid "Load value from posts terms" +msgstr "تحميل قيمة من شروط المقالة" + +#: includes/fields/class-acf-field-taxonomy.php:831 +msgid "Term Object" +msgstr "Term Object" + +#: includes/fields/class-acf-field-taxonomy.php:832 +msgid "Term ID" +msgstr "Term ID" + +#: includes/fields/class-acf-field-taxonomy.php:882 +#, php-format +msgid "User unable to add new %s" +msgstr "المستخدم غير قادر على إضافة %s جديد" + +#: includes/fields/class-acf-field-taxonomy.php:892 +#, php-format +msgid "%s already exists" +msgstr "%s موجود بالفعل" + +#: includes/fields/class-acf-field-taxonomy.php:924 +#, php-format +msgid "%s added" +msgstr "تمت اضافة %s" + +#: includes/fields/class-acf-field-taxonomy.php:970 +#: includes/locations/class-acf-location-user-form.php:73 +msgid "Add" +msgstr "إضافة" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "نص" + +#: includes/fields/class-acf-field-text.php:131 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "الحد الأقصى للحروف" + +#: includes/fields/class-acf-field-text.php:132 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "اتركه فارغا لبدون حد" + +#: includes/fields/class-acf-field-text.php:157 +#: includes/fields/class-acf-field-textarea.php:213 +#, php-format +msgid "Value must not exceed %d characters" +msgstr "الحد الأقصى للقيمة %d حرف" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "مربع نص" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "صفوف" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "تعيين ارتفاع مربع النص" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "عنصر إختيار الوقت" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "صح / خطأ" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "عرض النص بجانب مربع الاختيار" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "النص اثناء التفعيل" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "النص المعروض عند التنشيط" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "النص اثناء عدم التفعيل" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "النص المعروض عند عدم النشاط" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "الرابط" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "القيمة يجب أن تكون عنوان رابط صحيح" + +#: includes/fields/class-acf-field-user.php:20 includes/locations.php:95 +msgid "User" +msgstr "المستخدم" + +#: includes/fields/class-acf-field-user.php:51 +msgid "Filter by role" +msgstr "فرز بحسب الدور" + +#: includes/fields/class-acf-field-user.php:59 +msgid "All user roles" +msgstr "جميع رتب المستخدم" + +#: includes/fields/class-acf-field-user.php:84 +msgid "User Array" +msgstr "مصفوفة المستخدم" + +#: includes/fields/class-acf-field-user.php:85 +msgid "User Object" +msgstr "User Object" + +#: includes/fields/class-acf-field-user.php:86 +msgid "User ID" +msgstr "معرف المستخدم" + +#: includes/fields/class-acf-field-user.php:334 +msgid "Error loading field." +msgstr "خطأ في تحميل الحقل." + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "محرر Wysiwyg" + +#: includes/fields/class-acf-field-wysiwyg.php:330 +msgid "Visual" +msgstr "مرئي" + +#: includes/fields/class-acf-field-wysiwyg.php:331 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "نص" + +#: includes/fields/class-acf-field-wysiwyg.php:337 +msgid "Click to initialize TinyMCE" +msgstr "انقر لبدء تهيئة TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Tabs" +msgstr "علامات التبويب" + +#: includes/fields/class-acf-field-wysiwyg.php:395 +msgid "Visual & Text" +msgstr "نص و مرئي" + +#: includes/fields/class-acf-field-wysiwyg.php:396 +msgid "Visual Only" +msgstr "المرئي فقط" + +#: includes/fields/class-acf-field-wysiwyg.php:397 +msgid "Text Only" +msgstr "النص فقط" + +#: includes/fields/class-acf-field-wysiwyg.php:404 +msgid "Toolbar" +msgstr "شريط الأدوات" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Show Media Upload Buttons?" +msgstr "اظهار زر إضافة ملفات الوسائط؟" + +#: includes/fields/class-acf-field-wysiwyg.php:429 +msgid "Delay initialization?" +msgstr "تأخير التهيئة؟" + +#: includes/fields/class-acf-field-wysiwyg.php:430 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "لن يتم تهيئة TinyMCE حتى يتم النقر فوق الحقل" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "التحقق من البريد الإليكتروني" + +#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 +#: pro/options-page.php:81 +msgid "Update" +msgstr "تحديث" + +#: includes/forms/form-front.php:105 +msgid "Post updated" +msgstr "تم تحديث المنشور " + +#: includes/forms/form-front.php:231 +msgid "Spam Detected" +msgstr "تم الكشف عن البريد المزعج" + +#: includes/forms/form-user.php:336 +#, php-format +msgid "ERROR: %s" +msgstr "خطأ: %s" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "مقالة" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "صفحة" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "نماذج" + +#: includes/locations.php:243 +msgid "is equal to" +msgstr "يساوي" + +#: includes/locations.php:244 +msgid "is not equal to" +msgstr "لا يساوي" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "مرفقات" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "كل صيغ %s" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "تعليق" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "رتبة المستخدم الحالي" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "مدير" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "المستخدم الحالي" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "مسجل الدخول" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "عرض الواجهة الأمامية" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "عرض الواجهة الخلفية" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "عنصر القائمة" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "القائمة" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "مواقع القائمة" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "القوائم" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "أب الصفحة" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "قالب الصفحة" + +#: includes/locations/class-acf-location-page-template.php:87 +#: includes/locations/class-acf-location-post-template.php:134 +msgid "Default Template" +msgstr "قالب افتراضي" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "نوع الصفحة" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Front Page" +msgstr "الصفحة الرئسية" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Posts Page" +msgstr "صفحة المقالات" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Top Level Page (no parent)" +msgstr "أعلى مستوى للصفحة (بدون أب)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Parent Page (has children)" +msgstr "صفحة أب (لديها فروع)" + +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Child Page (has parent)" +msgstr "صفحة فرعية (لديها أب)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "تصنيف المقالة" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "تنسيق المقالة" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "حالة المقالة" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "تصنيف المقالة" + +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "قالب المقالة" + +#: includes/locations/class-acf-location-user-form.php:22 +msgid "User Form" +msgstr "نموذج المستخدم" + +#: includes/locations/class-acf-location-user-form.php:74 +msgid "Add / Edit" +msgstr "إضافة / تعديل" + +#: includes/locations/class-acf-location-user-form.php:75 +msgid "Register" +msgstr "التسجيل" + +#: includes/locations/class-acf-location-user-role.php:22 +msgid "User Role" +msgstr "رتبة المستخدم" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "ودجت" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "قيمة %s مطلوبة" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "الحقول المخصصة المتقدمة للمحترفين" + +#: pro/admin/admin-options-page.php:198 +msgid "Publish" +msgstr "نشر" + +#: pro/admin/admin-options-page.php:204 +#, php-format +msgid "" +"No Custom Field Groups found for this options page. Create a " +"Custom Field Group" +msgstr "" +"لم يتم العثور على أية \"مجموعات حقول مخصصة لصفحة الخيارات هذة. أنشئ مجموعة حقول مخصصة" + +#: pro/admin/admin-updates.php:49 +msgid "Error. Could not connect to update server" +msgstr "خطأ. تعذر الاتصال بخادم التحديث" + +#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "تحديثات" + +#: pro/admin/admin-updates.php:191 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" +" خطأ . تعذرت مصادقة حزمة التحديث. يرجى التحقق مرة أخرى أو إلغاء " +"تنشيط وإعادة تنشيط ترخيص ACF PRO الخاص بك." + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "تعطيل الترخيص" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "تفعيل الترخيص" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "معلومات الترخيص" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +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:92 +msgid "Update Plugin" +msgstr "تحديث الاضافة" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "يرجى إدخال مفتاح الترخيص أعلاه لإلغاء تأمين التحديثات" + +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "تحقق مرة اخرى" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "إشعار الترقية" + +#: pro/blocks.php:36 +msgid "Block type name is required." +msgstr "اسم نوع الكتلة مطلوب." + +#: pro/blocks.php:43 +#, php-format +msgid "Block type \"%s\" is already registered." +msgstr "نوع الكتلة \"%s\" مسجل بالفعل." + +#: pro/blocks.php:393 +msgid "Switch to Edit" +msgstr "قم بالتبديل للتحرير" + +#: pro/blocks.php:394 +msgid "Switch to Preview" +msgstr "قم بالتبديل للمعاينة" + +#: pro/blocks.php:397 +#, php-format +msgid "%s settings" +msgstr "%s الإعدادات" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "تكرار" + +#: pro/fields/class-acf-field-clone.php:812 +msgid "Select one or more fields you wish to clone" +msgstr "حدد حقل واحد أو أكثر ترغب في تكراره" + +#: pro/fields/class-acf-field-clone.php:829 +msgid "Display" +msgstr "عرض" + +#: pro/fields/class-acf-field-clone.php:830 +msgid "Specify the style used to render the clone field" +msgstr "حدد النمط المستخدم لعرض حقل التكرار" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Group (displays selected fields in a group within this field)" +msgstr "المجموعة (تعرض الحقول المحددة في مجموعة ضمن هذا الحقل)" + +#: pro/fields/class-acf-field-clone.php:836 +msgid "Seamless (replaces this field with selected fields)" +msgstr "سلس (يستبدل هذا الحقل بالحقول المحددة)" + +#: pro/fields/class-acf-field-clone.php:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "سيتم عرض التسمية كـ %s" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "بادئة تسمية الحقول" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "سيتم حفظ القيم كـ %s" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "بادئة أسماء الحقول" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "حقل غير معروف" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "مجموعة حقول غير معروفة" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "جميع الحقول من مجموعة الحقول %s" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:468 +msgid "Add Row" +msgstr "إضافة صف" + +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:924 +#: pro/fields/class-acf-field-flexible-content.php:1006 +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:74 +msgid "layouts" +msgstr "التخطيطات" + +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:923 +#: pro/fields/class-acf-field-flexible-content.php:1005 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "يتطلب هذا الحقل على الأقل {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:78 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "يحتوي هذا الحقل حد {max} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} متاح (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} مطلوب (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:85 +msgid "Flexible Content requires at least 1 layout" +msgstr "يتطلب المحتوى المرن تخطيط واحد على الأقل" + +#: pro/fields/class-acf-field-flexible-content.php:287 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "انقر فوق الزر \"%s\" أدناه لبدء إنشاء التخطيط الخاص بك" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "إضافة مخطط جديد" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Remove layout" +msgstr "إزالة المخطط" + +#: pro/fields/class-acf-field-flexible-content.php:415 +#: pro/fields/class-acf-field-repeater.php:301 +msgid "Click to toggle" +msgstr "انقر للتبديل" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder Layout" +msgstr "إعادة ترتيب التخطيط" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder" +msgstr "إعادة ترتيب" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete Layout" +msgstr "حذف المخطط" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate Layout" +msgstr "تكرار التخطيط" + +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New Layout" +msgstr "إضافة مخطط جديد" + +#: pro/fields/class-acf-field-flexible-content.php:629 +msgid "Min" +msgstr "الحد الأدنى" + +#: pro/fields/class-acf-field-flexible-content.php:642 +msgid "Max" +msgstr "الحد أقصى" + +#: pro/fields/class-acf-field-flexible-content.php:669 +#: pro/fields/class-acf-field-repeater.php:464 +msgid "Button Label" +msgstr "تسمية الزر" + +#: pro/fields/class-acf-field-flexible-content.php:678 +msgid "Minimum Layouts" +msgstr "الحد الأدنى للتخطيطات" + +#: pro/fields/class-acf-field-flexible-content.php:687 +msgid "Maximum Layouts" +msgstr "الحد الأقصى للتخطيطات" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "اضافة صورة للمعرض" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "وصلت للحد الأقصى" + +#: pro/fields/class-acf-field-gallery.php:322 +msgid "Length" +msgstr "الطول" + +#: pro/fields/class-acf-field-gallery.php:362 +msgid "Caption" +msgstr "كلمات توضيحية" + +#: pro/fields/class-acf-field-gallery.php:371 +msgid "Alt Text" +msgstr "النص البديل" + +#: pro/fields/class-acf-field-gallery.php:487 +msgid "Add to gallery" +msgstr "اضافة الى المعرض" + +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Bulk actions" +msgstr "اجراءات جماعية" + +#: pro/fields/class-acf-field-gallery.php:492 +msgid "Sort by date uploaded" +msgstr "ترتيب حسب تاريخ الرفع" + +#: pro/fields/class-acf-field-gallery.php:493 +msgid "Sort by date modified" +msgstr "ترتيب حسب تاريخ التعديل" + +#: pro/fields/class-acf-field-gallery.php:494 +msgid "Sort by title" +msgstr "ترتيب حسب العنوان" + +#: pro/fields/class-acf-field-gallery.php:495 +msgid "Reverse current order" +msgstr "عكس الترتيب الحالي" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Close" +msgstr "إغلاق" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Insert" +msgstr "إدراج" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Specify where new attachments are added" +msgstr "حدد مكان إضافة المرفقات الجديدة" + +#: pro/fields/class-acf-field-gallery.php:585 +msgid "Append to the end" +msgstr "إلحاق بالنهاية" + +#: pro/fields/class-acf-field-gallery.php:586 +msgid "Prepend to the beginning" +msgstr "إلحاق بالبداية" + +#: pro/fields/class-acf-field-gallery.php:605 +msgid "Minimum Selection" +msgstr "الحد الأدنى للاختيار" + +#: pro/fields/class-acf-field-gallery.php:613 +msgid "Maximum Selection" +msgstr "الحد الأقصى للاختيار" + +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:661 +msgid "Minimum rows reached ({min} rows)" +msgstr "وصلت للحد الأدنى من الصفوف ({min} صف)" + +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "بلغت الحد الأقصى من الصفوف ({max} صف)" + +#: pro/fields/class-acf-field-repeater.php:338 +msgid "Add row" +msgstr "إضافة صف" + +#: pro/fields/class-acf-field-repeater.php:339 +msgid "Remove row" +msgstr "إزالة صف" + +#: pro/fields/class-acf-field-repeater.php:417 +msgid "Collapsed" +msgstr "طي" + +#: pro/fields/class-acf-field-repeater.php:418 +msgid "Select a sub field to show when row is collapsed" +msgstr "حدد حقل فرعي للإظهار عند طي الصف" + +#: pro/fields/class-acf-field-repeater.php:428 +msgid "Minimum Rows" +msgstr "الحد الأدنى من الصفوف" + +#: pro/fields/class-acf-field-repeater.php:438 +msgid "Maximum Rows" +msgstr "الحد الأقصى من الصفوف" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "لا توجد صفحة خيارات" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "خيارات" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "تم تحديث الإعدادات" + +#: pro/updates.php:97 +#, php-format +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 "" +"لتمكين التحديثات، الرجاء إدخال مفتاح الترخيص الخاص بك على صفحة التحديثات . إذا لم يكن لديك مفتاح ترخيص، يرجى الاطلاع على التفاصيل والتسعير." + +#: tests/basic/test-blocks.php:114 +msgid "Normal" +msgstr "طبيعي" + +#: tests/basic/test-blocks.php:115 +msgid "Fancy" +msgstr "فاخر" + +#. Plugin URI of the plugin/theme +#. Author URI of the plugin/theme +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "إليوت كوندون" + +#~ msgid "Parent fields" +#~ msgstr "الحقول الأصلية" + +#~ msgid "Sibling fields" +#~ msgstr "الحقول الفرعية" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "تم تكرار مجموعة الحقول. %s" +#~ msgstr[1] "تم تكرار مجموعة الحقول. %s" +#~ msgstr[2] "تم تكرار مجموعة الحقول. %s" +#~ msgstr[3] "تم تكرار مجموعة الحقول. %s" +#~ msgstr[4] "تم تكرار مجموعة الحقول. %s" +#~ msgstr[5] "تم تكرار مجموعة الحقول. %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "تمت مزامنة مجموعة الحقول. %s" +#~ msgstr[1] "تمت مزامنة مجموعة الحقول. %s" +#~ msgstr[2] "تمت مزامنة مجموعة الحقول. %s" +#~ msgstr[3] "تمت مزامنة مجموعة الحقول. %s" +#~ msgstr[4] "تمت مزامنة مجموعة الحقول. %s" +#~ msgstr[5] "تمت مزامنة مجموعة الحقول. %s" + +#~ msgid "Error validating request" +#~ msgstr "حدث خطأ أثناء التحقق من صحة الطلب" + +#~ msgid "Add-ons" +#~ msgstr "الإضافات" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "خطأ. لا يمكن تحميل قائمة الإضافات" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr " ترقية قاعدة بيانات الحقول المخصصة المتقدمة" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "قبل البدء باستخدام الميزات الجديدة، الرجاء تحديث قاعدة البيانات الخاصة بك " +#~ "إلى الإصدار الأحدث." + +#~ msgid "Download & Install" +#~ msgstr "تحميل وتثبيت" + +#~ msgid "Installed" +#~ msgstr "تم التثبيت" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "للمساعدة في جعل الترقية سهلة، سجل الدخول إلى حسابك في " +#~ "المتجر واحصل على نسخة مجانية من ACF PRO!" + +#~ msgid "Under the Hood" +#~ msgstr "تحت الغطاء" + +#~ msgid "Smarter field settings" +#~ msgstr "إعدادات حقول أكثر ذكاء" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF الآن يحفظ إعدادات الحقول كـ post object منفصل" + +#~ msgid "Better version control" +#~ msgstr "تحكم أفضل في الإصدارات" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "يسمح التصدير الاتوماتيكي الجديدة إلى JSON لإعدادات الحقول بأن تكون قابلة " +#~ "لتحكم الإصدارات" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "استبدال XML بـ JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "الاستيراد والتصدير الآن يستخدم JSON عوضا عن XML" + +#~ msgid "New Forms" +#~ msgstr "أشكال جديدة" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "تم إضافة حقل جديد لتضمين المحتوى" + +#~ msgid "New Gallery" +#~ msgstr "معرض صور جديد" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "شهد حقل المعرض عملية تغيير جذرية" + +#~ msgid "Relationship Field" +#~ msgstr "حقل العلاقة" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "إعداد جديد لحقل العلاقة خاص بالفلاتر (البحث، نوع المقالة، التصنيف)" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "مجموعة المحفوظات الجديدة في تحديد الحقل page_link" + +#~ msgid "Better Options Pages" +#~ msgstr "صفحات خيارات أفضل" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "مهام جديدة لصفحة الخيارات تسمح بإنشاء كل من صفحات القائمة الأصلية والفرعية" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "تصدير مجموعات الحقول لـ PHP" + +#~ msgid "Download export file" +#~ msgstr "تنزيل ملف التصدير" + +#~ msgid "Generate export code" +#~ msgstr "توليد كود التصدير" + +#~ msgid "Import" +#~ msgstr "استيراد" + +#~ msgid "Locating" +#~ msgstr "تحديد الموقع" + +#~ msgid "Shown when entering data" +#~ msgstr "تظهر عند إدخال البيانات" + +#~ msgid "Error." +#~ msgstr "خطأ." + +#~ msgid "No embed found for the given URL." +#~ msgstr "لم يتم العثور على تضمين لعنوان URL المحدد." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "تم الوصول الى الحد الأدنى من القيم ( {min} قيمة )" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "سيتم عرض حقل علامة التبويب بشكل غير صحيح عند إضافته إلى حقل مكرر بتنسيق " +#~ "جدول أو محتوى مرن" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "استخدم \"حقل علامة التبويب\" لتنظيم أفضل لشاشة التحرير الخاصة بك عن طريق " +#~ "تجميع الحقول معا." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "كافة الحقول بعد \"حقل علامة التبويب\" هذة (أو حتى إضافة \"حقل علامة تبويب " +#~ "آخر\") سوف يتم تجميعها معا باستخدام تسمية هذا الحقل كعنوان للتبويب." + +#~ msgid "None" +#~ msgstr "لا شيء" + +#~ msgid "Taxonomy Term" +#~ msgstr "شروط التصنيف" + +#~ msgid "remove {layout}?" +#~ msgstr "إزالة {layout}؟" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "يتطلب هذا الحقل على الأقل {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "تم الوصول إلى حد أقصى ({max} {identifier}) لـ {label}" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Disabled" +#~ msgstr "تعطيل" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "تعطيل (%s)" +#~ msgstr[1] "تعطيل (%s)" +#~ msgstr[2] "تعطيل (%s)" +#~ msgstr[3] "تعطيل (%s)" +#~ msgstr[4] "تعطيل (%s)" +#~ msgstr[5] "تعطيل (%s)" + +#~ msgid "See what's new in" +#~ msgstr "أنظر ما هو الجديد في" + +#~ msgid "version" +#~ msgstr "النسخة" + +#~ msgid "Getting Started" +#~ msgstr "بدء العمل" + +#~ msgid "Field Types" +#~ msgstr "أنواع بيانات الحقول" + +#~ msgid "Functions" +#~ msgstr "الدالات" + +#~ msgid "Actions" +#~ msgstr "الإجراءات" + +#~ msgid "'How to' guides" +#~ msgstr "'كيف' أدلة" + +#~ msgid "Tutorials" +#~ msgstr "الدروس التعليمية" + +#~ msgid "Created by" +#~ msgstr "أنشئ بواسطة" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "تم بنجاح أداة استيراد أضافت %s جماعات الحقل %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "تحذير. الكشف عن أداة استيراد مجموعة الحقول %s موجودة بالفعل، وتم " +#~ "تجاهل %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "ترقية ACF" + +#~ msgid "Upgrade" +#~ msgstr "ترقية" + +#~ msgid "Error" +#~ msgstr "خطأ" + +#~ msgid "Upgrading data to" +#~ msgstr "تحديث البيانات" + +#~ msgid "See what's new" +#~ msgstr "أنظر ما هو الجديد في" + +#~ msgid "Show a different month" +#~ msgstr "عرض شهر مختلف" + +#~ msgid "Return format" +#~ msgstr "إعادة تنسيق" + +#~ msgid "uploaded to this post" +#~ msgstr "اضافة للصفحة" + +#~ msgid "File Size" +#~ msgstr "حجم الملف" + +#~ msgid "No File selected" +#~ msgstr "لا يوجد ملف محدد." + +#~ msgid "eg. Show extra content" +#~ msgstr "على سبيل المثال. إظهار محتوى إضافي" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "خطأ في الاتصال. آسف، الرجاء المحاولة مرة أخرى" + +#~ msgid "Save Options" +#~ msgstr "حفظ الإعدادات" + +#~ msgid "License" +#~ msgstr "الترخيص" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "لللحصول على التحديثات، الرجاء إدخال مفتاح الترخيص الخاص بك أدناه. إذا لم " +#~ "يكن لديك مفتاح ترخيص، الرجاء مراجعة" + +#~ msgid "details & pricing" +#~ msgstr "التفاصيل & الأسعار" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "حقول مخصصة متقدمة برو" diff --git a/lang/pro/acf-bg_BG.po b/lang/pro/acf-bg_BG.po new file mode 100644 index 0000000..59456c4 --- /dev/null +++ b/lang/pro/acf-bg_BG.po @@ -0,0 +1,3336 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2017-06-27 15:36+1000\n" +"PO-Revision-Date: 2018-02-06 10:03+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: Elliot Condon \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: Poedit 1.8.1\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:63 +msgid "Advanced Custom Fields" +msgstr "Модерни потребителски полета" + +#: acf.php:355 includes/admin/admin.php:117 +msgid "Field Groups" +msgstr "Групи полета" + +#: acf.php:356 +msgid "Field Group" +msgstr "Групa полета" + +#: acf.php:357 acf.php:389 includes/admin/admin.php:118 +#: pro/fields/class-acf-field-flexible-content.php:574 +msgid "Add New" +msgstr "Създаване" + +#: acf.php:358 +msgid "Add New Field Group" +msgstr "Създаване на нова група полета" + +#: acf.php:359 +msgid "Edit Field Group" +msgstr "Редактиране на група полета" + +#: acf.php:360 +msgid "New Field Group" +msgstr "Нова група полета" + +#: acf.php:361 +msgid "View Field Group" +msgstr "Преглед на група полета" + +#: acf.php:362 +msgid "Search Field Groups" +msgstr "Търсене на групи полета" + +#: acf.php:363 +msgid "No Field Groups found" +msgstr "Няма открити групи полета" + +#: acf.php:364 +msgid "No Field Groups found in Trash" +msgstr "Няма открити групи полета в кошчето" + +#: acf.php:387 includes/admin/admin-field-group.php:182 +#: includes/admin/admin-field-group.php:275 +#: includes/admin/admin-field-groups.php:510 +#: pro/fields/class-acf-field-clone.php:857 +msgid "Fields" +msgstr "Полета" + +#: acf.php:388 +msgid "Field" +msgstr "Поле" + +#: acf.php:390 +msgid "Add New Field" +msgstr "Добавяне на ново поле" + +#: acf.php:391 +msgid "Edit Field" +msgstr "Редактиране на поле" + +#: acf.php:392 includes/admin/views/field-group-fields.php:41 +#: includes/admin/views/settings-info.php:105 +msgid "New Field" +msgstr "Ново поле" + +#: acf.php:393 +msgid "View Field" +msgstr "Преглед на поле" + +#: acf.php:394 +msgid "Search Fields" +msgstr "Търсене на полета" + +#: acf.php:395 +msgid "No Fields found" +msgstr "Няма открити полета" + +#: acf.php:396 +msgid "No Fields found in Trash" +msgstr "Няма открити полета в кошчето" + +#: acf.php:435 includes/admin/admin-field-group.php:390 +#: includes/admin/admin-field-groups.php:567 +#, fuzzy +msgid "Inactive" +msgstr "Активно" + +#: acf.php:440 +#, fuzzy, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Активно (%s)" +msgstr[1] "Активни (%s)" + +#: includes/admin/admin-field-group.php:68 +#: includes/admin/admin-field-group.php:69 +#: includes/admin/admin-field-group.php:71 +msgid "Field group updated." +msgstr "Групата полета бе обновена." + +#: includes/admin/admin-field-group.php:70 +msgid "Field group deleted." +msgstr "Групата полета бе изтрита." + +#: includes/admin/admin-field-group.php:73 +msgid "Field group published." +msgstr "Групата полета бе публикувана." + +#: includes/admin/admin-field-group.php:74 +msgid "Field group saved." +msgstr "Групата полета бе запазена." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group submitted." +msgstr "Групата полета бе изпратена." + +#: includes/admin/admin-field-group.php:76 +msgid "Field group scheduled for." +msgstr "Групата полета бе планирана." + +#: includes/admin/admin-field-group.php:77 +msgid "Field group draft updated." +msgstr "Черновата на групата полета бе обновена." + +#: includes/admin/admin-field-group.php:183 +msgid "Location" +msgstr "Местоположение" + +#: includes/admin/admin-field-group.php:184 +msgid "Settings" +msgstr "Настройки" + +#: includes/admin/admin-field-group.php:269 +msgid "Move to trash. Are you sure?" +msgstr "Преместване в кошчето. Сигурни ли сте?" + +#: includes/admin/admin-field-group.php:270 +msgid "checked" +msgstr "избрано" + +#: includes/admin/admin-field-group.php:271 +msgid "No toggle fields available" +msgstr "Няма налични полета за превключване" + +#: includes/admin/admin-field-group.php:272 +msgid "Field group title is required" +msgstr "Заглавието на групата полета е задължително" + +#: includes/admin/admin-field-group.php:273 +#: includes/api/api-field-group.php:732 +msgid "copy" +msgstr "копиране" + +#: includes/admin/admin-field-group.php:274 +#: includes/admin/views/field-group-field-conditional-logic.php:54 +#: includes/admin/views/field-group-field-conditional-logic.php:154 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3970 +msgid "or" +msgstr "или" + +#: includes/admin/admin-field-group.php:276 +msgid "Parent fields" +msgstr "Родителски полета" + +#: includes/admin/admin-field-group.php:277 +msgid "Sibling fields" +msgstr "Съседни полета" + +#: includes/admin/admin-field-group.php:278 +msgid "Move Custom Field" +msgstr "Преместване на поле" + +#: includes/admin/admin-field-group.php:279 +msgid "This field cannot be moved until its changes have been saved" +msgstr "Това поле не може да бъде преместено докато не го запазите." + +#: includes/admin/admin-field-group.php:280 +msgid "Null" +msgstr "Нищо" + +#: includes/admin/admin-field-group.php:281 includes/input.php:257 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "" +"Промените, които сте направили, ще бъдат загубени ако излезете от тази " +"страница" + +#: includes/admin/admin-field-group.php:282 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "Низът \"field_\" не може да бъде използван в началото на името на поле" + +#: includes/admin/admin-field-group.php:360 +msgid "Field Keys" +msgstr "Ключове на полетата" + +#: includes/admin/admin-field-group.php:390 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Активно" + +#: includes/admin/admin-field-group.php:801 +msgid "Move Complete." +msgstr "Преместването бе завършено." + +#: includes/admin/admin-field-group.php:802 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Полето %s сега може да бъде открито в групата полета %s" + +#: includes/admin/admin-field-group.php:803 +msgid "Close Window" +msgstr "Затваряне на прозореца" + +#: includes/admin/admin-field-group.php:844 +msgid "Please select the destination for this field" +msgstr "Моля, изберете дестинация за това поле" + +#: includes/admin/admin-field-group.php:851 +msgid "Move Field" +msgstr "Преместване на поле" + +#: includes/admin/admin-field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Активно (%s)" +msgstr[1] "Активни (%s)" + +#: includes/admin/admin-field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "Групата полета %s бе дублирана." + +#: includes/admin/admin-field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s група полета беше дублирана." +msgstr[1] "%s групи полета бяха дублирани." + +#: includes/admin/admin-field-groups.php:227 +#, php-format +msgid "Field group synchronised. %s" +msgstr "Групата полета %s бе синхронизирана." + +#: includes/admin/admin-field-groups.php:231 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s група полета беше синхронизирана." +msgstr[1] "%s групи полета бяха синхронизирани." + +#: includes/admin/admin-field-groups.php:394 +#: includes/admin/admin-field-groups.php:557 +msgid "Sync available" +msgstr "Налична е синхронизация" + +#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:370 +msgid "Title" +msgstr "Заглавие" + +#: includes/admin/admin-field-groups.php:508 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/install-network.php:21 +#: includes/admin/views/install-network.php:29 +#: pro/fields/class-acf-field-gallery.php:397 +msgid "Description" +msgstr "Описание" + +#: includes/admin/admin-field-groups.php:509 +msgid "Status" +msgstr "Статус" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:607 +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "Персонализирайте WordPress с мощни, професионални и интуитивни полета." + +#: includes/admin/admin-field-groups.php:609 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:111 +msgid "Changelog" +msgstr "Дневник с промени" + +#: includes/admin/admin-field-groups.php:614 +#, php-format +msgid "See what's new in version %s." +msgstr "" + +#: includes/admin/admin-field-groups.php:617 +msgid "Resources" +msgstr "Ресурси" + +#: includes/admin/admin-field-groups.php:619 +#, fuzzy +msgid "Website" +msgstr "Следните разширения бяха намерени като активирани на този уебсайт." + +#: includes/admin/admin-field-groups.php:620 +#, fuzzy +msgid "Documentation" +msgstr "Местоположение" + +#: includes/admin/admin-field-groups.php:621 +#, fuzzy +msgid "Support" +msgstr "Импортиране" + +#: includes/admin/admin-field-groups.php:623 +#, fuzzy +msgid "Pro" +msgstr "Сбогом на добавките. Здравей, PRO" + +#: includes/admin/admin-field-groups.php:628 +#, fuzzy, php-format +msgid "Thank you for creating with ACF." +msgstr "Благодарим ви за обновяването към %s v%s!" + +#: includes/admin/admin-field-groups.php:668 +msgid "Duplicate this item" +msgstr "Дублиране на този елемент" + +#: includes/admin/admin-field-groups.php:668 +#: includes/admin/admin-field-groups.php:684 +#: includes/admin/views/field-group-field.php:49 +#: pro/fields/class-acf-field-flexible-content.php:573 +msgid "Duplicate" +msgstr "Дублиране" + +#: includes/admin/admin-field-groups.php:701 +#: includes/fields/class-acf-field-google-map.php:132 +#: includes/fields/class-acf-field-relationship.php:737 +msgid "Search" +msgstr "Търсене" + +#: includes/admin/admin-field-groups.php:760 +#, php-format +msgid "Select %s" +msgstr "Избор на %s" + +#: includes/admin/admin-field-groups.php:768 +msgid "Synchronise field group" +msgstr "Синхронизиране на групата полета" + +#: includes/admin/admin-field-groups.php:768 +#: includes/admin/admin-field-groups.php:798 +msgid "Sync" +msgstr "Синхронизация" + +#: includes/admin/admin-field-groups.php:780 +msgid "Apply" +msgstr "" + +#: includes/admin/admin-field-groups.php:798 +#, fuzzy +msgid "Bulk Actions" +msgstr "Групови действия" + +#: includes/admin/admin.php:113 +#: includes/admin/views/field-group-options.php:118 +msgid "Custom Fields" +msgstr "Потребителски полета" + +#: includes/admin/install-network.php:88 includes/admin/install.php:70 +#: includes/admin/install.php:121 +msgid "Upgrade Database" +msgstr "Обновяване на базата данни" + +#: includes/admin/install-network.php:140 +msgid "Review sites & upgrade" +msgstr "Преглед на сайтове и обновяване" + +#: includes/admin/install.php:187 +msgid "Error validating request" +msgstr "" + +#: includes/admin/install.php:210 includes/admin/views/install.php:105 +msgid "No updates available." +msgstr "Няма налични актуализации." + +#: includes/admin/settings-addons.php:51 +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "Добавки" + +#: includes/admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "Грешка. Списъкът с добавки не може да бъде зареден" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Информация" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "Какво ново" + +#: includes/admin/settings-tools.php:50 +#: includes/admin/views/settings-tools-export.php:19 +#: includes/admin/views/settings-tools.php:31 +msgid "Tools" +msgstr "Инструменти" + +#: includes/admin/settings-tools.php:147 includes/admin/settings-tools.php:380 +msgid "No field groups selected" +msgstr "Няма избрани групи полета" + +#: includes/admin/settings-tools.php:184 +#: includes/fields/class-acf-field-file.php:174 +msgid "No file selected" +msgstr "Няма избран файл" + +#: includes/admin/settings-tools.php:197 +msgid "Error uploading file. Please try again" +msgstr "Грешка при качване на файл. Моля, опитайте отново" + +#: includes/admin/settings-tools.php:206 +msgid "Incorrect file type" +msgstr "Грешен тип файл" + +#: includes/admin/settings-tools.php:223 +msgid "Import file empty" +msgstr "Файлът за импортиране е празен" + +#: includes/admin/settings-tools.php:331 +#, fuzzy, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Импортиране на групи полета" +msgstr[1] "Импортиране на групи полета" + +#: includes/admin/views/field-group-field-conditional-logic.php:28 +msgid "Conditional Logic" +msgstr "Условна логика" + +#: includes/admin/views/field-group-field-conditional-logic.php:54 +msgid "Show this field if" +msgstr "Показване на това поле ако" + +#: includes/admin/views/field-group-field-conditional-logic.php:103 +#: includes/locations.php:243 +msgid "is equal to" +msgstr "е равно на" + +#: includes/admin/views/field-group-field-conditional-logic.php:104 +#: includes/locations.php:244 +msgid "is not equal to" +msgstr "не е равно на" + +#: includes/admin/views/field-group-field-conditional-logic.php:141 +#: includes/admin/views/html-location-rule.php:80 +msgid "and" +msgstr "и" + +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Добавяне на група правила" + +#: includes/admin/views/field-group-field.php:41 +#: pro/fields/class-acf-field-flexible-content.php:420 +#: pro/fields/class-acf-field-repeater.php:358 +msgid "Drag to reorder" +msgstr "Плъзнете, за да пренаредите" + +#: includes/admin/views/field-group-field.php:45 +#: includes/admin/views/field-group-field.php:48 +msgid "Edit field" +msgstr "Редактиране на поле" + +#: includes/admin/views/field-group-field.php:48 +#: includes/fields/class-acf-field-image.php:140 +#: includes/fields/class-acf-field-link.php:152 +#: pro/fields/class-acf-field-gallery.php:357 +msgid "Edit" +msgstr "Редактиране" + +#: includes/admin/views/field-group-field.php:49 +msgid "Duplicate field" +msgstr "Дублиране на поле" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move field to another group" +msgstr "Преместване на поле в друга група" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move" +msgstr "Преместване" + +#: includes/admin/views/field-group-field.php:51 +msgid "Delete field" +msgstr "Изтриване на поле" + +#: includes/admin/views/field-group-field.php:51 +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Delete" +msgstr "Изтриване" + +#: includes/admin/views/field-group-field.php:67 +msgid "Field Label" +msgstr "Етикет на полето" + +#: includes/admin/views/field-group-field.php:68 +msgid "This is the name which will appear on the EDIT page" +msgstr "Това е името, което ще се покаже на страницата за редакция" + +#: includes/admin/views/field-group-field.php:78 +msgid "Field Name" +msgstr "Име на полето" + +#: includes/admin/views/field-group-field.php:79 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Една дума, без интервали. Долни черти и тирета са позволени" + +#: includes/admin/views/field-group-field.php:89 +msgid "Field Type" +msgstr "Тип на полето" + +#: includes/admin/views/field-group-field.php:101 +#: includes/fields/class-acf-field-tab.php:102 +msgid "Instructions" +msgstr "Инструкции" + +#: includes/admin/views/field-group-field.php:102 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Инструкции за автори. Показват се когато се изпращат данни" + +#: includes/admin/views/field-group-field.php:111 +msgid "Required?" +msgstr "Задължително?" + +#: includes/admin/views/field-group-field.php:134 +msgid "Wrapper Attributes" +msgstr "Атрибути" + +#: includes/admin/views/field-group-field.php:140 +msgid "width" +msgstr "широчина" + +#: includes/admin/views/field-group-field.php:155 +msgid "class" +msgstr "клас" + +#: includes/admin/views/field-group-field.php:168 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:180 +msgid "Close Field" +msgstr "Затваряне на полето" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Ред" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-checkbox.php:317 +#: includes/fields/class-acf-field-radio.php:321 +#: includes/fields/class-acf-field-select.php:530 +#: pro/fields/class-acf-field-flexible-content.php:599 +msgid "Label" +msgstr "Етикет" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:970 +#: pro/fields/class-acf-field-flexible-content.php:612 +msgid "Name" +msgstr "Име" + +#: includes/admin/views/field-group-fields.php:7 +#, fuzzy +msgid "Key" +msgstr "Ключ на полето" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Тип" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Няма полета. Натиснете бутона + Добавяне на поле за да " +"създадете първото си поле." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Добавяне на поле" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Правила" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "Стил" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Стандартен (WordPress кутия)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Без WordPress кутия" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Позиция" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Високо (след заглавието)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Нормално (след съдържанието)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Отстрани" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Позиция на етикета" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:116 +msgid "Top aligned" +msgstr "Отгоре" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:117 +msgid "Left aligned" +msgstr "Отляво" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Позиция на инструкциите" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Под етикетите" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Под полетата" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Пореден №" + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "Групите полета с по-малък пореден номер ще бъдат показани първи" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Показани в списъка с групи полета" + +#: includes/admin/views/field-group-options.php:107 +msgid "Hide on screen" +msgstr "Скриване от екрана" + +#: includes/admin/views/field-group-options.php:108 +msgid "Select items to hide them from the edit screen." +msgstr "Изберете елементи, които да скриете от екрана." + +#: includes/admin/views/field-group-options.php:108 +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/field-group-options.php:115 +msgid "Permalink" +msgstr "Постоянна връзка" + +#: includes/admin/views/field-group-options.php:116 +msgid "Content Editor" +msgstr "Редактор на съдържание" + +#: includes/admin/views/field-group-options.php:117 +msgid "Excerpt" +msgstr "Откъс" + +#: includes/admin/views/field-group-options.php:119 +msgid "Discussion" +msgstr "Дискусия" + +#: includes/admin/views/field-group-options.php:120 +msgid "Comments" +msgstr "Коментари" + +#: includes/admin/views/field-group-options.php:121 +msgid "Revisions" +msgstr "Ревизии" + +#: includes/admin/views/field-group-options.php:122 +msgid "Slug" +msgstr "Кратко име" + +#: includes/admin/views/field-group-options.php:123 +msgid "Author" +msgstr "Автор" + +#: includes/admin/views/field-group-options.php:124 +msgid "Format" +msgstr "Формат" + +#: includes/admin/views/field-group-options.php:125 +msgid "Page Attributes" +msgstr "Атрибути на страницата" + +#: includes/admin/views/field-group-options.php:126 +#: includes/fields/class-acf-field-relationship.php:751 +msgid "Featured Image" +msgstr "Главна снимка" + +#: includes/admin/views/field-group-options.php:127 +msgid "Categories" +msgstr "Категории" + +#: includes/admin/views/field-group-options.php:128 +msgid "Tags" +msgstr "Етикети" + +#: includes/admin/views/field-group-options.php:129 +msgid "Send Trackbacks" +msgstr "Изпращане на проследяващи връзки" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Показване на тази група полета ако" + +#: includes/admin/views/install-network.php:4 +#, fuzzy +msgid "Upgrade Sites" +msgstr "Забележки за обновяването" + +#: includes/admin/views/install-network.php:9 +#: includes/admin/views/install.php:3 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "Модерни потребителски полета - Обновяване на базата данни" + +#: includes/admin/views/install-network.php:11 +#, fuzzy, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"Следните сайтове имат нужда от обновяване на базата данни. Изберете тези, " +"които искате да обновите и натиснете на \"Обновяване на базата данни\"." + +#: includes/admin/views/install-network.php:20 +#: includes/admin/views/install-network.php:28 +msgid "Site" +msgstr "Сайт" + +#: includes/admin/views/install-network.php:48 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Сайтът изисква обновяване на базата данни от %s до %s" + +#: includes/admin/views/install-network.php:50 +msgid "Site is up to date" +msgstr "Сайтът няма нужда от обновяване" + +#: includes/admin/views/install-network.php:63 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Обновяването на базата данни бе завършено. Връщане към " +"мрежовото табло" + +#: includes/admin/views/install-network.php:102 +#: includes/admin/views/install-notice.php:42 +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/install-network.php:158 +msgid "Upgrade complete" +msgstr "Обновяването завърши" + +#: includes/admin/views/install-network.php:162 +#: includes/admin/views/install.php:9 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Обновяване на данните до версия %s" + +#: includes/admin/views/install-notice.php:8 +#: pro/fields/class-acf-field-repeater.php:36 +msgid "Repeater" +msgstr "Повторител" + +#: includes/admin/views/install-notice.php:9 +#: pro/fields/class-acf-field-flexible-content.php:36 +msgid "Flexible Content" +msgstr "Гъвкаво съдържание" + +#: includes/admin/views/install-notice.php:10 +#: pro/fields/class-acf-field-gallery.php:36 +msgid "Gallery" +msgstr "Галерия" + +#: includes/admin/views/install-notice.php:11 +#: pro/locations/class-acf-location-options-page.php:13 +msgid "Options Page" +msgstr "Страница с опции" + +#: includes/admin/views/install-notice.php:26 +msgid "Database Upgrade Required" +msgstr "Изисква се обновяване на базата данни" + +#: includes/admin/views/install-notice.php:28 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Благодарим ви за обновяването към %s v%s!" + +#: includes/admin/views/install-notice.php:28 +msgid "" +"Before you start using the new awesome features, please update your database " +"to the newest version." +msgstr "" +"Преди да започнете да използвате новите страхотни функции, моля обновете " +"базата данни до последната версия." + +#: includes/admin/views/install-notice.php:31 +#, php-format +msgid "" +"Please also ensure any premium add-ons (%s) have first been updated to the " +"latest version." +msgstr "" + +#: includes/admin/views/install.php:7 +msgid "Reading upgrade tasks..." +msgstr "Прочитане на задачите за обновяване..." + +#: includes/admin/views/install.php:11 +#, fuzzy, php-format +msgid "Database Upgrade complete. See what's new" +msgstr "" +"Обновяването на базата данни бе завършено. Връщане към " +"мрежовото табло" + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Сваляне и инсталиране" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Инсталирано" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Добре дошли в Модерни потребителски полета" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Благодарим, че обновихте! Модерни потребителски полета %s сега е по-голям и " +"по-добър от всякога. Надяваме се че ще Ви хареса." + +#: includes/admin/views/settings-info.php:17 +msgid "A smoother custom field experience" +msgstr "По-удобна работа с потребителски полета" + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Usability" +msgstr "Подобрена ползваемост" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"Включването на популярната библиотека Select2 подобри използването и " +"скоростта на множество полета, включително обект-публикация, връзка към " +"страница, таксономия и поле за избор." + +#: includes/admin/views/settings-info.php:27 +msgid "Improved Design" +msgstr "Подобрен дизайн" + +#: includes/admin/views/settings-info.php:28 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Много от полетата претърпяха визуални подобрения и сега изглеждат по-добре " +"от всякога! Забележими промени могат да се видят по галерията, полето за " +"връзка и oEmbed полето!" + +#: includes/admin/views/settings-info.php:32 +msgid "Improved Data" +msgstr "Подобрени данни" + +#: includes/admin/views/settings-info.php:33 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"Подобряването на архитектурата на данните позволи вложените полета да " +"съществуват независимо от своите родители. Това позволява да ги местите " +"извън родителите си!" + +#: includes/admin/views/settings-info.php:39 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Сбогом на добавките. Здравей, PRO" + +#: includes/admin/views/settings-info.php:44 +msgid "Introducing ACF PRO" +msgstr "Представяме Ви Модерни потребителски полета PRO" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" +"Променяме начина по който Ви предоставяме платената функционалност по " +"вълнуващ начин!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Всички 4 платени добавки бяха обединени в една нова PRO " +"версия. С наличните личен лиценз и този за разработчици, платената " +"функционалност е по-достъпна от всякога!" + +#: includes/admin/views/settings-info.php:50 +msgid "Powerful Features" +msgstr "Мощни функции" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"PRO версията съдържа мощни функции като повторяеми полета, гъвкави " +"оформления на съдържанието, красиво поле за галерия и възможността да " +"създавате допълнителни страници с опции в администрацията." + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "Научете повече за PRO функциите." + +#: includes/admin/views/settings-info.php:56 +msgid "Easy Upgrading" +msgstr "Лесно обновяване" + +#: includes/admin/views/settings-info.php:57 +#, php-format +msgid "" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" +msgstr "" +"За да направите обновяването лесно, влезте в профила си и " +"вземете вашето безплатно PRO копие!" + +#: includes/admin/views/settings-info.php:58 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" +msgstr "" +"Също така написахме съветник по обновяването за да " +"отговорим на всякакви въпроси, но ако имате някакви други въпроси, моля " +"свържете се с нашия отдел Поддръжка" + +#: includes/admin/views/settings-info.php:66 +msgid "Under the Hood" +msgstr "Под капака" + +#: includes/admin/views/settings-info.php:71 +msgid "Smarter field settings" +msgstr "По-умни настройки на полетата" + +#: includes/admin/views/settings-info.php:72 +msgid "ACF now saves its field settings as individual post objects" +msgstr "Вече записваме настройките на полетата като индивидуални публикации" + +#: includes/admin/views/settings-info.php:76 +msgid "More AJAX" +msgstr "Повече AJAX" + +#: includes/admin/views/settings-info.php:77 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "" +"Още повече полета използват AJAX-базирано търсене, за да ускорят зареждането " +"на страниците" + +#: includes/admin/views/settings-info.php:81 +msgid "Local JSON" +msgstr "Локален JSON" + +#: includes/admin/views/settings-info.php:82 +msgid "New auto export to JSON feature improves speed" +msgstr "Новия автоматичен експорт към JSON увеличава скоростта" + +#: includes/admin/views/settings-info.php:88 +msgid "Better version control" +msgstr "По-добър контрол на версиите" + +#: includes/admin/views/settings-info.php:89 +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" +msgstr "" +"Новия автоматичен експорт към JSON позволява настройките на полетата да " +"бъдат под контрол на версиите" + +#: includes/admin/views/settings-info.php:93 +msgid "Swapped XML for JSON" +msgstr "Заменихме XML с JSON" + +#: includes/admin/views/settings-info.php:94 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "Импортирането и експортирането вече използват JSON вместо XML" + +#: includes/admin/views/settings-info.php:98 +msgid "New Forms" +msgstr "Нови формуляри" + +#: includes/admin/views/settings-info.php:99 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "" +"Полетата вече могат да бъдат закачени към коментари, джаджи и " +"потребителските формуляри!" + +#: includes/admin/views/settings-info.php:106 +msgid "A new field for embedding content has been added" +msgstr "Ново поле за вграждане на съдържание бе добавено" + +#: includes/admin/views/settings-info.php:110 +msgid "New Gallery" +msgstr "Нова галерия" + +#: includes/admin/views/settings-info.php:111 +msgid "The gallery field has undergone a much needed facelift" +msgstr "Полето за галерия претърпя сериозни визуални подобрения" + +#: includes/admin/views/settings-info.php:115 +msgid "New Settings" +msgstr "Нови настройки" + +#: includes/admin/views/settings-info.php:116 +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "" +"Бяха добавени настройки на групите полета за поставяне на етикет и инструкции" + +#: includes/admin/views/settings-info.php:122 +msgid "Better Front End Forms" +msgstr "По-добри форми в сайта" + +#: includes/admin/views/settings-info.php:123 +msgid "acf_form() can now create a new post on submission" +msgstr "acf_form() вече може да създава нови публикации при изпращане" + +#: includes/admin/views/settings-info.php:127 +msgid "Better Validation" +msgstr "По-добра валидация" + +#: includes/admin/views/settings-info.php:128 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "Валидацията на формулярите вече се прави с PHP + AJAX вместо само с JS" + +#: includes/admin/views/settings-info.php:132 +msgid "Relationship Field" +msgstr "Поле за връзка" + +#: includes/admin/views/settings-info.php:133 +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "" +"Нови настройки на полето за връзка за 'Филтри' (търсене, тип публикация, " +"таксономия)" + +#: includes/admin/views/settings-info.php:139 +msgid "Moving Fields" +msgstr "Местене на полета" + +#: includes/admin/views/settings-info.php:140 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" +msgstr "" +"Новата функционалност на групите полета Ви позволява да местите полета " +"измежду групите и родителите" + +#: includes/admin/views/settings-info.php:144 +#: includes/fields/class-acf-field-page_link.php:36 +msgid "Page Link" +msgstr "Връзка към страница" + +#: includes/admin/views/settings-info.php:145 +msgid "New archives group in page_link field selection" +msgstr "Нова група архиви в page_link полето" + +#: includes/admin/views/settings-info.php:149 +msgid "Better Options Pages" +msgstr "По-добри страници с опции" + +#: includes/admin/views/settings-info.php:150 +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" +msgstr "" +"Новите функции за страници с опции позволяват създаването както на " +"родителски страници, така и на страници-деца." + +#: includes/admin/views/settings-info.php:159 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Смятаме, че ще харесате промените в %s." + +#: includes/admin/views/settings-tools-export.php:23 +msgid "Export Field Groups to PHP" +msgstr "Експортиране на групите полета към PHP" + +#: includes/admin/views/settings-tools-export.php:27 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Следния код може да се използва, за да регистрирате локална версия на " +"избраните групи полета. Локалната група полета може да помогне с по-бързо " +"зареждане, контрол на версиите и динамични настройки. Просто копирайте и " +"сложете кода във файла functions.php на темата си или го сложете във външен " +"файл." + +#: includes/admin/views/settings-tools.php:5 +msgid "Select Field Groups" +msgstr "Избор на групи полета" + +#: includes/admin/views/settings-tools.php:35 +msgid "Export Field Groups" +msgstr "Експортиране на групи полета" + +#: includes/admin/views/settings-tools.php:38 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Изберете групите полета които искате да експортирате и после изберете " +"желания метод. Използвайте бутона за сваляне за да създадете .json файл, " +"които можете да импортирате в друга инсталация. Използвайте бутона за " +"генериране за да експортирате към PHP код, които можете да поставите в " +"темата си." + +#: includes/admin/views/settings-tools.php:50 +msgid "Download export file" +msgstr "Сваляне на експортирания файл" + +#: includes/admin/views/settings-tools.php:51 +msgid "Generate export code" +msgstr "Генериране на код" + +#: includes/admin/views/settings-tools.php:64 +msgid "Import Field Groups" +msgstr "Импортиране на групи полета" + +#: includes/admin/views/settings-tools.php:67 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Изберете JSON файла, който искате да импортирате. Когато натиснете бутона за " +"импортиране, групите полета ще бъдат импортирани." + +#: includes/admin/views/settings-tools.php:77 +#: includes/fields/class-acf-field-file.php:46 +msgid "Select File" +msgstr "Избор на файл" + +#: includes/admin/views/settings-tools.php:86 +msgid "Import" +msgstr "Импортиране" + +#: includes/api/api-helpers.php:856 +msgid "Thumbnail" +msgstr "Картинка" + +#: includes/api/api-helpers.php:857 +msgid "Medium" +msgstr "Средна" + +#: includes/api/api-helpers.php:858 +msgid "Large" +msgstr "Голяма" + +#: includes/api/api-helpers.php:907 +msgid "Full Size" +msgstr "Пълен размер" + +#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1837 +#: pro/fields/class-acf-field-clone.php:1042 +msgid "(no title)" +msgstr "(без заглавие)" + +#: includes/api/api-helpers.php:1874 +#: includes/fields/class-acf-field-page_link.php:284 +#: includes/fields/class-acf-field-post_object.php:283 +#: includes/fields/class-acf-field-taxonomy.php:992 +#, fuzzy +msgid "Parent" +msgstr "Горно ниво страница (родител)" + +#: includes/api/api-helpers.php:3891 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "Ширината на изображението трябва да бъде поне %d пиксела." + +#: includes/api/api-helpers.php:3896 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "Ширината на изображението не трябва да надвишава %d пиксела." + +#: includes/api/api-helpers.php:3912 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "Височината на изображението трябва да бъде поне %d пиксела." + +#: includes/api/api-helpers.php:3917 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "Височината на изображението не трябва да надвишава %d пиксела." + +#: includes/api/api-helpers.php:3935 +#, php-format +msgid "File size must be at least %s." +msgstr "Размерът на файла трябва да бъде поне %s." + +#: includes/api/api-helpers.php:3940 +#, php-format +msgid "File size must must not exceed %s." +msgstr "Размерът на файла трябва да не надвишава %s." + +#: includes/api/api-helpers.php:3974 +#, php-format +msgid "File type must be %s." +msgstr "Типът на файла трябва да бъде %s." + +#: includes/fields.php:144 +msgid "Basic" +msgstr "Основен" + +#: includes/fields.php:145 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Съдържание" + +#: includes/fields.php:146 +msgid "Choice" +msgstr "Избор" + +#: includes/fields.php:147 +msgid "Relational" +msgstr "Релационен" + +#: includes/fields.php:148 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:286 +#: includes/fields/class-acf-field-group.php:485 +#: includes/fields/class-acf-field-radio.php:300 +#: pro/fields/class-acf-field-clone.php:889 +#: pro/fields/class-acf-field-flexible-content.php:569 +#: pro/fields/class-acf-field-flexible-content.php:618 +#: pro/fields/class-acf-field-repeater.php:514 +msgid "Layout" +msgstr "Шаблон" + +#: includes/fields.php:305 +msgid "Field type does not exist" +msgstr "Типът поле не съществува" + +#: includes/fields.php:305 +msgid "Unknown" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:36 +#: includes/fields/class-acf-field-taxonomy.php:786 +msgid "Checkbox" +msgstr "Отметка" + +#: includes/fields/class-acf-field-checkbox.php:150 +msgid "Toggle All" +msgstr "Превключване на всички" + +#: includes/fields/class-acf-field-checkbox.php:207 +#, fuzzy +msgid "Add new choice" +msgstr "Добавяне на ново поле" + +#: includes/fields/class-acf-field-checkbox.php:246 +#: includes/fields/class-acf-field-radio.php:250 +#: includes/fields/class-acf-field-select.php:466 +msgid "Choices" +msgstr "Опции" + +#: includes/fields/class-acf-field-checkbox.php:247 +#: includes/fields/class-acf-field-radio.php:251 +#: includes/fields/class-acf-field-select.php:467 +msgid "Enter each choice on a new line." +msgstr "Въведете всяка опция на нов ред." + +#: includes/fields/class-acf-field-checkbox.php:247 +#: includes/fields/class-acf-field-radio.php:251 +#: includes/fields/class-acf-field-select.php:467 +msgid "For more control, you may specify both a value and label like this:" +msgstr "За повече контрол, можете да уточните и стойност и етикет, например:" + +#: includes/fields/class-acf-field-checkbox.php:247 +#: includes/fields/class-acf-field-radio.php:251 +#: includes/fields/class-acf-field-select.php:467 +msgid "red : Red" +msgstr "red : Red" + +#: includes/fields/class-acf-field-checkbox.php:255 +#, fuzzy +msgid "Allow Custom" +msgstr "Позволяване на празна стойност?" + +#: includes/fields/class-acf-field-checkbox.php:260 +msgid "Allow 'custom' values to be added" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:266 +#, fuzzy +msgid "Save Custom" +msgstr "Преместване на поле" + +#: includes/fields/class-acf-field-checkbox.php:271 +#, fuzzy +msgid "Save 'custom' values to the field's choices" +msgstr "Запазване на стойностите 'друго' към опциите на полето" + +#: includes/fields/class-acf-field-checkbox.php:277 +#: includes/fields/class-acf-field-color_picker.php:146 +#: includes/fields/class-acf-field-email.php:133 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-radio.php:291 +#: includes/fields/class-acf-field-select.php:475 +#: includes/fields/class-acf-field-text.php:142 +#: includes/fields/class-acf-field-textarea.php:139 +#: includes/fields/class-acf-field-true_false.php:150 +#: includes/fields/class-acf-field-url.php:114 +#: includes/fields/class-acf-field-wysiwyg.php:436 +msgid "Default Value" +msgstr "Стойност по подразбиране" + +#: includes/fields/class-acf-field-checkbox.php:278 +#: includes/fields/class-acf-field-select.php:476 +msgid "Enter each default value on a new line" +msgstr "Въведете всяка стойност по подразбиране на нов ред" + +#: includes/fields/class-acf-field-checkbox.php:292 +#: includes/fields/class-acf-field-radio.php:306 +msgid "Vertical" +msgstr "Вертикален" + +#: includes/fields/class-acf-field-checkbox.php:293 +#: includes/fields/class-acf-field-radio.php:307 +msgid "Horizontal" +msgstr "Хоризонтален" + +#: includes/fields/class-acf-field-checkbox.php:300 +msgid "Toggle" +msgstr "Превключване" + +#: includes/fields/class-acf-field-checkbox.php:301 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Прибавете допълнителна отметка за да превключите всички опции" + +#: includes/fields/class-acf-field-checkbox.php:310 +#: includes/fields/class-acf-field-file.php:219 +#: includes/fields/class-acf-field-image.php:206 +#: includes/fields/class-acf-field-link.php:180 +#: includes/fields/class-acf-field-radio.php:314 +#: includes/fields/class-acf-field-taxonomy.php:839 +msgid "Return Value" +msgstr "Върната стойност" + +#: includes/fields/class-acf-field-checkbox.php:311 +#: includes/fields/class-acf-field-file.php:220 +#: includes/fields/class-acf-field-image.php:207 +#: includes/fields/class-acf-field-link.php:181 +#: includes/fields/class-acf-field-radio.php:315 +msgid "Specify the returned value on front end" +msgstr "Уточнява върнатата стойност в сайта" + +#: includes/fields/class-acf-field-checkbox.php:316 +#: includes/fields/class-acf-field-radio.php:320 +#: includes/fields/class-acf-field-select.php:529 +#, fuzzy +msgid "Value" +msgstr "%s стойност е задължителна" + +#: includes/fields/class-acf-field-checkbox.php:318 +#: includes/fields/class-acf-field-radio.php:322 +#: includes/fields/class-acf-field-select.php:531 +msgid "Both (Array)" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:36 +msgid "Color Picker" +msgstr "Избор на цвят" + +#: includes/fields/class-acf-field-color_picker.php:83 +msgid "Clear" +msgstr "Изчистване" + +#: includes/fields/class-acf-field-color_picker.php:84 +msgid "Default" +msgstr "По подразбиране" + +#: includes/fields/class-acf-field-color_picker.php:85 +msgid "Select Color" +msgstr "Избор на цвят" + +#: includes/fields/class-acf-field-color_picker.php:86 +msgid "Current Color" +msgstr "Текущ цвят" + +#: includes/fields/class-acf-field-date_picker.php:36 +msgid "Date Picker" +msgstr "Избор на дата" + +#: includes/fields/class-acf-field-date_picker.php:44 +#, fuzzy +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Готово" + +#: includes/fields/class-acf-field-date_picker.php:45 +#, fuzzy +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Днес" + +#: includes/fields/class-acf-field-date_picker.php:46 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:47 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:48 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:223 +#: includes/fields/class-acf-field-date_time_picker.php:197 +#: includes/fields/class-acf-field-time_picker.php:127 +msgid "Display Format" +msgstr "Формат на показване" + +#: includes/fields/class-acf-field-date_picker.php:224 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-time_picker.php:128 +msgid "The format displayed when editing a post" +msgstr "Форматът, показан при редакция на публикация" + +#: includes/fields/class-acf-field-date_picker.php:232 +#: includes/fields/class-acf-field-date_picker.php:263 +#: includes/fields/class-acf-field-date_time_picker.php:207 +#: includes/fields/class-acf-field-date_time_picker.php:224 +#: includes/fields/class-acf-field-time_picker.php:135 +#: includes/fields/class-acf-field-time_picker.php:150 +#, fuzzy +msgid "Custom:" +msgstr "Модерни потребителски полета" + +#: includes/fields/class-acf-field-date_picker.php:242 +#, fuzzy +msgid "Save Format" +msgstr "Запази формата" + +#: includes/fields/class-acf-field-date_picker.php:243 +#, fuzzy +msgid "The format used when saving a value" +msgstr "Форматът, показан при редакция на публикация" + +#: includes/fields/class-acf-field-date_picker.php:253 +#: includes/fields/class-acf-field-date_time_picker.php:214 +#: includes/fields/class-acf-field-post_object.php:447 +#: includes/fields/class-acf-field-relationship.php:778 +#: includes/fields/class-acf-field-select.php:524 +#: includes/fields/class-acf-field-time_picker.php:142 +msgid "Return Format" +msgstr "Формат на върнатите данни" + +#: includes/fields/class-acf-field-date_picker.php:254 +#: includes/fields/class-acf-field-date_time_picker.php:215 +#: includes/fields/class-acf-field-time_picker.php:143 +msgid "The format returned via template functions" +msgstr "Форматът, който се връща от шаблонните функции" + +#: includes/fields/class-acf-field-date_picker.php:272 +#: includes/fields/class-acf-field-date_time_picker.php:231 +msgid "Week Starts On" +msgstr "Седмицата започва с" + +#: includes/fields/class-acf-field-date_time_picker.php:36 +#, fuzzy +msgid "Date Time Picker" +msgstr "Избор на дата и час" + +#: includes/fields/class-acf-field-date_time_picker.php:44 +#, fuzzy +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Затваряне на полето" + +#: includes/fields/class-acf-field-date_time_picker.php:45 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:46 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:47 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:48 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:49 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:50 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:51 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:52 +#, fuzzy +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Импортирането и експортирането вече използват JSON вместо XML" + +#: includes/fields/class-acf-field-date_time_picker.php:53 +#, fuzzy +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Готово" + +#: includes/fields/class-acf-field-date_time_picker.php:54 +#, fuzzy +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Избор" + +#: includes/fields/class-acf-field-date_time_picker.php:56 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:57 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:60 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:61 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "" + +#: includes/fields/class-acf-field-email.php:36 +msgid "Email" +msgstr "Email" + +#: includes/fields/class-acf-field-email.php:134 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-radio.php:292 +#: includes/fields/class-acf-field-text.php:143 +#: includes/fields/class-acf-field-textarea.php:140 +#: includes/fields/class-acf-field-url.php:115 +#: includes/fields/class-acf-field-wysiwyg.php:437 +msgid "Appears when creating a new post" +msgstr "Появява се при създаване на нова публикация" + +#: includes/fields/class-acf-field-email.php:142 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:134 +#: includes/fields/class-acf-field-text.php:151 +#: includes/fields/class-acf-field-textarea.php:148 +#: includes/fields/class-acf-field-url.php:123 +msgid "Placeholder Text" +msgstr "Текст при липса на стойност" + +#: includes/fields/class-acf-field-email.php:143 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:135 +#: includes/fields/class-acf-field-text.php:152 +#: includes/fields/class-acf-field-textarea.php:149 +#: includes/fields/class-acf-field-url.php:124 +msgid "Appears within the input" +msgstr "Показва се в полето при липса на стойност" + +#: includes/fields/class-acf-field-email.php:151 +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-password.php:143 +#: includes/fields/class-acf-field-text.php:160 +msgid "Prepend" +msgstr "Поставяне в началото" + +#: includes/fields/class-acf-field-email.php:152 +#: includes/fields/class-acf-field-number.php:164 +#: includes/fields/class-acf-field-password.php:144 +#: includes/fields/class-acf-field-text.php:161 +msgid "Appears before the input" +msgstr "Показва се преди полето" + +#: includes/fields/class-acf-field-email.php:160 +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-password.php:152 +#: includes/fields/class-acf-field-text.php:169 +msgid "Append" +msgstr "Поставяне в края" + +#: includes/fields/class-acf-field-email.php:161 +#: includes/fields/class-acf-field-number.php:173 +#: includes/fields/class-acf-field-password.php:153 +#: includes/fields/class-acf-field-text.php:170 +msgid "Appears after the input" +msgstr "Показва се след полето" + +#: includes/fields/class-acf-field-file.php:36 +msgid "File" +msgstr "Файл" + +#: includes/fields/class-acf-field-file.php:47 +msgid "Edit File" +msgstr "Редактиране на файл" + +#: includes/fields/class-acf-field-file.php:48 +msgid "Update File" +msgstr "Актуализация на файла" + +#: includes/fields/class-acf-field-file.php:49 +#: includes/fields/class-acf-field-image.php:54 includes/media.php:57 +#: pro/fields/class-acf-field-gallery.php:55 +msgid "Uploaded to this post" +msgstr "Прикачени към тази публикация" + +#: includes/fields/class-acf-field-file.php:145 +#, fuzzy +msgid "File name" +msgstr "Име на файла" + +#: includes/fields/class-acf-field-file.php:149 +#: includes/fields/class-acf-field-file.php:252 +#: includes/fields/class-acf-field-file.php:263 +#: includes/fields/class-acf-field-image.php:266 +#: includes/fields/class-acf-field-image.php:295 +#: pro/fields/class-acf-field-gallery.php:705 +#: pro/fields/class-acf-field-gallery.php:734 +msgid "File size" +msgstr "Размер на файла" + +#: includes/fields/class-acf-field-file.php:174 +msgid "Add File" +msgstr "Добавяне на файл" + +#: includes/fields/class-acf-field-file.php:225 +msgid "File Array" +msgstr "Масив от файлове" + +#: includes/fields/class-acf-field-file.php:226 +msgid "File URL" +msgstr "URL на файла" + +#: includes/fields/class-acf-field-file.php:227 +msgid "File ID" +msgstr "ID на файла" + +#: includes/fields/class-acf-field-file.php:234 +#: includes/fields/class-acf-field-image.php:231 +#: pro/fields/class-acf-field-gallery.php:670 +msgid "Library" +msgstr "Библиотека" + +#: includes/fields/class-acf-field-file.php:235 +#: includes/fields/class-acf-field-image.php:232 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "Limit the media library choice" +msgstr "Ограничаване на избора на файлове" + +#: includes/fields/class-acf-field-file.php:240 +#: includes/fields/class-acf-field-image.php:237 +#: includes/locations/class-acf-location-attachment.php:105 +#: includes/locations/class-acf-location-comment.php:83 +#: includes/locations/class-acf-location-nav-menu.php:106 +#: includes/locations/class-acf-location-taxonomy.php:83 +#: includes/locations/class-acf-location-user-form.php:91 +#: includes/locations/class-acf-location-user-role.php:108 +#: includes/locations/class-acf-location-widget.php:87 +#: pro/fields/class-acf-field-gallery.php:676 +msgid "All" +msgstr "Всички" + +#: includes/fields/class-acf-field-file.php:241 +#: includes/fields/class-acf-field-image.php:238 +#: pro/fields/class-acf-field-gallery.php:677 +msgid "Uploaded to post" +msgstr "Прикачени към публикация" + +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-image.php:245 +#: pro/fields/class-acf-field-gallery.php:684 +msgid "Minimum" +msgstr "Минимум" + +#: includes/fields/class-acf-field-file.php:249 +#: includes/fields/class-acf-field-file.php:260 +msgid "Restrict which files can be uploaded" +msgstr "Ограничаване какви файлове могат да бъдат качени" + +#: includes/fields/class-acf-field-file.php:259 +#: includes/fields/class-acf-field-image.php:274 +#: pro/fields/class-acf-field-gallery.php:713 +msgid "Maximum" +msgstr "Максимум" + +#: includes/fields/class-acf-field-file.php:270 +#: includes/fields/class-acf-field-image.php:303 +#: pro/fields/class-acf-field-gallery.php:742 +msgid "Allowed file types" +msgstr "Позволени файлови типове" + +#: includes/fields/class-acf-field-file.php:271 +#: includes/fields/class-acf-field-image.php:304 +#: pro/fields/class-acf-field-gallery.php:743 +msgid "Comma separated list. Leave blank for all types" +msgstr "Списък, разделен със запетаи. Оставете празно за всички типове" + +#: includes/fields/class-acf-field-google-map.php:36 +msgid "Google Map" +msgstr "Google карта" + +#: includes/fields/class-acf-field-google-map.php:51 +msgid "Locating" +msgstr "Намиране" + +#: includes/fields/class-acf-field-google-map.php:52 +msgid "Sorry, this browser does not support geolocation" +msgstr "За съжаление този браузър не поддържа геолокация" + +#: includes/fields/class-acf-field-google-map.php:133 +msgid "Clear location" +msgstr "Изчистване на местоположение" + +#: includes/fields/class-acf-field-google-map.php:134 +msgid "Find current location" +msgstr "Намерете текущото местоположение" + +#: includes/fields/class-acf-field-google-map.php:137 +msgid "Search for address..." +msgstr "Търсене на адрес..." + +#: includes/fields/class-acf-field-google-map.php:167 +#: includes/fields/class-acf-field-google-map.php:178 +msgid "Center" +msgstr "Центриране" + +#: includes/fields/class-acf-field-google-map.php:168 +#: includes/fields/class-acf-field-google-map.php:179 +msgid "Center the initial map" +msgstr "Центриране на първоначалната карта" + +#: includes/fields/class-acf-field-google-map.php:190 +msgid "Zoom" +msgstr "Увеличаване" + +#: includes/fields/class-acf-field-google-map.php:191 +msgid "Set the initial zoom level" +msgstr "Задаване на ниво на първоначалното увеличение" + +#: includes/fields/class-acf-field-google-map.php:200 +#: includes/fields/class-acf-field-image.php:257 +#: includes/fields/class-acf-field-image.php:286 +#: includes/fields/class-acf-field-oembed.php:297 +#: pro/fields/class-acf-field-gallery.php:696 +#: pro/fields/class-acf-field-gallery.php:725 +msgid "Height" +msgstr "Височина" + +#: includes/fields/class-acf-field-google-map.php:201 +msgid "Customise the map height" +msgstr "Персонализиране на височината на картата" + +#: includes/fields/class-acf-field-group.php:36 +#, fuzzy +msgid "Group" +msgstr "Създай нова група от полета" + +#: includes/fields/class-acf-field-group.php:469 +#: pro/fields/class-acf-field-repeater.php:453 +msgid "Sub Fields" +msgstr "Вложени полета" + +#: includes/fields/class-acf-field-group.php:486 +#: pro/fields/class-acf-field-clone.php:890 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: includes/fields/class-acf-field-group.php:491 +#: pro/fields/class-acf-field-clone.php:895 +#: pro/fields/class-acf-field-flexible-content.php:629 +#: pro/fields/class-acf-field-repeater.php:522 +msgid "Block" +msgstr "Блок" + +#: includes/fields/class-acf-field-group.php:492 +#: pro/fields/class-acf-field-clone.php:896 +#: pro/fields/class-acf-field-flexible-content.php:628 +#: pro/fields/class-acf-field-repeater.php:521 +msgid "Table" +msgstr "Таблица" + +#: includes/fields/class-acf-field-group.php:493 +#: pro/fields/class-acf-field-clone.php:897 +#: pro/fields/class-acf-field-flexible-content.php:630 +#: pro/fields/class-acf-field-repeater.php:523 +msgid "Row" +msgstr "Ред" + +#: includes/fields/class-acf-field-image.php:36 +msgid "Image" +msgstr "Изображение" + +#: includes/fields/class-acf-field-image.php:51 +msgid "Select Image" +msgstr "Избор на изображение" + +#: includes/fields/class-acf-field-image.php:52 +#: pro/fields/class-acf-field-gallery.php:53 +msgid "Edit Image" +msgstr "Редактиране на изображение" + +#: includes/fields/class-acf-field-image.php:53 +#: pro/fields/class-acf-field-gallery.php:54 +msgid "Update Image" +msgstr "Актуализация на изображението" + +#: includes/fields/class-acf-field-image.php:55 +msgid "All images" +msgstr "Всички изображения" + +#: includes/fields/class-acf-field-image.php:142 +#: includes/fields/class-acf-field-link.php:153 includes/input.php:267 +#: pro/fields/class-acf-field-gallery.php:358 +#: pro/fields/class-acf-field-gallery.php:546 +msgid "Remove" +msgstr "Премахване" + +#: includes/fields/class-acf-field-image.php:158 +msgid "No image selected" +msgstr "Няма избрано изображение" + +#: includes/fields/class-acf-field-image.php:158 +msgid "Add Image" +msgstr "Добавяне на изображение" + +#: includes/fields/class-acf-field-image.php:212 +msgid "Image Array" +msgstr "Масив от изображения" + +#: includes/fields/class-acf-field-image.php:213 +msgid "Image URL" +msgstr "URL на изображението" + +#: includes/fields/class-acf-field-image.php:214 +msgid "Image ID" +msgstr "ID на изображението" + +#: includes/fields/class-acf-field-image.php:221 +msgid "Preview Size" +msgstr "Размер на визуализация" + +#: includes/fields/class-acf-field-image.php:222 +msgid "Shown when entering data" +msgstr "Показва се при въвеждане на данни" + +#: includes/fields/class-acf-field-image.php:246 +#: includes/fields/class-acf-field-image.php:275 +#: pro/fields/class-acf-field-gallery.php:685 +#: pro/fields/class-acf-field-gallery.php:714 +msgid "Restrict which images can be uploaded" +msgstr "Ограничаване какви изображения могат да бъдат качени" + +#: includes/fields/class-acf-field-image.php:249 +#: includes/fields/class-acf-field-image.php:278 +#: includes/fields/class-acf-field-oembed.php:286 +#: pro/fields/class-acf-field-gallery.php:688 +#: pro/fields/class-acf-field-gallery.php:717 +msgid "Width" +msgstr "Ширина" + +#: includes/fields/class-acf-field-link.php:36 +#, fuzzy +msgid "Link" +msgstr "Връзка към страница" + +#: includes/fields/class-acf-field-link.php:146 +#, fuzzy +msgid "Select Link" +msgstr "Избор на файл" + +#: includes/fields/class-acf-field-link.php:151 +msgid "Opens in a new window/tab" +msgstr "" + +#: includes/fields/class-acf-field-link.php:186 +#, fuzzy +msgid "Link Array" +msgstr "Масив от файлове" + +#: includes/fields/class-acf-field-link.php:187 +#, fuzzy +msgid "Link URL" +msgstr "URL на файла" + +#: includes/fields/class-acf-field-message.php:36 +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-true_false.php:141 +msgid "Message" +msgstr "Съобщение" + +#: includes/fields/class-acf-field-message.php:124 +#: includes/fields/class-acf-field-textarea.php:176 +msgid "New Lines" +msgstr "Нови редове" + +#: includes/fields/class-acf-field-message.php:125 +#: includes/fields/class-acf-field-textarea.php:177 +msgid "Controls how new lines are rendered" +msgstr "Контролира как се извеждат новите редове" + +#: includes/fields/class-acf-field-message.php:129 +#: includes/fields/class-acf-field-textarea.php:181 +msgid "Automatically add paragraphs" +msgstr "Автоматично добавяне на параграфи" + +#: includes/fields/class-acf-field-message.php:130 +#: includes/fields/class-acf-field-textarea.php:182 +msgid "Automatically add <br>" +msgstr "Автоматично добавяне на <br>" + +#: includes/fields/class-acf-field-message.php:131 +#: includes/fields/class-acf-field-textarea.php:183 +msgid "No Formatting" +msgstr "Без форматиране" + +#: includes/fields/class-acf-field-message.php:138 +msgid "Escape HTML" +msgstr "Изчистване на HTML" + +#: includes/fields/class-acf-field-message.php:139 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "Позволяване на HTML-а да се показва като видим текст" + +#: includes/fields/class-acf-field-number.php:36 +msgid "Number" +msgstr "Число" + +#: includes/fields/class-acf-field-number.php:181 +msgid "Minimum Value" +msgstr "Минимална стойност" + +#: includes/fields/class-acf-field-number.php:190 +msgid "Maximum Value" +msgstr "Максимална стойност" + +#: includes/fields/class-acf-field-number.php:199 +msgid "Step Size" +msgstr "Размер на стъпката" + +#: includes/fields/class-acf-field-number.php:237 +msgid "Value must be a number" +msgstr "Стойността трябва да е число" + +#: includes/fields/class-acf-field-number.php:255 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "Стойността трябва да е равна на или по-голяма от %d" + +#: includes/fields/class-acf-field-number.php:263 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "Стойността трябва да е равна на или по-малка от %d" + +#: includes/fields/class-acf-field-oembed.php:36 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:237 +msgid "Enter URL" +msgstr "Въведете URL адрес" + +#: includes/fields/class-acf-field-oembed.php:250 +#: includes/fields/class-acf-field-taxonomy.php:904 +msgid "Error." +msgstr "Грешка." + +#: includes/fields/class-acf-field-oembed.php:250 +msgid "No embed found for the given URL." +msgstr "Няма открито вграждане за посочения URL адрес." + +#: includes/fields/class-acf-field-oembed.php:283 +#: includes/fields/class-acf-field-oembed.php:294 +msgid "Embed Size" +msgstr "Размери за вграждане" + +#: includes/fields/class-acf-field-page_link.php:192 +msgid "Archives" +msgstr "Архиви" + +#: includes/fields/class-acf-field-page_link.php:500 +#: includes/fields/class-acf-field-post_object.php:399 +#: includes/fields/class-acf-field-relationship.php:704 +msgid "Filter by Post Type" +msgstr "Филтриране по тип публикация" + +#: includes/fields/class-acf-field-page_link.php:508 +#: includes/fields/class-acf-field-post_object.php:407 +#: includes/fields/class-acf-field-relationship.php:712 +msgid "All post types" +msgstr "Всички типове публикации" + +#: includes/fields/class-acf-field-page_link.php:514 +#: includes/fields/class-acf-field-post_object.php:413 +#: includes/fields/class-acf-field-relationship.php:718 +msgid "Filter by Taxonomy" +msgstr "Филтриране по таксономия" + +#: includes/fields/class-acf-field-page_link.php:522 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-relationship.php:726 +msgid "All taxonomies" +msgstr "Всички таксономии" + +#: includes/fields/class-acf-field-page_link.php:528 +#: includes/fields/class-acf-field-post_object.php:427 +#: includes/fields/class-acf-field-radio.php:259 +#: includes/fields/class-acf-field-select.php:484 +#: includes/fields/class-acf-field-taxonomy.php:799 +#: includes/fields/class-acf-field-user.php:423 +msgid "Allow Null?" +msgstr "Позволяване на празна стойност?" + +#: includes/fields/class-acf-field-page_link.php:538 +msgid "Allow Archives URLs" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:548 +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-select.php:494 +#: includes/fields/class-acf-field-user.php:433 +msgid "Select multiple values?" +msgstr "Избиране на няколко стойности?" + +#: includes/fields/class-acf-field-password.php:36 +msgid "Password" +msgstr "Парола" + +#: includes/fields/class-acf-field-post_object.php:36 +#: includes/fields/class-acf-field-post_object.php:452 +#: includes/fields/class-acf-field-relationship.php:783 +msgid "Post Object" +msgstr "Обект-публикация" + +#: includes/fields/class-acf-field-post_object.php:453 +#: includes/fields/class-acf-field-relationship.php:784 +msgid "Post ID" +msgstr "ID на публикация" + +#: includes/fields/class-acf-field-radio.php:36 +msgid "Radio Button" +msgstr "Радио бутон" + +#: includes/fields/class-acf-field-radio.php:269 +msgid "Other" +msgstr "Друго" + +#: includes/fields/class-acf-field-radio.php:274 +msgid "Add 'other' choice to allow for custom values" +msgstr "Добавяне на избор 'друго' като възможност за потребителските стойности" + +#: includes/fields/class-acf-field-radio.php:280 +msgid "Save Other" +msgstr "Запазване" + +#: includes/fields/class-acf-field-radio.php:285 +msgid "Save 'other' values to the field's choices" +msgstr "Запазване на стойностите 'друго' към опциите на полето" + +#: includes/fields/class-acf-field-relationship.php:36 +msgid "Relationship" +msgstr "Връзка" + +#: includes/fields/class-acf-field-relationship.php:48 +msgid "Minimum values reached ( {min} values )" +msgstr "Минималния брой стойности бе достигнат ( {min} стойности )" + +#: includes/fields/class-acf-field-relationship.php:49 +msgid "Maximum values reached ( {max} values )" +msgstr "Максималния брой стойности бе достигнат ( {min} стойности )" + +#: includes/fields/class-acf-field-relationship.php:50 +msgid "Loading" +msgstr "Зареждане" + +#: includes/fields/class-acf-field-relationship.php:51 +msgid "No matches found" +msgstr "Няма намерени съвпадения" + +#: includes/fields/class-acf-field-relationship.php:585 +msgid "Search..." +msgstr "Търсене…" + +#: includes/fields/class-acf-field-relationship.php:594 +msgid "Select post type" +msgstr "Изберете тип на публикацията" + +#: includes/fields/class-acf-field-relationship.php:607 +msgid "Select taxonomy" +msgstr "Изберете таксономия" + +#: includes/fields/class-acf-field-relationship.php:732 +msgid "Filters" +msgstr "Филтри" + +#: includes/fields/class-acf-field-relationship.php:738 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Вид на публикация" + +#: includes/fields/class-acf-field-relationship.php:739 +#: includes/fields/class-acf-field-taxonomy.php:36 +#: includes/fields/class-acf-field-taxonomy.php:769 +msgid "Taxonomy" +msgstr "Таксономия" + +#: includes/fields/class-acf-field-relationship.php:746 +msgid "Elements" +msgstr "Елементи" + +#: includes/fields/class-acf-field-relationship.php:747 +msgid "Selected elements will be displayed in each result" +msgstr "Избраните елементи ще бъдат показани във всеки резултат" + +#: includes/fields/class-acf-field-relationship.php:758 +msgid "Minimum posts" +msgstr "Минимален брой публикации" + +#: includes/fields/class-acf-field-relationship.php:767 +msgid "Maximum posts" +msgstr "Максимален брой публикации" + +#: includes/fields/class-acf-field-relationship.php:871 +#: pro/fields/class-acf-field-gallery.php:815 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s изисква поне %s избор" +msgstr[1] "%s изисква поне %s избора" + +#: includes/fields/class-acf-field-select.php:36 +#: includes/fields/class-acf-field-taxonomy.php:791 +#, fuzzy +msgctxt "noun" +msgid "Select" +msgstr "Избор" + +#: includes/fields/class-acf-field-select.php:49 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "" + +#: includes/fields/class-acf-field-select.php:50 +#, php-format +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:51 +#, fuzzy +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Няма намерени съвпадения" + +#: includes/fields/class-acf-field-select.php:52 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:53 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:54 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "" + +#: includes/fields/class-acf-field-select.php:55 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:56 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "" + +#: includes/fields/class-acf-field-select.php:57 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "" + +#: includes/fields/class-acf-field-select.php:58 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "" + +#: includes/fields/class-acf-field-select.php:59 +#, fuzzy +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Търсене на полета" + +#: includes/fields/class-acf-field-select.php:60 +#, fuzzy +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Провалена валидация" + +#: includes/fields/class-acf-field-select.php:270 includes/media.php:54 +#, fuzzy +msgctxt "verb" +msgid "Select" +msgstr "Избор" + +#: includes/fields/class-acf-field-select.php:504 +#: includes/fields/class-acf-field-true_false.php:159 +msgid "Stylised UI" +msgstr "Стилизиран интерфейс" + +#: includes/fields/class-acf-field-select.php:514 +msgid "Use AJAX to lazy load choices?" +msgstr "Използване на AJAX за зареждане на опциите?" + +#: includes/fields/class-acf-field-select.php:525 +#, fuzzy +msgid "Specify the value returned" +msgstr "Уточнява върнатата стойност в сайта" + +#: includes/fields/class-acf-field-separator.php:36 +msgid "Separator" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:36 +msgid "Tab" +msgstr "Раздел" + +#: includes/fields/class-acf-field-tab.php:96 +msgid "" +"The tab field will display incorrectly when added to a Table style repeater " +"field or flexible content field layout" +msgstr "" +"Полето за раздел ще се покаже грешно когато се добави към поле-повторител с " +"табличен стил, или поле за гъвкаво съдържание" + +#: includes/fields/class-acf-field-tab.php:97 +msgid "" +"Use \"Tab Fields\" to better organize your edit screen by grouping fields " +"together." +msgstr "" +"Използвайте \"Полета Раздел\" за да организирате по-добре екраните за " +"редактиране чрез групиране на полетата." + +#: includes/fields/class-acf-field-tab.php:98 +msgid "" +"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." +msgstr "" +"Всички полета след това \"раздел поле\" (или до следващото такова) ще бъдат " +"групирани заедно в този раздел." + +#: includes/fields/class-acf-field-tab.php:112 +msgid "Placement" +msgstr "Положение" + +#: includes/fields/class-acf-field-tab.php:124 +msgid "End-point" +msgstr "Крайна точка" + +#: includes/fields/class-acf-field-tab.php:125 +msgid "Use this field as an end-point and start a new group of tabs" +msgstr "" +"Използване на това поле като крайна точка и започване на нова група раздели" + +#: includes/fields/class-acf-field-taxonomy.php:719 +#: includes/fields/class-acf-field-true_false.php:95 +#: includes/fields/class-acf-field-true_false.php:184 includes/input.php:266 +#: pro/admin/views/html-settings-updates.php:103 +msgid "No" +msgstr "Не" + +#: includes/fields/class-acf-field-taxonomy.php:738 +msgid "None" +msgstr "Никакъв" + +#: includes/fields/class-acf-field-taxonomy.php:770 +msgid "Select the taxonomy to be displayed" +msgstr "Избор на таксономия" + +#: includes/fields/class-acf-field-taxonomy.php:779 +msgid "Appearance" +msgstr "Външен вид" + +#: includes/fields/class-acf-field-taxonomy.php:780 +msgid "Select the appearance of this field" +msgstr "Избор на външния вид на това поле" + +#: includes/fields/class-acf-field-taxonomy.php:785 +msgid "Multiple Values" +msgstr "Множество стойности" + +#: includes/fields/class-acf-field-taxonomy.php:787 +msgid "Multi Select" +msgstr "Множество избрани стойности" + +#: includes/fields/class-acf-field-taxonomy.php:789 +msgid "Single Value" +msgstr "Единична стойност" + +#: includes/fields/class-acf-field-taxonomy.php:790 +msgid "Radio Buttons" +msgstr "Радио бутони" + +#: includes/fields/class-acf-field-taxonomy.php:809 +msgid "Create Terms" +msgstr "Създаване на термини" + +#: includes/fields/class-acf-field-taxonomy.php:810 +msgid "Allow new terms to be created whilst editing" +msgstr "Позволяване нови термини да се създават при редактиране" + +#: includes/fields/class-acf-field-taxonomy.php:819 +msgid "Save Terms" +msgstr "Запазване на термини" + +#: includes/fields/class-acf-field-taxonomy.php:820 +msgid "Connect selected terms to the post" +msgstr "Свързване на избраните термини към тази публикация" + +#: includes/fields/class-acf-field-taxonomy.php:829 +msgid "Load Terms" +msgstr "Зареждане на термини" + +#: includes/fields/class-acf-field-taxonomy.php:830 +msgid "Load value from posts terms" +msgstr "Зареждане на стойност от термините на публикациите" + +#: includes/fields/class-acf-field-taxonomy.php:844 +msgid "Term Object" +msgstr "Обект-термин" + +#: includes/fields/class-acf-field-taxonomy.php:845 +msgid "Term ID" +msgstr "ID на термин" + +#: includes/fields/class-acf-field-taxonomy.php:904 +#, php-format +msgid "User unable to add new %s" +msgstr "Потребителят не може да добави %s" + +#: includes/fields/class-acf-field-taxonomy.php:917 +#, php-format +msgid "%s already exists" +msgstr "%s вече съществува" + +#: includes/fields/class-acf-field-taxonomy.php:958 +#, php-format +msgid "%s added" +msgstr "успешно добавяне на %s" + +#: includes/fields/class-acf-field-taxonomy.php:1003 +msgid "Add" +msgstr "Добавяне" + +#: includes/fields/class-acf-field-text.php:36 +msgid "Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-text.php:178 +#: includes/fields/class-acf-field-textarea.php:157 +msgid "Character Limit" +msgstr "Максимален брой символи" + +#: includes/fields/class-acf-field-text.php:179 +#: includes/fields/class-acf-field-textarea.php:158 +msgid "Leave blank for no limit" +msgstr "Оставете празно за да премахнете ограничението" + +#: includes/fields/class-acf-field-textarea.php:36 +msgid "Text Area" +msgstr "Текстова област" + +#: includes/fields/class-acf-field-textarea.php:166 +msgid "Rows" +msgstr "Редове" + +#: includes/fields/class-acf-field-textarea.php:167 +msgid "Sets the textarea height" +msgstr "Задава височината на текстовото поле" + +#: includes/fields/class-acf-field-time_picker.php:36 +#, fuzzy +msgid "Time Picker" +msgstr "Избор на дата и час" + +#: includes/fields/class-acf-field-true_false.php:36 +msgid "True / False" +msgstr "Вярно / невярно" + +#: includes/fields/class-acf-field-true_false.php:94 +#: includes/fields/class-acf-field-true_false.php:174 includes/input.php:265 +#: pro/admin/views/html-settings-updates.php:93 +msgid "Yes" +msgstr "Да" + +#: includes/fields/class-acf-field-true_false.php:142 +msgid "Displays text alongside the checkbox" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:170 +#, fuzzy +msgid "On Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when active" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:180 +#, fuzzy +msgid "Off Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-true_false.php:181 +msgid "Text shown when inactive" +msgstr "" + +#: includes/fields/class-acf-field-url.php:36 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-url.php:165 +msgid "Value must be a valid URL" +msgstr "Стойността трябва да е валиден URL" + +#: includes/fields/class-acf-field-user.php:36 includes/locations.php:95 +msgid "User" +msgstr "Потребител" + +#: includes/fields/class-acf-field-user.php:408 +msgid "Filter by role" +msgstr "Филтриране по роля" + +#: includes/fields/class-acf-field-user.php:416 +msgid "All user roles" +msgstr "Всички потребителски роли" + +#: includes/fields/class-acf-field-wysiwyg.php:36 +msgid "Wysiwyg Editor" +msgstr "Редактор на съдържание" + +#: includes/fields/class-acf-field-wysiwyg.php:385 +msgid "Visual" +msgstr "Визуален" + +#: includes/fields/class-acf-field-wysiwyg.php:386 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Текстов" + +#: includes/fields/class-acf-field-wysiwyg.php:392 +msgid "Click to initialize TinyMCE" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:445 +msgid "Tabs" +msgstr "Раздели" + +#: includes/fields/class-acf-field-wysiwyg.php:450 +msgid "Visual & Text" +msgstr "Визуален и текстов" + +#: includes/fields/class-acf-field-wysiwyg.php:451 +msgid "Visual Only" +msgstr "Само визуален" + +#: includes/fields/class-acf-field-wysiwyg.php:452 +msgid "Text Only" +msgstr "Само текстов" + +#: includes/fields/class-acf-field-wysiwyg.php:459 +msgid "Toolbar" +msgstr "Лента с инструменти" + +#: includes/fields/class-acf-field-wysiwyg.php:469 +msgid "Show Media Upload Buttons?" +msgstr "Показване на бутоните за качване на файлове?" + +#: includes/fields/class-acf-field-wysiwyg.php:479 +msgid "Delay initialization?" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:480 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "" + +#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 +#: pro/admin/admin-options-page.php:304 +msgid "Edit field group" +msgstr "Редактиране на група полета" + +#: includes/forms/form-front.php:55 +#, fuzzy +msgid "Validate Email" +msgstr "Провалена валидация" + +#: includes/forms/form-front.php:103 +#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81 +msgid "Update" +msgstr "Обновяване" + +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "Публикацията бе актуализирана" + +#: includes/forms/form-front.php:229 +msgid "Spam Detected" +msgstr "Открит спам" + +#: includes/input.php:258 +msgid "Expand Details" +msgstr "Разпъване на детайлите" + +#: includes/input.php:259 +msgid "Collapse Details" +msgstr "Свиване на детайлите" + +#: includes/input.php:260 +msgid "Validation successful" +msgstr "Успешна валидация" + +#: includes/input.php:261 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Провалена валидация" + +#: includes/input.php:262 +msgid "1 field requires attention" +msgstr "1 поле изисква внимание" + +#: includes/input.php:263 +#, php-format +msgid "%d fields require attention" +msgstr "%d полета изискват внимание" + +#: includes/input.php:264 +msgid "Restricted" +msgstr "Ограничен" + +#: includes/input.php:268 +msgid "Cancel" +msgstr "" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Публикация" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Страница" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "Формуляри" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Файл" + +#: includes/locations/class-acf-location-attachment.php:113 +#, php-format +msgid "All %s formats" +msgstr "" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Коментар" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Роля на текущия потребител" + +#: includes/locations/class-acf-location-current-user-role.php:114 +msgid "Super Admin" +msgstr "Супер администратор" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Текущ потребител" + +#: includes/locations/class-acf-location-current-user.php:101 +msgid "Logged in" +msgstr "Влезли сте" + +#: includes/locations/class-acf-location-current-user.php:102 +msgid "Viewing front end" +msgstr "Преглеждане на сайта" + +#: includes/locations/class-acf-location-current-user.php:103 +msgid "Viewing back end" +msgstr "Преглеждане на администрацията" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:113 +#, fuzzy +msgid "Menu Locations" +msgstr "Местоположение" + +#: includes/locations/class-acf-location-nav-menu.php:123 +msgid "Menus" +msgstr "" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Страница родител" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Шаблон на страница" + +#: includes/locations/class-acf-location-page-template.php:102 +#: includes/locations/class-acf-location-post-template.php:156 +msgid "Default Template" +msgstr "Шаблон по подразбиране" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Тип страница" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Front Page" +msgstr "Първа страница" + +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Posts Page" +msgstr "Страница с публикации" + +#: includes/locations/class-acf-location-page-type.php:151 +msgid "Top Level Page (no parent)" +msgstr "Горно ниво страница (родител)" + +#: includes/locations/class-acf-location-page-type.php:152 +msgid "Parent Page (has children)" +msgstr "Родителска страница (има деца)" + +#: includes/locations/class-acf-location-page-type.php:153 +msgid "Child Page (has parent)" +msgstr "Дете страница (има родител)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Категория на публикация" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Формат на публикация" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Статус на публикация" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Таксономия на публикация" + +#: includes/locations/class-acf-location-post-template.php:29 +#, fuzzy +msgid "Post Template" +msgstr "Шаблон на страница" + +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy Term" +msgstr "Термин" + +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "Потребителски формуляр" + +#: includes/locations/class-acf-location-user-form.php:92 +msgid "Add / Edit" +msgstr "Добавяне / редактиране" + +#: includes/locations/class-acf-location-user-form.php:93 +msgid "Register" +msgstr "Регистрация" + +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "Потребителска роля" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Джаджa" + +#: includes/media.php:55 +#, fuzzy +msgctxt "verb" +msgid "Edit" +msgstr "Редактиране" + +#: includes/media.php:56 +#, fuzzy +msgctxt "verb" +msgid "Update" +msgstr "Обновяване" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "%s стойност е задължителна" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Модерни потребителски полета PRO" + +#: pro/admin/admin-options-page.php:196 +msgid "Publish" +msgstr "Публикуване" + +#: pro/admin/admin-options-page.php:202 +#, php-format +msgid "" +"No Custom Field Groups found for this options page. Create a " +"Custom Field Group" +msgstr "" +"Няма намерени групи полета за тази страница с опции. Създаване на група полета" + +#: pro/admin/admin-settings-updates.php:78 +msgid "Error. Could not connect to update server" +msgstr "Грешка. Неуспешно свързване със сървъра" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:17 +msgid "Updates" +msgstr "Актуализации" + +#: pro/admin/views/html-settings-updates.php:11 +msgid "Deactivate License" +msgstr "Деактивиране на лиценз" + +#: pro/admin/views/html-settings-updates.php:11 +msgid "Activate License" +msgstr "Активиране на лиценз" + +#: pro/admin/views/html-settings-updates.php:21 +#, fuzzy +msgid "License Information" +msgstr "Информация за обновяването" + +#: pro/admin/views/html-settings-updates.php:24 +#, fuzzy, php-format +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:33 +msgid "License Key" +msgstr "Лицензионен ключ" + +#: pro/admin/views/html-settings-updates.php:65 +msgid "Update Information" +msgstr "Информация за обновяването" + +#: pro/admin/views/html-settings-updates.php:72 +msgid "Current Version" +msgstr "Текуща версия" + +#: pro/admin/views/html-settings-updates.php:80 +msgid "Latest Version" +msgstr "Последна версия" + +#: pro/admin/views/html-settings-updates.php:88 +msgid "Update Available" +msgstr "Налице е обновяване" + +#: pro/admin/views/html-settings-updates.php:96 +msgid "Update Plugin" +msgstr "Обновяване" + +#: pro/admin/views/html-settings-updates.php:98 +msgid "Please enter your license key above to unlock updates" +msgstr "Моля въведете вашия лицензионен ключ за да отключите обновяванията" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Check Again" +msgstr "Проверка" + +#: pro/admin/views/html-settings-updates.php:121 +msgid "Upgrade Notice" +msgstr "Забележки за обновяването" + +#: pro/fields/class-acf-field-clone.php:36 +msgctxt "noun" +msgid "Clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:858 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:875 +#, fuzzy +msgid "Display" +msgstr "Формат на показване" + +#: pro/fields/class-acf-field-clone.php:876 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:881 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:882 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:903 +#, fuzzy, php-format +msgid "Labels will be displayed as %s" +msgstr "Избраните елементи ще бъдат показани във всеки резултат" + +#: pro/fields/class-acf-field-clone.php:906 +#, fuzzy +msgid "Prefix Field Labels" +msgstr "Етикет на полето" + +#: pro/fields/class-acf-field-clone.php:917 +#, php-format +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:920 +#, fuzzy +msgid "Prefix Field Names" +msgstr "Име на полето" + +#: pro/fields/class-acf-field-clone.php:1038 +#, fuzzy +msgid "Unknown field" +msgstr "Под полетата" + +#: pro/fields/class-acf-field-clone.php:1077 +#, fuzzy +msgid "Unknown field group" +msgstr "Синхронизиране на групата полета" + +#: pro/fields/class-acf-field-clone.php:1081 +#, php-format +msgid "All fields from %s field group" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:42 +#: pro/fields/class-acf-field-repeater.php:230 +#: pro/fields/class-acf-field-repeater.php:534 +msgid "Add Row" +msgstr "Добавяне на ред" + +#: pro/fields/class-acf-field-flexible-content.php:45 +msgid "layout" +msgstr "шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:46 +msgid "layouts" +msgstr "шаблони" + +#: pro/fields/class-acf-field-flexible-content.php:47 +msgid "remove {layout}?" +msgstr "премахване?" + +#: pro/fields/class-acf-field-flexible-content.php:48 +msgid "This field requires at least {min} {identifier}" +msgstr "Това поле изисква поне {min} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:49 +msgid "This field has a limit of {max} {identifier}" +msgstr "Това поле има лимит от {max} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:50 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "Това поле изисква поне {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:51 +msgid "Maximum {label} limit reached ({max} {identifier})" +msgstr "Максималния лимит на {label} бе достигнат ({max} {identifier})" + +#: pro/fields/class-acf-field-flexible-content.php:52 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} налични (максимум {max})" + +#: pro/fields/class-acf-field-flexible-content.php:53 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} задължителни (минимум {min})" + +#: pro/fields/class-acf-field-flexible-content.php:54 +msgid "Flexible Content requires at least 1 layout" +msgstr "Полето за гъвкаво съдържание изисква поне 1 шаблон полета" + +#: pro/fields/class-acf-field-flexible-content.php:288 +#, php-format +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 "Remove layout" +msgstr "Премахване на шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:425 +#: pro/fields/class-acf-field-repeater.php:360 +msgid "Click to toggle" +msgstr "Кликнете за да превключите" + +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Reorder Layout" +msgstr "Пренареждане на шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Reorder" +msgstr "Пренареждане" + +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Delete Layout" +msgstr "Изтриване на шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:573 +msgid "Duplicate Layout" +msgstr "Дублиране на шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:574 +msgid "Add New Layout" +msgstr "Добавяне на нов шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:645 +msgid "Min" +msgstr "Минимум" + +#: pro/fields/class-acf-field-flexible-content.php:658 +msgid "Max" +msgstr "Максимум" + +#: pro/fields/class-acf-field-flexible-content.php:685 +#: pro/fields/class-acf-field-repeater.php:530 +msgid "Button Label" +msgstr "Етикет на бутона" + +#: pro/fields/class-acf-field-flexible-content.php:694 +msgid "Minimum Layouts" +msgstr "Минимален брой шаблони" + +#: pro/fields/class-acf-field-flexible-content.php:703 +msgid "Maximum Layouts" +msgstr "Максимален брой шаблони" + +#: pro/fields/class-acf-field-gallery.php:52 +msgid "Add Image to Gallery" +msgstr "Добавяне на изображение към галерия" + +#: pro/fields/class-acf-field-gallery.php:56 +msgid "Maximum selection reached" +msgstr "Максималния брой избори бе достигнат" + +#: pro/fields/class-acf-field-gallery.php:336 +msgid "Length" +msgstr "Размер" + +#: pro/fields/class-acf-field-gallery.php:379 +#, fuzzy +msgid "Caption" +msgstr "Опции" + +#: pro/fields/class-acf-field-gallery.php:388 +#, fuzzy +msgid "Alt Text" +msgstr "Текст" + +#: pro/fields/class-acf-field-gallery.php:559 +msgid "Add to gallery" +msgstr "Добавяне към галерия" + +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Bulk actions" +msgstr "Групови действия" + +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Sort by date uploaded" +msgstr "Сортиране по дата на качване" + +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Sort by date modified" +msgstr "Сортиране по дата на последна промяна" + +#: pro/fields/class-acf-field-gallery.php:566 +msgid "Sort by title" +msgstr "Сортиране по заглавие" + +#: pro/fields/class-acf-field-gallery.php:567 +msgid "Reverse current order" +msgstr "Обръщане на текущия ред" + +#: pro/fields/class-acf-field-gallery.php:585 +msgid "Close" +msgstr "Затваряне" + +#: pro/fields/class-acf-field-gallery.php:639 +msgid "Minimum Selection" +msgstr "Минимална селекция" + +#: pro/fields/class-acf-field-gallery.php:648 +msgid "Maximum Selection" +msgstr "Максимална селекция" + +#: pro/fields/class-acf-field-gallery.php:657 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:658 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:662 +#, fuzzy +msgid "Append to the end" +msgstr "Показва се след полето" + +#: pro/fields/class-acf-field-gallery.php:663 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:47 +msgid "Minimum rows reached ({min} rows)" +msgstr "Минималния брой редове бе достигнат ({min} реда)" + +#: pro/fields/class-acf-field-repeater.php:48 +msgid "Maximum rows reached ({max} rows)" +msgstr "Максималния брой редове бе достигнат ({max} реда)" + +#: pro/fields/class-acf-field-repeater.php:405 +msgid "Add row" +msgstr "Добавяне на ред" + +#: pro/fields/class-acf-field-repeater.php:406 +msgid "Remove row" +msgstr "Премахване на ред" + +#: pro/fields/class-acf-field-repeater.php:483 +msgid "Collapsed" +msgstr "Свит" + +#: pro/fields/class-acf-field-repeater.php:484 +msgid "Select a sub field to show when row is collapsed" +msgstr "Изберете вложено поле, което да се показва когато реда е свит" + +#: pro/fields/class-acf-field-repeater.php:494 +msgid "Minimum Rows" +msgstr "Минимален брой редове" + +#: pro/fields/class-acf-field-repeater.php:504 +msgid "Maximum Rows" +msgstr "Максимален брой редове" + +#: pro/locations/class-acf-location-options-page.php:70 +msgid "No options pages exist" +msgstr "Няма създадени страници с опции" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "Опции" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Опциите бяха актуализирани" + +#: pro/updates.php:97 +#, fuzzy, php-format +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 "" +"За да включите обновяванията, моля въведете вашия лицензионен ключ на " +"страницата Актуализации. Ако нямате лицензионен ключ, " +"моля посетете детайли и цени" + +#. Plugin URI of the plugin/theme +#, fuzzy +msgid "https://www.advancedcustomfields.com/" +msgstr "http://www.advancedcustomfields.com/" + +#. Author of the plugin/theme +#, fuzzy +msgid "Elliot Condon" +msgstr "Елиът Кондън" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "http://www.elliotcondon.com/" + +#~ msgid "Disabled" +#~ msgstr "Изключено" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Изключено (%s)" +#~ msgstr[1] "Изключени (%s)" + +#~ msgid "See what's new in" +#~ msgstr "Вижте какво е новото в" + +#~ msgid "version" +#~ msgstr "версия" + +#~ msgid "Getting Started" +#~ msgstr "Как да започнете" + +#~ msgid "Field Types" +#~ msgstr "Типове полета" + +#~ msgid "Functions" +#~ msgstr "Функции" + +#~ msgid "Actions" +#~ msgstr "Действия" + +#~ msgid "'How to' guides" +#~ msgstr "Ръководства" + +#~ msgid "Tutorials" +#~ msgstr "Уроци" + +#~ msgid "Created by" +#~ msgstr "Създадено от" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "Успех. Инструментът за импортиране добави %s групи полета: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Внимание. Инструментът за импортиране откри, че %s групи полета " +#~ "вече съществуват и бяха игнорирани: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Обновяване" + +#~ msgid "Upgrade" +#~ msgstr "Обновяване" + +#~ msgid "Error" +#~ msgstr "Грешка" + +#~ msgid "Upgrading data to" +#~ msgstr "Обновяване на данните към" + +#~ msgid "See what's new" +#~ msgstr "Вижте какво е новото" + +#~ msgid "Show a different month" +#~ msgstr "Показване на различен месец" + +#~ msgid "Return format" +#~ msgstr "Формат при връщане" + +#~ msgid "uploaded to this post" +#~ msgstr "прикачен към тази публикация" + +#~ msgid "File Size" +#~ msgstr "Размер на файла" + +#~ msgid "No File selected" +#~ msgstr "Няма избран файл" + +#~ msgid "eg. Show extra content" +#~ msgstr "напр. Покажи допълнително съдържание" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Грешка при свързване. Моля, опитайте отново" + +#~ msgid "Save Options" +#~ msgstr "Запазване на опциите" + +#~ msgid "License" +#~ msgstr "Лиценз" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "За да отключите обновяванията, моля въведете вашия лицензен код в " +#~ "съответното поле. Ако нямате такъв, моля вижте" + +#~ msgid "details & pricing" +#~ msgstr "детайли и цени" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Модерни потребителски полета PRO" diff --git a/lang/pro/acf-ca.po b/lang/pro/acf-ca.po new file mode 100644 index 0000000..15df850 --- /dev/null +++ b/lang/pro/acf-ca.po @@ -0,0 +1,3310 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2019-11-01 18:50+0100\n" +"PO-Revision-Date: 2019-11-12 15:35+0100\n" +"Last-Translator: \n" +"Language-Team: Jordi Tarrida (hola@jorditarrida.cat)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.4\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:68 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:341 includes/admin/admin.php:58 +msgid "Field Groups" +msgstr "Grups de camps" + +#: acf.php:342 +msgid "Field Group" +msgstr "Grup de camps" + +#: acf.php:343 acf.php:375 includes/admin/admin.php:59 +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New" +msgstr "Afegeix-ne un" + +#: acf.php:344 +msgid "Add New Field Group" +msgstr "Afegeix un nou grup de camps" + +#: acf.php:345 +msgid "Edit Field Group" +msgstr "Edita el grup de camps" + +#: acf.php:346 +msgid "New Field Group" +msgstr "Nou grup de camps" + +#: acf.php:347 +msgid "View Field Group" +msgstr "Mostra el grup de camps" + +#: acf.php:348 +msgid "Search Field Groups" +msgstr "Cerca grups de camps" + +#: acf.php:349 +msgid "No Field Groups found" +msgstr "No s’ha trobat cap grup de camps" + +#: acf.php:350 +msgid "No Field Groups found in Trash" +msgstr "No s’ha trobat cap grup de camps a la paperera" + +#: acf.php:373 includes/admin/admin-field-group.php:220 +#: includes/admin/admin-field-groups.php:530 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "Camps" + +#: acf.php:374 +msgid "Field" +msgstr "Camp" + +#: acf.php:376 +msgid "Add New Field" +msgstr "Afegeix un nou camp" + +#: acf.php:377 +msgid "Edit Field" +msgstr "Edita el camp" + +#: acf.php:378 includes/admin/views/field-group-fields.php:41 +msgid "New Field" +msgstr "Nou camp" + +#: acf.php:379 +msgid "View Field" +msgstr "Mostra el camp" + +#: acf.php:380 +msgid "Search Fields" +msgstr "Cerca camps" + +#: acf.php:381 +msgid "No Fields found" +msgstr "No s’han trobat camps" + +#: acf.php:382 +msgid "No Fields found in Trash" +msgstr "No s’han trobat camps a la paperera" + +#: acf.php:417 includes/admin/admin-field-group.php:402 +#: includes/admin/admin-field-groups.php:587 +msgid "Inactive" +msgstr "Inactiu" + +#: acf.php:422 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactiu (%s)" +msgstr[1] "Inactius (%s)" + +#: includes/acf-field-functions.php:831 +#: includes/admin/admin-field-group.php:178 +msgid "(no label)" +msgstr "(sense etiqueta)" + +#: includes/acf-field-group-functions.php:819 +#: includes/admin/admin-field-group.php:180 +msgid "copy" +msgstr "copia" + +#: includes/admin/admin-field-group.php:86 +#: includes/admin/admin-field-group.php:87 +#: includes/admin/admin-field-group.php:89 +msgid "Field group updated." +msgstr "S’ha actualitzat el grup de camps." + +#: includes/admin/admin-field-group.php:88 +msgid "Field group deleted." +msgstr "S’ha esborrat el grup de camps." + +#: includes/admin/admin-field-group.php:91 +msgid "Field group published." +msgstr "S’ha publicat el grup de camps." + +#: includes/admin/admin-field-group.php:92 +msgid "Field group saved." +msgstr "S’ha desat el grup de camps." + +#: includes/admin/admin-field-group.php:93 +msgid "Field group submitted." +msgstr "S’ha tramès el grup de camps." + +#: includes/admin/admin-field-group.php:94 +msgid "Field group scheduled for." +msgstr "S’ha programat el grup de camps." + +#: includes/admin/admin-field-group.php:95 +msgid "Field group draft updated." +msgstr "S’ha desat l’esborrany del grup de camps." + +#: includes/admin/admin-field-group.php:171 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "La cadena “field_” no pot ser usada al principi del nom d’un camp" + +#: includes/admin/admin-field-group.php:172 +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/admin-field-group.php:173 +msgid "Field group title is required" +msgstr "Cal un nom pel grup de cmaps" + +#: includes/admin/admin-field-group.php:174 +msgid "Move to trash. Are you sure?" +msgstr "Segur que ho voleu moure a la paperera?" + +#: includes/admin/admin-field-group.php:175 +msgid "No toggle fields available" +msgstr "No hi ha camps commutables disponibles" + +#: includes/admin/admin-field-group.php:176 +msgid "Move Custom Field" +msgstr "Mou el grup de camps" + +#: includes/admin/admin-field-group.php:177 +msgid "Checked" +msgstr "Activat" + +#: includes/admin/admin-field-group.php:179 +msgid "(this field)" +msgstr "(aquest camp)" + +#: includes/admin/admin-field-group.php:181 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3649 +msgid "or" +msgstr "o" + +#: includes/admin/admin-field-group.php:182 +msgid "Null" +msgstr "Nul" + +#: includes/admin/admin-field-group.php:221 +msgid "Location" +msgstr "Ubicació" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Paràmetres" + +#: includes/admin/admin-field-group.php:372 +msgid "Field Keys" +msgstr "Claus dels camps" + +#: includes/admin/admin-field-group.php:402 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Actiu" + +#: includes/admin/admin-field-group.php:767 +msgid "Move Complete." +msgstr "S’ha completat el moviment." + +#: includes/admin/admin-field-group.php:768 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "El camp %s es pot trobar ara al grup de camps %s" + +#: includes/admin/admin-field-group.php:769 +msgid "Close Window" +msgstr "Tanca la finestra" + +#: includes/admin/admin-field-group.php:810 +msgid "Please select the destination for this field" +msgstr "Escolliu el destí d’aquest camp" + +#: includes/admin/admin-field-group.php:817 +msgid "Move Field" +msgstr "Mou el camp" + +#: includes/admin/admin-field-groups.php:89 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Actiu (%s)" +msgstr[1] "Actius (%s)" + +#: includes/admin/admin-field-groups.php:156 +#, php-format +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-field-groups.php:243 +#, php-format +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "S’ha sincronitzat el grup de camps." +msgstr[1] "S’han sincronitzat %s grups de camps." + +#: includes/admin/admin-field-groups.php:414 +#: includes/admin/admin-field-groups.php:577 +msgid "Sync available" +msgstr "Sincronització disponible" + +#: includes/admin/admin-field-groups.php:527 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:353 +msgid "Title" +msgstr "Títol" + +#: includes/admin/admin-field-groups.php:528 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +#: pro/fields/class-acf-field-gallery.php:380 +msgid "Description" +msgstr "Descripció" + +#: includes/admin/admin-field-groups.php:529 +msgid "Status" +msgstr "Estat" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:626 +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Personalitza el WordPress amb camps potents, professionals i intuïtius." + +#: includes/admin/admin-field-groups.php:628 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Registre de canvis" + +#: includes/admin/admin-field-groups.php:633 +#, php-format +msgid "See what's new in version %s." +msgstr "Mira què hi ha de nou a la versió %s." + +#: includes/admin/admin-field-groups.php:636 +msgid "Resources" +msgstr "Recursos" + +#: includes/admin/admin-field-groups.php:638 +msgid "Website" +msgstr "Lloc web" + +#: includes/admin/admin-field-groups.php:639 +msgid "Documentation" +msgstr "Documentació" + +#: includes/admin/admin-field-groups.php:640 +msgid "Support" +msgstr "Suport" + +#: includes/admin/admin-field-groups.php:642 +#: includes/admin/views/settings-info.php:81 +msgid "Pro" +msgstr "Pro" + +#: includes/admin/admin-field-groups.php:647 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "Gràcies per crear amb ACF." + +#: includes/admin/admin-field-groups.php:686 +msgid "Duplicate this item" +msgstr "Duplica aquest element" + +#: includes/admin/admin-field-groups.php:686 +#: includes/admin/admin-field-groups.php:702 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate" +msgstr "Duplica" + +#: includes/admin/admin-field-groups.php:719 +#: includes/fields/class-acf-field-google-map.php:146 +#: includes/fields/class-acf-field-relationship.php:593 +msgid "Search" +msgstr "Cerca" + +#: includes/admin/admin-field-groups.php:778 +#, php-format +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:786 +msgid "Synchronise field group" +msgstr "Sincronitza el grup de camps" + +#: includes/admin/admin-field-groups.php:786 +#: includes/admin/admin-field-groups.php:816 +msgid "Sync" +msgstr "Sincronitza" + +#: includes/admin/admin-field-groups.php:798 +msgid "Apply" +msgstr "Aplica" + +#: includes/admin/admin-field-groups.php:816 +msgid "Bulk Actions" +msgstr "Accions massives" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Eines" + +#: includes/admin/admin-upgrade.php:47 includes/admin/admin-upgrade.php:109 +#: includes/admin/admin-upgrade.php:110 includes/admin/admin-upgrade.php:173 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualitza la base de dades" + +#: includes/admin/admin-upgrade.php:197 +msgid "Review sites & upgrade" +msgstr "Revisa els llocs i actualitza" + +#: includes/admin/admin.php:54 includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "Camps personalitzats" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Informació" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "Novetats" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Exporta els grups de camps" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Genera PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "No s’han escollit grups de camps" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "S’ha exportat el grup de camps." +msgstr[1] "S’ha exportat %s grups de camps." + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Escull els grups de camps" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Escolliu els grups de camps que voleu exportar i després escolliu el mètode " +"d’exportació. Useu el botó de descàrrega per a exportar-ho a un fitxer .json " +"que després podreu importar a una altra instal·lació d’ACF. Useu el botó de " +"generació per a exportar codi PHP que podreu usar al vostre tema." + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "Exporta el fitxer" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El següent codi es pot usar per a registrar una versió local del(s) grup(s) " +"de camps escollit(s). Un grup de camps local pot aportar diversos avantatges " +"com ara temps de càrrega més ràpids, control de versions, i opcions i camps " +"dinàmics. Simplement copieu i enganxeu el següent codi al fitxer functions." +"php del vostre tema, o incloeu-lo en un fitxer extern." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "Copia-ho al porta-retalls" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "S’ha copiat" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Importa grups de camps" + +#: includes/admin/tools/class-acf-admin-tool-import.php:47 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Escolliu 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:52 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "Escull el fitxer" + +#: includes/admin/tools/class-acf-admin-tool-import.php:62 +msgid "Import File" +msgstr "Importa el fitxer" + +#: includes/admin/tools/class-acf-admin-tool-import.php:85 +#: includes/fields/class-acf-field-file.php:170 +msgid "No file selected" +msgstr "No s’ha escollit cap fitxer" + +#: includes/admin/tools/class-acf-admin-tool-import.php:93 +msgid "Error uploading file. Please try again" +msgstr "S’ha produït un error. Torneu-ho a provar" + +#: includes/admin/tools/class-acf-admin-tool-import.php:98 +msgid "Incorrect file type" +msgstr "Tipus de fitxer incorrecte" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Import file empty" +msgstr "El fitxer d’importació és buit" + +#: includes/admin/tools/class-acf-admin-tool-import.php:138 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "S’ha importat el grup de camps" +msgstr[1] "S’han importat %s grups de camps" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Lògica condicional" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "Mostra aquest camp si" + +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:86 +msgid "and" +msgstr "i" + +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Afegeix un grup de regles" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:410 +#: pro/fields/class-acf-field-repeater.php:299 +msgid "Drag to reorder" +msgstr "Arrossegueu per a reordenar" + +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "Edita el camp" + +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:152 +#: includes/fields/class-acf-field-image.php:138 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:337 +msgid "Edit" +msgstr "Edita" + +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "Duplica el camp" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "Mou el camp a un altre grup" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "Mou" + +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "Esborra el camp" + +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete" +msgstr "Esborra" + +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "Etiqueta del camp" + +#: includes/admin/views/field-group-field.php:66 +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/field-group-field.php:75 +msgid "Field Name" +msgstr "Nom del camp" + +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola paraula, sense espais. S’admeten barres baixes i guions" + +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "Tipus de camp" + +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "Instruccions" + +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instruccions per als autors. Es mostren en omplir els formularis" + +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "Obligatori?" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Atributs del contenidor" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "amplada" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "Tanca el camp" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Ordre" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:433 +#: pro/fields/class-acf-field-flexible-content.php:582 +msgid "Label" +msgstr "Etiqueta" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:939 +#: pro/fields/class-acf-field-flexible-content.php:596 +msgid "Name" +msgstr "Nom" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Clau" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Tipus" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"No hi ha camps. Feu clic al botó + Afegeix un camp per a " +"crear el vostre primer camp." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Afegeix un camp" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Regles" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "Estil" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Estàndard (en una caixa meta de WP)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Fluid (sense la caixa meta)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Posició" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Alta (damunt del títol)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Normal (després del contingut)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Posició de les etiquetes" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Al damunt" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Al costat" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Posició de les instruccions" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Sota les etiquetes" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Sota els camps" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Núm. d’ordre" + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "Els grups de camps amb un valor més baix apareixeran primer" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Es mostra a la llista de grups de camps" + +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "Enllaç permanent" + +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "Editor de contingut" + +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "Extracte" + +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "Discussió" + +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "Comentaris" + +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "Revisions" + +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "Àlies" + +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "Atributs de la pàgina" + +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:607 +msgid "Featured Image" +msgstr "Imatge destacada" + +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "Categories" + +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "Etiquetes" + +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "Envia retroenllaços" + +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "Amaga en pantalla" + +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "Escolliu elements a amagarde la pantalla d’edició." + +#: includes/admin/views/field-group-options.php:129 +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 múltiples grups de camps a la pantalla d’edició, s’usaran les " +"opcions del primer grup de camps (el que tingui el menor número d’ordre)" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"Els següents llocs necessiten una actualització de la base de dades. " +"Escolliu els que vulgueu actualitzar i feu clic a %s." + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "Actualitza els llocs" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Lloc" + +#: includes/admin/views/html-admin-page-upgrade-network.php:74 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Cal actualitzar la base de dades del lloc de %s a %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:76 +msgid "Site is up to date" +msgstr "El lloc està actualitzat" + +#: includes/admin/views/html-admin-page-upgrade-network.php:93 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"S’ha completat l’actualització de la base de dades. Torna a " +"l’administració de la xarxa" + +#: includes/admin/views/html-admin-page-upgrade-network.php:113 +msgid "Please select at least one site to upgrade." +msgstr "Escolliu almenys un lloc per a actualitzar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +#: includes/admin/views/html-notice-upgrade.php:38 +msgid "" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "" +"Es recomana 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/html-admin-page-upgrade-network.php:144 +#: includes/admin/views/html-admin-page-upgrade.php:31 +#, php-format +msgid "Upgrading data to version %s" +msgstr "S’estan actualitzant les dades a la versió %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:167 +msgid "Upgrade complete." +msgstr "S’ha completat l’actualització." + +#: includes/admin/views/html-admin-page-upgrade-network.php:176 +#: includes/admin/views/html-admin-page-upgrade-network.php:185 +#: includes/admin/views/html-admin-page-upgrade.php:78 +#: includes/admin/views/html-admin-page-upgrade.php:87 +msgid "Upgrade failed." +msgstr "L’actualització ha fallat." + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "S’estan llegint les tasques d’actualització…" + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, php-format +msgid "Database upgrade complete. See what's new" +msgstr "" +"S’ha completat l’actualització de la base de dades. Mira què " +"hi ha de nou" + +#: includes/admin/views/html-admin-page-upgrade.php:116 +#: includes/ajax/class-acf-ajax-upgrade.php:32 +msgid "No updates available." +msgstr "No hi ha actualitzacions disponibles." + +#: includes/admin/views/html-admin-tools.php:21 +msgid "Back to all tools" +msgstr "Torna a totes les eines" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Mostra aquest grup de camps si" + +#: includes/admin/views/html-notice-upgrade.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Repetible" + +#: includes/admin/views/html-notice-upgrade.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Contingut flexible" + +#: includes/admin/views/html-notice-upgrade.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galeria" + +#: includes/admin/views/html-notice-upgrade.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Pàgina d’opcions" + +#: includes/admin/views/html-notice-upgrade.php:21 +msgid "Database Upgrade Required" +msgstr "Cal actualitzar la base de dades" + +#: includes/admin/views/html-notice-upgrade.php:22 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Gràcies per actualitzar a %s v%s!" + +#: includes/admin/views/html-notice-upgrade.php:22 +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/html-notice-upgrade.php:24 +#, php-format +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/settings-addons.php:3 +msgid "Add-ons" +msgstr "Complements" + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Descarrega i instal·la" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Instal·lats" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Benvingut/da a Advanced Custom Fields" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Gràcies per actualitzar! L’ACF %s és més gran i millor que mai. Esperem que " +"us agradi." + +#: includes/admin/views/settings-info.php:15 +msgid "A Smoother Experience" +msgstr "Una millor experiència" + +#: includes/admin/views/settings-info.php:18 +msgid "Improved Usability" +msgstr "Usabilitat millorada" + +#: includes/admin/views/settings-info.php:19 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"En incloure la popular llibreria Select2 hem millorat tant la usabilitat com " +"la velocitat en un munt de tipus de camps, incloent objecte post, enllaç de " +"pàgina, taxonomia i selecció." + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Design" +msgstr "Disseny millorat" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Hem actualitzat l’aspecte de molts camps perquè l’ACF llueixi més que mai! " +"Es poden veure canvis a les galeries, relacions, i al nou camp d’oEmbed!" + +#: includes/admin/views/settings-info.php:26 +msgid "Improved Data" +msgstr "Dades millorades" + +#: includes/admin/views/settings-info.php:27 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"El redisseny de l’arquitectura de dades ha permès que els subcamps siguin " +"independents dels seus pares. Això permet arrossegar camps des de i cap a " +"camps pares!" + +#: includes/admin/views/settings-info.php:35 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Adeu, complements. Hola, PRO" + +#: includes/admin/views/settings-info.php:38 +msgid "Introducing ACF PRO" +msgstr "Presentem l’ACF PRO" + +#: includes/admin/views/settings-info.php:39 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "Estem canviant la manera en què presentem les funcionalitats prèmium!" + +#: includes/admin/views/settings-info.php:40 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Els quatre complements prèmium s’han combinat a la nova versió PRO de l’ACF. Amb llicències personals i per a desenvolupadors " +"disponibles, les funcionalitats prèmium són més assequibles i accessibles " +"que mai!" + +#: includes/admin/views/settings-info.php:44 +msgid "Powerful Features" +msgstr "Característiques potents" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"L’ACF PRO conté característiques potents com ara camps repetibles, " +"disposicions amb contingut flexible, un bonic camp de galeria i la " +"possibilitat de crear noves pàgines d’opcions a l’administració!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "" +"Més informació sobre les característiques de l’ACF PRO." + +#: includes/admin/views/settings-info.php:50 +msgid "Easy Upgrading" +msgstr "Fàcil actualització" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"Upgrading to ACF PRO is easy. Simply purchase a license online and download " +"the plugin!" +msgstr "" +"L’actualització a l’ACF PRO és senzilla. Només cal que compreu una llicència " +"en línia i descarregueu l’extensió!" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk." +msgstr "" +"També hem escrit una guia d’actualització per a respondre " +"qualsevol pregunta, però si en teniu cap, contacteu amb el nostre equip de " +"suport al tauler d’ajuda." + +#: includes/admin/views/settings-info.php:61 +msgid "New Features" +msgstr "Noves característiques" + +#: includes/admin/views/settings-info.php:66 +msgid "Link Field" +msgstr "Camp d'enllaç" + +#: includes/admin/views/settings-info.php:67 +msgid "" +"The Link field provides a simple way to select or define a link (url, title, " +"target)." +msgstr "" +"El camp d’enllaç ofereix una manera senzilla d’escollir o definir un enllaç " +"(url, títol, destí)." + +#: includes/admin/views/settings-info.php:71 +msgid "Group Field" +msgstr "Camp de grup" + +#: includes/admin/views/settings-info.php:72 +msgid "The Group field provides a simple way to create a group of fields." +msgstr "El camp de grup facilita la creació d’un grup de camps." + +#: includes/admin/views/settings-info.php:76 +msgid "oEmbed Field" +msgstr "Camp d’oEmbed" + +#: includes/admin/views/settings-info.php:77 +msgid "" +"The oEmbed field allows an easy way to embed videos, images, tweets, audio, " +"and other content." +msgstr "" +"El camp d’oEmbed permet incrustar fàcilment vídeos, imatges, tuits, àudio i " +"altres continguts." + +#: includes/admin/views/settings-info.php:81 +msgid "Clone Field" +msgstr "Camp de clon" + +#: includes/admin/views/settings-info.php:82 +msgid "The clone field allows you to select and display existing fields." +msgstr "El camp de clon permet escollir i mostrar camps existents." + +#: includes/admin/views/settings-info.php:86 +msgid "More AJAX" +msgstr "Més AJAX" + +#: includes/admin/views/settings-info.php:87 +msgid "More fields use AJAX powered search to speed up page loading." +msgstr "" +"Més camps usen una cerca que funciona amb AJAX per a accelerar la càrrega de " +"la pàgina." + +#: includes/admin/views/settings-info.php:91 +msgid "Local JSON" +msgstr "JSON local" + +#: includes/admin/views/settings-info.php:92 +msgid "" +"New auto export to JSON feature improves speed and allows for syncronisation." +msgstr "" +"La nova funció d’auto exportació a JSON millora la velocitat i permet la " +"sincronització." + +#: includes/admin/views/settings-info.php:96 +msgid "Easy Import / Export" +msgstr "Importació i exportació senzilla" + +#: includes/admin/views/settings-info.php:97 +msgid "Both import and export can easily be done through a new tools page." +msgstr "" +"Tant la importació com l’exportació es poden realitzar fàcilment des de la " +"nova pàgina d’eines." + +#: includes/admin/views/settings-info.php:101 +msgid "New Form Locations" +msgstr "Noves ubicacions per als formularis" + +#: includes/admin/views/settings-info.php:102 +msgid "" +"Fields can now be mapped to menus, menu items, comments, widgets and all " +"user forms!" +msgstr "" +"Els camps es poden assignar a menús, elements del menú, comentaris, ginys i " +"formularis d’usuari!" + +#: includes/admin/views/settings-info.php:106 +msgid "More Customization" +msgstr "Més personalització" + +#: includes/admin/views/settings-info.php:107 +msgid "" +"New PHP (and JS) actions and filters have been added to allow for more " +"customization." +msgstr "" +"S’han afegit nous filtres i accions de PHP (i JS) per a permetre més " +"personalització." + +#: includes/admin/views/settings-info.php:111 +msgid "Fresh UI" +msgstr "Interfície estilitzada" + +#: includes/admin/views/settings-info.php:112 +msgid "" +"The entire plugin has had a design refresh including new field types, " +"settings and design!" +msgstr "" +"S’ha redissenyat tota l’extensió, incloent nous tipus de camps, opcions i " +"disseny!" + +#: includes/admin/views/settings-info.php:116 +msgid "New Settings" +msgstr "Noves opcions" + +#: includes/admin/views/settings-info.php:117 +msgid "" +"Field group settings have been added for Active, Label Placement, " +"Instructions Placement and Description." +msgstr "" +"S’han afegit les següents opcions als grups de camps: actiu, posició de " +"l’etiqueta, posició de les instruccions, i descripció." + +#: includes/admin/views/settings-info.php:121 +msgid "Better Front End Forms" +msgstr "Millors formularis a la interfície frontal" + +#: includes/admin/views/settings-info.php:122 +msgid "" +"acf_form() can now create a new post on submission with lots of new settings." +msgstr "" +"acf_form() ara pot crear una nova entrada en ser enviat amb un munt de noves " +"opcions." + +#: includes/admin/views/settings-info.php:126 +msgid "Better Validation" +msgstr "Validació millorada" + +#: includes/admin/views/settings-info.php:127 +msgid "Form validation is now done via PHP + AJAX in favour of only JS." +msgstr "" +"La validació del formulari ara es fa amb PHP + AJAX en lloc de només JS." + +#: includes/admin/views/settings-info.php:131 +msgid "Moving Fields" +msgstr "Moure els camps" + +#: includes/admin/views/settings-info.php:132 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents." +msgstr "" +"Una nova funcionalitat als grups de camps permet moure un camp entre grups i " +"pares." + +#: includes/admin/views/settings-info.php:143 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Creiem que us encantaran els canvis a %s." + +#: includes/api/api-helpers.php:827 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/api/api-helpers.php:828 +msgid "Medium" +msgstr "Mitjana" + +#: includes/api/api-helpers.php:829 +msgid "Large" +msgstr "Grossa" + +#: includes/api/api-helpers.php:878 +msgid "Full Size" +msgstr "Mida completa" + +#: includes/api/api-helpers.php:1599 includes/api/api-term.php:147 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(sense títol)" + +#: includes/api/api-helpers.php:3570 +#, php-format +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:3575 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "L’amplada de la imatge no pot ser superior a %dpx." + +#: includes/api/api-helpers.php:3591 +#, php-format +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:3596 +#, php-format +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:3614 +#, php-format +msgid "File size must be at least %s." +msgstr "La mida del fitxer ha de ser almenys %s." + +#: includes/api/api-helpers.php:3619 +#, php-format +msgid "File size must must not exceed %s." +msgstr "La mida del fitxer no pot ser superior a %s." + +#: includes/api/api-helpers.php:3653 +#, php-format +msgid "File type must be %s." +msgstr "El tipus de fitxer ha de ser %s." + +#: includes/assets.php:168 +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/assets.php:171 includes/fields/class-acf-field-select.php:259 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/assets.php:172 +msgctxt "verb" +msgid "Edit" +msgstr "Edita" + +#: includes/assets.php:173 +msgctxt "verb" +msgid "Update" +msgstr "Actualitza" + +#: includes/assets.php:174 +msgid "Uploaded to this post" +msgstr "Penjat a aquesta entrada" + +#: includes/assets.php:175 +msgid "Expand Details" +msgstr "Expandeix els detalls" + +#: includes/assets.php:176 +msgid "Collapse Details" +msgstr "Amaga els detalls" + +#: includes/assets.php:177 +msgid "Restricted" +msgstr "Restringit" + +#: includes/assets.php:178 includes/fields/class-acf-field-image.php:66 +msgid "All images" +msgstr "Totes les imatges" + +#: includes/assets.php:181 +msgid "Validation successful" +msgstr "Validació correcta" + +#: includes/assets.php:182 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "La validació ha fallat" + +#: includes/assets.php:183 +msgid "1 field requires attention" +msgstr "Cal revisar un camp" + +#: includes/assets.php:184 +#, php-format +msgid "%d fields require attention" +msgstr "Cal revisar %d camps" + +#: includes/assets.php:187 +msgid "Are you sure?" +msgstr "N'esteu segur?" + +#: includes/assets.php:188 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Sí" + +#: includes/assets.php:189 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "No" + +#: includes/assets.php:190 includes/fields/class-acf-field-file.php:154 +#: includes/fields/class-acf-field-image.php:140 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:338 +#: pro/fields/class-acf-field-gallery.php:478 +msgid "Remove" +msgstr "Suprimeix" + +#: includes/assets.php:191 +msgid "Cancel" +msgstr "Cancel·la" + +#: includes/assets.php:194 +msgid "Has any value" +msgstr "Té algun valor" + +#: includes/assets.php:195 +msgid "Has no value" +msgstr "No té cap valor" + +#: includes/assets.php:196 +msgid "Value is equal to" +msgstr "El valor és igual a" + +#: includes/assets.php:197 +msgid "Value is not equal to" +msgstr "El valor no és igual a" + +#: includes/assets.php:198 +msgid "Value matches pattern" +msgstr "El valor coincideix amb el patró" + +#: includes/assets.php:199 +msgid "Value contains" +msgstr "El valor conté" + +#: includes/assets.php:200 +msgid "Value is greater than" +msgstr "El valor és superior a" + +#: includes/assets.php:201 +msgid "Value is less than" +msgstr "El valor és inferior a" + +#: includes/assets.php:202 +msgid "Selection is greater than" +msgstr "La selecció és superior a" + +#: includes/assets.php:203 +msgid "Selection is less than" +msgstr "La selecció és inferior a" + +#: includes/assets.php:206 includes/forms/form-comment.php:166 +#: pro/admin/admin-options-page.php:325 +msgid "Edit field group" +msgstr "Edita el grup de camps" + +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "El tipus de camp no existeix" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "Desconegut" + +#: includes/fields.php:349 +msgid "Basic" +msgstr "Bàsic" + +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Contingut" + +#: includes/fields.php:351 +msgid "Choice" +msgstr "Elecció" + +#: includes/fields.php:352 +msgid "Relational" +msgstr "Relacional" + +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:553 +#: pro/fields/class-acf-field-flexible-content.php:602 +#: pro/fields/class-acf-field-repeater.php:448 +msgid "Layout" +msgstr "Disposició" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "Acordió" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "Obert" + +#: includes/fields/class-acf-field-accordion.php:100 +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:109 +msgid "Multi-expand" +msgstr "Expansió múltiple" + +#: includes/fields/class-acf-field-accordion.php:110 +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:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Punt final" + +#: includes/fields/class-acf-field-accordion.php:120 +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-button-group.php:24 +msgid "Button Group" +msgstr "Grup de botons" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Opcions" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +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:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"Per a més control, podeu establir tant el valor com l’etiqueta d’aquesta " +"manera:" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "vermell : Vermell" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:382 +#: includes/fields/class-acf-field-taxonomy.php:784 +#: includes/fields/class-acf-field-user.php:393 +msgid "Allow Null?" +msgstr "Permet nul?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:149 +#: includes/fields/class-acf-field-select.php:373 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:381 +msgid "Default Value" +msgstr "Valor per defecte" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:150 +#: includes/fields/class-acf-field-text.php:96 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Appears when creating a new post" +msgstr "Apareix quan es crea una nova entrada" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "Horitzontal" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:829 +msgid "Return Value" +msgstr "Valor de retorn" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +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:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:432 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:434 +msgid "Both (Array)" +msgstr "Ambdós (matriu)" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Checkbox" +msgstr "Casella de selecció" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Commuta’ls tots" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Afegeix una nova opció" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "Permet personalitzats" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "Permet afegir-hi valors personalitzats" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "Desa personalitzats" + +#: includes/fields/class-acf-field-checkbox.php:369 +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:381 +#: includes/fields/class-acf-field-select.php:374 +msgid "Enter each default value on a new line" +msgstr "Afegiu cada valor per defecte en una línia nova" + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "Commuta" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Afegeix una casella extra per a commutar totes les opcions" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Selector de color" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Esborra" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Predeterminat" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Escolliu un color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Color actual" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Selector de data" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Fet" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Avui" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Següent" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Stm" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Format a mostrar" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +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:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "Personalitzat:" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Format de desat" + +#: includes/fields/class-acf-field-date_picker.php:198 +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:208 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-image.php:204 +#: includes/fields/class-acf-field-post_object.php:431 +#: includes/fields/class-acf-field-relationship.php:634 +#: includes/fields/class-acf-field-select.php:427 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:412 +#: pro/fields/class-acf-field-gallery.php:557 +msgid "Return Format" +msgstr "Format de retorn" + +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +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-date_picker.php:227 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La setmana comença en" + +#: 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-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Escolliu l’hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minut" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segon" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Mil·lisegon" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegon" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fus horari" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ara" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Fet" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +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 amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Correu electrònic" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:104 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Text de mostra" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:105 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Apareix a dins del camp" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:188 +#: includes/fields/class-acf-field-text.php:113 +msgid "Prepend" +msgstr "Afegeix al principi" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:189 +#: includes/fields/class-acf-field-text.php:114 +msgid "Appears before the input" +msgstr "Apareix abans del camp" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:197 +#: includes/fields/class-acf-field-text.php:122 +msgid "Append" +msgstr "Afegeix al final" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:198 +#: includes/fields/class-acf-field-text.php:123 +msgid "Appears after the input" +msgstr "Apareix després del camp" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Fitxer" + +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "Edita el fitxer" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "Actualitza el fitxer" + +#: includes/fields/class-acf-field-file.php:141 +msgid "File name" +msgstr "Nom del fitxer" + +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-file.php:259 +#: includes/fields/class-acf-field-image.php:264 +#: includes/fields/class-acf-field-image.php:293 +#: pro/fields/class-acf-field-gallery.php:642 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "File size" +msgstr "Mida del fitxer" + +#: includes/fields/class-acf-field-file.php:170 +msgid "Add File" +msgstr "Afegeix un fitxer" + +#: includes/fields/class-acf-field-file.php:221 +msgid "File Array" +msgstr "Matriu de fitxer" + +#: includes/fields/class-acf-field-file.php:222 +msgid "File URL" +msgstr "URL del fitxer" + +#: includes/fields/class-acf-field-file.php:223 +msgid "File ID" +msgstr "ID del fitxer" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:229 +#: pro/fields/class-acf-field-gallery.php:592 +msgid "Library" +msgstr "Mediateca" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:230 +#: pro/fields/class-acf-field-gallery.php:593 +msgid "Limit the media library choice" +msgstr "Limita l’elecció d’elements de la mediateca" + +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:235 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:72 +#: includes/locations/class-acf-location-user-role.php:88 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:598 +#: pro/locations/class-acf-location-block.php:79 +msgid "All" +msgstr "Tots" + +#: includes/fields/class-acf-field-file.php:237 +#: includes/fields/class-acf-field-image.php:236 +#: pro/fields/class-acf-field-gallery.php:599 +msgid "Uploaded to post" +msgstr "Carregats a l’entrada" + +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:243 +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Minimum" +msgstr "Mínim" + +#: includes/fields/class-acf-field-file.php:245 +#: includes/fields/class-acf-field-file.php:256 +msgid "Restrict which files can be uploaded" +msgstr "Limita quins fitxers poden ser carregats" + +#: includes/fields/class-acf-field-file.php:255 +#: includes/fields/class-acf-field-image.php:272 +#: pro/fields/class-acf-field-gallery.php:650 +msgid "Maximum" +msgstr "Màxim" + +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:301 +#: pro/fields/class-acf-field-gallery.php:678 +msgid "Allowed file types" +msgstr "Tipus de fitxers permesos" + +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-image.php:302 +#: pro/fields/class-acf-field-gallery.php:679 +msgid "Comma separated list. Leave blank for all types" +msgstr "Llista separada amb comes. Deixeu-la en blanc per a tots els tipus" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Mapa de Google" + +#: includes/fields/class-acf-field-google-map.php:59 +msgid "Sorry, this browser does not support geolocation" +msgstr "Aquest navegador no suporta geolocalització" + +#: includes/fields/class-acf-field-google-map.php:147 +msgid "Clear location" +msgstr "Neteja la ubicació" + +#: includes/fields/class-acf-field-google-map.php:148 +msgid "Find current location" +msgstr "Cerca la ubicació actual" + +#: includes/fields/class-acf-field-google-map.php:151 +msgid "Search for address..." +msgstr "Cerca l’adreça…" + +#: includes/fields/class-acf-field-google-map.php:181 +#: includes/fields/class-acf-field-google-map.php:192 +msgid "Center" +msgstr "Centra" + +#: includes/fields/class-acf-field-google-map.php:182 +#: includes/fields/class-acf-field-google-map.php:193 +msgid "Center the initial map" +msgstr "Centra el mapa inicial" + +#: includes/fields/class-acf-field-google-map.php:204 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Set the initial zoom level" +msgstr "Estableix el valor inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:214 +#: includes/fields/class-acf-field-image.php:255 +#: includes/fields/class-acf-field-image.php:284 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:633 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Height" +msgstr "Alçada" + +#: includes/fields/class-acf-field-google-map.php:215 +msgid "Customize the map height" +msgstr "Personalitzeu l’alçada del mapa" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Grup" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:384 +msgid "Sub Fields" +msgstr "Sub camps" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "Especifiqueu l’estil usat per a mostrar els camps escollits" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:613 +#: pro/fields/class-acf-field-repeater.php:456 +#: pro/locations/class-acf-location-block.php:27 +msgid "Block" +msgstr "Bloc" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:612 +#: pro/fields/class-acf-field-repeater.php:455 +msgid "Table" +msgstr "Taula" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:614 +#: pro/fields/class-acf-field-repeater.php:457 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Imatge" + +#: includes/fields/class-acf-field-image.php:63 +msgid "Select Image" +msgstr "Escolliu una imatge" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Edit Image" +msgstr "Edita imatge" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Update Image" +msgstr "Penja imatge" + +#: includes/fields/class-acf-field-image.php:156 +msgid "No image selected" +msgstr "No s’ha escollit cap imatge" + +#: includes/fields/class-acf-field-image.php:156 +msgid "Add Image" +msgstr "Afegeix imatge" + +#: includes/fields/class-acf-field-image.php:210 +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Image Array" +msgstr "Matriu d'imatge" + +#: includes/fields/class-acf-field-image.php:211 +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Image URL" +msgstr "URL de la imatge" + +#: includes/fields/class-acf-field-image.php:212 +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Image ID" +msgstr "ID de la imatge" + +#: includes/fields/class-acf-field-image.php:219 +#: pro/fields/class-acf-field-gallery.php:571 +msgid "Preview Size" +msgstr "Mida de la vista prèvia" + +#: includes/fields/class-acf-field-image.php:244 +#: includes/fields/class-acf-field-image.php:273 +#: pro/fields/class-acf-field-gallery.php:622 +#: pro/fields/class-acf-field-gallery.php:651 +msgid "Restrict which images can be uploaded" +msgstr "Limita quines imatges es poden penjar" + +#: includes/fields/class-acf-field-image.php:247 +#: includes/fields/class-acf-field-image.php:276 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:625 +#: pro/fields/class-acf-field-gallery.php:654 +msgid "Width" +msgstr "Amplada" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Enllaç" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Escolliu l’enllaç" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "S’obre en una finestra/pestanya nova" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Matriu d’enllaç" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "URL de l’enllaç" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Missatge" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Noves línies" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Controla com es mostren les noves línies" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Afegeix paràgrafs automàticament" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Afegeix <br> automàticament" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Sense formatejar" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "Escapa l’HTML" + +#: 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-number.php:25 +msgid "Number" +msgstr "Número" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:158 +msgid "Minimum Value" +msgstr "Valor mínim" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:168 +msgid "Maximum Value" +msgstr "Valor màxim" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:178 +msgid "Step Size" +msgstr "Mida del pas" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "El valor ha de ser un número" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +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:245 +#, php-format +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-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "Introduïu la URL" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "Mida de la incrustació" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Enllaç de pàgina" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Arxius" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:267 +#: includes/fields/class-acf-field-taxonomy.php:961 +msgid "Parent" +msgstr "Pare" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:383 +#: includes/fields/class-acf-field-relationship.php:560 +msgid "Filter by Post Type" +msgstr "Filtra per tipus de contingut" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:391 +#: includes/fields/class-acf-field-relationship.php:568 +msgid "All post types" +msgstr "Tots els tipus de contingut" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:397 +#: includes/fields/class-acf-field-relationship.php:574 +msgid "Filter by Taxonomy" +msgstr "Filtra per taxonomia" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:405 +#: includes/fields/class-acf-field-relationship.php:582 +msgid "All taxonomies" +msgstr "Totes les taxonomies" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "Permet les URLs dels arxius" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-user.php:403 +msgid "Select multiple values?" +msgstr "Escollir múltiples valors?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Contrasenya" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:436 +#: includes/fields/class-acf-field-relationship.php:639 +msgid "Post Object" +msgstr "Objecte de l’entrada" + +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Post ID" +msgstr "ID de l’entrada" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botó d’opció" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Altres" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "Afegeix l’opció ‘Altres’ per a permetre valors personalitzats" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "Desa Altres" + +#: includes/fields/class-acf-field-radio.php:270 +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-range.php:25 +msgid "Range" +msgstr "Rang" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relació" + +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "S’ha arribat al màxim de valors ({max} valors)" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "S'està carregant" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "No hi ha coincidències" + +#: includes/fields/class-acf-field-relationship.php:411 +msgid "Select post type" +msgstr "Escolliu el tipus de contingut" + +#: includes/fields/class-acf-field-relationship.php:420 +msgid "Select taxonomy" +msgstr "Escolliu la taxonomia" + +#: includes/fields/class-acf-field-relationship.php:477 +msgid "Search..." +msgstr "Cerca…" + +#: includes/fields/class-acf-field-relationship.php:588 +msgid "Filters" +msgstr "Filtres" + +#: includes/fields/class-acf-field-relationship.php:594 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Tipus de contingut" + +#: includes/fields/class-acf-field-relationship.php:595 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:754 +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy" +msgstr "Taxonomia" + +#: includes/fields/class-acf-field-relationship.php:602 +msgid "Elements" +msgstr "Elements" + +#: includes/fields/class-acf-field-relationship.php:603 +msgid "Selected elements will be displayed in each result" +msgstr "Els elements escollits es mostraran a cada resultat" + +#: includes/fields/class-acf-field-relationship.php:614 +msgid "Minimum posts" +msgstr "Mínim d'entrades" + +#: includes/fields/class-acf-field-relationship.php:623 +msgid "Maximum posts" +msgstr "Màxim d’entrades" + +#: includes/fields/class-acf-field-relationship.php:727 +#: pro/fields/class-acf-field-gallery.php:779 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s necessita almenys %s selecció" +msgstr[1] "%s necessita almenys %s seleccions" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:776 +msgctxt "noun" +msgid "Select" +msgstr "Selecció" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Hi ha disponible un resultat, premeu retorn per a escollir-lo." + +#: includes/fields/class-acf-field-select.php:112 +#, php-format +msgctxt "Select2 JS matches_n" +msgid "%d results are available, use up and down arrow keys to navigate." +msgstr "" +"Hi ha disponibles %d resultats, useu les fletxes amunt i avall per a navegar-" +"hi." + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No hi ha coincidències" + +#: includes/fields/class-acf-field-select.php:114 +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:115 +#, php-format +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:116 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Esborreu un caràcter" + +#: includes/fields/class-acf-field-select.php:117 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Esborreu %d caràcters" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Només podeu escollir un element" + +#: includes/fields/class-acf-field-select.php:119 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Només podeu escollir %d elements" + +#: includes/fields/class-acf-field-select.php:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "S'estan carregant més resultats…" + +#: includes/fields/class-acf-field-select.php:121 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "S'està cercant…" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "No s'ha pogut carregar" + +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "Interfície estilitzada" + +#: includes/fields/class-acf-field-select.php:412 +msgid "Use AJAX to lazy load choices?" +msgstr "Usa AJAX per a carregar opcions de manera relaxada?" + +#: includes/fields/class-acf-field-select.php:428 +msgid "Specify the value returned" +msgstr "Especifiqueu el valor a retornar" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Separador" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Pestanya" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Ubicació" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Definiu un punt de final per a aturar les pestanyes anteriors. Això generarà " +"un nou grup de pestanyes." + +#: includes/fields/class-acf-field-taxonomy.php:714 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "No hi ha %s" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Select the taxonomy to be displayed" +msgstr "Escolliu la taxonomia a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Appearance" +msgstr "Aparença" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Select the appearance of this field" +msgstr "Escolliu l’aparença d’aquest camp" + +#: includes/fields/class-acf-field-taxonomy.php:770 +msgid "Multiple Values" +msgstr "Múltiples valors" + +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Multi Select" +msgstr "Selecció múltiple" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Single Value" +msgstr "Un sol valor" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Radio Buttons" +msgstr "Botons d’opció" + +#: includes/fields/class-acf-field-taxonomy.php:799 +msgid "Create Terms" +msgstr "Crea els termes" + +#: includes/fields/class-acf-field-taxonomy.php:800 +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:809 +msgid "Save Terms" +msgstr "Desa els termes" + +#: includes/fields/class-acf-field-taxonomy.php:810 +msgid "Connect selected terms to the post" +msgstr "Connecta els termes escollits a l’entrada" + +#: includes/fields/class-acf-field-taxonomy.php:819 +msgid "Load Terms" +msgstr "Carrega els termes" + +#: includes/fields/class-acf-field-taxonomy.php:820 +msgid "Load value from posts terms" +msgstr "Carrega el valor dels termes de l’entrada" + +#: includes/fields/class-acf-field-taxonomy.php:834 +msgid "Term Object" +msgstr "Objecte de terme" + +#: includes/fields/class-acf-field-taxonomy.php:835 +msgid "Term ID" +msgstr "ID de terme" + +#: includes/fields/class-acf-field-taxonomy.php:885 +#, php-format +msgid "User unable to add new %s" +msgstr "L’usuari no pot crear nous %s" + +#: includes/fields/class-acf-field-taxonomy.php:895 +#, php-format +msgid "%s already exists" +msgstr "%s ja existeix" + +#: includes/fields/class-acf-field-taxonomy.php:927 +#, php-format +msgid "%s added" +msgstr "%s afegit" + +#: includes/fields/class-acf-field-taxonomy.php:973 +#: includes/locations/class-acf-location-user-form.php:73 +msgid "Add" +msgstr "Afegeix" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-text.php:131 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Límit de caràcters" + +#: includes/fields/class-acf-field-text.php:132 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Deixeu-lo en blanc per no establir cap límit" + +#: includes/fields/class-acf-field-text.php:157 +#: includes/fields/class-acf-field-textarea.php:215 +#, php-format +msgid "Value must not exceed %d characters" +msgstr "El valor no pot superar els %d caràcters" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Àrea de text" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Files" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Estableix l’alçada de l’àrea de text" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Selector d'hora" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Cert / Fals" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "Mostra el text al costat de la casella de selecció" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "Text d’actiu" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "El text que es mostrarà quan està actiu" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "Text d’inactiu" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "El text que es mostrarà quan està inactiu" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "El valor ha de ser una URL vàlida" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "Usuari" + +#: includes/fields/class-acf-field-user.php:378 +msgid "Filter by role" +msgstr "Filtra per rol" + +#: includes/fields/class-acf-field-user.php:386 +msgid "All user roles" +msgstr "Tots els rols d'usuari" + +#: includes/fields/class-acf-field-user.php:417 +msgid "User Array" +msgstr "Matriu d’usuari" + +#: includes/fields/class-acf-field-user.php:418 +msgid "User Object" +msgstr "Objecte d'usuari" + +#: includes/fields/class-acf-field-user.php:419 +msgid "User ID" +msgstr "ID d'usuari" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-wysiwyg.php:330 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:331 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:337 +msgid "Click to initialize TinyMCE" +msgstr "Feu clic per a inicialitzar el TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Tabs" +msgstr "Pestanyes" + +#: includes/fields/class-acf-field-wysiwyg.php:395 +msgid "Visual & Text" +msgstr "Visual i Text" + +#: includes/fields/class-acf-field-wysiwyg.php:396 +msgid "Visual Only" +msgstr "Només Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:397 +msgid "Text Only" +msgstr "Només Text" + +#: includes/fields/class-acf-field-wysiwyg.php:404 +msgid "Toolbar" +msgstr "Barra d'eines" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Show Media Upload Buttons?" +msgstr "Mostra els botons de penjar mèdia?" + +#: includes/fields/class-acf-field-wysiwyg.php:429 +msgid "Delay initialization?" +msgstr "Endarrereix la inicialització?" + +#: includes/fields/class-acf-field-wysiwyg.php:430 +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/forms/form-front.php:55 +msgid "Validate Email" +msgstr "Valida el correu" + +#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 +#: pro/options-page.php:81 +msgid "Update" +msgstr "Actualitza" + +#: includes/forms/form-front.php:105 +msgid "Post updated" +msgstr "S'ha actualitzat l'entrada" + +#: includes/forms/form-front.php:231 +msgid "Spam Detected" +msgstr "S’ha detectat brossa" + +#: includes/forms/form-user.php:336 +#, php-format +msgid "ERROR: %s" +msgstr "ERROR: %s" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Entrada" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Pàgina" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "Formularis" + +#: includes/locations.php:243 +msgid "is equal to" +msgstr "és igual a" + +#: includes/locations.php:244 +msgid "is not equal to" +msgstr "no és igual a" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Adjunt" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "Tots els formats de %s" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Comentari" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Rol de l’usuari actual" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "Superadministrador" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Usuari actual" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "Amb la sessió iniciada" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "Veient la part frontal" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "Veient l’administració" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "Element del menú" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "Menú" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "Ubicacions dels menús" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "Menús" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Pàgina mare" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Plantilla de la pàgina" + +#: includes/locations/class-acf-location-page-template.php:87 +#: includes/locations/class-acf-location-post-template.php:134 +msgid "Default Template" +msgstr "Plantilla per defecte" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Tipus de pàgina" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Front Page" +msgstr "Portada" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Posts Page" +msgstr "Pàgina de les entrades" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Top Level Page (no parent)" +msgstr "Pàgina de primer nivell (no té mare)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Parent Page (has children)" +msgstr "Pàgina mare (té filles)" + +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Child Page (has parent)" +msgstr "Pàgina filla (té mare)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Categoria de l'entrada" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Format de l’entrada" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Estat de l'entrada" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Taxonomia de l’entrada" + +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "Plantilla de l’entrada" + +#: includes/locations/class-acf-location-user-form.php:22 +msgid "User Form" +msgstr "Formulari d’usuari" + +#: includes/locations/class-acf-location-user-form.php:74 +msgid "Add / Edit" +msgstr "Afegeix / Edita" + +#: includes/locations/class-acf-location-user-form.php:75 +msgid "Register" +msgstr "Registra" + +#: includes/locations/class-acf-location-user-role.php:22 +msgid "User Role" +msgstr "Rol de l'usuari" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Giny" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "Cal introduir un valor a %s" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/admin/admin-options-page.php:198 +msgid "Publish" +msgstr "Publica" + +#: pro/admin/admin-options-page.php:204 +#, php-format +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:49 +msgid "Error. Could not connect to update server" +msgstr "Error. No s’ha pogut connectar al servidor d’actualitzacions" + +#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Actualitzacions" + +#: pro/admin/admin-updates.php:191 +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/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Desactiva la llicència" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Activa la llicència" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "Informació de la llicència" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +msgstr "Clau de llicència" + +#: 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:92 +msgid "Update Plugin" +msgstr "Actualitza l’extensió" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above 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:100 +msgid "Check Again" +msgstr "Torneu-ho a comprovar" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "Avís d’actualització" + +#: pro/blocks.php:371 +msgid "Switch to Edit" +msgstr "Canvia a edició" + +#: pro/blocks.php:372 +msgid "Switch to Preview" +msgstr "Canvia a previsualització" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Clon" + +#: pro/fields/class-acf-field-clone.php:812 +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:829 +msgid "Display" +msgstr "Mostra" + +#: pro/fields/class-acf-field-clone.php:830 +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:835 +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:836 +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:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "Les etiquetes es mostraran com a %s" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "Prefixa les etiquetes dels camps" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "Els valors es desaran com a %s" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "Prefixa els noms dels camps" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "Camp desconegut" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "Grup de camps desconegut" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "Tots els camps del grup de camps %s" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:468 +msgid "Add Row" +msgstr "Afegeix una fila" + +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:924 +#: pro/fields/class-acf-field-flexible-content.php:1006 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "disposició" +msgstr[1] "disposicions" + +#: pro/fields/class-acf-field-flexible-content.php:74 +msgid "layouts" +msgstr "disposicions" + +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:923 +#: pro/fields/class-acf-field-flexible-content.php:1005 +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:78 +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:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} de {identifier} disponible (màx {max})" + +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} de {identifier} necessari (mín {min})" + +#: pro/fields/class-acf-field-flexible-content.php:85 +msgid "Flexible Content requires at least 1 layout" +msgstr "El contingut flexible necessita almenys una disposició" + +#: pro/fields/class-acf-field-flexible-content.php:287 +#, php-format +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:413 +msgid "Add layout" +msgstr "Afegeix una disposició" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Remove layout" +msgstr "Esborra la disposició" + +#: pro/fields/class-acf-field-flexible-content.php:415 +#: pro/fields/class-acf-field-repeater.php:301 +msgid "Click to toggle" +msgstr "Feu clic per alternar" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder Layout" +msgstr "Reordena la disposició" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder" +msgstr "Reordena" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete Layout" +msgstr "Esborra la disposició" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate Layout" +msgstr "Duplica la disposició" + +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New Layout" +msgstr "Afegeix una disposició" + +#: pro/fields/class-acf-field-flexible-content.php:629 +msgid "Min" +msgstr "Mín" + +#: pro/fields/class-acf-field-flexible-content.php:642 +msgid "Max" +msgstr "Màx" + +#: pro/fields/class-acf-field-flexible-content.php:669 +#: pro/fields/class-acf-field-repeater.php:464 +msgid "Button Label" +msgstr "Etiqueta del botó" + +#: pro/fields/class-acf-field-flexible-content.php:678 +msgid "Minimum Layouts" +msgstr "Mínim de disposicions" + +#: pro/fields/class-acf-field-flexible-content.php:687 +msgid "Maximum Layouts" +msgstr "Màxim de disposicions" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Afegeix una imatge a la galeria" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "S’ha arribat al màxim d’elements seleccionats" + +#: pro/fields/class-acf-field-gallery.php:322 +msgid "Length" +msgstr "Llargada" + +#: pro/fields/class-acf-field-gallery.php:362 +msgid "Caption" +msgstr "Llegenda" + +#: pro/fields/class-acf-field-gallery.php:371 +msgid "Alt Text" +msgstr "Text alternatiu" + +#: pro/fields/class-acf-field-gallery.php:487 +msgid "Add to gallery" +msgstr "Afegeix a la galeria" + +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Bulk actions" +msgstr "Accions massives" + +#: pro/fields/class-acf-field-gallery.php:492 +msgid "Sort by date uploaded" +msgstr "Ordena per la data de càrrega" + +#: pro/fields/class-acf-field-gallery.php:493 +msgid "Sort by date modified" +msgstr "Ordena per la data de modificació" + +#: pro/fields/class-acf-field-gallery.php:494 +msgid "Sort by title" +msgstr "Ordena pel títol" + +#: pro/fields/class-acf-field-gallery.php:495 +msgid "Reverse current order" +msgstr "Inverteix l’ordre actual" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Close" +msgstr "Tanca" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Insert" +msgstr "Insereix" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Specify where new attachments are added" +msgstr "Especifiqueu on s’afegeixen els nous fitxers adjunts" + +#: pro/fields/class-acf-field-gallery.php:585 +msgid "Append to the end" +msgstr "Afegeix-los al final" + +#: pro/fields/class-acf-field-gallery.php:586 +msgid "Prepend to the beginning" +msgstr "Afegeix-los al principi" + +#: pro/fields/class-acf-field-gallery.php:605 +msgid "Minimum Selection" +msgstr "Selecció mínima" + +#: pro/fields/class-acf-field-gallery.php:613 +msgid "Maximum Selection" +msgstr "Selecció màxima" + +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:661 +msgid "Minimum rows reached ({min} rows)" +msgstr "No s’ha arribat al mínim de files ({min} files)" + +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "S’ha superat el màxim de files ({max} files)" + +#: pro/fields/class-acf-field-repeater.php:338 +msgid "Add row" +msgstr "Afegeix una fila" + +#: pro/fields/class-acf-field-repeater.php:339 +msgid "Remove row" +msgstr "Esborra la fila" + +#: pro/fields/class-acf-field-repeater.php:417 +msgid "Collapsed" +msgstr "Replegat" + +#: pro/fields/class-acf-field-repeater.php:418 +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:428 +msgid "Minimum Rows" +msgstr "Mínim de files" + +#: pro/fields/class-acf-field-repeater.php:438 +msgid "Maximum Rows" +msgstr "Màxim de files" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "No hi ha pàgines d’opcions" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "Opcions" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "S’han actualitzat les opcions" + +#: pro/updates.php:97 +#, php-format +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." + +#: tests/basic/test-blocks.php:30 +msgid "Normal" +msgstr "Normal" + +#: tests/basic/test-blocks.php:31 +msgid "Fancy" +msgstr "Sofisticat" + +#. Plugin URI of the plugin/theme +#. Author URI of the plugin/theme +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "Elliot Condon" diff --git a/lang/pro/acf-cs_CZ.po b/lang/pro/acf-cs_CZ.po new file mode 100644 index 0000000..10e6d27 --- /dev/null +++ b/lang/pro/acf-cs_CZ.po @@ -0,0 +1,4029 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2018-09-06 12:21+1000\n" +"PO-Revision-Date: 2018-12-11 09:20+0100\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: webees.cz s.r.o. \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: Poedit 2.2\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:80 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:385 includes/admin/admin.php:117 +msgid "Field Groups" +msgstr "Skupiny polí" + +#: acf.php:386 +msgid "Field Group" +msgstr "Skupina polí" + +#: acf.php:387 acf.php:419 includes/admin/admin.php:118 +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Add New" +msgstr "Přidat nové" + +#: acf.php:388 +msgid "Add New Field Group" +msgstr "Přidat novou skupinu polí" + +#: acf.php:389 +msgid "Edit Field Group" +msgstr "Upravit skupinu polí" + +#: acf.php:390 +msgid "New Field Group" +msgstr "Nová skupina polí" + +#: acf.php:391 +msgid "View Field Group" +msgstr "Prohlížet skupinu polí" + +#: acf.php:392 +msgid "Search Field Groups" +msgstr "Hledat skupiny polí" + +#: acf.php:393 +msgid "No Field Groups found" +msgstr "Nebyly nalezeny žádné skupiny polí" + +#: acf.php:394 +msgid "No Field Groups found in Trash" +msgstr "V koši nebyly nalezeny žádné skupiny polí" + +#: acf.php:417 includes/admin/admin-field-group.php:202 +#: includes/admin/admin-field-groups.php:510 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "Pole" + +#: acf.php:418 +msgid "Field" +msgstr "Pole" + +#: acf.php:420 +msgid "Add New Field" +msgstr "Přidat nové pole" + +#: acf.php:421 +msgid "Edit Field" +msgstr "Upravit pole" + +#: acf.php:422 includes/admin/views/field-group-fields.php:41 +msgid "New Field" +msgstr "Nové pole" + +#: acf.php:423 +msgid "View Field" +msgstr "Zobrazit pole" + +#: acf.php:424 +msgid "Search Fields" +msgstr "Vyhledat pole" + +#: acf.php:425 +msgid "No Fields found" +msgstr "Nenalezeno žádné pole" + +#: acf.php:426 +msgid "No Fields found in Trash" +msgstr "V koši nenalezeno žádné pole" + +#: acf.php:465 includes/admin/admin-field-group.php:384 +#: includes/admin/admin-field-groups.php:567 +msgid "Inactive" +msgstr "Neaktivní" + +#: acf.php:470 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Neaktivní (%s)" +msgstr[1] "Neaktivní (%s)" +msgstr[2] "Neaktivních (%s)" + +#: includes/admin/admin-field-group.php:68 +#: includes/admin/admin-field-group.php:69 +#: includes/admin/admin-field-group.php:71 +msgid "Field group updated." +msgstr "Skupina polí aktualizována." + +#: includes/admin/admin-field-group.php:70 +msgid "Field group deleted." +msgstr "Skupina polí smazána." + +#: includes/admin/admin-field-group.php:73 +msgid "Field group published." +msgstr "Skupina polí publikována." + +#: includes/admin/admin-field-group.php:74 +msgid "Field group saved." +msgstr "Skupina polí uložena." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group submitted." +msgstr "Skupina polí odeslána." + +#: includes/admin/admin-field-group.php:76 +msgid "Field group scheduled for." +msgstr "Skupina polí naplánována." + +#: includes/admin/admin-field-group.php:77 +msgid "Field group draft updated." +msgstr "Koncept skupiny polí aktualizován." + +#: includes/admin/admin-field-group.php:153 +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/admin-field-group.php:154 +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/admin-field-group.php:155 +msgid "Field group title is required" +msgstr "Vyžadován nadpis pro skupinu polí" + +#: includes/admin/admin-field-group.php:156 +msgid "Move to trash. Are you sure?" +msgstr "Přesunout do koše. Jste si jistí?" + +#: includes/admin/admin-field-group.php:157 +msgid "No toggle fields available" +msgstr "Žádné zapínatelné pole není k dispozici" + +#: includes/admin/admin-field-group.php:158 +msgid "Move Custom Field" +msgstr "Přesunout vlastní pole" + +#: includes/admin/admin-field-group.php:159 +msgid "Checked" +msgstr "Zaškrtnuto" + +#: includes/admin/admin-field-group.php:160 includes/api/api-field.php:289 +msgid "(no label)" +msgstr "(bez štítku)" + +#: includes/admin/admin-field-group.php:161 +msgid "(this field)" +msgstr "(toto pole)" + +#: includes/admin/admin-field-group.php:162 +#: includes/api/api-field-group.php:751 +msgid "copy" +msgstr "kopírovat" + +#: includes/admin/admin-field-group.php:163 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:4073 +msgid "or" +msgstr "nebo" + +#: includes/admin/admin-field-group.php:164 +msgid "Null" +msgstr "Nula" + +#: includes/admin/admin-field-group.php:203 +msgid "Location" +msgstr "Umístění" + +#: includes/admin/admin-field-group.php:204 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Nastavení" + +#: includes/admin/admin-field-group.php:354 +msgid "Field Keys" +msgstr "Klíče polí" + +#: includes/admin/admin-field-group.php:384 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Aktivní" + +#: includes/admin/admin-field-group.php:746 +msgid "Move Complete." +msgstr "Přesun hotov." + +#: includes/admin/admin-field-group.php:747 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Pole %s lze nyní najít ve skupině polí %s" + +#: includes/admin/admin-field-group.php:748 +msgid "Close Window" +msgstr "Zavřít okno" + +#: includes/admin/admin-field-group.php:789 +msgid "Please select the destination for this field" +msgstr "Prosím zvolte umístění pro toto pole" + +#: includes/admin/admin-field-group.php:796 +msgid "Move Field" +msgstr "Přesunout pole" + +#: includes/admin/admin-field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktivní (%s)" +msgstr[1] "Aktivní (%s)" +msgstr[2] "Aktivních (%s)" + +#: includes/admin/admin-field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "Skupina polí duplikována. %s" + +#: includes/admin/admin-field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s skupina polí duplikována." +msgstr[1] "%s skupiny polí duplikovány." +msgstr[2] "%s skupin polí duplikováno." + +#: includes/admin/admin-field-groups.php:227 +#, php-format +msgid "Field group synchronised. %s" +msgstr "Skupina polí synchronizována. %s" + +#: includes/admin/admin-field-groups.php:231 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s skupina polí synchronizována." +msgstr[1] "%s skupiny polí synchronizovány." +msgstr[2] "%s skupin polí synchronizováno." + +#: includes/admin/admin-field-groups.php:394 +#: includes/admin/admin-field-groups.php:557 +msgid "Sync available" +msgstr "Synchronizace je k dispozici" + +#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:370 +msgid "Title" +msgstr "Název" + +#: includes/admin/admin-field-groups.php:508 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +#: pro/fields/class-acf-field-gallery.php:397 +msgid "Description" +msgstr "Popis" + +#: includes/admin/admin-field-groups.php:509 +msgid "Status" +msgstr "Stav" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:607 +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "" +"Upravte si WordPress pomocí výkonných, profesionálních a intuitivně " +"použitelných polí." + +#: includes/admin/admin-field-groups.php:609 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Seznam změn" + +#: includes/admin/admin-field-groups.php:614 +#, php-format +msgid "See what's new in version %s." +msgstr "Podívejte se, co je nového ve verzi %s." + +#: includes/admin/admin-field-groups.php:617 +msgid "Resources" +msgstr "Zdroje" + +#: includes/admin/admin-field-groups.php:619 +msgid "Website" +msgstr "Webová stránka" + +#: includes/admin/admin-field-groups.php:620 +msgid "Documentation" +msgstr "Dokumentace" + +#: includes/admin/admin-field-groups.php:621 +msgid "Support" +msgstr "Podpora" + +#: includes/admin/admin-field-groups.php:623 +#: includes/admin/views/settings-info.php:84 +msgid "Pro" +msgstr "Pro" + +#: includes/admin/admin-field-groups.php:628 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "Děkujeme, že používáte ACF." + +#: includes/admin/admin-field-groups.php:667 +msgid "Duplicate this item" +msgstr "Duplikovat tuto položku" + +#: includes/admin/admin-field-groups.php:667 +#: includes/admin/admin-field-groups.php:683 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Duplicate" +msgstr "Duplikovat" + +#: includes/admin/admin-field-groups.php:700 +#: includes/fields/class-acf-field-google-map.php:164 +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Search" +msgstr "Hledat" + +#: includes/admin/admin-field-groups.php:759 +#, php-format +msgid "Select %s" +msgstr "Zvolit %s" + +#: includes/admin/admin-field-groups.php:767 +msgid "Synchronise field group" +msgstr "Synchronizujte skupinu polí" + +#: includes/admin/admin-field-groups.php:767 +#: includes/admin/admin-field-groups.php:797 +msgid "Sync" +msgstr "Synchronizace" + +#: includes/admin/admin-field-groups.php:779 +msgid "Apply" +msgstr "Použít" + +#: includes/admin/admin-field-groups.php:797 +msgid "Bulk Actions" +msgstr "Hromadné akce" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Nástroje" + +#: includes/admin/admin-upgrade.php:47 includes/admin/admin-upgrade.php:94 +#: includes/admin/admin-upgrade.php:156 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Aktualizovat databázi" + +#: includes/admin/admin-upgrade.php:180 +msgid "Review sites & upgrade" +msgstr "Zkontrolujte stránky a aktualizujte" + +#: includes/admin/admin.php:113 +#: includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "Vlastní pole" + +#: includes/admin/settings-addons.php:51 +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "Doplňky" + +#: includes/admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "Chyba. Nelze načíst seznam doplňků" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Informace" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "Co je nového" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Exportovat skupiny polí" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Vytvořit PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "Nebyly vybrány žádné skupiny polí" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportovaná 1 skupina polí." +msgstr[1] "Exportované %s skupiny polí." +msgstr[2] "Exportovaných %s skupin polí." + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Zvolit skupiny polí" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button 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:341 +msgid "Export File" +msgstr "Exportovat soubor" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Následující kód lze použít k registraci lokální verze vybrané skupiny polí. " +"Místní skupina polí může poskytnout mnoho výhod, jako jsou rychlejší doby " +"načítání, řízení verzí a dynamická pole / nastavení. Jednoduše zkopírujte a " +"vložte následující kód do souboru functions.php svého motivu nebo jej vložte " +"do externího souboru." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "Zkopírovat od schránky" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "Zkopírováno" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Importovat skupiny polí" + +#: includes/admin/tools/class-acf-admin-tool-import.php:61 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +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:66 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "Vybrat soubor" + +#: includes/admin/tools/class-acf-admin-tool-import.php:76 +msgid "Import File" +msgstr "Importovat soubor" + +#: includes/admin/tools/class-acf-admin-tool-import.php:100 +#: includes/fields/class-acf-field-file.php:170 +msgid "No file selected" +msgstr "Dokument nevybrán" + +#: includes/admin/tools/class-acf-admin-tool-import.php:113 +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:122 +msgid "Incorrect file type" +msgstr "Nesprávný typ souboru" + +#: includes/admin/tools/class-acf-admin-tool-import.php:139 +msgid "Import file empty" +msgstr "Importovaný soubor je prázdný" + +#: includes/admin/tools/class-acf-admin-tool-import.php:247 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Importovaná 1 skupina polí" +msgstr[1] "Importované %s skupiny polí" +msgstr[2] "Importovaných %s skupin polí" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Podmíněná logika" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "Zobrazit toto pole, pokud" + +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:86 +msgid "and" +msgstr "a" + +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Přidat skupinu pravidel" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:424 +#: pro/fields/class-acf-field-repeater.php:294 +msgid "Drag to reorder" +msgstr "Přetažením změníte pořadí" + +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "Upravit pole" + +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:152 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:357 +msgid "Edit" +msgstr "Upravit" + +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "Duplikovat pole" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "Přesunout pole do jiné skupiny" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "Přesunout" + +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "Smazat pole" + +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:570 +msgid "Delete" +msgstr "Smazat" + +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "Štítek pole" + +#: includes/admin/views/field-group-field.php:66 +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/field-group-field.php:75 +msgid "Field Name" +msgstr "Jméno pole" + +#: includes/admin/views/field-group-field.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/field-group-field.php:85 +msgid "Field Type" +msgstr "Typ pole" + +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "Instrukce" + +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instrukce pro autory. Jsou zobrazeny při zadávání dat" + +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "Požadováno?" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Atributy obalového pole" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "šířka" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "třída" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "identifikátor" + +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "Zavřít pole" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Pořadí" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:428 +#: pro/fields/class-acf-field-flexible-content.php:596 +msgid "Label" +msgstr "Štítek" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:939 +#: pro/fields/class-acf-field-flexible-content.php:610 +msgid "Name" +msgstr "Jméno" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Klíč" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Typ" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Žádná pole. Klikněte na tlačítko+ Přidat pole pro vytvoření " +"prvního pole." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Přidat pole" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Pravidla" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "Styl" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Standardní (WP metabox)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Bezokrajové (bez metaboxu)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Pozice" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Vysoko (po nadpisu)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Normální (po obsahu)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Na straně" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Umístění štítků" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Zarovnat shora" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Zarovnat zleva" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Umístění instrukcí" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Pod štítky" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Pod poli" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Pořadové č." + +#: includes/admin/views/field-group-options.php:86 +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/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Zobrazit v seznamu skupin polí" + +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "Trvalý odkaz" + +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "Editor obsahu" + +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "Stručný výpis" + +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "Diskuze" + +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "Komentáře" + +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "Revize" + +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "Adresa" + +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "Formát" + +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "Atributy stránky" + +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:688 +msgid "Featured Image" +msgstr "Uživatelský obrázek" + +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "Kategorie" + +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "Štítky" + +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "Odesílat zpětné linkování odkazů" + +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "Skrýt na obrazovce" + +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "Zvolte položky, které budou na obrazovce úprav skryté." + +#: includes/admin/views/field-group-options.php:129 +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/html-admin-page-upgrade-network.php:26 +#, php-format +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/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "Upgradovat stránky" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Stránky" + +#: includes/admin/views/html-admin-page-upgrade-network.php:74 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Stránky vyžadují aktualizaci databáze z %s na %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:76 +msgid "Site is up to date" +msgstr "Stránky jsou aktuální" + +#: includes/admin/views/html-admin-page-upgrade-network.php:93 +#, php-format +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/html-admin-page-upgrade-network.php:113 +msgid "Please select at least one site to upgrade." +msgstr "Vyberte alespoň jednu stránku, kterou chcete upgradovat." + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +#: includes/admin/views/html-notice-upgrade.php:38 +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/html-admin-page-upgrade-network.php:144 +#: includes/admin/views/html-admin-page-upgrade.php:31 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Aktualizace dat na verzi %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:167 +msgid "Upgrade complete." +msgstr "Aktualizace dokončena." + +#: includes/admin/views/html-admin-page-upgrade-network.php:176 +#: includes/admin/views/html-admin-page-upgrade-network.php:185 +#: includes/admin/views/html-admin-page-upgrade.php:78 +#: includes/admin/views/html-admin-page-upgrade.php:87 +msgid "Upgrade failed." +msgstr "Upgrade se nezdařil." + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Čtení úkolů aktualizace..." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, php-format +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/html-admin-page-upgrade.php:116 +#: includes/ajax/class-acf-ajax-upgrade.php:33 +msgid "No updates available." +msgstr "K dispozici nejsou žádné aktualizace." + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Zobrazit tuto skupinu polí, pokud" + +#: includes/admin/views/html-notice-upgrade.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Opakovač" + +#: includes/admin/views/html-notice-upgrade.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexibilní obsah" + +#: includes/admin/views/html-notice-upgrade.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + +#: includes/admin/views/html-notice-upgrade.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Stránka konfigurace" + +#: includes/admin/views/html-notice-upgrade.php:21 +msgid "Database Upgrade Required" +msgstr "Vyžadován upgrade databáze" + +#: includes/admin/views/html-notice-upgrade.php:22 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Děkujeme vám za aktualizaci na %s v%s!" + +#: includes/admin/views/html-notice-upgrade.php:22 +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/html-notice-upgrade.php:24 +#, php-format +msgid "" +"Please also ensure any premium add-ons (%s) have first been updated to the " +"latest version." +msgstr "" +"Zkontrolujte také, zda jsou všechny prémiové doplňky ( %s) nejprve " +"aktualizovány na nejnovější verzi." + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Stáhnout a instalovat" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Instalováno" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Vítejte v Advanced Custom Fields" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Děkujeme za aktualizaci! ACF %s je větší a lepší než kdykoli předtím. " +"Doufáme, že se vám bude líbit." + +#: includes/admin/views/settings-info.php:15 +msgid "A Smoother Experience" +msgstr "Plynulejší zážitek" + +#: includes/admin/views/settings-info.php:19 +msgid "Improved Usability" +msgstr "Vylepšená použitelnost" + +#: includes/admin/views/settings-info.php:20 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"Zahrnutí oblíbené knihovny Select2 zlepšilo jak použitelnost, tak i rychlost " +"v různých typech polí, včetně objektu příspěvku, odkazu na stránku, " +"taxonomie a možnosti výběru." + +#: includes/admin/views/settings-info.php:24 +msgid "Improved Design" +msgstr "Zlepšený design" + +#: includes/admin/views/settings-info.php:25 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Mnoho polí podstoupilo osvěžení grafiky, aby ACF vypadalo lépe než kdy " +"jindy! Znatelné změny jsou vidět na polích galerie, vztahů a oEmbed " +"(novinka)!" + +#: includes/admin/views/settings-info.php:29 +msgid "Improved Data" +msgstr "Vylepšené údaje" + +#: includes/admin/views/settings-info.php:30 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"Přepracování datové architektury umožnilo, aby podřazená pole žila nezávisle " +"na rodičích. To umožňuje jejich přetahování mezi rodičovskými poli!" + +#: includes/admin/views/settings-info.php:38 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Sbohem doplňkům. Pozdrav verzi PRO" + +#: includes/admin/views/settings-info.php:41 +msgid "Introducing ACF PRO" +msgstr "Představujeme ACF PRO" + +#: includes/admin/views/settings-info.php:42 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "Měníme způsob poskytování prémiových funkcí vzrušujícím způsobem!" + +#: includes/admin/views/settings-info.php:43 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Všechny 4 prémiové doplňky byly spojeny do nové verze Pro pro " +"ACF. Se svými osobními i vývojovými licencemi je prémiová funkčnost " +"cenově dostupná a přístupnější než kdykoli předtím!" + +#: includes/admin/views/settings-info.php:47 +msgid "Powerful Features" +msgstr "Výkonné funkce" + +#: includes/admin/views/settings-info.php:48 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"ACF PRO obsahuje výkonné funkce, jako jsou opakovatelná data, flexibilní " +"rozložení obsahu, krásné pole galerie a možnost vytvářet další stránky " +"administrátorských voleb!" + +#: includes/admin/views/settings-info.php:49 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "Přečtěte si další informace o funkcích ACF PRO." + +#: includes/admin/views/settings-info.php:53 +msgid "Easy Upgrading" +msgstr "Snadná aktualizace" + +#: includes/admin/views/settings-info.php:54 +msgid "" +"Upgrading to ACF PRO is easy. Simply purchase a license online and download " +"the plugin!" +msgstr "" +"Upgrade na ACF PRO je snadný. Stačí online zakoupit licenci a stáhnout " +"plugin!" + +#: includes/admin/views/settings-info.php:55 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk." +msgstr "" +"Také jsme napsali průvodce aktualizací na zodpovězení " +"jakýchkoliv dotazů, ale pokud i přes to nějaký máte, kontaktujte prosím náš " +"tým podpory prostřednictvím Help Desku." + +#: includes/admin/views/settings-info.php:64 +msgid "New Features" +msgstr "Nové funkce" + +#: includes/admin/views/settings-info.php:69 +msgid "Link Field" +msgstr "Odkaz pole" + +#: includes/admin/views/settings-info.php:70 +msgid "" +"The Link field provides a simple way to select or define a link (url, title, " +"target)." +msgstr "" +"Pole odkazu poskytuje jednoduchý způsob, jak vybrat nebo definovat odkaz " +"(URL, název, cíl)." + +#: includes/admin/views/settings-info.php:74 +msgid "Group Field" +msgstr "Skupinové pole" + +#: includes/admin/views/settings-info.php:75 +msgid "The Group field provides a simple way to create a group of fields." +msgstr "Skupina polí poskytuje jednoduchý způsob vytvoření skupiny polí." + +#: includes/admin/views/settings-info.php:79 +msgid "oEmbed Field" +msgstr "oEmbed pole" + +#: includes/admin/views/settings-info.php:80 +msgid "" +"The oEmbed field allows an easy way to embed videos, images, tweets, audio, " +"and other content." +msgstr "" +"oEmbed pole umožňuje snadno vkládat videa, obrázky, tweety, audio a další " +"obsah." + +#: includes/admin/views/settings-info.php:84 +msgid "Clone Field" +msgstr "Klonovat pole" + +#: includes/admin/views/settings-info.php:85 +msgid "The clone field allows you to select and display existing fields." +msgstr "Klonované pole umožňuje vybrat a zobrazit existující pole." + +#: includes/admin/views/settings-info.php:89 +msgid "More AJAX" +msgstr "Více AJAXu" + +#: includes/admin/views/settings-info.php:90 +msgid "More fields use AJAX powered search to speed up page loading." +msgstr "Více polí využívá vyhledávání pomocí AJAX pro rychlé načítání stránky." + +#: includes/admin/views/settings-info.php:94 +msgid "Local JSON" +msgstr "Lokální JSON" + +#: includes/admin/views/settings-info.php:95 +msgid "" +"New auto export to JSON feature improves speed and allows for syncronisation." +msgstr "" +"Nová funkce automatického exportu do JSONu zvyšuje rychlost a umožňuje " +"synchronizaci." + +#: includes/admin/views/settings-info.php:99 +msgid "Easy Import / Export" +msgstr "Snadný import/export" + +#: includes/admin/views/settings-info.php:100 +msgid "Both import and export can easily be done through a new tools page." +msgstr "Import i export lze snadno provést pomocí nové stránky nástroje." + +#: includes/admin/views/settings-info.php:104 +msgid "New Form Locations" +msgstr "Umístění nového formuláře" + +#: includes/admin/views/settings-info.php:105 +msgid "" +"Fields can now be mapped to menus, menu items, comments, widgets and all " +"user forms!" +msgstr "" +"Pole lze nyní mapovat na nabídky, položky nabídky, komentáře, widgety a " +"všechny uživatelské formuláře!" + +#: includes/admin/views/settings-info.php:109 +msgid "More Customization" +msgstr "Další úpravy" + +#: includes/admin/views/settings-info.php:110 +msgid "" +"New PHP (and JS) actions and filters have been added to allow for more " +"customization." +msgstr "" +"Byly přidány nové akce a filtry PHP (a JS), které umožňují další úpravy." + +#: includes/admin/views/settings-info.php:114 +msgid "Fresh UI" +msgstr "Svěží uživatelské rozhraní" + +#: includes/admin/views/settings-info.php:115 +msgid "" +"The entire plugin has had a design refresh including new field types, " +"settings and design!" +msgstr "Celý plugin je redesignován včetně nových typů polí a nastavení!" + +#: includes/admin/views/settings-info.php:119 +msgid "New Settings" +msgstr "Nová nastavení" + +#: includes/admin/views/settings-info.php:120 +msgid "" +"Field group settings have been added for Active, Label Placement, " +"Instructions Placement and Description." +msgstr "" +"Bylo přidáno nastavení skupiny polí bylo přidáno pro aktivní, umístění " +"štítků, umístění instrukcí a popis." + +#: includes/admin/views/settings-info.php:124 +msgid "Better Front End Forms" +msgstr "Lepší vizuální stránka formulářů" + +#: includes/admin/views/settings-info.php:125 +msgid "" +"acf_form() can now create a new post on submission with lots of new settings." +msgstr "" +"acf_form() může nyní vytvořit nový příspěvek po odeslání se spoustou nových " +"možností." + +#: includes/admin/views/settings-info.php:129 +msgid "Better Validation" +msgstr "Lepší validace" + +#: includes/admin/views/settings-info.php:130 +msgid "Form validation is now done via PHP + AJAX in favour of only JS." +msgstr "" +"Validace formuláře nyní probíhá prostřednictvím PHP + AJAX a to ve prospěch " +"pouze JS." + +#: includes/admin/views/settings-info.php:134 +msgid "Moving Fields" +msgstr "Pohyblivá pole" + +#: includes/admin/views/settings-info.php:135 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents." +msgstr "" +"Nová funkčnost skupiny polí umožňuje přesouvání pole mezi skupinami a rodiči." + +#: includes/admin/views/settings-info.php:146 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Myslíme si, že změny v %s si zamilujete." + +#: includes/api/api-helpers.php:1046 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/api/api-helpers.php:1047 +msgid "Medium" +msgstr "Střední" + +#: includes/api/api-helpers.php:1048 +msgid "Large" +msgstr "Velký" + +#: includes/api/api-helpers.php:1097 +msgid "Full Size" +msgstr "Plná velikost" + +#: includes/api/api-helpers.php:1339 includes/api/api-helpers.php:1912 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(bez názvu)" + +#: includes/api/api-helpers.php:3994 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "Šířka obrázku musí být alespoň %dpx." + +#: includes/api/api-helpers.php:3999 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "Šířka obrázku nesmí přesáhnout %dpx." + +#: includes/api/api-helpers.php:4015 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "Výška obrázku musí být alespoň %dpx." + +#: includes/api/api-helpers.php:4020 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "Výška obrázku nesmí přesáhnout %dpx." + +#: includes/api/api-helpers.php:4038 +#, php-format +msgid "File size must be at least %s." +msgstr "Velikost souboru musí být alespoň %s." + +#: includes/api/api-helpers.php:4043 +#, php-format +msgid "File size must must not exceed %s." +msgstr "Velikost souboru nesmí přesáhnout %s." + +#: includes/api/api-helpers.php:4077 +#, php-format +msgid "File type must be %s." +msgstr "Typ souboru musí být %s." + +#: includes/assets.php:172 +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/assets.php:175 includes/fields/class-acf-field-select.php:259 +msgctxt "verb" +msgid "Select" +msgstr "Vybrat" + +#: includes/assets.php:176 +msgctxt "verb" +msgid "Edit" +msgstr "Upravit" + +#: includes/assets.php:177 +msgctxt "verb" +msgid "Update" +msgstr "Aktualizace" + +#: includes/assets.php:178 +msgid "Uploaded to this post" +msgstr "Nahrán k tomuto příspěvku" + +#: includes/assets.php:179 +msgid "Expand Details" +msgstr "Rozbalit podrobnosti" + +#: includes/assets.php:180 +msgid "Collapse Details" +msgstr "Sbalit podrobnosti" + +#: includes/assets.php:181 +msgid "Restricted" +msgstr "Omezeno" + +#: includes/assets.php:182 includes/fields/class-acf-field-image.php:67 +msgid "All images" +msgstr "Všechny obrázky" + +#: includes/assets.php:185 +msgid "Validation successful" +msgstr "Ověření úspěšné" + +#: includes/assets.php:186 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Ověření selhalo" + +#: includes/assets.php:187 +msgid "1 field requires attention" +msgstr "1 pole vyžaduje pozornost" + +#: includes/assets.php:188 +#, php-format +msgid "%d fields require attention" +msgstr "Několik polí vyžaduje pozornost (%d)" + +#: includes/assets.php:191 +msgid "Are you sure?" +msgstr "Jste si jistí?" + +#: includes/assets.php:192 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Ano" + +#: includes/assets.php:193 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "Ne" + +#: includes/assets.php:194 includes/fields/class-acf-field-file.php:154 +#: includes/fields/class-acf-field-image.php:141 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:358 +#: pro/fields/class-acf-field-gallery.php:546 +msgid "Remove" +msgstr "Odstranit" + +#: includes/assets.php:195 +msgid "Cancel" +msgstr "Zrušit" + +#: includes/assets.php:198 +msgid "Has any value" +msgstr "Má libovolnou hodnotu" + +#: includes/assets.php:199 +msgid "Has no value" +msgstr "Nemá hodnotu" + +#: includes/assets.php:200 +msgid "Value is equal to" +msgstr "Hodnota je rovna" + +#: includes/assets.php:201 +msgid "Value is not equal to" +msgstr "Hodnota není rovna" + +#: includes/assets.php:202 +msgid "Value matches pattern" +msgstr "Hodnota odpovídá masce" + +#: includes/assets.php:203 +msgid "Value contains" +msgstr "Hodnota obsahuje" + +#: includes/assets.php:204 +msgid "Value is greater than" +msgstr "Hodnota je větší než" + +#: includes/assets.php:205 +msgid "Value is less than" +msgstr "Hodnota je menší než" + +#: includes/assets.php:206 +msgid "Selection is greater than" +msgstr "Výběr je větší než" + +#: includes/assets.php:207 +msgid "Selection is less than" +msgstr "Výběr je menší než" + +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "Typ pole neexistuje" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "Neznámý" + +#: includes/fields.php:349 +msgid "Basic" +msgstr "Základní" + +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Obsah" + +#: includes/fields.php:351 +msgid "Choice" +msgstr "Volba" + +#: includes/fields.php:352 +msgid "Relational" +msgstr "Relační" + +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:567 +#: pro/fields/class-acf-field-flexible-content.php:616 +#: pro/fields/class-acf-field-repeater.php:443 +msgid "Layout" +msgstr "Typ zobrazení" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "Akordeon" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "Otevřít" + +#: includes/fields/class-acf-field-accordion.php:100 +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:109 +msgid "Multi-expand" +msgstr "Vícenásobné rozbalení" + +#: includes/fields/class-acf-field-accordion.php:110 +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:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Koncový bod" + +#: includes/fields/class-acf-field-accordion.php:120 +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-button-group.php:24 +msgid "Button Group" +msgstr "Skupina tlačítek" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:359 +msgid "Choices" +msgstr "Možnosti" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:360 +msgid "Enter each choice on a new line." +msgstr "Zadejte každou volbu na nový řádek." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:360 +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:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:360 +msgid "red : Red" +msgstr "cervena : Červená" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:377 +#: includes/fields/class-acf-field-taxonomy.php:784 +#: includes/fields/class-acf-field-user.php:409 +msgid "Allow Null?" +msgstr "Povolit prázdné?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:149 +#: includes/fields/class-acf-field-select.php:368 +#: includes/fields/class-acf-field-text.php:119 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:381 +msgid "Default Value" +msgstr "Výchozí hodnota" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:150 +#: includes/fields/class-acf-field-text.php:120 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Appears when creating a new post" +msgstr "Objeví se při vytváření nového příspěvku" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "Horizontální" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "Vertikální" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-image.php:205 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:829 +msgid "Return Value" +msgstr "Vrátit hodnotu" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-image.php:206 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +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:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:427 +msgid "Value" +msgstr "Hodnota" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:429 +msgid "Both (Array)" +msgstr "Obě (pole)" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Checkbox" +msgstr "Zaškrtávátko" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Přepnout vše" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Přidat novou volbu" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "Povolit vlastní" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "Povolit přidání 'vlastních' hodnot" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "Uložit vlastní" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "Uložit 'vlastní' hodnoty do voleb polí" + +#: includes/fields/class-acf-field-checkbox.php:381 +#: includes/fields/class-acf-field-select.php:369 +msgid "Enter each default value on a new line" +msgstr "Zadejte každou výchozí hodnotu na nový řádek" + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "Přepnout" + +#: includes/fields/class-acf-field-checkbox.php:404 +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-color_picker.php:25 +msgid "Color Picker" +msgstr "Výběr barvy" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Vymazat" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Výchozí nastavení" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Výběr barvy" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Aktuální barva" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Výběr data" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Hotovo" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Dnes" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Následující" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Předchozí" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Týden" + +#: includes/fields/class-acf-field-date_picker.php:180 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Formát zobrazení" + +#: includes/fields/class-acf-field-date_picker.php:181 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +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:189 +#: includes/fields/class-acf-field-date_picker.php:220 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "Vlastní:" + +#: includes/fields/class-acf-field-date_picker.php:199 +msgid "Save Format" +msgstr "Uložit formát" + +#: includes/fields/class-acf-field-date_picker.php:200 +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:210 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-post_object.php:431 +#: includes/fields/class-acf-field-relationship.php:715 +#: includes/fields/class-acf-field-select.php:422 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:428 +msgid "Return Format" +msgstr "Formát návratové hodnoty" + +#: includes/fields/class-acf-field-date_picker.php:211 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "Formát vrácen pomocí funkcí šablony" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Týden začíná" + +#: 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-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Zvolit čas" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Čas" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hodina" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuta" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Vteřina" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Časové pásmo" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Nyní" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hotovo" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +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 amText" +msgid "AM" +msgstr "dop" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "od" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "odp" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "do" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Email" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:128 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Zástupný text" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:129 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Zobrazí se v inputu" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:188 +#: includes/fields/class-acf-field-text.php:137 +msgid "Prepend" +msgstr "Zobrazit před" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:189 +#: includes/fields/class-acf-field-text.php:138 +msgid "Appears before the input" +msgstr "Zobrazí se před inputem" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:197 +#: includes/fields/class-acf-field-text.php:146 +msgid "Append" +msgstr "Zobrazit po" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:198 +#: includes/fields/class-acf-field-text.php:147 +msgid "Appears after the input" +msgstr "Zobrazí se za inputem" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Soubor" + +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "Upravit soubor" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "Aktualizovat soubor" + +#: includes/fields/class-acf-field-file.php:141 +msgid "File name" +msgstr "Jméno souboru" + +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-file.php:259 +#: includes/fields/class-acf-field-image.php:265 +#: includes/fields/class-acf-field-image.php:294 +#: pro/fields/class-acf-field-gallery.php:705 +#: pro/fields/class-acf-field-gallery.php:734 +msgid "File size" +msgstr "Velikost souboru" + +#: includes/fields/class-acf-field-file.php:170 +msgid "Add File" +msgstr "Přidat soubor" + +#: includes/fields/class-acf-field-file.php:221 +msgid "File Array" +msgstr "Pole souboru" + +#: includes/fields/class-acf-field-file.php:222 +msgid "File URL" +msgstr "Adresa souboru" + +#: includes/fields/class-acf-field-file.php:223 +msgid "File ID" +msgstr "ID souboru" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:230 +#: pro/fields/class-acf-field-gallery.php:670 +msgid "Library" +msgstr "Knihovna" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:231 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "Limit the media library choice" +msgstr "Omezit výběr knihovny médií" + +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:236 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:87 +#: includes/locations/class-acf-location-user-role.php:111 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:676 +msgid "All" +msgstr "Vše" + +#: includes/fields/class-acf-field-file.php:237 +#: includes/fields/class-acf-field-image.php:237 +#: pro/fields/class-acf-field-gallery.php:677 +msgid "Uploaded to post" +msgstr "Nahráno k příspěvku" + +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:244 +#: pro/fields/class-acf-field-gallery.php:684 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:245 +#: includes/fields/class-acf-field-file.php:256 +msgid "Restrict which files can be uploaded" +msgstr "Omezte, které typy souborů lze nahrát" + +#: includes/fields/class-acf-field-file.php:255 +#: includes/fields/class-acf-field-image.php:273 +#: pro/fields/class-acf-field-gallery.php:713 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:302 +#: pro/fields/class-acf-field-gallery.php:742 +msgid "Allowed file types" +msgstr "Povolené typy souborů" + +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-image.php:303 +#: pro/fields/class-acf-field-gallery.php:743 +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-google-map.php:25 +msgid "Google Map" +msgstr "Mapa Google" + +#: includes/fields/class-acf-field-google-map.php:59 +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:165 +msgid "Clear location" +msgstr "Vymazat polohu" + +#: includes/fields/class-acf-field-google-map.php:166 +msgid "Find current location" +msgstr "Najít aktuální umístění" + +#: includes/fields/class-acf-field-google-map.php:169 +msgid "Search for address..." +msgstr "Vyhledat adresu..." + +#: includes/fields/class-acf-field-google-map.php:199 +#: includes/fields/class-acf-field-google-map.php:210 +msgid "Center" +msgstr "Vycentrovat" + +#: includes/fields/class-acf-field-google-map.php:200 +#: includes/fields/class-acf-field-google-map.php:211 +msgid "Center the initial map" +msgstr "Vycentrovat počáteční zobrazení mapy" + +#: includes/fields/class-acf-field-google-map.php:222 +msgid "Zoom" +msgstr "Přiblížení" + +#: 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:232 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:285 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:696 +#: pro/fields/class-acf-field-gallery.php:725 +msgid "Height" +msgstr "Výška" + +#: includes/fields/class-acf-field-google-map.php:233 +msgid "Customise the map height" +msgstr "Upravit výšku mapy" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Skupina" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:379 +msgid "Sub Fields" +msgstr "Podřazená pole" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "Určení stylu použitého pro vykreslení vybraných polí" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:627 +#: pro/fields/class-acf-field-repeater.php:451 +msgid "Block" +msgstr "Blok" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:626 +#: pro/fields/class-acf-field-repeater.php:450 +msgid "Table" +msgstr "Tabulka" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:628 +#: pro/fields/class-acf-field-repeater.php:452 +msgid "Row" +msgstr "Řádek" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Obrázek" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Select Image" +msgstr "Vybrat obrázek" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Edit Image" +msgstr "Upravit obrázek" + +#: includes/fields/class-acf-field-image.php:66 +msgid "Update Image" +msgstr "Aktualizovat obrázek" + +#: includes/fields/class-acf-field-image.php:157 +msgid "No image selected" +msgstr "Není vybrán žádný obrázek" + +#: includes/fields/class-acf-field-image.php:157 +msgid "Add Image" +msgstr "Přidat obrázek" + +#: includes/fields/class-acf-field-image.php:211 +msgid "Image Array" +msgstr "Pole obrázku" + +#: includes/fields/class-acf-field-image.php:212 +msgid "Image URL" +msgstr "Adresa obrázku" + +#: includes/fields/class-acf-field-image.php:213 +msgid "Image ID" +msgstr "ID obrázku" + +#: includes/fields/class-acf-field-image.php:220 +msgid "Preview Size" +msgstr "Velikost náhledu" + +#: includes/fields/class-acf-field-image.php:221 +msgid "Shown when entering data" +msgstr "Zobrazit při zadávání dat" + +#: includes/fields/class-acf-field-image.php:245 +#: includes/fields/class-acf-field-image.php:274 +#: pro/fields/class-acf-field-gallery.php:685 +#: pro/fields/class-acf-field-gallery.php:714 +msgid "Restrict which images can be uploaded" +msgstr "Omezte, které typy obrázků je možné nahrát" + +#: includes/fields/class-acf-field-image.php:248 +#: includes/fields/class-acf-field-image.php:277 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:688 +#: pro/fields/class-acf-field-gallery.php:717 +msgid "Width" +msgstr "Šířka" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Odkaz" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Vybrat odkaz" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "Otevřít v novém okně/záložce" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Pole odkazů" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "URL adresa odkazu" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Zpráva" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Nové řádky" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Řídí, jak se vykreslují nové řádky" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Automaticky přidávat odstavce" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Automaticky přidávat <br>" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Žádné formátování" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "Escapovat HTML" + +#: 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-number.php:25 +msgid "Number" +msgstr "Číslo" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:158 +msgid "Minimum Value" +msgstr "Minimální hodnota" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:168 +msgid "Maximum Value" +msgstr "Maximální hodnota" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:178 +msgid "Step Size" +msgstr "Velikost kroku" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "Hodnota musí být číslo" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +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:245 +#, php-format +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-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "Vložte URL" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "Velikost pro Embed" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Odkaz stránky" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Archivy" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:267 +#: includes/fields/class-acf-field-taxonomy.php:961 +msgid "Parent" +msgstr "Rodič" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:383 +#: includes/fields/class-acf-field-relationship.php:641 +msgid "Filter by Post Type" +msgstr "Filtrovat dle typu příspěvku" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:391 +#: includes/fields/class-acf-field-relationship.php:649 +msgid "All post types" +msgstr "Všechny typy příspěvků" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:397 +#: includes/fields/class-acf-field-relationship.php:655 +msgid "Filter by Taxonomy" +msgstr "Filtrovat dle taxonomie" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:405 +#: includes/fields/class-acf-field-relationship.php:663 +msgid "All taxonomies" +msgstr "Všechny taxonomie" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "Umožnit URL adresy archivu" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:387 +#: includes/fields/class-acf-field-user.php:419 +msgid "Select multiple values?" +msgstr "Vybrat více hodnot?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Heslo" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:436 +#: includes/fields/class-acf-field-relationship.php:720 +msgid "Post Object" +msgstr "Objekt příspěvku" + +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:721 +msgid "Post ID" +msgstr "ID příspěvku" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Přepínač" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Jiné" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "Přidat volbu 'jiné', která umožňuje vlastní hodnoty" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "Uložit Jiné" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "Uložit 'jiné' hodnoty do voleb polí" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Rozmezí" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Vztah" + +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "Dosaženo maximálního množství hodnot ( {max} hodnot )" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "Načítání" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "Nebyly nalezeny žádné výsledky" + +#: includes/fields/class-acf-field-relationship.php:441 +msgid "Select post type" +msgstr "Zvolit typ příspěvku" + +#: includes/fields/class-acf-field-relationship.php:467 +msgid "Select taxonomy" +msgstr "Zvolit taxonomii" + +#: includes/fields/class-acf-field-relationship.php:557 +msgid "Search..." +msgstr "Hledat..." + +#: includes/fields/class-acf-field-relationship.php:669 +msgid "Filters" +msgstr "Filtry" + +#: includes/fields/class-acf-field-relationship.php:675 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Typ příspěvku" + +#: includes/fields/class-acf-field-relationship.php:676 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:754 +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy" +msgstr "Taxonomie" + +#: includes/fields/class-acf-field-relationship.php:683 +msgid "Elements" +msgstr "Prvky" + +#: includes/fields/class-acf-field-relationship.php:684 +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:695 +msgid "Minimum posts" +msgstr "Minimum příspěvků" + +#: includes/fields/class-acf-field-relationship.php:704 +msgid "Maximum posts" +msgstr "Maximum příspěvků" + +#: includes/fields/class-acf-field-relationship.php:808 +#: pro/fields/class-acf-field-gallery.php:815 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s vyžaduje alespoň %s volbu" +msgstr[1] "%s vyžaduje alespoň %s volby" +msgstr[2] "%s vyžaduje alespoň %s voleb" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:776 +msgctxt "noun" +msgid "Select" +msgstr "Vybrat" + +#: includes/fields/class-acf-field-select.php:111 +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:112 +#, php-format +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:113 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nebyly nalezeny žádné výsledky" + +#: includes/fields/class-acf-field-select.php:114 +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:115 +#, php-format +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:116 +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:117 +#, php-format +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:118 +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:119 +#, php-format +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:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Načítání dalších výsledků…" + +#: includes/fields/class-acf-field-select.php:121 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Vyhledávání…" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Načítání selhalo" + +#: includes/fields/class-acf-field-select.php:397 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "Stylizované uživatelské rozhraní" + +#: includes/fields/class-acf-field-select.php:407 +msgid "Use AJAX to lazy load choices?" +msgstr "K načtení volby použít AJAX lazy load?" + +#: includes/fields/class-acf-field-select.php:423 +msgid "Specify the value returned" +msgstr "Zadat konkrétní návratovou hodnotu" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Oddělovač" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Záložka" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Umístění" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Definujte koncový bod pro předchozí záložky. Tím se začne nová skupina " +"záložek." + +#: includes/fields/class-acf-field-taxonomy.php:714 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "Nic pro %s" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Select the taxonomy to be displayed" +msgstr "Zvolit zobrazovanou taxonomii" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Appearance" +msgstr "Vzhled" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Select the appearance of this field" +msgstr "Vyberte vzhled tohoto pole" + +#: includes/fields/class-acf-field-taxonomy.php:770 +msgid "Multiple Values" +msgstr "Více hodnot" + +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Multi Select" +msgstr "Vícenásobný výběr" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Single Value" +msgstr "Jednotlivá hodnota" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Radio Buttons" +msgstr "Radio přepínače" + +#: includes/fields/class-acf-field-taxonomy.php:799 +msgid "Create Terms" +msgstr "Vytvořit pojmy" + +#: includes/fields/class-acf-field-taxonomy.php:800 +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:809 +msgid "Save Terms" +msgstr "Uložit pojmy" + +#: includes/fields/class-acf-field-taxonomy.php:810 +msgid "Connect selected terms to the post" +msgstr "Připojte vybrané pojmy k příspěvku" + +#: includes/fields/class-acf-field-taxonomy.php:819 +msgid "Load Terms" +msgstr "Nahrát pojmy" + +#: includes/fields/class-acf-field-taxonomy.php:820 +msgid "Load value from posts terms" +msgstr "Nahrát pojmy z příspěvků" + +#: includes/fields/class-acf-field-taxonomy.php:834 +msgid "Term Object" +msgstr "Objekt pojmu" + +#: includes/fields/class-acf-field-taxonomy.php:835 +msgid "Term ID" +msgstr "ID pojmu" + +#: includes/fields/class-acf-field-taxonomy.php:885 +#, php-format +msgid "User unable to add new %s" +msgstr "Uživatel není schopen přidat nové %s" + +#: includes/fields/class-acf-field-taxonomy.php:895 +#, php-format +msgid "%s already exists" +msgstr "%s již existuje" + +#: includes/fields/class-acf-field-taxonomy.php:927 +#, php-format +msgid "%s added" +msgstr "%s přidán" + +#: includes/fields/class-acf-field-taxonomy.php:973 +msgid "Add" +msgstr "Přidat" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-text.php:155 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limit znaků" + +#: includes/fields/class-acf-field-text.php:156 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Nechte prázdné pro nastavení bez omezení" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Textové pole" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Řádky" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Nastavuje výšku textového pole" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Výběr času" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Pravda / Nepravda" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "Zobrazí text vedle zaškrtávacího políčka" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "Text (aktivní)" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "Text zobrazený při aktivním poli" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "Text (neaktivní)" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "Text zobrazený při neaktivním poli" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Adresa URL" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "Hodnota musí být validní adresa URL" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "Uživatel" + +#: includes/fields/class-acf-field-user.php:394 +msgid "Filter by role" +msgstr "Filtrovat podle role" + +#: includes/fields/class-acf-field-user.php:402 +msgid "All user roles" +msgstr "Všechny uživatelské role" + +#: includes/fields/class-acf-field-user.php:433 +msgid "User Array" +msgstr "Pole uživatelů" + +#: includes/fields/class-acf-field-user.php:434 +msgid "User Object" +msgstr "Objekt uživatele" + +#: includes/fields/class-acf-field-user.php:435 +msgid "User ID" +msgstr "ID uživatele" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg Editor" + +#: includes/fields/class-acf-field-wysiwyg.php:330 +msgid "Visual" +msgstr "Grafika" + +#: includes/fields/class-acf-field-wysiwyg.php:331 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:337 +msgid "Click to initialize TinyMCE" +msgstr "Klikněte pro inicializaci TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Tabs" +msgstr "Záložky" + +#: includes/fields/class-acf-field-wysiwyg.php:395 +msgid "Visual & Text" +msgstr "Grafika a text" + +#: includes/fields/class-acf-field-wysiwyg.php:396 +msgid "Visual Only" +msgstr "Pouze grafika" + +#: includes/fields/class-acf-field-wysiwyg.php:397 +msgid "Text Only" +msgstr "Pouze text" + +#: includes/fields/class-acf-field-wysiwyg.php:404 +msgid "Toolbar" +msgstr "Lišta nástrojů" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Show Media Upload Buttons?" +msgstr "Zobrazit tlačítka nahrávání médií?" + +#: includes/fields/class-acf-field-wysiwyg.php:429 +msgid "Delay initialization?" +msgstr "Zpoždění inicializace?" + +#: includes/fields/class-acf-field-wysiwyg.php:430 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "TinyMCE nebude inicializován, dokud nekliknete na pole" + +#: includes/forms/form-comment.php:166 includes/forms/form-post.php:301 +#: pro/admin/admin-options-page.php:308 +msgid "Edit field group" +msgstr "Editovat skupinu polí" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "Ověřit email" + +#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:588 +#: pro/options-page.php:81 +msgid "Update" +msgstr "Aktualizace" + +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "Příspěvek aktualizován" + +#: includes/forms/form-front.php:230 +msgid "Spam Detected" +msgstr "Zjištěn spam" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Příspěvek" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Stránka" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "Formuláře" + +#: includes/locations.php:243 +msgid "is equal to" +msgstr "je rovno" + +#: includes/locations.php:244 +msgid "is not equal to" +msgstr "není rovno" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Příloha" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "Všechny formáty %s" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Komentář" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Aktuální uživatelská role" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "Super Admin" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Aktuální uživatel" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "Přihlášen" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "Prohlížíte frontend" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "Prohlížíte backend" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "Položka nabídky" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "Nabídka" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "Umístění nabídky" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "Nabídky" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Rodičovská stránka" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Šablona stránky" + +#: includes/locations/class-acf-location-page-template.php:98 +#: includes/locations/class-acf-location-post-template.php:151 +msgid "Default Template" +msgstr "Výchozí šablona" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Typ stránky" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Front Page" +msgstr "Hlavní stránka" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Posts Page" +msgstr "Stránka příspěvku" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Top Level Page (no parent)" +msgstr "Stránka nejvyšší úrovně (žádný nadřazený)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Parent Page (has children)" +msgstr "Rodičovská stránka (má potomky)" + +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Child Page (has parent)" +msgstr "Podřazená stránka (má rodiče)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Rubrika příspěvku" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Formát příspěvku" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Stav příspěvku" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Taxonomie příspěvku" + +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "Šablona příspěvku" + +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "Uživatelský formulář" + +#: includes/locations/class-acf-location-user-form.php:88 +msgid "Add / Edit" +msgstr "Přidat / Editovat" + +#: includes/locations/class-acf-location-user-form.php:89 +msgid "Register" +msgstr "Registrovat" + +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "Uživatelská role" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Widget" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "%s hodnota je vyžadována" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/admin/admin-options-page.php:200 +msgid "Publish" +msgstr "Publikovat" + +#: pro/admin/admin-options-page.php:206 +#, php-format +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-settings-updates.php:78 +msgid "Error. Could not connect to update server" +msgstr "Chyba. Nelze se připojit k serveru a aktualizovat" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Aktualizace" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Deaktivujte licenci" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Aktivujte licenci" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "Informace o licenci" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +msgstr "Licenční klíč" + +#: 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:92 +msgid "Update Plugin" +msgstr "Aktualizovat plugin" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above 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:100 +msgid "Check Again" +msgstr "Zkontrolujte znovu" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "Upozornění na aktualizaci" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Klonovat" + +#: pro/fields/class-acf-field-clone.php:812 +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:829 +msgid "Display" +msgstr "Zobrazovat" + +#: pro/fields/class-acf-field-clone.php:830 +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:835 +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:836 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Bezešvé (nahradí toto pole vybranými poli)" + +#: pro/fields/class-acf-field-clone.php:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "Štítky budou zobrazeny jako %s" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "Prefix štítku pole" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "Hodnoty budou uloženy jako %s" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "Prefix jména pole" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "Neznámé pole" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "Skupina neznámých polí" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "Všechna pole z skupiny polí %s" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:463 +msgid "Add Row" +msgstr "Přidat řádek" + +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:938 +#: pro/fields/class-acf-field-flexible-content.php:1020 +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:74 +msgid "layouts" +msgstr "typy zobrazení" + +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:937 +#: pro/fields/class-acf-field-flexible-content.php:1019 +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:78 +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:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} dostupný (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} povinný (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:85 +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:302 +#, php-format +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:427 +msgid "Add layout" +msgstr "Přidat typ zobrazení" + +#: pro/fields/class-acf-field-flexible-content.php:428 +msgid "Remove layout" +msgstr "Odstranit typ zobrazení" + +#: pro/fields/class-acf-field-flexible-content.php:429 +#: pro/fields/class-acf-field-repeater.php:296 +msgid "Click to toggle" +msgstr "Klikněte pro přepnutí" + +#: pro/fields/class-acf-field-flexible-content.php:569 +msgid "Reorder Layout" +msgstr "Změnit pořadí typu zobrazení" + +#: pro/fields/class-acf-field-flexible-content.php:569 +msgid "Reorder" +msgstr "Změnit pořadí" + +#: pro/fields/class-acf-field-flexible-content.php:570 +msgid "Delete Layout" +msgstr "Smazat typ zobrazení" + +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Duplicate Layout" +msgstr "Duplikovat typ zobrazení" + +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Add New Layout" +msgstr "Přidat nový typ zobrazení" + +#: pro/fields/class-acf-field-flexible-content.php:643 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:656 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:683 +#: pro/fields/class-acf-field-repeater.php:459 +msgid "Button Label" +msgstr "Nápis tlačítka" + +#: pro/fields/class-acf-field-flexible-content.php:692 +msgid "Minimum Layouts" +msgstr "Minimální rozložení" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maximální rozložení" + +#: pro/fields/class-acf-field-gallery.php:71 +msgid "Add Image to Gallery" +msgstr "Přidat obrázek do galerie" + +#: pro/fields/class-acf-field-gallery.php:72 +msgid "Maximum selection reached" +msgstr "Maximální výběr dosažen" + +#: pro/fields/class-acf-field-gallery.php:336 +msgid "Length" +msgstr "Délka" + +#: pro/fields/class-acf-field-gallery.php:379 +msgid "Caption" +msgstr "Popisek" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Alt Text" +msgstr "Alternativní text" + +#: pro/fields/class-acf-field-gallery.php:559 +msgid "Add to gallery" +msgstr "Přidat do galerie" + +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Bulk actions" +msgstr "Hromadné akce" + +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Sort by date uploaded" +msgstr "Řadit dle data nahrání" + +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Sort by date modified" +msgstr "Řadit dle data změny" + +#: pro/fields/class-acf-field-gallery.php:566 +msgid "Sort by title" +msgstr "Řadit dle názvu" + +#: pro/fields/class-acf-field-gallery.php:567 +msgid "Reverse current order" +msgstr "Převrátit aktuální pořadí" + +#: pro/fields/class-acf-field-gallery.php:585 +msgid "Close" +msgstr "Zavřít" + +#: pro/fields/class-acf-field-gallery.php:639 +msgid "Minimum Selection" +msgstr "Minimální výběr" + +#: pro/fields/class-acf-field-gallery.php:648 +msgid "Maximum Selection" +msgstr "Maximální výběr" + +#: pro/fields/class-acf-field-gallery.php:657 +msgid "Insert" +msgstr "Vložit" + +#: pro/fields/class-acf-field-gallery.php:658 +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:662 +msgid "Append to the end" +msgstr "Přidat na konec" + +#: pro/fields/class-acf-field-gallery.php:663 +msgid "Prepend to the beginning" +msgstr "Přidat na začátek" + +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:656 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimální počet řádků dosažen ({min} řádků)" + +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maximální počet řádků dosažen ({max} řádků)" + +#: pro/fields/class-acf-field-repeater.php:333 +msgid "Add row" +msgstr "Přidat řádek" + +#: pro/fields/class-acf-field-repeater.php:334 +msgid "Remove row" +msgstr "Odebrat řádek" + +#: pro/fields/class-acf-field-repeater.php:412 +msgid "Collapsed" +msgstr "Sbaleno" + +#: pro/fields/class-acf-field-repeater.php:413 +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:423 +msgid "Minimum Rows" +msgstr "Minimum řádků" + +#: pro/fields/class-acf-field-repeater.php:433 +msgid "Maximum Rows" +msgstr "Maximum řádků" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "Neexistuje stránka nastavení" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "Konfigurace" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Nastavení aktualizováno" + +#: pro/updates.php:97 +#, php-format +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." + +#. Plugin URI of the plugin/theme +#| msgid "http://www.advancedcustomfields.com/" +msgid "https://www.advancedcustomfields.com/" +msgstr "https://www.advancedcustomfields.com/" + +#. Author of the plugin/theme +#| msgid "elliot condon" +msgid "Elliot Condon" +msgstr "Elliot Condon" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "http://www.elliotcondon.com/" + +#~ msgid "Disabled" +#~ msgstr "Zakázáno" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "(%s) zakázán" +#~ msgstr[1] "(%s) zakázány" +#~ msgstr[2] "(%s) zakázáno" + +#~ msgid "Parent fields" +#~ msgstr "Rodičovské pole" + +#~ msgid "Sibling fields" +#~ msgstr "Sesterské pole" + +#~ msgid "See what's new in" +#~ msgstr "Co je nového v" + +#~ msgid "version" +#~ msgstr "verze" + +#~ msgid "Getting Started" +#~ msgstr "Začínáme" + +#~ msgid "Field Types" +#~ msgstr "Typy polí" + +#~ msgid "Functions" +#~ msgstr "Funkce" + +#~ msgid "Actions" +#~ msgstr "Akce" + +#~ msgid "'How to' guides" +#~ msgstr "Průvodce \"jak na to\"" + +#~ msgid "Tutorials" +#~ msgstr "Tutoriál" + +#~ msgid "Created by" +#~ msgstr "Vytvořil/a" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Úspěch. Nástroj pro import přidal %s skupin polí: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Upozornění. Nástroj pro import rozpoznal %s již existujících " +#~ "skupin polí a ty byly ignorovány: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Aktualizovat ACF" + +#~ msgid "Upgrade" +#~ msgstr "Aktualizovat" + +#~ msgid "Error" +#~ msgstr "Chyba" + +#~ msgid "Error." +#~ msgstr "Chyba." + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Chytněte a táhněte pro změnu pořadí" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomie" + +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Pro usnadnění aktualizace se přihlaste do svého obchodu a požádejte o bezplatnou kopii ACF PRO!" + +#~ msgid "Under the Hood" +#~ msgstr "Pod kapotou" + +#~ msgid "Smarter field settings" +#~ msgstr "Chytřejší nastavení pole" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF nyní ukládá nastavení polí jako individuální objekty" + +#~ msgid "Better version control" +#~ msgstr "Lepší verzování" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nový automatický export do formátu JSON umožňuje, aby nastavení polí bylo " +#~ "verzovatelné" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML vyměněno za JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Import / Export nyní používá JSON místo XML" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Bylo přidáno nové pole pro vkládání obsahu" + +#~ msgid "New Gallery" +#~ msgstr "Nová galerie" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Pole pro galerii prošlo potřebovaným vylepšením vzhledu" + +#~ msgid "Relationship Field" +#~ msgstr "Vztahová pole" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nastavení nových polí pro \"Filtry\" (vyhledávání, typ příspěvku, " +#~ "taxonomie)" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nová skupina archivů v poli pro výběr page_link" + +#~ msgid "Better Options Pages" +#~ msgstr "Vylepšená stránka nastavení" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nové funkce pro stránku nastavení umožňují vytvoření stránek obou " +#~ "rodičovských i podřízených menu" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportujte skupiny polí do PHP" + +#~ msgid "Download export file" +#~ msgstr "Stáhnout soubor s exportem" + +#~ msgid "Generate export code" +#~ msgstr "Generovat kód pro exportu" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Aktualizace databáze Advanced Custom Fields" + +#~ msgid "Upgrading data to" +#~ msgstr "Aktualizace dat na" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Než začnete používat nové úžasné funkce, aktualizujte databázi na " +#~ "nejnovější verzi." + +#~ msgid "See what's new" +#~ msgstr "Podívejte se, co je nového" + +#~ msgid "Show a different month" +#~ msgstr "Zobrazit jiný měsíc" + +#~ msgid "Return format" +#~ msgstr "Formát návratu" + +#~ msgid "uploaded to this post" +#~ msgstr "nahrán k tomuto příspěvku" + +#~ msgid "File Size" +#~ msgstr "Velikost souboru" + +#~ msgid "No File selected" +#~ msgstr "Nebyl vybrán žádný soubor" + +#~ msgid "Locating" +#~ msgstr "Určování polohy" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Berte prosím na vědomí, že veškerý text musí projít přes funkce " +#~ "wordpressu " + +#~ msgid "No embed found for the given URL." +#~ msgstr "Pro danou adresu URL nebyl nalezen žádný embed." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Dosaženo minimálního množství hodnot ( {min} hodnot )" + +#~ msgid "Warning" +#~ msgstr "Varování" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Pole záložky se zobrazí nesprávně, pokud je přidáno do opakovače v " +#~ "tabulkovém stylu nebo do flexibilního pole" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Chcete-li lépe uspořádat obrazovku úprav, použijte seskupování polí " +#~ "pomocí Záložek." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Všechna pole následující po této záložce (až po další záložku nebo konec " +#~ "výpisu) budou seskupena a jako nadpis bude použit štítek záložky." + +#~ msgid "Add new %s " +#~ msgstr "Přidat novou %s " + +#~ msgid "None" +#~ msgstr "Žádný" + +#~ msgid "eg. Show extra content" +#~ msgstr "např. Zobrazit dodatečný obsah" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Chyba připojení. Omlouváme se, zkuste to znovu" + +#~ msgid "Save Options" +#~ msgstr "Uložit nastavení" + +#~ msgid "License" +#~ msgstr "Licence" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Pro odemčení aktualizací prosím zadejte níže svůj licenční klíč. Pokud " +#~ "nemáte licenční klíč, prosím navštivte" + +#~ msgid "details & pricing" +#~ msgstr "detaily a ceny" + +#~ msgid "remove {layout}?" +#~ msgstr "odstranit {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Toto pole vyžaduje alespoň {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximální {label} limit dosažen ({max} {identifier})" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "Custom field updated." +#~ msgstr "Vlastní pole aktualizováno." + +#~ msgid "Custom field deleted." +#~ msgstr "Vlastní pole smazáno." + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "Skupina polí obnovena z revize %s" + +#~ msgid "Error: Field Type does not exist!" +#~ msgstr "Chyba: Typ pole neexistuje!" + +#~ msgid "Full" +#~ msgstr "Plný" + +#~ msgid "No ACF groups selected" +#~ msgstr "Nejsou vybrány žádné ACF skupiny" + +#~ msgid "Add Fields to Edit Screens" +#~ msgstr "Přidat pole na obrazovky úprav" + +#~ msgid "Customise the edit page" +#~ msgstr "Přizpůsobit stránku úprav" + +#~ msgid "Parent Page" +#~ msgstr "Rodičovská stránka" + +#~ msgid "Child Page" +#~ msgstr "Podstránka" + +#~ msgid "Normal" +#~ msgstr "Normální" + +#~ msgid "Standard Metabox" +#~ msgstr "Standardní metabox" + +#~ msgid "No Metabox" +#~ msgstr "Žádný metabox" + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "" +#~ "Přečtěte si dokumentaci, naučte se funkce a objevte zajímavé tipy & " +#~ "triky pro váš další webový projekt." + +#~ msgid "Visit the ACF website" +#~ msgstr "Navštívit web ACF" + +#~ msgid "Vote" +#~ msgstr "Hlasujte" + +#~ msgid "Follow" +#~ msgstr "Následujte" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "Ověřování selhalo. Jedno nebo více polí níže je povinné." + +#~ msgid "Add File to Field" +#~ msgstr "+ Přidat soubor do pole" + +#~ msgid "Add Image to Field" +#~ msgstr "Přidat obrázek do pole" + +#~ msgid "Attachment updated" +#~ msgstr "Příloha aktualizována." + +#~ msgid "No Custom Field Group found for the options page" +#~ msgstr "Žádná vlastní skupina polí nebyla pro stránku konfigurace nalezena" + +#~ msgid "Repeater field deactivated" +#~ msgstr "Opakovací pole deaktivováno" + +#~ msgid "Options page deactivated" +#~ msgstr "Stránka konfigurace deaktivována" + +#~ msgid "Flexible Content field deactivated" +#~ msgstr "Pole flexibilního pole deaktivováno" + +#~ msgid "Gallery field deactivated" +#~ msgstr "Pole galerie deaktivováno" + +#~ msgid "Repeater field activated" +#~ msgstr "Opakovací pole aktivováno" + +#~ msgid "Options page activated" +#~ msgstr "Stránka konfigurace aktivována" + +#~ msgid "Flexible Content field activated" +#~ msgstr "Pole flexibilního obsahu aktivováno" + +#~ msgid "Gallery field activated" +#~ msgstr "Pole galerie aktivováno" + +#~ msgid "License key unrecognised" +#~ msgstr "Licenční klíč nebyl rozpoznán" + +#~ msgid "Activate Add-ons." +#~ msgstr "Aktivovat přídavky." + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "" +#~ "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může " +#~ "být použit na více webech." + +#~ msgid "Find Add-ons" +#~ msgstr "Hledat přídavky" + +#~ msgid "Activation Code" +#~ msgstr "Aktivační kód" + +#~ msgid "Repeater Field" +#~ msgstr "Opakovací pole" + +#~ msgid "Deactivate" +#~ msgstr "Deaktivovat" + +#~ msgid "Activate" +#~ msgstr "Aktivovat" + +#~ msgid "Flexible Content Field" +#~ msgstr "Pole flexibilního obsahu" + +#~ msgid "Gallery Field" +#~ msgstr "Pole galerie" + +#~ msgid "Export Field Groups to XML" +#~ msgstr "Exportovat skupiny polí do XML" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním " +#~ "importním pluginem WP." + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "Importované skupiny polí budou zobrazeny v seznamu upravitelných " +#~ "skupin polí. Toto je užitečné pro přesouvání skupin polí mezi WP weby." + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Export XML\"" + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "Uložte .xml soubor při požádání" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "Otevřete Nástroje » Import a vyberte WordPress" + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "Nainstalujte importní WP plugin, pokud jste o to požádáni" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "Nahrajte a importujte váš exportovaný .xml soubor" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "Vyberte vašeho uživatele a ignorujte možnost Importovat přílohy" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "To je vše! Veselé WordPressování!" + +#~ msgid "Export XML" +#~ msgstr "Exportovat XML" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACF vytvoří PHP kód pro vložení do vaší šablony." + +#~ msgid "Register Field Groups" +#~ msgstr "Registrovat skupiny polí" + +#~ msgid "" +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." +#~ msgstr "" +#~ "Registrované skupiny polí nebudou zobrazeny v seznamu " +#~ "upravitelných skupin polí. Toto je užitečné při používání polí v " +#~ "šablonách." + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "Mějte prosím na paměti, že pokud exportujete a registrujete skupiny polí " +#~ "v rámci stejného WordPressu, uvidíte na obrazovkách úprav duplikovaná " +#~ "pole. Pro nápravu prosím přesuňte původní skupinu polí do koše nebo " +#~ "odstraňte kód ze souboru functions.php." + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Vytvořit PHP\"" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Zkopírujte vygenerovaný PHP kód" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Vložte jej do vašeho souboru functions.php" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních " +#~ "několika řádcích." + +#~ msgid "Back to settings" +#~ msgstr "Zpět na nastavení" + +#~ msgid "" +#~ "/**\n" +#~ " * Activate Add-ons\n" +#~ " * Here you can enter your activation codes to unlock Add-ons to use in " +#~ "your theme. \n" +#~ " * Since all activation codes are multi-site licenses, you are allowed to " +#~ "include your key in premium themes. \n" +#~ " * Use the commented out code to update the database with your activation " +#~ "code. \n" +#~ " * You may place this code inside an IF statement that only runs on theme " +#~ "activation.\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Aktivovat přídavky\n" +#~ " * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve " +#~ "vaší šabloně. \n" +#~ " * Jelikož jsou všechny aktivační kódy licencovány pro použití na více " +#~ "webech, můžete je použít ve vaší premium šabloně. \n" +#~ " * Použijte zakomentovaný kód pro aktualizaci databáze s vaším aktivačním " +#~ "kódem. \n" +#~ " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po " +#~ "aktivaci šablony.\n" +#~ " */" + +#~ msgid "" +#~ "/**\n" +#~ " * Register field groups\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" +#~ " * This code must run every time the functions.php file is read\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Registrace skupiny polí\n" +#~ " * Funkce register_field_group akceptuje pole, které obsahuje relevatní " +#~ "data k registraci skupiny polí\n" +#~ " * Pole můžete upravit podle potřeb. Může to ovšem vyústit v pole " +#~ "nekompatibilní s ACF\n" +#~ " * Tento kód musí proběhnout při každém čtení souboru functions.php\n" +#~ " */" + +#~ msgid "No field groups were selected" +#~ msgstr "Nebyly vybrány žádné skupiny polí" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "Nastavení Pokročilých vlastních polí" + +#~ msgid "requires a database upgrade" +#~ msgstr "vyžaduje aktualizaci databáze" + +#~ msgid "why?" +#~ msgstr "proč?" + +#~ msgid "Please" +#~ msgstr "Prosím" + +#~ msgid "backup your database" +#~ msgstr "zálohujte svou databázi" + +#~ msgid "then click" +#~ msgstr "a pak klikněte" + +#~ msgid "Modifying field group options 'show on page'" +#~ msgstr "Úprava možnosti skupiny polí 'zobrazit na stránce'" + +#~ msgid "Modifying field option 'taxonomy'" +#~ msgstr "Úprava možností pole 'taxonomie'" + +#~ msgid "No choices to choose from" +#~ msgstr "Žádné možnosti, z nichž by bylo možné vybírat" + +#~ msgid "Enter your choices one per line" +#~ msgstr "Vložte vaše možnosti po jedné na řádek" + +#~ msgid "Red" +#~ msgstr "Červená" + +#~ msgid "Blue" +#~ msgstr "Modrá" + +#~ msgid "blue : Blue" +#~ msgstr "modra: Modrá" + +#~ msgid "eg. dd/mm/yy. read more about" +#~ msgstr "např. dd/mm/yy. přečtěte si více" + +#~ msgid "File Updated." +#~ msgstr "Soubor aktualizován." + +#~ msgid "No File Selected" +#~ msgstr "Nebyl vybrán žádný soubor" + +#~ msgid "Attachment ID" +#~ msgstr "ID přílohy" + +#~ msgid "Media attachment updated." +#~ msgstr "Příloha aktualizována." + +#~ msgid "No files selected" +#~ msgstr "Nebyly vybrány žádné soubory." + +#~ msgid "Add Selected Files" +#~ msgstr "Přidat vybrané soubory" + +#~ msgid "+ Add Row" +#~ msgstr "+ Přidat řádek" + +#~ msgid "Field Order" +#~ msgstr "Pořadí pole" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "" +#~ "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření " +#~ "prvního pole." + +#~ msgid "Edit this Field" +#~ msgstr "Upravit toto pole" + +#~ msgid "Read documentation for this field" +#~ msgstr "Přečtěte si dokumentaci pro toto pole" + +#~ msgid "Docs" +#~ msgstr "Dokumenty" + +#~ msgid "Duplicate this Field" +#~ msgstr "Duplikovat toto pole" + +#~ msgid "Delete this Field" +#~ msgstr "Smazat toto pole" + +#~ msgid "Save Field" +#~ msgstr "Uložit pole" + +#~ msgid "Close Sub Field" +#~ msgstr "Zavřít podpole" + +#~ msgid "+ Add Sub Field" +#~ msgstr "+ Přidat podpole" + +#~ msgid "Thumbnail is advised" +#~ msgstr "Je doporučen náhled" + +#~ msgid "Image Updated" +#~ msgstr "Obrázek aktualizován" + +#~ msgid "Grid" +#~ msgstr "Mřížka" + +#~ msgid "List" +#~ msgstr "Seznam" + +#~ msgid "No images selected" +#~ msgstr "Není vybrán žádný obrázek" + +#~ msgid "1 image selected" +#~ msgstr "1 vybraný obrázek" + +#~ msgid "{count} images selected" +#~ msgstr "{count} vybraných obrázků" + +#~ msgid "Image already exists in gallery" +#~ msgstr "Obrázek v galerii už existuje" + +#~ msgid "Image Added" +#~ msgstr "Obrázek přidán" + +#~ msgid "Image Updated." +#~ msgstr "Obrázek aktualizován." + +#~ msgid "Image Object" +#~ msgstr "Objekt obrázku" + +#~ msgid "Add selected Images" +#~ msgstr "Přidat vybrané obrázky" + +#~ msgid "Filter from Taxonomy" +#~ msgstr "Filtrovat z taxonomie" + +#~ msgid "Repeater Fields" +#~ msgstr "Opakovací pole" + +#~ msgid "Table (default)" +#~ msgstr "Tabulka (výchozí)" + +#~ msgid "Formatting" +#~ msgstr "Formátování" + +#~ msgid "Define how to render html tags" +#~ msgstr "Definujte způsob vypisování HTML tagů" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Definujte způsob výpisu HTML tagů / nových řádků" + +#~ msgid "auto <br />" +#~ msgstr "auto <br />" + +#~ msgid "new_field" +#~ msgstr "nove_pole" + +#~ msgid "Field Instructions" +#~ msgstr "Instrukce pole" + +#~ msgid "Logged in User Type" +#~ msgstr "Typ přihlášeného uživatele" + +#~ msgid "Page Specific" +#~ msgstr "Specifická stránka" + +#~ msgid "Post Specific" +#~ msgstr "Specifický příspěvek" + +#~ msgid "Taxonomy (Add / Edit)" +#~ msgstr "Taxonomie (přidat / upravit)" + +#~ msgid "User (Add / Edit)" +#~ msgstr "Uživatel (přidat / upravit)" + +#~ msgid "Media (Edit)" +#~ msgstr "Media (upravit)" + +#~ msgid "match" +#~ msgstr "souhlasí" + +#~ msgid "all" +#~ msgstr "vše" + +#~ msgid "any" +#~ msgstr "libovolné" + +#~ msgid "of the above" +#~ msgstr "z uvedeného" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "Odemkněte přídavek konfigurace s aktivačním kódem" + +#~ msgid "Field groups are created in order
                              from lowest to highest." +#~ msgstr "" +#~ "Skupiny polí jsou vytvořeny v pořadí
                              od nejnižšího k nejvyššímu." + +#~ msgid "Select items to hide them from the edit screen" +#~ msgstr "Vybrat položky pro skrytí z obrazovky úprav" + +#~ 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í několik skupin polí, bude použito " +#~ "nastavení první skupiny. (s nejnižším pořadovým číslem)" + +#~ msgid "Everything Fields deactivated" +#~ msgstr "Všechna pole deaktivována" + +#~ msgid "Everything Fields activated" +#~ msgstr "Všechna pole aktivována" + +#~ msgid "Navigate to the" +#~ msgstr "Běžte na" + +#~ msgid "and select WordPress" +#~ msgstr "a vyberte WordPress" + +#~ msgid "" +#~ "Filter posts by selecting a post type
                              \n" +#~ "\t\t\t\tTip: deselect all post types to show all post type's posts" +#~ msgstr "" +#~ "Filtrovat příspěvky výběrem typu příspěvku
                              \n" +#~ "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků " +#~ "všech typů příspěvků" + +#~ msgid "Set to -1 for infinite" +#~ msgstr "Nastavte na -1 pro nekonečno" + +#~ msgid "Row Limit" +#~ msgstr "Limit řádků" diff --git a/lang/pro/acf-de_CH.po b/lang/pro/acf-de_CH.po new file mode 100644 index 0000000..b7a0def --- /dev/null +++ b/lang/pro/acf-de_CH.po @@ -0,0 +1,4281 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.7.10\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2019-01-15 11:15+1000\n" +"PO-Revision-Date: 2019-02-06 15:35+0100\n" +"Last-Translator: Werbelinie AG \n" +"Language-Team: Raphael Hüni \n" +"Language: de_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.2\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +# @ acf +#: acf.php:80 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +# @ acf +#: acf.php:362 includes/admin/admin.php:58 +msgid "Field Groups" +msgstr "Feld-Gruppen" + +# @ acf +#: acf.php:363 +msgid "Field Group" +msgstr "Feld-Gruppe" + +# @ acf +#: acf.php:364 acf.php:396 includes/admin/admin.php:59 +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Add New" +msgstr "Erstellen" + +# @ acf +#: acf.php:365 +msgid "Add New Field Group" +msgstr "Neue Feld-Gruppe erstellen" + +# @ acf +#: acf.php:366 +msgid "Edit Field Group" +msgstr "Feld-Gruppe bearbeiten" + +# @ acf +#: acf.php:367 +msgid "New Field Group" +msgstr "Neue Feld-Gruppe" + +# @ acf +#: acf.php:368 +msgid "View Field Group" +msgstr "Feld-Gruppe anzeigen" + +# @ acf +#: acf.php:369 +msgid "Search Field Groups" +msgstr "Feld-Gruppen suchen" + +# @ acf +#: acf.php:370 +msgid "No Field Groups found" +msgstr "Keine Feld-Gruppen gefunden" + +# @ acf +#: acf.php:371 +msgid "No Field Groups found in Trash" +msgstr "Keine Feld-Gruppen im Papierkorb gefunden" + +# @ acf +#: acf.php:394 includes/admin/admin-field-group.php:220 +#: includes/admin/admin-field-groups.php:529 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "Felder" + +# @ acf +#: acf.php:395 +msgid "Field" +msgstr "Feld" + +# @ acf +#: acf.php:397 +msgid "Add New Field" +msgstr "Feld hinzufügen" + +# @ acf +#: acf.php:398 +msgid "Edit Field" +msgstr "Feld bearbeiten" + +# @ acf +#: acf.php:399 includes/admin/views/field-group-fields.php:41 +msgid "New Field" +msgstr "Neues Feld" + +# @ acf +#: acf.php:400 +msgid "View Field" +msgstr "Feld anzeigen" + +# @ acf +#: acf.php:401 +msgid "Search Fields" +msgstr "Felder suchen" + +# @ acf +#: acf.php:402 +msgid "No Fields found" +msgstr "Keine Felder gefunden" + +# @ acf +#: acf.php:403 +msgid "No Fields found in Trash" +msgstr "Keine Feld-Gruppen im Papierkorb gefunden" + +#: acf.php:442 includes/admin/admin-field-group.php:402 +#: includes/admin/admin-field-groups.php:586 +msgid "Inactive" +msgstr "Inaktiv" + +#: acf.php:447 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inaktiv (%s)" +msgstr[1] "Inaktiv (%s)" + +# @ acf +#: includes/admin/admin-field-group.php:86 +#: includes/admin/admin-field-group.php:87 +#: includes/admin/admin-field-group.php:89 +msgid "Field group updated." +msgstr "Feld-Gruppe aktualisiert." + +# @ acf +#: includes/admin/admin-field-group.php:88 +msgid "Field group deleted." +msgstr "Feld-Gruppe gelöscht." + +# @ acf +#: includes/admin/admin-field-group.php:91 +msgid "Field group published." +msgstr "Feld-Gruppe veröffentlicht." + +# @ acf +#: includes/admin/admin-field-group.php:92 +msgid "Field group saved." +msgstr "Feld-Gruppe gesichert." + +# @ acf +#: includes/admin/admin-field-group.php:93 +msgid "Field group submitted." +msgstr "Feld-Gruppe übertragen." + +# @ acf +#: includes/admin/admin-field-group.php:94 +msgid "Field group scheduled for." +msgstr "Feld-Gruppe geplant für." + +# @ acf +#: includes/admin/admin-field-group.php:95 +msgid "Field group draft updated." +msgstr "Entwurf der Feld-Gruppe aktualisiert." + +# @ acf +#: includes/admin/admin-field-group.php:171 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "Der Feldname darf nicht mit \"field_\" beginnen" + +# @ acf +#: includes/admin/admin-field-group.php:172 +msgid "This field cannot be moved until its changes have been saved" +msgstr "Diese Feld kann nicht verschoben werden, bevor es gesichert wurde" + +# @ acf +#: includes/admin/admin-field-group.php:173 +msgid "Field group title is required" +msgstr "Es ist ein Titel für die Feld-Gruppe erforderlich" + +# @ acf +#: includes/admin/admin-field-group.php:174 +msgid "Move to trash. Are you sure?" +msgstr "Wirklich in den Papierkorb verschieben?" + +# @ acf +#: includes/admin/admin-field-group.php:175 +msgid "No toggle fields available" +msgstr "Es liegen keine Auswahl-Feld-Typen vor" + +# @ acf +#: includes/admin/admin-field-group.php:176 +msgid "Move Custom Field" +msgstr "Benutzerdefiniertes Feld verschieben" + +# @ acf +#: includes/admin/admin-field-group.php:177 +msgid "Checked" +msgstr "Ausgewählt" + +# @ acf +#: includes/admin/admin-field-group.php:178 includes/api/api-field.php:320 +msgid "(no label)" +msgstr "(ohne Beschreibung)" + +# @ acf +#: includes/admin/admin-field-group.php:179 +msgid "(this field)" +msgstr "(Dieses Feld)" + +# @ acf +#: includes/admin/admin-field-group.php:180 +#: includes/api/api-field-group.php:751 +msgid "copy" +msgstr "kopieren" + +# @ acf +#: includes/admin/admin-field-group.php:181 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3998 +msgid "or" +msgstr "oder" + +# @ acf +#: includes/admin/admin-field-group.php:182 +msgid "Null" +msgstr "Null" + +# @ acf +#: includes/admin/admin-field-group.php:221 +msgid "Location" +msgstr "Position" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Einstellungen" + +#: includes/admin/admin-field-group.php:372 +msgid "Field Keys" +msgstr "Feldschlüssel" + +#: includes/admin/admin-field-group.php:402 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Aktiviert" + +# @ acf +#: includes/admin/admin-field-group.php:771 +msgid "Move Complete." +msgstr "Verschieben erfolgreich abgeschlossen." + +# @ acf +#: includes/admin/admin-field-group.php:772 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Das Feld \"%s\" wurde in die %s Feld-Gruppe verschoben" + +# @ acf +#: includes/admin/admin-field-group.php:773 +msgid "Close Window" +msgstr "Schliessen" + +# @ acf +#: includes/admin/admin-field-group.php:814 +msgid "Please select the destination for this field" +msgstr "In welche Feld-Gruppe solle dieses Feld verschoben werden" + +# @ acf +#: includes/admin/admin-field-group.php:821 +msgid "Move Field" +msgstr "Feld verschieben" + +#: includes/admin/admin-field-groups.php:89 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Veröffentlicht (%s)" +msgstr[1] "Veröffentlicht (%s)" + +# @ acf +#: includes/admin/admin-field-groups.php:156 +#, php-format +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Feld-Gruppe dupliziert." +msgstr[1] "%s Feld-Gruppen dupliziert." + +# @ acf +#: includes/admin/admin-field-groups.php:243 +#, php-format +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Feld-Gruppe synchronisiert." +msgstr[1] "%s Feld-Gruppen synchronisiert." + +# @ acf +#: includes/admin/admin-field-groups.php:413 +#: includes/admin/admin-field-groups.php:576 +msgid "Sync available" +msgstr "Synchronisierung verfügbar" + +# @ acf +#: includes/admin/admin-field-groups.php:526 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:372 +msgid "Title" +msgstr "Titel" + +# @ acf +#: includes/admin/admin-field-groups.php:527 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +#: pro/fields/class-acf-field-gallery.php:399 +msgid "Description" +msgstr "Beschreibung" + +#: includes/admin/admin-field-groups.php:528 +msgid "Status" +msgstr "Status" + +# @ acf +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:626 +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Passen Sie WordPress mit leistungsstarken, professionellen und intuitiven " +"Feldern an." + +# @ acf +#: includes/admin/admin-field-groups.php:628 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Versionshinweise" + +#: includes/admin/admin-field-groups.php:633 +#, php-format +msgid "See what's new in
                              version %s." +msgstr "Sieh dir die Neuerungen in Version%s an." + +# @ acf +#: includes/admin/admin-field-groups.php:636 +msgid "Resources" +msgstr "Dokumentation (engl.)" + +#: includes/admin/admin-field-groups.php:638 +msgid "Website" +msgstr "Webseite" + +#: includes/admin/admin-field-groups.php:639 +msgid "Documentation" +msgstr "Dokumentation" + +#: includes/admin/admin-field-groups.php:640 +msgid "Support" +msgstr "Hilfe" + +#: includes/admin/admin-field-groups.php:642 +#: includes/admin/views/settings-info.php:84 +msgid "Pro" +msgstr "Pro" + +#: includes/admin/admin-field-groups.php:647 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "Danke für die Verwendung von ACF." + +# @ acf +#: includes/admin/admin-field-groups.php:686 +msgid "Duplicate this item" +msgstr "Dieses Element duplizieren" + +# @ acf +#: includes/admin/admin-field-groups.php:686 +#: includes/admin/admin-field-groups.php:702 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Duplicate" +msgstr "Duplizieren" + +# @ acf +#: includes/admin/admin-field-groups.php:719 +#: includes/fields/class-acf-field-google-map.php:165 +#: includes/fields/class-acf-field-relationship.php:593 +msgid "Search" +msgstr "Suchen" + +# @ acf +#: includes/admin/admin-field-groups.php:778 +#, php-format +msgid "Select %s" +msgstr "%s auswählen" + +# @ acf +#: includes/admin/admin-field-groups.php:786 +msgid "Synchronise field group" +msgstr "Synchronisiere Feld-Gruppe" + +# @ acf +#: includes/admin/admin-field-groups.php:786 +#: includes/admin/admin-field-groups.php:816 +msgid "Sync" +msgstr "Synchronisieren" + +#: includes/admin/admin-field-groups.php:798 +msgid "Apply" +msgstr "Anwenden" + +# @ acf +#: includes/admin/admin-field-groups.php:816 +msgid "Bulk Actions" +msgstr "Massenverarbeitung" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Werkzeuge" + +# @ acf +#: includes/admin/admin-upgrade.php:47 includes/admin/admin-upgrade.php:94 +#: includes/admin/admin-upgrade.php:156 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Aktualisiere Datenbank" + +# @ acf +#: includes/admin/admin-upgrade.php:180 +msgid "Review sites & upgrade" +msgstr "Übersicht Seiten & Aktualisierungen" + +# @ acf +#: includes/admin/admin.php:54 includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "Eigene Felder" + +# @ acf +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Info" + +# @ acf +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "Was gibt es Neues" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Feld-Gruppen exportieren" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "PHP generieren" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "Keine Feld-Gruppe ausgewählt" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Eine Feldgruppe exportiert." +msgstr[1] "%s Feldgruppen exportiert." + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Felder-Gruppen auswählen" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Entscheide zuerst welche Felder-Gruppen Du exportieren möchtest und wähle im " +"Anschluss das Format in das exportiert werden soll. Klicke den \"JSON-Datei " +"exportieren\"-Button, um eine JSON-Datei zu erhalten, welche Du dann in " +"einer anderen ACF-Installation importieren kannst. Wähle den \"Erstelle PHP-" +"Code\"-Button, um PHP-Code zu erhalten, den Du im Anschluss in der functions." +"php Deines Themes einfügen kannst." + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "Datei exportieren" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Der nachfolgende Code kann dazu verwendet werden eine lokale Version der " +"ausgewählten Feld-Gruppe(n) zu registrieren. Eine lokale Feld-Gruppe bietet " +"viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische " +"Felder und Einstellungen. Kopiere einfach folgenden Code und füge ihn in die " +"functions.php oder eine externe Datei in Deinem Theme ein." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "In Zwischenablage kopieren" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "Kopiert" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Feld-Gruppen importieren" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:61 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Wähle die Advanced Custom Fields JSON-Datei aus, welche Du importieren " +"möchtest. Nach dem Klicken des Importieren-Buttons wird ACF die Felder-" +"Gruppen hinzufügen." + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "Datei auswählen" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:76 +msgid "Import File" +msgstr "Datei importieren" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:99 +#: includes/fields/class-acf-field-file.php:170 +msgid "No file selected" +msgstr "Keine Datei ausgewählt" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:109 +msgid "Error uploading file. Please try again" +msgstr "Fehler beim Upload. Bitte erneut versuchen" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:115 +msgid "Incorrect file type" +msgstr "Falscher Dateityp" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:129 +msgid "Import file empty" +msgstr "Die importierte Datei ist leer" + +#: includes/admin/tools/class-acf-admin-tool-import.php:235 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Eine Feldgruppe importiert" +msgstr[1] "%s Feldgruppen importiert" + +# @ acf +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Bedingungen für die Anzeige" + +# @ acf +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "Zeige dieses Feld, wenn" + +# @ acf +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:86 +msgid "and" +msgstr "und" + +# @ acf +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Regel-Gruppe hinzufügen" + +# @ acf +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:424 +#: pro/fields/class-acf-field-repeater.php:294 +msgid "Drag to reorder" +msgstr "Ziehen zum Sortieren" + +# @ acf +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "Feld bearbeiten" + +# @ acf +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:152 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:359 +msgid "Edit" +msgstr "Bearbeiten" + +# @ acf +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "Feld duplizieren" + +# @ acf +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "Feld in eine andere Gruppe verschieben" + +# @ acf +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "Verschieben" + +# @ acf +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "Feld löschen" + +# @ acf +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:570 +msgid "Delete" +msgstr "Löschen" + +# @ acf +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "Bezeichnung" + +# @ acf +#: includes/admin/views/field-group-field.php:66 +msgid "This is the name which will appear on the EDIT page" +msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt" + +# @ acf +#: includes/admin/views/field-group-field.php:75 +msgid "Field Name" +msgstr "Feld-Name" + +# @ acf +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "" +"Nur ein Wort ohne Leerzeichen; es sind nur Unterstriche und Bindestriche als " +"Sonderzeichen erlaubt" + +# @ acf +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "Feld-Typ" + +# @ acf +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "Anweisungen" + +# @ acf +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Anweisungen für Autoren werden in der Bearbeitungs-Ansicht angezeigt" + +# @ acf +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "Erforderlich?" + +# @ acf +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Wrapper-Attribute" + +# @ acf +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "Breite" + +# @ acf +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "Klasse" + +# @ acf +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "ID" + +# @ acf +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "Feld schliessen" + +# @ acf +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Reihenfolge" + +# @ acf +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:433 +#: pro/fields/class-acf-field-flexible-content.php:596 +msgid "Label" +msgstr "Name" + +# @ acf +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:939 +#: pro/fields/class-acf-field-flexible-content.php:610 +msgid "Name" +msgstr "Feld-Name" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Feld-Schlüssel" + +# @ acf +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Typ" + +# @ acf +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Es sind noch keine Felder angelegt. Klicke den + Feld hinzufügen-" +"Button und erstelle Dein erstes Feld." + +# @ acf +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Feld hinzufügen" + +# @ acf +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Regeln" + +# @ acf +#: includes/admin/views/field-group-locations.php:10 +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Erstelle ein Regelwerk das festlegt welche Bearbeitungs-Ansichten diese Feld-" +"Gruppe nutzen dürfen" + +# @ acf +#: includes/admin/views/field-group-options.php:23 +msgid "Style" +msgstr "Stil" + +# @ acf +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "WP-Metabox (Standard)" + +# @ acf +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Übergangslos ohne Metabox" + +# @ acf +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Position" + +# @ acf +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Nach dem Titel vor dem Inhalt" + +# @ acf +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Nach dem Inhalt (Standard)" + +# @ acf +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Seitlich neben dem Inhalt" + +# @ acf +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Platzierung Beschriftung" + +# @ acf +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Über dem Feld" + +# @ acf +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Links neben dem Feld" + +# @ acf +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Platzierung der Hinweise" + +# @ acf +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Unterhalb der Beschriftung" + +# @ acf +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Unterhalb der Felder" + +# @ acf +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Sortiernr." + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "Feld-Gruppen mit einem niedrigeren Wert werden zuerst angezeigt" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Wird in der Feld-Gruppen-Liste angezeigt" + +# @ acf +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "Permalink" + +# @ acf +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "Inhalts-Editor" + +# @ acf +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "Kurzfassung" + +# @ acf +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "Diskussion" + +# @ acf +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "Kommentare" + +# @ acf +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "Revisionen" + +# @ acf +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "Kurzlink" + +# @ acf +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "Autor" + +# @ acf +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "Format" + +# @ acf +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "Seiten-Attribute" + +# @ acf +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:607 +msgid "Featured Image" +msgstr "Beitragsbild" + +# @ acf +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "Kategorien" + +# @ acf +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "Schlagworte" + +# @ acf +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "Sende Trackbacks" + +# @ acf +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "Verstecken" + +# @ acf +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Ausgewählte Elemente werden versteckt." + +# @ acf +#: includes/admin/views/field-group-options.php:129 +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 "" +"Sind für einen Bearbeiten-Dialog mehrere Felder-Gruppen definiert, werden " +"die Optionen der ersten Felder-Gruppe angewendet (die mit der niedrigsten " +"Nummer für die Reihenfolge)." + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"Die folgenden Seiten benötigen ein DB Upgrade. Wähle jene aus, die " +"du aktualisieren willst und klicke dann %s." + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "Seiten aktualisieren" + +# @ acf +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Seite" + +# @ acf +#: includes/admin/views/html-admin-page-upgrade-network.php:74 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Die Seite erfordert eine Datenbank-Aktualisierung von %s auf %s" + +# @ acf +#: includes/admin/views/html-admin-page-upgrade-network.php:76 +msgid "Site is up to date" +msgstr "Seite ist aktuell" + +# @ acf +#: includes/admin/views/html-admin-page-upgrade-network.php:93 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Datenbank-Aktualisierung fertiggestellt. Zum Netzwerk " +"Dashboard" + +#: includes/admin/views/html-admin-page-upgrade-network.php:113 +msgid "Please select at least one site to upgrade." +msgstr "" +"Bitte wählen Sie mindestens eine Seite aus, um ein Upgrade durchzuführen." + +# @ acf +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +#: includes/admin/views/html-notice-upgrade.php:38 +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 dazu angeraten, dass Du Deine Datenbank sicherst, bevor Du " +"fortfährst. Bist Du sicher, dass Du die Aktualisierung jetzt durchführen " +"willst?" + +# @ acf +#: includes/admin/views/html-admin-page-upgrade-network.php:144 +#: includes/admin/views/html-admin-page-upgrade.php:31 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Aktualisiere Daten auf Version %s" + +# @ default +#: includes/admin/views/html-admin-page-upgrade-network.php:167 +msgid "Upgrade complete." +msgstr "Upgrade abgeschlossen" + +#: includes/admin/views/html-admin-page-upgrade-network.php:176 +#: includes/admin/views/html-admin-page-upgrade-network.php:185 +#: includes/admin/views/html-admin-page-upgrade.php:78 +#: includes/admin/views/html-admin-page-upgrade.php:87 +msgid "Upgrade failed." +msgstr "Upgrade gescheitert." + +# @ acf +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Lese anstehende Aufgaben für die Aktualisierung..." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, php-format +msgid "Database upgrade complete. See what's new" +msgstr "Datenbank-Upgrade abgeschlossen. Schau was neu ist" + +# @ acf +#: includes/admin/views/html-admin-page-upgrade.php:116 +#: includes/ajax/class-acf-ajax-upgrade.php:33 +msgid "No updates available." +msgstr "Keine Aktualisierungen verfügbar." + +#: includes/admin/views/html-admin-tools.php:21 +msgid "Back to all tools" +msgstr "Zurück zu allen Werkzeugen" + +# @ acf +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Zeige diese Felder, wenn" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Wiederholung" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexible Inhalte" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Options-Seite" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:21 +msgid "Database Upgrade Required" +msgstr "Es ist eine Datenbank-Aktualisierung notwendig" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:22 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Danke für die Aktualisierung auf %s v%s!" + +#: includes/admin/views/html-notice-upgrade.php:22 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "" +"Diese Version enthält Verbesserungen an Ihrer Datenbank und erfordert ein " +"Upgrade." + +#: includes/admin/views/html-notice-upgrade.php:24 +#, php-format +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) vorab auf die " +"neueste Version aktualisiert wurden." + +# @ acf +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "Zusatz-Module" + +# @ acf +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Download & Installieren" + +# @ acf +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Installiert" + +# @ acf +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Willkommen bei Advanced Custom Fields" + +# @ acf +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Danke fürs Aktualisieren! ACF %s ist besser denn je. Wir hoffen es wird Dir " +"genauso gut gefallen wie uns." + +# @ acf +#: includes/admin/views/settings-info.php:15 +msgid "A Smoother Experience" +msgstr "Eine reibungslosere Erfahrung" + +# @ acf +#: includes/admin/views/settings-info.php:19 +msgid "Improved Usability" +msgstr "Verbesserte Benutzerfreundlichkeit" + +# @ acf +#: includes/admin/views/settings-info.php:20 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"Durch die Einführung der beliebten Select2 Bibliothek wurde sowohl die " +"Benutzerfreundlichkeit als auch die Geschwindigkeit einiger Feldtypen wie " +"Beitrags-Objekte, Seiten-Links, Taxonomien sowie von Auswahl-Feldern " +"signifikant verbessert." + +# @ acf +#: includes/admin/views/settings-info.php:24 +msgid "Improved Design" +msgstr "Verbessertes Design" + +# @ acf +#: includes/admin/views/settings-info.php:25 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Viele Felder wurden visuell überarbeitet, damit ACF besser denn je aussieht! " +"Die markantesten Änderungen erfuhren das Galerie-, Beziehungs- sowie das " +"nagelneue oEmbed-Feld!" + +# @ acf +#: includes/admin/views/settings-info.php:29 +msgid "Improved Data" +msgstr "Verbesserte Datenstruktur" + +# @ acf +#: includes/admin/views/settings-info.php:30 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"Die Neugestaltung der Datenarchitektur erlaubt es, dass Felder unabhängig " +"von ihren übergeordneten Feldern existieren können. Dies ermöglicht, dass " +"Felder per Drag-and-Drop, in und aus ihren übergeordneten Feldern verschoben " +"werden können!" + +# @ acf +#: includes/admin/views/settings-info.php:38 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Macht's gut Add-ons… Hallo PRO" + +# @ acf +#: includes/admin/views/settings-info.php:41 +msgid "Introducing ACF PRO" +msgstr "Wir dürfen vorstellen… ACF PRO" + +# @ acf +#: includes/admin/views/settings-info.php:42 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" +"Wir haben die Art und Weise mit der die Premium-Funktionalität zur Verfügung " +"gestellt wird geändert - das \"wie\" dürfte Dich begeistern!" + +# @ acf +#: includes/admin/views/settings-info.php:43 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Alle vier, vormals separat erhältlichen, Premium-Add-ons wurden in der neuen " +"Pro-Version von ACF zusammengefasst. Besagte Premium-" +"Funktionalität, erhältlich in einer Einzel- sowie einer Entwickler-Lizenz, " +"ist somit erschwinglicher denn je!" + +# @ acf +#: includes/admin/views/settings-info.php:47 +msgid "Powerful Features" +msgstr "Leistungsstarke Funktionen" + +# @ acf +#: includes/admin/views/settings-info.php:48 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"ACF PRO enthält leistungsstarke Funktionen wie wiederholbare Daten, Flexible " +"Inhalte-Layouts, ein wunderschönes Galerie-Feld sowie die Möglichkeit " +"zusätzliche Options-Seiten im Admin-Bereich anzulegen!" + +# @ acf +#: includes/admin/views/settings-info.php:49 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "Lies mehr über die ACF PRO Funktionen." + +# @ acf +#: includes/admin/views/settings-info.php:53 +msgid "Easy Upgrading" +msgstr "Kinderleichte Aktualisierung" + +#: includes/admin/views/settings-info.php:54 +msgid "" +"Upgrading to ACF PRO is easy. Simply purchase a license online and download " +"the plugin!" +msgstr "" +"Die Aktualisierung auf ACF PRO ist einfach. Kaufen Sie einfach eine Lizenz " +"online und laden Sie das Plugin herunter!" + +# @ acf +#: includes/admin/views/settings-info.php:55 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk." +msgstr "" +"Um möglichen Fragen vorzubeugen haben wir haben eine " +"Anleitung für den Aktualisierungs-Prozess (Engl.) verfasst. Sollten " +"dennoch Fragen aufgeworfen werden, kontaktiere bitte unser " +"Support-Team ." + +#: includes/admin/views/settings-info.php:64 +msgid "New Features" +msgstr "Neue Features" + +# @ acf +#: includes/admin/views/settings-info.php:69 +msgid "Link Field" +msgstr "Link Feld" + +#: includes/admin/views/settings-info.php:70 +msgid "" +"The Link field provides a simple way to select or define a link (url, title, " +"target)." +msgstr "" +"Das Link-Feld bietet eine einfache Möglichkeit, einen Link auszuwählen oder " +"zu definieren (URL, Titel, Ziel)." + +# @ acf +#: includes/admin/views/settings-info.php:74 +msgid "Group Field" +msgstr "Gruppenfeld" + +#: includes/admin/views/settings-info.php:75 +msgid "The Group field provides a simple way to create a group of fields." +msgstr "" +"Das Gruppenfeld bietet eine einfache Möglichkeit, eine Gruppe von Feldern zu " +"schaffen." + +# @ acf +#: includes/admin/views/settings-info.php:79 +msgid "oEmbed Field" +msgstr "oEmbed Feld" + +#: includes/admin/views/settings-info.php:80 +msgid "" +"The oEmbed field allows an easy way to embed videos, images, tweets, audio, " +"and other content." +msgstr "" +"Das oEmbed-Feld ermöglicht eine einfache Möglichkeit, Videos, Bilder, " +"Tweets, Audio und andere Inhalte einzubetten." + +# @ acf +#: includes/admin/views/settings-info.php:84 +msgid "Clone Field" +msgstr "Klonen Feld" + +#: includes/admin/views/settings-info.php:85 +msgid "The clone field allows you to select and display existing fields." +msgstr "" +"Das Klon-Feld ermöglicht es Ihnen, bestehende Felder auszuwählen und " +"anzuzeigen." + +# @ acf +#: includes/admin/views/settings-info.php:89 +msgid "More AJAX" +msgstr "Mehr AJAX" + +# @ acf +#: includes/admin/views/settings-info.php:90 +msgid "More fields use AJAX powered search to speed up page loading." +msgstr "" +"Mehr Felder verwenden nun eine AJAX-basierte Suche, die die Ladezeiten von " +"Seiten deutlich verringert." + +# @ acf +#: includes/admin/views/settings-info.php:94 +msgid "Local JSON" +msgstr "Lokales JSON" + +# @ acf +#: includes/admin/views/settings-info.php:95 +msgid "" +"New auto export to JSON feature improves speed and allows for syncronisation." +msgstr "" +"Der neue automatische Export in JSON verbessert die Geschwindigkeit und " +"ermöglicht eine Synchronisierung." + +# @ acf +#: includes/admin/views/settings-info.php:99 +msgid "Easy Import / Export" +msgstr "Einfacher Import / Export" + +#: includes/admin/views/settings-info.php:100 +msgid "Both import and export can easily be done through a new tools page." +msgstr "" +"Sowohl der Import als auch der Export können einfach über eine neue " +"Werkzeugseite erfolgen." + +# @ acf +#: includes/admin/views/settings-info.php:104 +msgid "New Form Locations" +msgstr "Neue Positionen für Formulare" + +# @ acf +#: includes/admin/views/settings-info.php:105 +msgid "" +"Fields can now be mapped to menus, menu items, comments, widgets and all " +"user forms!" +msgstr "" +"Felder können nun auch Menüs, Menüpunkten, Kommentaren, Widgets und allen " +"Benutzer-Formularen zugeordnet werden!" + +# @ acf +#: includes/admin/views/settings-info.php:109 +msgid "More Customization" +msgstr "Weitere Anpassungen" + +#: includes/admin/views/settings-info.php:110 +msgid "" +"New PHP (and JS) actions and filters have been added to allow for more " +"customization." +msgstr "" +"Neue PHP (und JS)-Aktionen und Filter wurden hinzugefügt, um mehr " +"Anpassungen zu ermöglichen." + +#: includes/admin/views/settings-info.php:114 +msgid "Fresh UI" +msgstr "Frisches UI" + +#: includes/admin/views/settings-info.php:115 +msgid "" +"The entire plugin has had a design refresh including new field types, " +"settings and design!" +msgstr "" +"Ein Design-Refresh für das gesamte Plugin, inklusive neue Feldtypen, " +"Einstellungen und Design wurde eingeführt!" + +# @ acf +#: includes/admin/views/settings-info.php:119 +msgid "New Settings" +msgstr "Neue Einstellungen" + +# @ acf +#: includes/admin/views/settings-info.php:120 +msgid "" +"Field group settings have been added for Active, Label Placement, " +"Instructions Placement and Description." +msgstr "" +"Die Feldgruppen wurden um die Einstellungen für das Aktivieren und " +"Deaktivieren der Gruppe, die Platzierung von Beschriftungen und Anweisungen " +"sowie eine Beschreibung erweitert." + +# @ acf +#: includes/admin/views/settings-info.php:124 +msgid "Better Front End Forms" +msgstr "Verbesserte Front-End-Formulare" + +# @ acf +#: includes/admin/views/settings-info.php:125 +msgid "" +"acf_form() can now create a new post on submission with lots of new settings." +msgstr "" +"acf_form() kann jetzt einen neuen Beitrag direkt beim Senden erstellen " +"inklusive vieler neuer Einstellungsmöglichkeiten." + +# @ acf +#: includes/admin/views/settings-info.php:129 +msgid "Better Validation" +msgstr "Bessere Validierung" + +# @ acf +#: includes/admin/views/settings-info.php:130 +msgid "Form validation is now done via PHP + AJAX in favour of only JS." +msgstr "" +"Die Formular-Validierung wird nun mit Hilfe von PHP + AJAX erledigt, anstatt " +"nur JS zu verwenden." + +# @ acf +#: includes/admin/views/settings-info.php:134 +msgid "Moving Fields" +msgstr "Verschiebbare Felder" + +# @ acf +#: includes/admin/views/settings-info.php:135 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents." +msgstr "" +"Die neue Feld-Gruppen-Funktionalität erlaubt es ein Feld zwischen Gruppen " +"und übergeordneten Gruppen frei zu verschieben." + +# @ acf +#: includes/admin/views/settings-info.php:146 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Wir glauben Du wirst die Änderungen in %s lieben." + +# @ acf +#: includes/api/api-helpers.php:1011 +msgid "Thumbnail" +msgstr "Miniaturbild" + +# @ acf +#: includes/api/api-helpers.php:1012 +msgid "Medium" +msgstr "Mittel" + +# @ acf +#: includes/api/api-helpers.php:1013 +msgid "Large" +msgstr "Gross" + +# @ acf +#: includes/api/api-helpers.php:1062 +msgid "Full Size" +msgstr "Volle Grösse" + +# @ acf +#: includes/api/api-helpers.php:1831 includes/api/api-term.php:147 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(ohne Titel)" + +# @ acf +#: includes/api/api-helpers.php:3919 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "Die Breite des Bildes muss mindestens %dpx sein." + +# @ acf +#: includes/api/api-helpers.php:3924 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." + +# @ acf +#: includes/api/api-helpers.php:3940 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "Die Höhe des Bildes muss mindestens %dpx sein." + +# @ acf +#: includes/api/api-helpers.php:3945 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." + +# @ acf +#: includes/api/api-helpers.php:3963 +#, php-format +msgid "File size must be at least %s." +msgstr "Die Dateigrösse muss mindestens %s sein." + +# @ acf +#: includes/api/api-helpers.php:3968 +#, php-format +msgid "File size must must not exceed %s." +msgstr "Die Dateigrösse darf %s nicht überschreiten." + +# @ acf +#: includes/api/api-helpers.php:4002 +#, php-format +msgid "File type must be %s." +msgstr "Der Dateityp muss %s sein." + +# @ acf +#: includes/assets.php:168 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "" +"Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen wird" + +#: includes/assets.php:171 includes/fields/class-acf-field-select.php:259 +msgctxt "verb" +msgid "Select" +msgstr "Auswählen" + +#: includes/assets.php:172 +msgctxt "verb" +msgid "Edit" +msgstr "Bearbeiten" + +#: includes/assets.php:173 +msgctxt "verb" +msgid "Update" +msgstr "Aktualisieren" + +# @ acf +#: includes/assets.php:174 +msgid "Uploaded to this post" +msgstr "Zu diesem Beitrag hochgeladen" + +# @ acf +#: includes/assets.php:175 +msgid "Expand Details" +msgstr "Details einblenden" + +# @ acf +#: includes/assets.php:176 +msgid "Collapse Details" +msgstr "Details ausblenden" + +#: includes/assets.php:177 +msgid "Restricted" +msgstr "Eingeschränkt" + +# @ acf +#: includes/assets.php:178 includes/fields/class-acf-field-image.php:67 +msgid "All images" +msgstr "Alle Bilder" + +# @ acf +#: includes/assets.php:181 +msgid "Validation successful" +msgstr "Überprüfung erfolgreich" + +# @ acf +#: includes/assets.php:182 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Überprüfung fehlgeschlagen" + +# @ acf +#: includes/assets.php:183 +msgid "1 field requires attention" +msgstr "Für 1 Feld ist eine Aktualisierung notwendig" + +# @ acf +#: includes/assets.php:184 +#, php-format +msgid "%d fields require attention" +msgstr "Für %d Felder ist eine Aktualisierung notwendig" + +# @ acf +#: includes/assets.php:187 +msgid "Are you sure?" +msgstr "Sind Sie sicher?" + +# @ acf +#: includes/assets.php:188 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Ja" + +# @ acf +#: includes/assets.php:189 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "Nein" + +# @ acf +#: includes/assets.php:190 includes/fields/class-acf-field-file.php:154 +#: includes/fields/class-acf-field-image.php:141 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:360 +#: pro/fields/class-acf-field-gallery.php:549 +msgid "Remove" +msgstr "Entfernen" + +#: includes/assets.php:191 +msgid "Cancel" +msgstr "Abbrechen" + +#: includes/assets.php:194 +msgid "Has any value" +msgstr "Hat beliebigen Wert" + +#: includes/assets.php:195 +msgid "Has no value" +msgstr "Hat keinen Wert" + +# @ acf +#: includes/assets.php:196 +msgid "Value is equal to" +msgstr "Wert entspricht" + +# @ acf +#: includes/assets.php:197 +msgid "Value is not equal to" +msgstr "Wert entspricht nicht" + +# @ acf +#: includes/assets.php:198 +msgid "Value matches pattern" +msgstr "Wert entspricht regulärem Ausdruck" + +#: includes/assets.php:199 +msgid "Value contains" +msgstr "Wert enthält" + +# @ acf +#: includes/assets.php:200 +msgid "Value is greater than" +msgstr "Wert ist grösser als" + +# @ acf +#: includes/assets.php:201 +msgid "Value is less than" +msgstr "Wert ist geringer als" + +#: includes/assets.php:202 +msgid "Selection is greater than" +msgstr "Die Auswahl ist grösser als" + +# @ acf +#: includes/assets.php:203 +msgid "Selection is less than" +msgstr "Auswahl ist geringer als" + +# @ acf +#: includes/assets.php:206 includes/forms/form-comment.php:166 +#: pro/admin/admin-options-page.php:325 +msgid "Edit field group" +msgstr "Feld-Gruppen bearbeiten" + +# @ acf +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "Feld-Typ existiert nicht" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "Unbekannt" + +# @ acf +#: includes/fields.php:349 +msgid "Basic" +msgstr "Grundlage" + +# @ acf +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Inhalt" + +# @ acf +#: includes/fields.php:351 +msgid "Choice" +msgstr "Auswahl" + +# @ acf +#: includes/fields.php:352 +msgid "Relational" +msgstr "Relational" + +# @ acf +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +# @ acf +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:567 +#: pro/fields/class-acf-field-flexible-content.php:616 +#: pro/fields/class-acf-field-repeater.php:443 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "Akkordeon" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "Offen" + +#: includes/fields/class-acf-field-accordion.php:100 +msgid "Display this accordion as open on page load." +msgstr "Zeigen Sie dieses Akkordeon geöffnet an, wenn die Seite lädt." + +#: includes/fields/class-acf-field-accordion.php:109 +msgid "Multi-expand" +msgstr "Multi-expandieren" + +#: includes/fields/class-acf-field-accordion.php:110 +msgid "Allow this accordion to open without closing others." +msgstr "Lassen Sie dieses Akkordeon öffnen, ohne andere zu schliessen." + +#: includes/fields/class-acf-field-accordion.php:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Endpunkt" + +#: includes/fields/class-acf-field-accordion.php:120 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"Definieren Sie einen Endpunkt für das bisherige Akkordeon zu stoppen. Dieses " +"Akkordeon wird nicht zu sehen sein." + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Button Gruppe" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Auswahlmöglichkeiten" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben." + +# @ acf +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"Für eine bessere Darstellung, kannst Du auch einen Wert und dazu dessen " +"Beschriftung definieren:" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rot : Rot" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:382 +#: includes/fields/class-acf-field-taxonomy.php:784 +#: includes/fields/class-acf-field-user.php:393 +msgid "Allow Null?" +msgstr "NULL-Werte zulassen?" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:149 +#: includes/fields/class-acf-field-select.php:373 +#: includes/fields/class-acf-field-text.php:119 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:381 +msgid "Default Value" +msgstr "Standardwert" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:150 +#: includes/fields/class-acf-field-text.php:120 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Appears when creating a new post" +msgstr "Erscheint bei der Erstellung eines neuen Beitrags" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "Horizontal" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "Vertikal" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-image.php:205 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:829 +msgid "Return Value" +msgstr "Rückgabewert" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-image.php:206 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +msgid "Specify the returned value on front end" +msgstr "Legt den Rückgabewert für das Front-End fest" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:432 +msgid "Value" +msgstr "Wert" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:434 +msgid "Both (Array)" +msgstr "Beide (Array)" + +# @ acf +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Checkbox" +msgstr "Checkbox" + +# @ acf +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Alle auswählen" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Neue Auswahlmöglichkeit hinzufügen" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "Erlaube benutzerdefinierte Felder" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "Erlaube das Hinzufügen benutzerdefinierter Werte" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "Benutzerdefinierte Werte sichern" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "" +"Sichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes" + +# @ acf +#: includes/fields/class-acf-field-checkbox.php:381 +#: includes/fields/class-acf-field-select.php:374 +msgid "Enter each default value on a new line" +msgstr "Jeden Standardwert in einer neuen Zeile eingeben" + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "Auswählen" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" +"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann" + +# @ acf +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Farbe" + +# @ acf +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Leeren" + +# @ acf +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Standard" + +# @ acf +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Farbe auswählen" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Aktuelle Farbe" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Datum" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Schliessen" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Heute" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Weiter" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Zurück" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "KW" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Darstellungs-Format" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "Benutzerdefiniert:" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Format sichern" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "Das verwendete Format, wenn der Wert gesichert wird" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-post_object.php:431 +#: includes/fields/class-acf-field-relationship.php:634 +#: includes/fields/class-acf-field-select.php:427 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:412 +msgid "Return Format" +msgstr "Rückgabewert" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "Das Datums-Format für die Ausgabe in den Template-Funktionen" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:227 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Die Woche beginnt am" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Datum/Uhrzeit" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Zeit setzen" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Zeit" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Stunde" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Sekunde" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisekunde" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekunde" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zeitzone" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Jetzt" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Schliessen" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +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 amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +# @ acf +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "E-Mail" + +# @ acf +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:128 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Platzhalter-Text" + +# @ acf +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:129 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde" + +# @ acf +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:188 +#: includes/fields/class-acf-field-text.php:137 +msgid "Prepend" +msgstr "Voranstellen" + +# @ acf +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:189 +#: includes/fields/class-acf-field-text.php:138 +msgid "Appears before the input" +msgstr "Wird dem Eingabefeld vorangestellt" + +# @ acf +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:197 +#: includes/fields/class-acf-field-text.php:146 +msgid "Append" +msgstr "Anhängen" + +# @ acf +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:198 +#: includes/fields/class-acf-field-text.php:147 +msgid "Appears after the input" +msgstr "Wird dem Eingabefeld hinten angestellt" + +# @ acf +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Datei" + +# @ acf +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "Datei bearbeiten" + +# @ acf +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "Datei aktualisieren" + +#: includes/fields/class-acf-field-file.php:141 +msgid "File name" +msgstr "Dateiname" + +# @ acf +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-file.php:259 +#: includes/fields/class-acf-field-image.php:265 +#: includes/fields/class-acf-field-image.php:294 +#: pro/fields/class-acf-field-gallery.php:708 +#: pro/fields/class-acf-field-gallery.php:737 +msgid "File size" +msgstr "Dateigrösse" + +# @ acf +#: includes/fields/class-acf-field-file.php:170 +msgid "Add File" +msgstr "Datei hinzufügen" + +# @ acf +#: includes/fields/class-acf-field-file.php:221 +msgid "File Array" +msgstr "Datei-Array" + +# @ acf +#: includes/fields/class-acf-field-file.php:222 +msgid "File URL" +msgstr "Datei-URL" + +# @ acf +#: includes/fields/class-acf-field-file.php:223 +msgid "File ID" +msgstr "Datei-ID" + +# @ acf +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:230 +#: pro/fields/class-acf-field-gallery.php:673 +msgid "Library" +msgstr "Medienübersicht" + +# @ acf +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:231 +#: pro/fields/class-acf-field-gallery.php:674 +msgid "Limit the media library choice" +msgstr "Beschränkt die Auswahl in der Medienübersicht" + +# @ acf +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:236 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:87 +#: includes/locations/class-acf-location-user-role.php:111 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:679 +msgid "All" +msgstr "Alle" + +# @ acf +#: includes/fields/class-acf-field-file.php:237 +#: includes/fields/class-acf-field-image.php:237 +#: pro/fields/class-acf-field-gallery.php:680 +msgid "Uploaded to post" +msgstr "Für den Beitrag hochgeladen" + +# @ acf +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:244 +#: pro/fields/class-acf-field-gallery.php:687 +msgid "Minimum" +msgstr "Minimum" + +# @ acf +#: includes/fields/class-acf-field-file.php:245 +#: includes/fields/class-acf-field-file.php:256 +msgid "Restrict which files can be uploaded" +msgstr "" +"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften " +"erfüllen" + +# @ acf +#: includes/fields/class-acf-field-file.php:255 +#: includes/fields/class-acf-field-image.php:273 +#: pro/fields/class-acf-field-gallery.php:716 +msgid "Maximum" +msgstr "Maximum" + +# @ acf +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:302 +#: pro/fields/class-acf-field-gallery.php:745 +msgid "Allowed file types" +msgstr "Erlaubte Datei-Formate" + +# @ acf +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-image.php:303 +#: pro/fields/class-acf-field-gallery.php:746 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind " +"erlaubt" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Google Maps" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:59 +msgid "Sorry, this browser does not support geolocation" +msgstr "Dieser Browser unterstützt keine Geo-Lokation" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:166 +msgid "Clear location" +msgstr "Position löschen" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:167 +msgid "Find current location" +msgstr "Aktuelle Position finden" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:170 +msgid "Search for address..." +msgstr "Nach der Adresse suchen..." + +# @ acf +#: includes/fields/class-acf-field-google-map.php:200 +#: includes/fields/class-acf-field-google-map.php:211 +msgid "Center" +msgstr "Kartenmittelpunkt" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:201 +#: includes/fields/class-acf-field-google-map.php:212 +msgid "Center the initial map" +msgstr "Der Mittelpunkt der Ausgangskarte" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:223 +msgid "Zoom" +msgstr "Zoom" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:224 +msgid "Set the initial zoom level" +msgstr "Legt die Zoomstufe der Karte fest" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:233 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:285 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:699 +#: pro/fields/class-acf-field-gallery.php:728 +msgid "Height" +msgstr "Höhe" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:234 +msgid "Customize the map height" +msgstr "Passt die Höhe der Karte an" + +# @ acf +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Gruppe" + +# @ acf +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:379 +msgid "Sub Fields" +msgstr "Wiederholungsfelder" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "Gib an, wie die ausgewählten Felder angezeigt werden sollen" + +# @ acf +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:627 +#: pro/fields/class-acf-field-repeater.php:451 +msgid "Block" +msgstr "Block" + +# @ acf +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:626 +#: pro/fields/class-acf-field-repeater.php:450 +msgid "Table" +msgstr "Tabelle" + +# @ acf +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:628 +#: pro/fields/class-acf-field-repeater.php:452 +msgid "Row" +msgstr "Reihe" + +# @ acf +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Bild" + +# @ acf +#: includes/fields/class-acf-field-image.php:64 +msgid "Select Image" +msgstr "Bild auswählen" + +# @ acf +#: includes/fields/class-acf-field-image.php:65 +msgid "Edit Image" +msgstr "Bild bearbeiten" + +# @ acf +#: includes/fields/class-acf-field-image.php:66 +msgid "Update Image" +msgstr "Bild aktualisieren" + +# @ acf +#: includes/fields/class-acf-field-image.php:157 +msgid "No image selected" +msgstr "Kein Bild ausgewählt" + +# @ acf +#: includes/fields/class-acf-field-image.php:157 +msgid "Add Image" +msgstr "Bild hinzufügen" + +# @ acf +#: includes/fields/class-acf-field-image.php:211 +msgid "Image Array" +msgstr "Bild-Array" + +# @ acf +#: includes/fields/class-acf-field-image.php:212 +msgid "Image URL" +msgstr "Bild-URL" + +# @ acf +#: includes/fields/class-acf-field-image.php:213 +msgid "Image ID" +msgstr "Bild-ID" + +# @ acf +#: includes/fields/class-acf-field-image.php:220 +msgid "Preview Size" +msgstr "Masse der Vorschau" + +# @ acf +#: includes/fields/class-acf-field-image.php:221 +msgid "Shown when entering data" +msgstr "Legt fest welche Masse die Vorschau in der Bearbeitungs-Ansicht hat" + +# @ acf +#: includes/fields/class-acf-field-image.php:245 +#: includes/fields/class-acf-field-image.php:274 +#: pro/fields/class-acf-field-gallery.php:688 +#: pro/fields/class-acf-field-gallery.php:717 +msgid "Restrict which images can be uploaded" +msgstr "" +"Erlaubt nur das Hochladen von Bildern, die die angegebenen Eigenschaften " +"erfüllen" + +# @ acf +#: includes/fields/class-acf-field-image.php:248 +#: includes/fields/class-acf-field-image.php:277 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:691 +#: pro/fields/class-acf-field-gallery.php:720 +msgid "Width" +msgstr "Breite" + +# @ acf +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Link" + +# @ acf +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Link auswählen" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "Öffnet in einem neuen Fenster/Tab" + +# @ acf +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Link Array" + +# @ acf +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "Link URL" + +# @ acf +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Nachricht" + +# @ acf +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Neue Zeilen" + +# @ acf +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden" + +# @ acf +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Absätze automatisch hinzufügen" + +# @ acf +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen" + +# @ acf +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Keine Formatierung" + +# @ acf +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "HTML enkodieren" + +# @ acf +#: includes/fields/class-acf-field-message.php:125 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" +"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht " +"interpretiert" + +# @ acf +#: includes/fields/class-acf-field-number.php:25 +msgid "Number" +msgstr "Numerisch" + +# @ acf +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:158 +msgid "Minimum Value" +msgstr "Mindestwert" + +# @ acf +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:168 +msgid "Maximum Value" +msgstr "Maximalwert" + +# @ acf +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:178 +msgid "Step Size" +msgstr "Schrittweite" + +# @ acf +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "Wert muss eine Zahl sein" + +# @ acf +#: includes/fields/class-acf-field-number.php:237 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "Wert muss grösser oder gleich %d sein" + +# @ acf +#: includes/fields/class-acf-field-number.php:245 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "Wert muss kleiner oder gleich %d sein" + +# @ acf +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +# @ acf +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "URL eingeben" + +# @ acf +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "Masse" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Seiten-Link" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Archive" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:267 +#: includes/fields/class-acf-field-taxonomy.php:961 +msgid "Parent" +msgstr "Eltern" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:383 +#: includes/fields/class-acf-field-relationship.php:560 +msgid "Filter by Post Type" +msgstr "Nach Post Types filtern" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:391 +#: includes/fields/class-acf-field-relationship.php:568 +msgid "All post types" +msgstr "Alle verfügbaren Post Types" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:397 +#: includes/fields/class-acf-field-relationship.php:574 +msgid "Filter by Taxonomy" +msgstr "Nach Taxonomien filtern" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:405 +#: includes/fields/class-acf-field-relationship.php:582 +msgid "All taxonomies" +msgstr "Alle Taxonomien" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "Archiv URLs erlauben" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-user.php:403 +msgid "Select multiple values?" +msgstr "Mehrere Werte auswählbar?" + +# @ acf +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Passwort" + +# @ acf +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:436 +#: includes/fields/class-acf-field-relationship.php:639 +msgid "Post Object" +msgstr "Beitrags-Objekt" + +# @ acf +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Post ID" +msgstr "Beitrags-ID" + +# @ acf +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Radio-Button" + +# @ acf +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Sonstige" + +# @ acf +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "" +"Fügt die Option 'Sonstige' hinzu, welche erlaubt, benutzerdefinierte Werte " +"hinzuzufügen" + +# @ acf +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "'Sonstige' speichern" + +# @ acf +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Range" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Beziehung" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximum der Einträge mit ({max} Einträge) erreicht" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "Lade" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "Keine Übereinstimmung gefunden" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:411 +msgid "Select post type" +msgstr "Beitrag-Typ auswählen" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:420 +msgid "Select taxonomy" +msgstr "Taxonomie auswählen" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:477 +msgid "Search..." +msgstr "Suchen..." + +# @ acf +#: includes/fields/class-acf-field-relationship.php:588 +msgid "Filters" +msgstr "Filter" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:594 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Beitrags-Typ" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:595 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:754 +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy" +msgstr "Taxonomie" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:602 +msgid "Elements" +msgstr "Elemente" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:603 +msgid "Selected elements will be displayed in each result" +msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:614 +msgid "Minimum posts" +msgstr "Min. Anzahl der Beiträge" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:623 +msgid "Maximum posts" +msgstr "Max. Anzahl der Beiträge" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:727 +#: pro/fields/class-acf-field-gallery.php:818 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s benötigt mindestens %s Selektion" +msgstr[1] "%s benötigt mindestens %s Selektionen" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:776 +msgctxt "noun" +msgid "Select" +msgstr "Auswahlmenü" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Ein Resultat gefunden, mit Enter auswählen." + +#: includes/fields/class-acf-field-select.php:112 +#, php-format +msgctxt "Select2 JS matches_n" +msgid "%d results are available, use up and down arrow keys to navigate." +msgstr "%d Resultate gefunden, benutze die Pfeiltasten um zu navigieren." + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Keine Übereinstimmungen gefunden" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "Bitte eins oder mehrere Zeichen eingeben" + +#: includes/fields/class-acf-field-select.php:115 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "Bitte %d mehr Zeichen eingeben" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Bitte ein Zeichen löschen" + +#: includes/fields/class-acf-field-select.php:117 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Bitte %d Zeichen löschen" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Du kannst du ein Resultat wählen" + +#: includes/fields/class-acf-field-select.php:119 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Du kannst nur %d Resultate auswählen" + +#: includes/fields/class-acf-field-select.php:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Lade weitere Resultate…" + +#: includes/fields/class-acf-field-select.php:121 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Suche…" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Fehler beim Laden" + +# @ acf +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "Modernes Auswahlfeld" + +# @ acf +#: includes/fields/class-acf-field-select.php:412 +msgid "Use AJAX to lazy load choices?" +msgstr "AJAX zum Laden der Einträge aktivieren?" + +#: includes/fields/class-acf-field-select.php:428 +msgid "Specify the value returned" +msgstr "Rückgabewert festlegen" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Trennelement" + +# @ acf +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Tab" + +# @ acf +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Platzierung Tabs" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Definiert einen Endpunkt an dem die vorangegangenen Tabs enden. Das ist der " +"Startpunkt für eine neue Gruppe an Tabs." + +#: includes/fields/class-acf-field-taxonomy.php:714 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "Keine %s" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Select the taxonomy to be displayed" +msgstr "Wähle die Taxonomie, welche angezeigt werden soll" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Appearance" +msgstr "Anzeige" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Select the appearance of this field" +msgstr "Wähle das Aussehen für dieses Feld" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:770 +msgid "Multiple Values" +msgstr "Mehrere Werte" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Multi Select" +msgstr "Auswahlmenü" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Single Value" +msgstr "Einzelne Werte" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Radio Buttons" +msgstr "Radio Button" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:799 +msgid "Create Terms" +msgstr "Neue Einträge erlauben" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:800 +msgid "Allow new terms to be created whilst editing" +msgstr "Erlaube das Erstellen neuer Einträge beim Editieren" + +#: includes/fields/class-acf-field-taxonomy.php:809 +msgid "Save Terms" +msgstr "Einträge speichern" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:810 +msgid "Connect selected terms to the post" +msgstr "Speichert die ausgewählten Einträge auch im Beitrag" + +#: includes/fields/class-acf-field-taxonomy.php:819 +msgid "Load Terms" +msgstr "Einträge laden" + +#: includes/fields/class-acf-field-taxonomy.php:820 +msgid "Load value from posts terms" +msgstr "Den Wert von den Einträgen des Beitrags laden" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:834 +msgid "Term Object" +msgstr "Begriffs-Objekt" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:835 +msgid "Term ID" +msgstr "Begriffs-ID" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:885 +#, php-format +msgid "User unable to add new %s" +msgstr "Der Benutzer kann keine neue %s hinzufügen" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:895 +#, php-format +msgid "%s already exists" +msgstr "%s ist bereits vorhanden" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:927 +#, php-format +msgid "%s added" +msgstr "%s hinzugefügt" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:973 +msgid "Add" +msgstr "Hinzufügen" + +# @ acf +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Text einzeilig" + +# @ acf +#: includes/fields/class-acf-field-text.php:155 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Zeichenbegrenzung" + +# @ acf +#: includes/fields/class-acf-field-text.php:156 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung" + +# @ acf +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Text mehrzeilig" + +# @ acf +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Zeilenanzahl" + +# @ acf +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Definiert die Höhe des Textfelds" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Uhrzeit" + +# @ acf +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Ja/Nein" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "Zeigt Text neben der Checkbox" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "Wenn aktiv" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "Angezeigter Text im aktiven Zustand" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "Wenn inaktiv" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "Angezeigter Text im inaktiven Zustand" + +# @ acf +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +# @ acf +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "Bitte eine gültige URL eingeben" + +# @ acf +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "Benutzer" + +# @ acf +#: includes/fields/class-acf-field-user.php:378 +msgid "Filter by role" +msgstr "Filtere nach Benutzerrollen" + +# @ acf +#: includes/fields/class-acf-field-user.php:386 +msgid "All user roles" +msgstr "Alle Benutzerrollen" + +# @ acf +#: includes/fields/class-acf-field-user.php:417 +msgid "User Array" +msgstr "Benutzer-Array" + +# @ acf +#: includes/fields/class-acf-field-user.php:418 +msgid "User Object" +msgstr "Benutzer-Objekt" + +# @ acf +#: includes/fields/class-acf-field-user.php:419 +msgid "User ID" +msgstr "Benutzer ID" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "WYSIWYG-Editor" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:330 +msgid "Visual" +msgstr "Visuell" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:331 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:337 +msgid "Click to initialize TinyMCE" +msgstr "Klicken um TinyMCE zu initialisieren" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Tabs" +msgstr "Tabs" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:395 +msgid "Visual & Text" +msgstr "Visuell & Text" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:396 +msgid "Visual Only" +msgstr "Nur Visuell" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:397 +msgid "Text Only" +msgstr "Nur Text" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:404 +msgid "Toolbar" +msgstr "Werkzeugleiste" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Show Media Upload Buttons?" +msgstr "Button zum Hochladen von Medien anzeigen?" + +#: includes/fields/class-acf-field-wysiwyg.php:429 +msgid "Delay initialization?" +msgstr "Initialisierung verzögern?" + +#: includes/fields/class-acf-field-wysiwyg.php:430 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "TinyMCE wird nicht initialisiert bis das Feld geklickt wird" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "E-Mail bestätigen" + +# @ acf +#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:591 +#: pro/options-page.php:81 +msgid "Update" +msgstr "Aktualisieren" + +# @ acf +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "Beitrag aktualisiert" + +#: includes/forms/form-front.php:230 +msgid "Spam Detected" +msgstr "Spam erkannt" + +# @ acf +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Beitrag" + +# @ acf +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Seite" + +# @ acf +#: includes/locations.php:96 +msgid "Forms" +msgstr "Formulare" + +# @ acf +#: includes/locations.php:243 +msgid "is equal to" +msgstr "ist gleich" + +# @ acf +#: includes/locations.php:244 +msgid "is not equal to" +msgstr "ist ungleich" + +# @ acf +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Dateianhang" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "Alle %s Formate" + +# @ acf +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Kommentar" + +# @ acf +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Aktuelle Benutzer-Rolle" + +# @ acf +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "Super-Admin" + +# @ acf +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Aktueller Benutzer" + +# @ acf +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "Ist angemeldet" + +# @ acf +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "Ist im Front-End" + +# @ acf +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "Ist im Back-End" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "Menüelement" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "Menü" + +# @ acf +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "Menüpositionen" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "Menüs" + +# @ acf +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Übergeordnete Seite" + +# @ acf +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Seiten-Template" + +# @ acf +#: includes/locations/class-acf-location-page-template.php:98 +#: includes/locations/class-acf-location-post-template.php:151 +msgid "Default Template" +msgstr "Standard-Template" + +# @ acf +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Seitentyp" + +# @ acf +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Front Page" +msgstr "Startseite" + +# @ acf +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Posts Page" +msgstr "Beitrags-Seite" + +# @ acf +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Top Level Page (no parent)" +msgstr "Seite ohne übergeordnete Seiten" + +# @ acf +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Parent Page (has children)" +msgstr "Übergeordnete Seite (mit Unterseiten)" + +# @ acf +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Child Page (has parent)" +msgstr "Unterseite (mit übergeordneter Seite)" + +# @ acf +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Beitrags-Kategorie" + +# @ acf +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Beitrags-Format" + +# @ acf +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Beitrags-Status" + +# @ acf +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Beitrags-Taxonomie" + +# @ acf +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "Beitrags-Vorlage" + +# @ acf +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "Benutzer-Formular" + +# @ acf +#: includes/locations/class-acf-location-user-form.php:88 +msgid "Add / Edit" +msgstr "Hinzufügen / Bearbeiten" + +# @ acf +#: includes/locations/class-acf-location-user-form.php:89 +msgid "Register" +msgstr "Registrieren" + +# @ acf +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "Benutzerrolle" + +# @ acf +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Widget" + +# @ acf +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "%s Wert ist notwendig" + +# @ acf +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +# @ acf +#: pro/admin/admin-options-page.php:198 +msgid "Publish" +msgstr "Veröffentlichen" + +# @ acf +#: pro/admin/admin-options-page.php:204 +#, php-format +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" + +# @ acf +#: pro/admin/admin-updates.php:49 +msgid "Error. Could not connect to update server" +msgstr "" +"Fehler. Verbindung zum Update-Server konnte nicht hergestellt werden" + +# @ acf +#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Aktualisierungen" + +#: pro/admin/admin-updates.php:191 +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." + +# @ acf +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Lizenz deaktivieren" + +# @ acf +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Lizenz aktivieren" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "Lizenzinformationen" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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." + +# @ acf +#: pro/admin/views/html-settings-updates.php:29 +msgid "License Key" +msgstr "Lizenzschlüssel" + +# @ acf +#: pro/admin/views/html-settings-updates.php:61 +msgid "Update Information" +msgstr "Aktualisierungsinformationen" + +# @ acf +#: pro/admin/views/html-settings-updates.php:68 +msgid "Current Version" +msgstr "Installierte Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:76 +msgid "Latest Version" +msgstr "Aktuellste Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:84 +msgid "Update Available" +msgstr "Aktualisierung verfügbar" + +# @ acf +#: pro/admin/views/html-settings-updates.php:92 +msgid "Update Plugin" +msgstr "Plugin aktualisieren" + +# @ acf +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit " +"freizuschalten" + +# @ acf +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "Erneut suchen" + +# @ acf +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "Aktualisierungs-Hinweis" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Klonen" + +#: pro/fields/class-acf-field-clone.php:812 +msgid "Select one or more fields you wish to clone" +msgstr "Wähle eines oder mehrere Felder aus, das/die du klonen willst" + +# @ acf +#: pro/fields/class-acf-field-clone.php:829 +msgid "Display" +msgstr "Anzeige" + +#: pro/fields/class-acf-field-clone.php:830 +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:835 +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:836 +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:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "Bezeichnungen werden angezeigt als %s" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "Präfix für Feld Bezeichnungen" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "Werte werden gespeichert als %s" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "Präfix für Feld Namen" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "Unbekanntes Feld" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "Unbekannte Feld-Gruppe" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "Alle Felder der %s Feld-Gruppe" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:463 +msgid "Add Row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:938 +#: pro/fields/class-acf-field-flexible-content.php:1020 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "Layout" +msgstr[1] "Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:74 +msgid "layouts" +msgstr "Einträge" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:937 +#: pro/fields/class-acf-field-flexible-content.php:1019 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:78 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} möglich (max {max})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} erforderlich (min {min})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:85 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibler Inhalt benötigt mindestens ein Layout" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:302 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "Klicke \"%s\" zum Erstellen des Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:427 +msgid "Add layout" +msgstr "Layout hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:428 +msgid "Remove layout" +msgstr "Layout entfernen" + +#: pro/fields/class-acf-field-flexible-content.php:429 +#: pro/fields/class-acf-field-repeater.php:296 +msgid "Click to toggle" +msgstr "Zum Auswählen anklicken" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:569 +msgid "Reorder Layout" +msgstr "Layout sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:569 +msgid "Reorder" +msgstr "Sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:570 +msgid "Delete Layout" +msgstr "Layout löschen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Duplicate Layout" +msgstr "Layout duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Add New Layout" +msgstr "Neues Layout hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:643 +msgid "Min" +msgstr "Min" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:656 +msgid "Max" +msgstr "Max" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:683 +#: pro/fields/class-acf-field-repeater.php:459 +msgid "Button Label" +msgstr "Button-Beschriftung" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:692 +msgid "Minimum Layouts" +msgstr "Minimum Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maximum Layouts" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:71 +msgid "Add Image to Gallery" +msgstr "Bild zur Galerie hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:72 +msgid "Maximum selection reached" +msgstr "Maximale Auswahl erreicht" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:338 +msgid "Length" +msgstr "Länge" + +#: pro/fields/class-acf-field-gallery.php:381 +msgid "Caption" +msgstr "Beschriftung" + +#: pro/fields/class-acf-field-gallery.php:390 +msgid "Alt Text" +msgstr "Alt Text" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:562 +msgid "Add to gallery" +msgstr "Zur Galerie hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:566 +msgid "Bulk actions" +msgstr "Massenverarbeitung" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:567 +msgid "Sort by date uploaded" +msgstr "Sortiere nach Upload-Datum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:568 +msgid "Sort by date modified" +msgstr "Sortiere nach Änderungs-Datum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:569 +msgid "Sort by title" +msgstr "Sortiere nach Titel" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:570 +msgid "Reverse current order" +msgstr "Aktuelle Sortierung umkehren" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:588 +msgid "Close" +msgstr "Schliessen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:642 +msgid "Minimum Selection" +msgstr "Minimale Auswahl" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:651 +msgid "Maximum Selection" +msgstr "Maximale Auswahl" + +#: pro/fields/class-acf-field-gallery.php:660 +msgid "Insert" +msgstr "Einfügen" + +#: pro/fields/class-acf-field-gallery.php:661 +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:665 +msgid "Append to the end" +msgstr "Am Schluss anhängen" + +#: pro/fields/class-acf-field-gallery.php:666 +msgid "Prepend to the beginning" +msgstr "Vor Beginn einfügen" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:656 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimum der Einträge mit ({min} Reihen) erreicht" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maximum der Einträge mit ({max} Reihen) erreicht" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:333 +msgid "Add row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:334 +msgid "Remove row" +msgstr "Eintrag löschen" + +#: pro/fields/class-acf-field-repeater.php:412 +msgid "Collapsed" +msgstr "Zugeklappt" + +#: pro/fields/class-acf-field-repeater.php:413 +msgid "Select a sub field to show when row is collapsed" +msgstr "" +"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt " +"werden soll" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum Rows" +msgstr "Minimum der Einträge" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:433 +msgid "Maximum Rows" +msgstr "Maximum der Einträge" + +# @ acf +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "Keine Options-Seiten vorhanden" + +# @ acf +#: pro/options-page.php:51 +msgid "Options" +msgstr "Optionen" + +# @ acf +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Optionen aktualisiert" + +#: pro/updates.php:97 +#, php-format +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." + +#. Plugin URI of the plugin/theme +msgid "https://www.advancedcustomfields.com/" +msgstr "https://www.advancedcustomfields.com/" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "Elliot Condon" + +# @ acf +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "http://www.elliotcondon.com/" + +# @ acf +#~ msgid "Parent fields" +#~ msgstr "Übergeordnete Felder" + +# @ acf +#~ msgid "Sibling fields" +#~ msgstr "Geschwister-Felder" + +# @ acf +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s Feld-Gruppe dupliziert." +#~ msgstr[1] "%s Feld-Gruppen dupliziert." + +# @ acf +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s Feld-Gruppe synchronisiert." +#~ msgstr[1] "%s Feld-Gruppen synchronisiert." + +#~ msgid "Error validating request" +#~ msgstr "Fehler beim Überprüfen der Anfrage" + +# @ acf +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "" +#~ "Fehler. Die Liste der Zusatz-Module kann nicht geladen werden" + +# @ acf +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields Datenbank Aktualisierung" + +# @ acf +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Bevor Du die tollen neuen Funktionen nutzen kannst muss die Datenbank " +#~ "aktualisiert werden." + +# @ acf +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Wir haben den Aktualisierungsprozess so einfach wie möglich gehalten; melde Dich mit Deinem Store-Account an und fordere ein " +#~ "Gratisexemplar von ACF PRO an!" + +# @ acf +#~ msgid "Under the Hood" +#~ msgstr "Unter der Haube" + +# @ acf +#~ msgid "Smarter field settings" +#~ msgstr "Intelligentere Feld-Einstellungen" + +# @ acf +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACF speichert nun die Feld-Einstellungen als individuelle Beitrags-Objekte" + +# @ acf +#~ msgid "Better version control" +#~ msgstr "Verbesserte Versionskontrolle" + +# @ acf +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Die neue JSON Export Funktionalität erlaubt die Versionskontrolle von " +#~ "Feld-Einstellungen" + +# @ acf +#~ msgid "Swapped XML for JSON" +#~ msgstr "JSON ersetzt XML" + +# @ acf +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Das Import- und Export-Modul nutzt nun JSON anstelle XML" + +# @ acf +#~ msgid "New Forms" +#~ msgstr "Neue Formulare" + +# @ acf +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Ein neues Feld für das Einbetten von Inhalten wurde hinzugefügt" + +# @ acf +#~ msgid "New Gallery" +#~ msgstr "Neue Galerie" + +# @ acf +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "" +#~ "Das Galerie-Feld wurde einem längst überfälligen Face-Lifting unterzogen" + +# @ acf +#~ msgid "Relationship Field" +#~ msgstr "Beziehungs-Feld" + +# @ acf +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Neue Einstellungen innerhalb des Beziehungs-Feldes um nach Suche, " +#~ "Beitrags-Typ und oder Taxonomie filtern zu können" + +# @ acf +#~ msgid "New archives group in page_link field selection" +#~ msgstr "" +#~ "Im neuen Seitenlink-Feld werden alle Archiv-URL's der verfügbaren Custom " +#~ "Post Types in einer Options-Gruppe zusammengefasst" + +# @ acf +#~ msgid "Better Options Pages" +#~ msgstr "Verbesserte Options-Seiten" + +# @ acf +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Neue Funktionen für die Options-Seite erlauben die Erstellung von Menüs " +#~ "für übergeordnete Seiten sowie Unterseiten" + +# @ acf +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportieren der Feld-Gruppen nach PHP" + +# @ acf +#~ msgid "Download export file" +#~ msgstr "JSON-Datei exportieren" + +# @ acf +#~ msgid "Generate export code" +#~ msgstr "Erstelle PHP-Code" + +# @ acf +#~ msgid "Import" +#~ msgstr "Importieren" + +# @ acf +#~ msgid "Locating" +#~ msgstr "Lokalisiere" + +#~ msgid "Error." +#~ msgstr "Fehler." + +# @ acf +#~ msgid "No embed found for the given URL." +#~ msgstr "Keine Inhalte für die eingegebene URL gefunden." + +# @ acf +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimum der Einträge mit ({min} Einträge) erreicht" + +# @ acf +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Ein Tab-Feld wird nicht korrekt dargestellt, wenn es zu einem " +#~ "Wiederholung- oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden " +#~ "ist" + +# @ acf +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Mit \"Tab Feldern\" können Felder für eine bessere Struktur im Editor in " +#~ "Tabs zusammengefasst werden." + +# @ acf +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle Felder, die auf dieses \"Tab Feld\" folgen (oder bis ein weiteres " +#~ "\"Tab Feld\" definiert ist), werden in einem Tab mit dem Namen dieses " +#~ "Felds zusammengefasst." + +# @ acf +#~ msgid "None" +#~ msgstr "Nur Text" + +# @ acf +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomie" + +# @ acf +#~ msgid "remove {layout}?" +#~ msgstr "{layout} löschen?" + +# @ acf +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dieses Feld erfordert mindestens {min} {identifier}" + +# @ acf +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})" + +# @ acf +#~ msgid "Getting Started" +#~ msgstr "Erste Schritte" + +# @ acf +#~ msgid "Field Types" +#~ msgstr "Feld-Typen" + +# @ acf +#~ msgid "Functions" +#~ msgstr "Funktionen" + +# @ acf +#~ msgid "Actions" +#~ msgstr "Aktionen" + +#~ msgid "How to" +#~ msgstr "Kurzanleitungen" + +# @ acf +#~ msgid "Tutorials" +#~ msgstr "Tutorials" + +#~ msgid "FAQ" +#~ msgstr "FAQ" + +#~ msgid "Term meta upgrade not possible (termmeta table does not exist)" +#~ msgstr "" +#~ "Begriff Meta-Upgrade nicht möglich (termmeta Tabelle nicht existiert)" + +# @ acf +#~ msgid "Error" +#~ msgstr "Fehler" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "Für 1 Feld ist eine Aktualisierung notwendig" +#~ msgstr[1] "Für %d Felder ist eine Aktualisierung notwendig" + +#~ msgid "" +#~ "Error validating ACF PRO license URL (website does not match). Please re-" +#~ "activate your license" +#~ msgstr "" +#~ "Fehler bei der Validierung der ACF PRO Lizenz URL (Webseite stimmt nicht " +#~ "überein). Bitte Lizenz reaktivieren" + +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Deaktiviert (%s)" +#~ msgstr[1] "Deaktiviert (%s)" + +# @ acf +#~ msgid "'How to' guides" +#~ msgstr "Kurzanleitungen" + +# @ acf +#~ msgid "Created by" +#~ msgstr "Erstellt von" + +#~ msgid "Error loading update" +#~ msgstr "Fehler beim Laden des Update" + +# @ acf +#~ msgid "See what's new" +#~ msgstr "Was ist neu" + +# @ acf +#~ msgid "eg. Show extra content" +#~ msgstr "z.B. Zeige zusätzliche Inhalte" + +#~ msgid "" +#~ "Error validating license URL (website does not match). Please re-activate " +#~ "your license" +#~ msgstr "" +#~ "Fehler bei der Überprüfung der Lizenz URL (Webseite stimmt nicht " +#~ "überein). Bitte reaktiviere deine Lizenz" + +# @ acf +#~ msgid "Select" +#~ msgstr "Auswählen" + +# @ acf +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "" +#~ "Verbindungsfehler. Entschuldige, versuche es bitte später noch " +#~ "einmal" + +# @ acf +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Erfolgreich. Der Import hat %s Feld-Gruppen hinzugefügt: %s" + +# @ acf +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Warnung. Der Import hat %s Feld-Gruppen erkannt, die schon " +#~ "vorhanden sind und diese ignoriert: %s" + +# @ acf +#~ msgid "Upgrade ACF" +#~ msgstr "Aktualisiere ACF" + +# @ acf +#~ msgid "Upgrade" +#~ msgstr "Aktualisieren" + +# @ acf +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "Die folgenden Seiten erfordern eine Datenbank-Aktualisierung. Markiere " +#~ "die gewünschten Seiten und klicke \\\"Aktualisiere Datenbank\\\"." + +# @ acf +#~ msgid "Done" +#~ msgstr "Fertig" + +# @ acf +#~ msgid "Today" +#~ msgstr "Heute" + +# @ acf +#~ msgid "Show a different month" +#~ msgstr "Zeige einen anderen Monat" + +# @ acf +#~ msgid "See what's new in" +#~ msgstr "Neuerungen in" + +# @ acf +#~ msgid "version" +#~ msgstr "Version" + +#~ msgid "Upgrading data to" +#~ msgstr "Aktualisiere Daten auf" + +# @ acf +#~ msgid "Return format" +#~ msgstr "Rückgabe-Format" + +# @ acf +#~ msgid "uploaded to this post" +#~ msgstr "zu diesem Beitrag hochgeladen" + +# @ acf +#~ msgid "File Name" +#~ msgstr "Dateiname" + +# @ acf +#~ msgid "File Size" +#~ msgstr "Dateigrösse" + +# @ acf +#~ msgid "No File selected" +#~ msgstr "Keine Datei ausgewählt" + +# @ acf +#~ msgid "Save Options" +#~ msgstr "Optionen speichern" + +# @ acf +#~ msgid "License" +#~ msgstr "Lizenz" + +# @ acf +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Um die Aktualisierungs-Fähigkeit freizuschalten, trage bitte Deinen " +#~ "Lizenzschlüssel im darunterliegenden Feld ein. Solltest Du noch keinen " +#~ "Lizenzschlüssel besitzen, informiere Dich bitte hier über die" + +# @ acf +#~ msgid "details & pricing" +#~ msgstr "Details und Preise." + +# @ acf +#~ 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 "" +#~ "Um die Aktualisierungen freizuschalten, trage bitte Deinen " +#~ "Lizenzschlüssel auf der Aktualisierungen-Seite ein. " +#~ "Solltest Du noch keinen Lizenzschlüssel besitzen, informiere Dich bitte " +#~ "hier über die Details und Preise" + +# @ acf +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +# @ acf +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +# @ acf +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +# @ acf +#~ msgid "Drag and drop to reorder" +#~ msgstr "Mittels Drag-and-Drop die Reihenfolge ändern" + +# @ acf +#~ msgid "Add new %s " +#~ msgstr "Neue %s " + +#~ msgid "Sync Available" +#~ msgstr "Synchronisierung verfügbar" + +# @ acf +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Bitte beachte, dass der gesamte Text zuerst durch eine WordPress Funktion " +#~ "gefiltert wird. Siehe: " + +# @ acf +#~ msgid "Warning" +#~ msgstr "Warnung" + +# @ acf +#~ msgid "Show Field Keys" +#~ msgstr "Zeige Feld-Schlüssel" + +# @ acf +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "" +#~ "Felder-Gruppen werden nach diesem Wert sortiert, vom niedrigsten zum " +#~ "höchsten Wert." + +# @ acf +#~ msgid "Hide / Show All" +#~ msgstr "Alle Verstecken" + +# @ acf +#~ msgid "5.2.6" +#~ msgstr "5.2.6" + +# @ acf +#~ msgid "Sync Terms" +#~ msgstr "Einträge synchronisieren" diff --git a/lang/pro/acf-de_DE.po b/lang/pro/acf-de_DE.po new file mode 100644 index 0000000..a8cf320 --- /dev/null +++ b/lang/pro/acf-de_DE.po @@ -0,0 +1,3863 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:00+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Ralf Koller \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +# @ acf +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +# @ acf +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Name des Block-Typs wird benötigt." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Block-Typ „%s“ ist bereits registriert." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Zum Bearbeiten wechseln" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Zur Vorschau wechseln" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Ausrichtung des Inhalts ändern" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s Einstellungen" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +# @ acf +#: pro/options-page.php:47 +msgid "Options" +msgstr "Optionen" + +# @ acf +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Aktualisieren" + +# @ acf +#: 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 "" + +# @ acf +#: pro/updates.php:279, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Erneut suchen" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "" + +# @ acf +#: pro/admin/admin-options-page.php:195 +msgid "Publish" +msgstr "Veröffentlichen" + +# @ acf +#: 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" + +# @ acf +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Feldgruppe bearbeiten" + +# @ acf +#: pro/admin/admin-updates.php:52 +msgid "Error. Could not connect to update server" +msgstr "" +"Fehler. Es konnte keine Verbindung zum Aktualisierungsserver " +"hergestellt werden" + +# @ acf +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Aktualisierungen" + +#: pro/admin/admin-updates.php:209 +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:196 +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 "Klon" + +# @ acf +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Felder" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest" + +# @ acf +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "Anzeige" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)" + +# @ acf +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Gibt die Art an wie die ausgewählten Felder ausgegeben werden sollen" + +# @ acf +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Block" + +# @ acf +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabelle" + +# @ acf +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Reihe" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Beschriftungen werden als %s angezeigt" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Präfix für Feldbeschriftungen" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Werte werden als %s gespeichert" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Präfix für Feldnamen" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Unbekanntes Feld" + +# @ acf +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(ohne Titel)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Unbekannte Feldgruppe" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle Felder der Feldgruppe %s" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexible Inhalte" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "Layout" +msgstr[1] "Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "Einträge" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} möglich (max {max})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} erforderlich (min {min})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibler Inhalt benötigt mindestens ein Layout" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "Klicke \"%s\" zum Erstellen des Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Ziehen zum Sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Layout hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Layout duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Layout entfernen" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Zum Auswählen anklicken" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Layout sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Layout löschen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Löschen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Layout duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Neues Layout hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Erstellen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Beschriftung" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Name" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Button-Beschriftung" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Mindestzahl an Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Höchstzahl an Layouts" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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] "" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Bild zur Galerie hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maximale Auswahl erreicht" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Länge" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Bearbeiten" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Entfernen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Titel" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Bildunterschrift" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alt Text" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Beschreibung" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Zur Galerie hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Massenverarbeitung" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sortiere nach Upload-Datum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sortiere nach Änderungs-Datum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sortiere nach Titel" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Aktuelle Sortierung umkehren" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Schließen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Rückgabeformat" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Bild-Array" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Bild-URL" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Bild-ID" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Maße der Vorschau" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Einfügen" + +#: pro/fields/class-acf-field-gallery.php:603 +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:607 +msgid "Append to the end" +msgstr "Anhängen" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Voranstellen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Mediathek" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Beschränkt die Auswahl in der Mediathek" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Alle" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Für den Beitrag hochgeladen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimale Auswahl" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maximale Auswahl" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Beschränkt welche Bilder hochgeladen werden können" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Breite" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Höhe" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Dateigröße" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maximum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Erlaubte Dateiformate" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Eine durch Komma getrennte Liste. Leer lassen um alle Dateiformate zu " +"erlauben" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Wiederholung" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Mindestzahl der Einträge hat ({min} Reihen) erreicht" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Höchstzahl der Einträge hat ({max} Reihen) erreicht" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Unterfelder" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Zugeklappt" + +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "" +"Wähle ein Unterfelder welches im zugeklappten Zustand angezeigt werden soll" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:187 +msgid "Minimum Rows" +msgstr "Mindestzahl der Einträge" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Höchstzahl der Einträge" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "Ungültiger Nonce." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Zeile duplizieren" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Eintrag entfernen" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +# @ acf +#: pro/locations/class-acf-location-block.php:71 +msgid "No block types exist" +msgstr "Keine Blocktypen vorhanden" + +# @ acf +#: pro/locations/class-acf-location-options-page.php:22 +msgid "Options Page" +msgstr "Options-Seite" + +# @ acf +#: pro/locations/class-acf-location-options-page.php:70 +msgid "No options pages exist" +msgstr "Keine Options-Seiten vorhanden" + +# @ acf +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "Lizenz deaktivieren" + +# @ acf +#: 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." + +# @ acf +#: pro/admin/views/html-settings-updates.php:41 +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 "" + +# @ acf +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Aktualisierungsinformationen" + +# @ acf +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Installierte Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Aktuellste Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Aktualisierung verfügbar" + +# @ acf +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nein" + +# @ acf +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Ja" + +# @ acf +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Bitte gib oben Deinen Lizenzschlüssel ein um die Aktualisierungsfähigkeit " +"freizuschalten" + +# @ acf +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Plugin aktualisieren" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +# @ acf +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Änderungsprotokoll" + +# @ acf +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Hinweis zum Upgrade" + +# @ acf +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +# @ acf +#~ msgid "Field Groups" +#~ msgstr "Feldgruppen" + +# @ acf +#~ msgid "Field Group" +#~ msgstr "Feldgruppe" + +# @ acf +#~ msgid "Add New Field Group" +#~ msgstr "Neue Feldgruppe erstellen" + +# @ acf +#~ msgid "Edit Field Group" +#~ msgstr "Feldgruppe bearbeiten" + +# @ acf +#~ msgid "New Field Group" +#~ msgstr "Neue Feldgruppe" + +# @ acf +#~ msgid "View Field Group" +#~ msgstr "Feldgruppe anzeigen" + +# @ acf +#~ msgid "Search Field Groups" +#~ msgstr "Feldgruppen durchsuchen" + +# @ acf +#~ msgid "No Field Groups found" +#~ msgstr "Keine Feldgruppen gefunden" + +# @ acf +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Keine Feldgruppen im Papierkorb gefunden" + +# @ acf +#~ msgid "Field" +#~ msgstr "Feld" + +# @ acf +#~ msgid "Add New Field" +#~ msgstr "Feld hinzufügen" + +# @ acf +#~ msgid "Edit Field" +#~ msgstr "Feld bearbeiten" + +# @ acf +#~ msgid "New Field" +#~ msgstr "Neues Feld" + +# @ acf +#~ msgid "View Field" +#~ msgstr "Feld anzeigen" + +# @ acf +#~ msgid "Search Fields" +#~ msgstr "Felder suchen" + +# @ acf +#~ msgid "No Fields found" +#~ msgstr "Keine Felder gefunden" + +# @ acf +#~ msgid "No Fields found in Trash" +#~ msgstr "Keine Felder im Papierkorb gefunden" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Deaktiviert (%s)" +#~ msgstr[1] "Deaktiviert (%s)" + +# @ acf +#~ msgid "(no label)" +#~ msgstr "(keine Beschriftung)" + +# @ acf +#~ msgid "copy" +#~ msgstr "Kopie" + +# @ acf +#~ msgid "Posts" +#~ msgstr "Beiträge" + +# @ acf +#~ msgid "Taxonomies" +#~ msgstr "Taxonomien" + +# @ acf +#~ msgid "Attachments" +#~ msgstr "Anhänge" + +# @ acf +#~ msgid "Comments" +#~ msgstr "Kommentare" + +# @ acf +#~ msgid "Widgets" +#~ msgstr "Widgets" + +#~ msgid "Menus" +#~ msgstr "Menüs" + +#~ msgid "Menu items" +#~ msgstr "Menüelemente" + +# @ acf +#~ msgid "Users" +#~ msgstr "Benutzer" + +# @ acf +#~ msgid "Blocks" +#~ msgstr "Blöcke" + +# @ acf +#~ msgid "Field group updated." +#~ msgstr "Feldgruppe aktualisiert." + +# @ acf +#~ msgid "Field group deleted." +#~ msgstr "Feldgruppe gelöscht." + +# @ acf +#~ msgid "Field group published." +#~ msgstr "Feldgruppe veröffentlicht." + +# @ acf +#~ msgid "Field group saved." +#~ msgstr "Feldgruppe gespeichert." + +# @ acf +#~ msgid "Field group submitted." +#~ msgstr "Feldgruppe übertragen." + +# @ acf +#~ msgid "Field group scheduled for." +#~ msgstr "Feldgruppe geplant für." + +# @ acf +#~ msgid "Field group draft updated." +#~ msgstr "Entwurf der Feldgruppe aktualisiert." + +# @ acf +#~ msgid "The string \"field_\" may not be used at the start of a field name" +#~ msgstr "Der Feldname darf nicht mit \"field_\" beginnen" + +# @ acf +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "" +#~ "Diese Feld kann erst verschoben werden, wenn die Änderungen gespeichert " +#~ "wurden" + +# @ acf +#~ msgid "Field group title is required" +#~ msgstr "Es ist ein Titel für die Feldgruppe erforderlich" + +# @ acf +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Wirklich in den Papierkorb verschieben?" + +# @ acf +#~ msgid "No toggle fields available" +#~ msgstr "Es liegen keine Auswahl-Feldtypen vor" + +# @ acf +#~ msgid "Move Custom Field" +#~ msgstr "Individuelles Feld verschieben" + +# @ acf +#~ msgid "Checked" +#~ msgstr "Ausgewählt" + +# @ acf +#~ msgid "(this field)" +#~ msgstr "(dieses Feld)" + +# @ acf +#~ msgid "or" +#~ msgstr "oder" + +# @ acf +#~ msgid "Null" +#~ msgstr "Null" + +#~ msgid "Has any value" +#~ msgstr "Hat einen Wert" + +#~ msgid "Has no value" +#~ msgstr "Hat keinen Wert" + +# @ acf +#~ msgid "Value is equal to" +#~ msgstr "Wert ist gleich" + +# @ acf +#~ msgid "Value is not equal to" +#~ msgstr "Wert ist ungleich" + +# @ acf +#~ msgid "Value matches pattern" +#~ msgstr "Wert entspricht regulärem Ausdruck" + +#~ msgid "Value contains" +#~ msgstr "Wert enthält" + +# @ acf +#~ msgid "Value is greater than" +#~ msgstr "Wert ist größer als" + +# @ acf +#~ msgid "Value is less than" +#~ msgstr "Wert ist kleiner als" + +#~ msgid "Selection is greater than" +#~ msgstr "Auswahl ist größer als" + +# @ acf +#~ msgid "Selection is less than" +#~ msgstr "Auswahl ist kleiner als" + +# @ acf +#~ msgid "Location" +#~ msgstr "Position" + +#~ msgid "Settings" +#~ msgstr "Einstellungen" + +#~ msgid "Field Keys" +#~ msgstr "Feldschlüssel" + +#~ msgid "Active" +#~ msgstr "Aktiviert" + +#~ msgid "Inactive" +#~ msgstr "Inaktiv" + +# @ acf +#~ msgid "Move Complete." +#~ msgstr "Verschieben erfolgreich abgeschlossen." + +# @ acf +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Das Feld \"%s\" wurde in die %s Feldgruppe verschoben" + +# @ acf +#~ msgid "Close Window" +#~ msgstr "Schließen" + +# @ acf +#~ msgid "Please select the destination for this field" +#~ msgstr "In welche Feldgruppe solle dieses Feld verschoben werden" + +# @ acf +#~ msgid "Move Field" +#~ msgstr "Feld verschieben" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Veröffentlicht (%s)" +#~ msgstr[1] "Veröffentlicht (%s)" + +#~ msgid "Review local JSON changes" +#~ msgstr "Lokale JSON-Änderungen überprüfen" + +# @ acf +#~ msgid "Loading diff" +#~ msgstr "Diff laden" + +# @ acf +#~ msgid "Sync changes" +#~ msgstr "Änderungen synchronisieren" + +#~ msgid "Key" +#~ msgstr "Schlüssel" + +# @ acf +#~ msgid "Local JSON" +#~ msgstr "Lokales JSON" + +#~ msgid "Various" +#~ msgstr "Verschiedene" + +#, php-format +#~ msgid "Located in theme: %s" +#~ msgstr "Befindet sich in Theme: %s" + +#, php-format +#~ msgid "Located in plugin: %s" +#~ msgstr "Befindet sich in Plugin: %s" + +# @ acf +#, php-format +#~ msgid "Located in: %s" +#~ msgstr "Befindet sich in: %s" + +# @ acf +#~ msgid "Sync available" +#~ msgstr "Synchronisierung verfügbar" + +# @ acf +#~ msgid "Sync" +#~ msgstr "Synchronisieren" + +#~ msgid "Review changes" +#~ msgstr "Änderungen überprüfen" + +# @ acf +#~ msgid "Import" +#~ msgstr "Importieren" + +#~ msgid "Saved" +#~ msgstr "Gespeichert" + +#~ msgid "Awaiting save" +#~ msgstr "Warten auf Speichern" + +# @ acf +#~ msgid "Duplicate this item" +#~ msgstr "Dieses Element duplizieren" + +# @ acf +#, php-format +#~ msgid "Field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "Feldgruppe dupliziert." +#~ msgstr[1] "%s Feldgruppen dupliziert." + +# @ acf +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Field group synchronised." +#~ msgstr[1] "%s Feldgruppen synchronisiert." + +# @ acf +#, php-format +#~ msgid "Select %s" +#~ msgstr "%s auswählen" + +#~ msgid "Tools" +#~ msgstr "Werkzeuge" + +# @ acf +#~ msgid "Upgrade Database" +#~ msgstr "Datenbank upgraden" + +# @ acf +#~ msgid "Review sites & upgrade" +#~ msgstr "Übersicht Websites & Upgrades" + +# @ acf +#~ msgid "Custom Fields" +#~ msgstr "Individuelle Felder" + +#~ msgid "Overview" +#~ msgstr "Übersicht" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin provides a visual form builder to " +#~ "customize WordPress edit screens with extra content fields, and an " +#~ "intuitive API to display custom field values in any theme template file." +#~ msgstr "" +#~ "Das Advanced Custom Fields-Plugin stellt einen visuellen Baukasten für " +#~ "Formulare zur Verfügung mit dessen Hilfe die Seiten der zu bearbeitenden " +#~ "Inhalte um extra Inhalts-Felder erweitert werden können. Es bietet zudem " +#~ "ein API um die Inhalte individueller Felder in den Template-Dateien von " +#~ "Themes darzustellen." + +#, php-format +#~ 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, empfehlen wir Dir zuerst " +#~ "einmal unser Erste Schritte Handbuch " +#~ "durchzulesen um Dich mit der Philosophie hinter dem Plugin und den " +#~ "bewährtesten Praktiken vertraut zu machen." + +#~ msgid "" +#~ "Please use the Help & Support tab to get in touch should you find " +#~ "yourself requiring assistance." +#~ msgstr "" +#~ "Bitte nutze das Hilfe & Support-Tab um Dich mit uns in Verbindung zu " +#~ "setzen für den Fall, dass Du Hilfe benötigst." + +#~ msgid "Help & Support" +#~ msgstr "Hilfe & Support" + +#~ 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 sind geradezu fanatisch im Bezug auf Support und wollen, dass Du das " +#~ "beste aus deiner Website mit ACF herausholst. Solltest Du auf Probleme " +#~ "stossen gibt es mehrere Stellen an denen Du Hilfe finden kannst:" + +#, php-format +#~ msgid "" +#~ "Documentation. Our extensive " +#~ "documentation contains references and guides for most situations you may " +#~ "encounter." +#~ msgstr "" +#~ "Dokumentation. Unsere umfangreiche " +#~ "Dokumentation enthält Referenzen und Anleitungen zu den meisten Situation " +#~ "in die Du geraten könntest." + +#, php-format +#~ 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 in unseren " +#~ "Foren eine aktive und freundliche Community, die Dir vielleicht " +#~ "behilflich sein kann dich in der ACF-Welt zurechtzufinden." + +#, php-format +#~ 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 tiefer gehenden technischen " +#~ "Herausforderungen helfend zur Seite stehen." + +# @ acf +#~ msgid "Information" +#~ msgstr "Information" + +# @ acf +#, php-format +#~ msgid "Version %s" +#~ msgstr "Version %s" + +# @ acf +#~ msgid "View details" +#~ msgstr "Details anzeigen" + +#~ msgid "Visit website" +#~ msgstr "Website besuchen" + +# @ acf +#~ msgid "and" +#~ msgstr "und" + +# @ acf +#~ msgid "Export Field Groups" +#~ msgstr "Feldgruppen exportieren" + +#~ msgid "Generate PHP" +#~ msgstr "PHP erstellen" + +# @ acf +#~ msgid "No field groups selected" +#~ msgstr "Keine Feldgruppen ausgewählt" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "Eine Feldgruppe wurde exportiert." +#~ msgstr[1] "%s Feldgruppen wurden exportiert." + +# @ acf +#~ msgid "Select Field Groups" +#~ msgstr "Feldgruppen auswählen" + +# @ acf +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Entscheide welche Feldgruppen Du exportieren möchtest und wähle dann das " +#~ "Exportformat. Benutze den \"Datei exportieren\"-Button, um eine JSON-" +#~ "Datei zu generieren, welche Du im Anschluss in eine andere ACF-" +#~ "Installation importieren kannst. Verwende den \"PHP erstellen“-Button, um " +#~ "den resultierenden PHP-Code in dein Theme einfügen zu können." + +# @ acf +#~ msgid "Export File" +#~ msgstr "Datei exportieren" + +# @ acf +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Der nachfolgende Code kann dazu verwendet werden eine lokale Version der " +#~ "ausgewählten Feldgruppe(n) zu registrieren. Eine lokale Feldgruppe bietet " +#~ "viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische " +#~ "Felder und Einstellungen. Kopiere einfach folgenden Code und füge ihn in " +#~ "die functions.php oder eine externe Datei in Deinem Theme ein." + +#~ msgid "Copy to clipboard" +#~ msgstr "In die Zwischenablage kopieren" + +#~ msgid "Copied" +#~ msgstr "Kopiert" + +# @ acf +#~ msgid "Import Field Groups" +#~ msgstr "Feldgruppen importieren" + +# @ acf +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Wähle die Advanced Custom Fields JSON-Datei aus, welche Du importieren " +#~ "möchtest. Nach dem Klicken des „Datei importieren“-Buttons wird ACF die " +#~ "Feldgruppen hinzufügen." + +# @ acf +#~ msgid "Select File" +#~ msgstr "Datei auswählen" + +# @ acf +#~ msgid "Import File" +#~ msgstr "Datei importieren" + +# @ acf +#~ msgid "No file selected" +#~ msgstr "Keine Datei ausgewählt" + +# @ acf +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen" + +# @ acf +#~ msgid "Incorrect file type" +#~ msgstr "Falscher Dateityp" + +# @ acf +#~ msgid "Import file empty" +#~ msgstr "Die importierte Datei ist leer" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "Eine Feldgruppe importiert" +#~ msgstr[1] "%s Feldgruppen importiert" + +# @ acf +#~ msgid "Conditional Logic" +#~ msgstr "Bedingungen für die Anzeige" + +# @ acf +#~ msgid "Show this field if" +#~ msgstr "Zeige dieses Feld, wenn" + +# @ acf +#~ msgid "Add rule group" +#~ msgstr "Regelgruppe hinzufügen" + +# @ acf +#~ msgid "Edit field" +#~ msgstr "Feld bearbeiten" + +# @ acf +#~ msgid "Duplicate field" +#~ msgstr "Feld duplizieren" + +# @ acf +#~ msgid "Move field to another group" +#~ msgstr "Feld in eine andere Gruppe verschieben" + +# @ acf +#~ msgid "Move" +#~ msgstr "Verschieben" + +# @ acf +#~ msgid "Delete field" +#~ msgstr "Feld löschen" + +# @ acf +#~ msgid "Field Label" +#~ msgstr "Feldbeschriftung" + +# @ acf +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "" +#~ "Dieser Name wird in der Bearbeitungsansicht eines Beitrags angezeigt" + +# @ acf +#~ msgid "Field Name" +#~ msgstr "Feldname" + +# @ acf +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "" +#~ "Einzelnes Wort ohne Leerzeichen. Es sind nur Unter- und Bindestriche als " +#~ "Sonderzeichen erlaubt" + +# @ acf +#~ msgid "Field Type" +#~ msgstr "Feldtyp" + +# @ acf +#~ msgid "Instructions" +#~ msgstr "Anweisungen" + +# @ acf +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Anweisungen für die Autoren. Sie werden in der Bearbeitungsansicht " +#~ "angezeigt" + +# @ acf +#~ msgid "Required?" +#~ msgstr "Erforderlich?" + +# @ acf +#~ msgid "Wrapper Attributes" +#~ msgstr "Wrapper-Attribute" + +# @ acf +#~ msgid "width" +#~ msgstr "Breite" + +# @ acf +#~ msgid "class" +#~ msgstr "Klasse" + +# @ acf +#~ msgid "id" +#~ msgstr "ID" + +# @ acf +#~ msgid "Close Field" +#~ msgstr "Feld schließen" + +# @ acf +#~ msgid "Order" +#~ msgstr "Reihenfolge" + +# @ acf +#~ msgid "Type" +#~ msgstr "Typ" + +# @ acf +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Es sind noch keine Felder angelegt. Klicke den + Feld hinzufügen-" +#~ "Button und erstelle Dein erstes Feld." + +# @ acf +#~ msgid "+ Add Field" +#~ msgstr "+ Feld hinzufügen" + +# @ acf +#~ msgid "Rules" +#~ msgstr "Regeln" + +# @ acf +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "Erstelle ein Regelwerk das festlegt welche Bearbeitungsansichten diese " +#~ "Advanced Custom Fields nutzen" + +# @ acf +#~ msgid "Style" +#~ msgstr "Stil" + +# @ acf +#~ msgid "Standard (WP metabox)" +#~ msgstr "WP-Metabox (Standard)" + +# @ acf +#~ msgid "Seamless (no metabox)" +#~ msgstr "Übergangslos ohne Metabox" + +# @ acf +#~ msgid "Position" +#~ msgstr "Position" + +# @ acf +#~ msgid "High (after title)" +#~ msgstr "Nach dem Titel vor dem Inhalt" + +# @ acf +#~ msgid "Normal (after content)" +#~ msgstr "Nach dem Inhalt" + +# @ acf +#~ msgid "Side" +#~ msgstr "Seitlich neben dem Inhalt" + +# @ acf +#~ msgid "Label placement" +#~ msgstr "Platzierung der Beschriftung" + +# @ acf +#~ msgid "Top aligned" +#~ msgstr "Über dem Feld" + +# @ acf +#~ msgid "Left aligned" +#~ msgstr "Links neben dem Feld" + +# @ acf +#~ msgid "Instruction placement" +#~ msgstr "Platzierung der Anweisungen" + +# @ acf +#~ msgid "Below labels" +#~ msgstr "Unterhalb der Beschriftungen" + +# @ acf +#~ msgid "Below fields" +#~ msgstr "Unterhalb der Felder" + +# @ acf +#~ msgid "Order No." +#~ msgstr "Reihenfolge" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "Feldgruppen mit einem niedrigeren Wert werden zuerst angezeigt" + +#~ msgid "Shown in field group list" +#~ msgstr "In der Feldgruppen-Liste anzeigen" + +# @ acf +#~ msgid "Permalink" +#~ msgstr "Permalink" + +# @ acf +#~ msgid "Content Editor" +#~ msgstr "Inhalts-Editor" + +# @ acf +#~ msgid "Excerpt" +#~ msgstr "Textauszug" + +# @ acf +#~ msgid "Discussion" +#~ msgstr "Diskussion" + +# @ acf +#~ msgid "Revisions" +#~ msgstr "Revisionen" + +# @ acf +#~ msgid "Slug" +#~ msgstr "Titelform" + +# @ acf +#~ msgid "Author" +#~ msgstr "Autor" + +# @ acf +#~ msgid "Format" +#~ msgstr "Format" + +# @ acf +#~ msgid "Page Attributes" +#~ msgstr "Seiten-Attribute" + +# @ acf +#~ msgid "Featured Image" +#~ msgstr "Beitragsbild" + +# @ acf +#~ msgid "Categories" +#~ msgstr "Kategorien" + +# @ acf +#~ msgid "Tags" +#~ msgstr "Schlagwörter" + +# @ acf +#~ msgid "Send Trackbacks" +#~ msgstr "Sende Trackbacks" + +# @ acf +#~ msgid "Hide on screen" +#~ msgstr "Verstecken" + +# @ acf +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Wähle die Elemente, welche in der Bearbeitungsansicht " +#~ "verborgen werden sollen." + +# @ acf +#~ 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 " +#~ "Nummer in der Reihe)" + +#, php-format +#~ 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 willst und klicke dann %s." + +#~ msgid "Upgrade Sites" +#~ msgstr "Websites upgraden" + +# @ acf +#~ msgid "Site" +#~ msgstr "Website" + +# @ acf +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s" + +# @ acf +#~ msgid "Site is up to date" +#~ msgstr "Die Website ist aktuell" + +# @ acf +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Upgrade der Datenbank fertiggestellt. Zum Netzwerk " +#~ "Dashboard" + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "Bitte zumindest eine Website zum Upgrade auswählen." + +# @ acf +#~ 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 jetzt die Aktualisierung durchführen " +#~ "willst?" + +# @ acf +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Daten auf Version %s upgraden" + +# @ default +#~ msgid "Upgrade complete." +#~ msgstr "Upgrade abgeschlossen." + +#~ msgid "Upgrade failed." +#~ msgstr "Upgrade fehlgeschlagen." + +# @ acf +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Aufgaben für das Upgrade einlesen…" + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "Datenbank-Upgrade abgeschlossen. Schau nach was es Neues " +#~ "gibt" + +# @ acf +#~ msgid "No updates available." +#~ msgstr "Keine Aktualisierungen verfügbar." + +#~ msgid "Back to all tools" +#~ msgstr "Zurück zur Werkzeugübersicht" + +# @ acf +#~ msgid "Show this field group if" +#~ msgstr "Zeige diese Felder, wenn" + +# @ acf +#~ msgid "Database Upgrade Required" +#~ msgstr "Es ist ein Upgrade der Datenbank erforderlich" + +# @ acf +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Danke für die Aktualisierung auf %s v%s!" + +#~ msgid "" +#~ "This version contains improvements to your database and requires an " +#~ "upgrade." +#~ msgstr "" +#~ "Die vorliegende Version enthält Verbesserungen für deine Datenbank und " +#~ "erfordert ein Upgrade." + +#, php-format +#~ 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." + +# @ acf +#~ msgid "Invalid field group parameter(s)." +#~ msgstr "Ungültige(r) Feldgruppen-Parameter." + +# @ acf +#~ msgid "Invalid field group ID." +#~ msgstr "Ungültige Feldgruppen-ID." + +#~ msgid "Sorry, this field group is unavailable for diff comparison." +#~ msgstr "" +#~ "Verzeihung, diese Feldgruppe steht für einen Diff-Vergleich nicht zur " +#~ "Verfügung." + +# @ acf +#, php-format +#~ msgid "Last updated: %s" +#~ msgstr "Zuletzt aktualisiert: %s" + +# @ acf +#~ msgid "Original field group" +#~ msgstr "Ursprüngliche Feldgruppe" + +# @ acf +#~ msgid "JSON field group (newer)" +#~ msgstr "JSON-Feldgruppe (neuer)" + +# @ acf +#~ msgid "Thumbnail" +#~ msgstr "Vorschaubild" + +# @ acf +#~ msgid "Medium" +#~ msgstr "Mittel" + +# @ acf +#~ msgid "Large" +#~ msgstr "Groß" + +# @ acf +#~ msgid "Full Size" +#~ msgstr "Volle Größe" + +# @ acf +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Die Breite des Bildes muss mindestens %dpx sein." + +# @ acf +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." + +# @ acf +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Die Höhe des Bildes muss mindestens %dpx sein." + +# @ acf +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." + +# @ acf +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Die Dateigröße muss mindestens %s sein." + +# @ acf +#, php-format +#~ msgid "File size must not exceed %s." +#~ msgstr "Die Dateigröße darf nicht größer als %s sein." + +# @ acf +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Der Dateityp muss %s sein." + +# @ acf +#~ msgid "Are you sure?" +#~ msgstr "Wirklich entfernen?" + +#~ msgid "Cancel" +#~ msgstr "Abbrechen" + +# @ acf +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "" +#~ "Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen " +#~ "wird" + +# @ acf +#~ msgid "Validation successful" +#~ msgstr "Überprüfung erfolgreich" + +# @ acf +#~ msgid "Validation failed" +#~ msgstr "Überprüfung fehlgeschlagen" + +# @ acf +#~ msgid "1 field requires attention" +#~ msgstr "Für 1 Feld ist eine Aktualisierung notwendig" + +# @ acf +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "Für %d Felder ist eine Aktualisierung notwendig" + +# @ acf +#~ msgid "Field type does not exist" +#~ msgstr "Feldtyp existiert nicht" + +#~ msgid "Unknown" +#~ msgstr "Unbekannt" + +# @ acf +#~ msgid "Basic" +#~ msgstr "Grundlage" + +# @ acf +#~ msgid "Content" +#~ msgstr "Inhalt" + +# @ acf +#~ msgid "Choice" +#~ msgstr "Auswahl" + +# @ acf +#~ msgid "Relational" +#~ msgstr "Relational" + +# @ acf +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Accordion" +#~ msgstr "Akkordeon" + +#~ msgid "Open" +#~ msgstr "Geöffnet" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "Dieses Akkordeon beim Laden der Seite als geöffnet anzeigen." + +#~ msgid "Multi-expand" +#~ msgstr "Gleichzeitig geöffnet" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Erlaubt dieses Akkordeon zu öffnen ohne andere zu schließen." + +#~ msgid "Endpoint" +#~ msgstr "Endpunkt" + +#~ 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 abschließende Akkordeon wird nicht sichtbar sein." + +#~ msgid "Button Group" +#~ msgstr "Button-Gruppe" + +# @ acf +#~ msgid "Choices" +#~ msgstr "Auswahlmöglichkeiten" + +# @ acf +#~ msgid "Enter each choice on a new line." +#~ msgstr "Jede Auswahlmöglichkeit in eine neue Zeile eingeben." + +# @ acf +#~ 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:" + +# @ acf +#~ msgid "red : Red" +#~ msgstr "rot : Rot" + +# @ acf +#~ msgid "Allow Null?" +#~ msgstr "NULL-Werte zulassen?" + +# @ acf +#~ msgid "Default Value" +#~ msgstr "Standardwert" + +# @ acf +#~ msgid "Appears when creating a new post" +#~ msgstr "Erscheint bei der Erstellung eines neuen Beitrags" + +# @ acf +#~ msgid "Horizontal" +#~ msgstr "Horizontal" + +# @ acf +#~ msgid "Vertical" +#~ msgstr "Vertikal" + +# @ acf +#~ msgid "Return Value" +#~ msgstr "Rückgabewert" + +# @ acf +#~ msgid "Specify the returned value on front end" +#~ msgstr "Legt den Rückgabewert für das Frontend fest" + +#~ msgid "Value" +#~ msgstr "Wert" + +#~ msgid "Both (Array)" +#~ msgstr "Beide (Array)" + +# @ acf +#~ msgid "Checkbox" +#~ msgstr "Checkbox" + +# @ acf +#~ msgid "Toggle All" +#~ msgstr "Alle auswählen" + +#~ msgid "Add new choice" +#~ msgstr "Neue Auswahlmöglichkeit hinzufügen" + +#~ msgid "Allow Custom" +#~ msgstr "Individuelle Werte erlauben" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Erlaubt das Hinzufügen individueller Werte" + +#~ msgid "Save Custom" +#~ msgstr "Individuelle Werte speichern" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "" +#~ "Individuelle Werte unter den Auswahlmöglichkeiten des Feldes speichern" + +# @ acf +#~ msgid "Enter each default value on a new line" +#~ msgstr "Jeden Standardwert in einer neuen Zeile eingeben" + +#~ msgid "Toggle" +#~ msgstr "Alle Auswählen" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "" +#~ "Hängt eine zusätzliche Checkbox an mit der alle Optionen ausgewählt " +#~ "werden können" + +# @ acf +#~ msgid "Color Picker" +#~ msgstr "Farbauswahl" + +# @ acf +#~ msgid "Clear" +#~ msgstr "Leeren" + +# @ acf +#~ msgid "Default" +#~ msgstr "Standard" + +# @ acf +#~ msgid "Select Color" +#~ msgstr "Farbe auswählen" + +#~ msgid "Current Color" +#~ msgstr "Aktuelle Farbe" + +# @ acf +#~ msgid "Date Picker" +#~ msgstr "Datumsauswahl" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fertig" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Heute" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Nächstes" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Vorheriges" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "W" + +# @ acf +#~ msgid "Display Format" +#~ msgstr "Darstellungsformat" + +# @ acf +#~ msgid "The format displayed when editing a post" +#~ msgstr "Das Format für die Anzeige in der Bearbeitungsansicht" + +#~ msgid "Custom:" +#~ msgstr "Individuelles Format:" + +#~ msgid "Save Format" +#~ msgstr "Speicherformat" + +#~ msgid "The format used when saving a value" +#~ msgstr "Das Format das beim Speichern eines Wertes verwendet wird" + +# @ acf +#~ msgid "The format returned via template functions" +#~ msgstr "Das Format für die Ausgabe in den Template-Funktionen" + +# @ acf +#~ msgid "Week Starts On" +#~ msgstr "Die Woche beginnt am" + +#~ msgid "Date Time Picker" +#~ msgstr "Datums- und Zeitauswahl" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Zeit auswählen" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Zeit" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Stunde" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minute" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Sekunde" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Millisekunde" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Mikrosekunde" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Zeitzone" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Jetzt" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fertig" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Auswählen" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "Vorm." + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "Vorm." + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "Nachm." + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "Nachm." + +# @ acf +#~ msgid "Email" +#~ msgstr "E-Mail" + +# @ acf +#~ msgid "Placeholder Text" +#~ msgstr "Platzhaltertext" + +# @ acf +#~ msgid "Appears within the input" +#~ msgstr "Platzhaltertext solange keine Eingabe im Feld vorgenommen wurde" + +# @ acf +#~ msgid "Prepend" +#~ msgstr "Voranstellen" + +# @ acf +#~ msgid "Appears before the input" +#~ msgstr "Wird dem Eingabefeld vorangestellt" + +# @ acf +#~ msgid "Append" +#~ msgstr "Anhängen" + +# @ acf +#~ msgid "Appears after the input" +#~ msgstr "Wird dem Eingabefeld hinten angestellt" + +# @ acf +#~ msgid "File" +#~ msgstr "Datei" + +# @ acf +#~ msgid "Edit File" +#~ msgstr "Datei bearbeiten" + +# @ acf +#~ msgid "Update File" +#~ msgstr "Datei aktualisieren" + +#~ msgid "File name" +#~ msgstr "Dateiname" + +# @ acf +#~ msgid "Add File" +#~ msgstr "Datei hinzufügen" + +# @ acf +#~ msgid "File Array" +#~ msgstr "Datei-Array" + +# @ acf +#~ msgid "File URL" +#~ msgstr "Datei-URL" + +# @ acf +#~ msgid "File ID" +#~ msgstr "Datei-ID" + +# @ acf +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Beschränkt welche Dateien hochgeladen werden können" + +# @ acf +#~ msgid "Google Map" +#~ msgstr "Google Maps" + +# @ acf +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Dieser Browser unterstützt keine Geo-Lokation" + +# @ acf +#~ msgid "Search" +#~ msgstr "Suchen" + +# @ acf +#~ msgid "Clear location" +#~ msgstr "Position löschen" + +# @ acf +#~ msgid "Find current location" +#~ msgstr "Aktuelle Position finden" + +# @ acf +#~ msgid "Search for address..." +#~ msgstr "Nach der Adresse suchen..." + +# @ acf +#~ msgid "Center" +#~ msgstr "Mittelpunkt" + +# @ acf +#~ msgid "Center the initial map" +#~ msgstr "Mittelpunkt der Ausgangskarte" + +# @ acf +#~ msgid "Zoom" +#~ msgstr "Zoom" + +# @ acf +#~ msgid "Set the initial zoom level" +#~ msgstr "Legt die anfängliche Zoomstufe der Karte fest" + +# @ acf +#~ msgid "Customize the map height" +#~ msgstr "Passt die Höhe der Karte an" + +# @ acf +#~ msgid "Group" +#~ msgstr "Gruppe" + +# @ acf +#~ msgid "Image" +#~ msgstr "Bild" + +# @ acf +#~ msgid "Select Image" +#~ msgstr "Bild auswählen" + +# @ acf +#~ msgid "Edit Image" +#~ msgstr "Bild bearbeiten" + +# @ acf +#~ msgid "Update Image" +#~ msgstr "Bild aktualisieren" + +# @ acf +#~ msgid "All images" +#~ msgstr "Alle Bilder" + +# @ acf +#~ msgid "No image selected" +#~ msgstr "Kein Bild ausgewählt" + +# @ acf +#~ msgid "Add Image" +#~ msgstr "Bild hinzufügen" + +# @ acf +#~ msgid "Link" +#~ msgstr "Link" + +# @ acf +#~ msgid "Select Link" +#~ msgstr "Link auswählen" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "In einem neuen Fenster/Tab öffnen" + +# @ acf +#~ msgid "Link Array" +#~ msgstr "Link-Array" + +# @ acf +#~ msgid "Link URL" +#~ msgstr "Link-URL" + +# @ acf +#~ msgid "Message" +#~ msgstr "Mitteilung" + +# @ acf +#~ msgid "New Lines" +#~ msgstr "Neue Zeilen" + +# @ acf +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Legt fest wie Zeilenumbrüche gerendert werden" + +# @ acf +#~ msgid "Automatically add paragraphs" +#~ msgstr "Automatisches hinzufügen von Absätzen" + +# @ acf +#~ msgid "Automatically add <br>" +#~ msgstr "Automatisches hinzufügen von <br>" + +# @ acf +#~ msgid "No Formatting" +#~ msgstr "Keine Formatierung" + +# @ acf +#~ msgid "Escape HTML" +#~ msgstr "Escape HTML" + +# @ acf +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "" +#~ "Erlaubt HTML-Markup als sichtbaren Text anzuzeigen anstelle diesen zu " +#~ "rendern" + +# @ acf +#~ msgid "Number" +#~ msgstr "Numerisch" + +# @ acf +#~ msgid "Minimum Value" +#~ msgstr "Mindestwert" + +# @ acf +#~ msgid "Maximum Value" +#~ msgstr "Maximalwert" + +# @ acf +#~ msgid "Step Size" +#~ msgstr "Schrittweite" + +# @ acf +#~ msgid "Value must be a number" +#~ msgstr "Wert muss eine Zahl sein" + +# @ acf +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Wert muss größer oder gleich %d sein" + +# @ acf +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Wert muss kleiner oder gleich %d sein" + +# @ acf +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +# @ acf +#~ msgid "Enter URL" +#~ msgstr "URL eingeben" + +# @ acf +#~ msgid "Embed Size" +#~ msgstr "Maße" + +# @ acf +#~ msgid "Page Link" +#~ msgstr "Seiten-Link" + +# @ acf +#~ msgid "Archives" +#~ msgstr "Archive" + +#~ msgid "Parent" +#~ msgstr "Übergeordnet" + +# @ acf +#~ msgid "Filter by Post Type" +#~ msgstr "Nach Inhaltstyp filtern" + +# @ acf +#~ msgid "All post types" +#~ msgstr "Alle Inhaltstypen" + +# @ acf +#~ msgid "Filter by Taxonomy" +#~ msgstr "Nach Taxonomien filtern" + +# @ acf +#~ msgid "All taxonomies" +#~ msgstr "Alle Taxonomien" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Archiv-URL's zulassen" + +# @ acf +#~ msgid "Select multiple values?" +#~ msgstr "Mehrere Werte auswählbar?" + +# @ acf +#~ msgid "Password" +#~ msgstr "Passwort" + +# @ acf +#~ msgid "Post Object" +#~ msgstr "Beitrags-Objekt" + +# @ acf +#~ msgid "Post ID" +#~ msgstr "Beitrags-ID" + +# @ acf +#~ msgid "Radio Button" +#~ msgstr "Radio-Button" + +# @ acf +#~ msgid "Other" +#~ msgstr "Weitere" + +# @ acf +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "" +#~ "Das Hinzufügen der Auswahlmöglichkeit 'Weitere‘ erlaubt " +#~ "benutzerdefinierte Werte" + +# @ acf +#~ msgid "Save Other" +#~ msgstr "Weitere speichern" + +# @ acf +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Weitere Werte unter den Auswahlmöglichkeiten des Feldes speichern" + +#~ msgid "Range" +#~ msgstr "Numerischer Bereich" + +# @ acf +#~ msgid "Relationship" +#~ msgstr "Beziehung" + +# @ acf +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Maximum der Einträge mit ({max} Einträge) erreicht" + +# @ acf +#~ msgid "Loading" +#~ msgstr "Lade" + +# @ acf +#~ msgid "No matches found" +#~ msgstr "Keine Übereinstimmung gefunden" + +# @ acf +#~ msgid "Select post type" +#~ msgstr "Inhaltstyp auswählen" + +# @ acf +#~ msgid "Select taxonomy" +#~ msgstr "Taxonomie auswählen" + +# @ acf +#~ msgid "Search..." +#~ msgstr "Suchen..." + +# @ acf +#~ msgid "Filters" +#~ msgstr "Filter" + +# @ acf +#~ msgid "Post Type" +#~ msgstr "Inhaltstyp" + +# @ acf +#~ msgid "Taxonomy" +#~ msgstr "Taxonomie" + +# @ acf +#~ msgid "Elements" +#~ msgstr "Elemente" + +# @ acf +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Die ausgewählten Elemente werden in jedem Ergebnis angezeigt" + +# @ acf +#~ msgid "Minimum posts" +#~ msgstr "Mindestzahl an Beiträgen" + +# @ acf +#~ msgid "Maximum posts" +#~ msgstr "Höchstzahl an Beiträgen" + +# @ acf +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s benötigt mindestens %s Selektion" +#~ msgstr[1] "%s benötigt mindestens %s Selektionen" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Auswahl" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "" +#~ "Es ist ein Ergebnis verfügbar, drücke die Eingabetaste um es auszuwählen." + +#, php-format +#~ 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." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Keine Übereinstimmungen gefunden" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Gib bitte ein oder mehr Zeichen ein" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Gib bitte %d oder mehr Zeichen ein" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Lösche bitte ein Zeichen" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Lösche bitte %d Zeichen" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Du kannst nur ein Element auswählen" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Du kannst nur %d Elemente auswählen" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Mehr Ergebnisse laden…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Suchen…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Laden fehlgeschlagen" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Auswählen" + +# @ acf +#~ msgid "Stylised UI" +#~ msgstr "Select2-Library aktivieren" + +# @ acf +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu laden?" + +#~ msgid "Specify the value returned" +#~ msgstr "Lege den Rückgabewert fest" + +#~ msgid "Separator" +#~ msgstr "Trennelement" + +# @ acf +#~ msgid "Tab" +#~ msgstr "Tab" + +# @ acf +#~ msgid "Placement" +#~ msgstr "Platzierung" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definiert einen Endpunkt an dem die vorangegangenen Tabs enden. Das ist " +#~ "der Startpunkt für eine neue Gruppe an Tabs." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Keine %s" + +# @ acf +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Wähle die Taxonomie, welche angezeigt werden soll" + +# @ acf +#~ msgid "Appearance" +#~ msgstr "Anzeige" + +# @ acf +#~ msgid "Select the appearance of this field" +#~ msgstr "Wähle das Aussehen für dieses Feld" + +# @ acf +#~ msgid "Multiple Values" +#~ msgstr "Mehrere Werte" + +# @ acf +#~ msgid "Multi Select" +#~ msgstr "Auswahlmenü" + +# @ acf +#~ msgid "Single Value" +#~ msgstr "Einzelne Werte" + +# @ acf +#~ msgid "Radio Buttons" +#~ msgstr "Radio Button" + +# @ acf +#~ msgid "Create Terms" +#~ msgstr "Begriffe erstellen" + +# @ acf +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Erlaubt das Erstellen neuer Begriffe während des Bearbeitens" + +#~ msgid "Save Terms" +#~ msgstr "Begriffe speichern" + +# @ acf +#~ msgid "Connect selected terms to the post" +#~ msgstr "Verbindet die ausgewählten Begriffe mit dem Beitrag" + +#~ msgid "Load Terms" +#~ msgstr "Begriffe laden" + +#~ msgid "Load value from posts terms" +#~ msgstr "Den Wert aus den Begriffen des Beitrags laden" + +# @ acf +#~ msgid "Term Object" +#~ msgstr "Begriffs-Objekt" + +# @ acf +#~ msgid "Term ID" +#~ msgstr "Begriffs-ID" + +# @ acf +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Der Benutzer kann keine neue %s hinzufügen" + +# @ acf +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s ist bereits vorhanden" + +# @ acf +#, php-format +#~ msgid "%s added" +#~ msgstr "%s hinzugefügt" + +# @ acf +#~ msgid "Add" +#~ msgstr "Hinzufügen" + +# @ acf +#~ msgid "Text" +#~ msgstr "Text einzeilig" + +# @ acf +#~ msgid "Character Limit" +#~ msgstr "Zeichenbegrenzung" + +# @ acf +#~ msgid "Leave blank for no limit" +#~ msgstr "Leer lassen für keine Begrenzung" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "Wert darf %d Zeichen nicht überschreiten" + +# @ acf +#~ msgid "Text Area" +#~ msgstr "Text mehrzeilig" + +# @ acf +#~ msgid "Rows" +#~ msgstr "Zeilenanzahl" + +# @ acf +#~ msgid "Sets the textarea height" +#~ msgstr "Definiert die Höhe des Textfelds" + +#~ msgid "Time Picker" +#~ msgstr "Zeitauswahl" + +# @ acf +#~ msgid "True / False" +#~ msgstr "Wahr / Falsch" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Zeigt den Text neben der Checkbox an" + +#~ msgid "On Text" +#~ msgstr "Wenn aktiv" + +#~ msgid "Text shown when active" +#~ msgstr "Der Text der im aktiven Zustand angezeigt wird" + +#~ msgid "Off Text" +#~ msgstr "Wenn inaktiv" + +#~ msgid "Text shown when inactive" +#~ msgstr "Der Text der im inaktiven Zustand angezeigt wird" + +# @ acf +#~ msgid "Url" +#~ msgstr "URL" + +# @ acf +#~ msgid "Value must be a valid URL" +#~ msgstr "Bitte eine gültige URL eingeben" + +# @ acf +#~ msgid "User" +#~ msgstr "Benutzer" + +# @ acf +#~ msgid "Filter by role" +#~ msgstr "Nach Rolle filtern" + +# @ acf +#~ msgid "All user roles" +#~ msgstr "Alle Benutzerrollen" + +# @ acf +#~ msgid "User Array" +#~ msgstr "Benutzer-Array" + +# @ acf +#~ msgid "User Object" +#~ msgstr "Benutzer-Objekt" + +# @ acf +#~ msgid "User ID" +#~ msgstr "Benutzer-ID" + +#~ msgid "Error loading field." +#~ msgstr "Fehler beim Laden des Feldes." + +# @ acf +#~ msgid "Wysiwyg Editor" +#~ msgstr "WYSIWYG-Editor" + +# @ acf +#~ msgid "Visual" +#~ msgstr "Visuell" + +# @ acf +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Klicke um TinyMCE zu initialisieren" + +# @ acf +#~ msgid "Tabs" +#~ msgstr "Tabs" + +# @ acf +#~ msgid "Visual & Text" +#~ msgstr "Visuell & Text" + +# @ acf +#~ msgid "Visual Only" +#~ msgstr "Nur Visuell" + +# @ acf +#~ msgid "Text Only" +#~ msgstr "Nur Text" + +# @ acf +#~ msgid "Toolbar" +#~ msgstr "Werkzeugleiste" + +# @ acf +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Button zum Hochladen von Medien anzeigen?" + +#~ msgid "Delay initialization?" +#~ msgstr "Initialisierung verzögern?" + +#~ msgid "TinyMCE will not be initialized until field is clicked" +#~ msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" + +#~ msgid "Validate Email" +#~ msgstr "E-Mail bestätigen" + +# @ acf +#~ msgid "Post updated" +#~ msgstr "Beitrag aktualisiert" + +#~ msgid "Spam Detected" +#~ msgstr "Spam entdeckt" + +#, php-format +#~ msgid "ERROR: %s" +#~ msgstr "FEHLER: %s" + +# @ acf +#, php-format +#~ msgid "Class \"%s\" does not exist." +#~ msgstr "Die Klasse „%s“ existiert nicht." + +#, php-format +#~ msgid "Location type \"%s\" is already registered." +#~ msgstr "Positions-Typ „%s“ ist bereits registriert." + +# @ acf +#~ msgid "Post" +#~ msgstr "Beitrag" + +# @ acf +#~ msgid "Page" +#~ msgstr "Seite" + +# @ acf +#~ msgid "Forms" +#~ msgstr "Formulare" + +# @ acf +#~ msgid "is equal to" +#~ msgstr "ist gleich" + +# @ acf +#~ msgid "is not equal to" +#~ msgstr "ist ungleich" + +# @ acf +#~ msgid "Attachment" +#~ msgstr "Anhang" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Alle %s Formate" + +# @ acf +#~ msgid "Comment" +#~ msgstr "Kommentar" + +# @ acf +#~ msgid "Current User Role" +#~ msgstr "Aktuelle Benutzerrolle" + +# @ acf +#~ msgid "Super Admin" +#~ msgstr "Super-Administrator" + +# @ acf +#~ msgid "Current User" +#~ msgstr "Aktueller Benutzer" + +# @ acf +#~ msgid "Logged in" +#~ msgstr "Angemeldet" + +# @ acf +#~ msgid "Viewing front end" +#~ msgstr "Frontend anzeigen" + +# @ acf +#~ msgid "Viewing back end" +#~ msgstr "Backend anzeigen" + +#~ msgid "Menu Item" +#~ msgstr "Menüelement" + +#~ msgid "Menu" +#~ msgstr "Menü" + +# @ acf +#~ msgid "Menu Locations" +#~ msgstr "Menüpositionen" + +# @ acf +#~ msgid "Page Parent" +#~ msgstr "Übergeordnete Seite" + +# @ acf +#~ msgid "Page Template" +#~ msgstr "Seiten-Template" + +# @ acf +#~ msgid "Default Template" +#~ msgstr "Standard-Template" + +# @ acf +#~ msgid "Page Type" +#~ msgstr "Seitentyp" + +# @ acf +#~ msgid "Front Page" +#~ msgstr "Startseite" + +# @ acf +#~ msgid "Posts Page" +#~ msgstr "Beitrags-Seite" + +# @ acf +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Seite ohne übergeordnete Seiten" + +# @ acf +#~ msgid "Parent Page (has children)" +#~ msgstr "Übergeordnete Seite (mit Unterseiten)" + +# @ acf +#~ msgid "Child Page (has parent)" +#~ msgstr "Unterseite (mit übergeordneter Seite)" + +# @ acf +#~ msgid "Post Category" +#~ msgstr "Beitragskategorie" + +# @ acf +#~ msgid "Post Format" +#~ msgstr "Beitragsformat" + +# @ acf +#~ msgid "Post Status" +#~ msgstr "Beitragsstatus" + +# @ acf +#~ msgid "Post Taxonomy" +#~ msgstr "Beitrags-Taxonomie" + +# @ acf +#~ msgid "Post Template" +#~ msgstr "Beitrags-Template" + +# @ acf +#~ msgid "User Form" +#~ msgstr "Benutzerformular" + +# @ acf +#~ msgid "Add / Edit" +#~ msgstr "Hinzufügen / Bearbeiten" + +# @ acf +#~ msgid "Register" +#~ msgstr "Registrieren" + +# @ acf +#~ msgid "User Role" +#~ msgstr "Benutzerrolle" + +# @ acf +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Bearbeiten" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Aktualisieren" + +# @ acf +#~ msgid "Uploaded to this post" +#~ msgstr "Zu diesem Beitrag hochgeladen" + +# @ acf +#~ msgid "Expand Details" +#~ msgstr "Details einblenden" + +# @ acf +#~ msgid "Collapse Details" +#~ msgstr "Details ausblenden" + +#~ msgid "Restricted" +#~ msgstr "Eingeschränkt" + +# @ acf +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s Wert ist erforderlich" + +#, php-format +#~ 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 "" +#~ "Um die Aktualisierungsfähigkeit freizuschalten gib bitte Deinen " +#~ "Lizenzschlüssel auf der Aktualisierungen Seite ein. " +#~ "Falls Du keinen besitzt informiere Dich bitte hier hinsichtlich der Preise und Einzelheiten." + +# @ acf +#~ msgid "Normal" +#~ msgstr "Normal" + +#~ msgid "Fancy" +#~ msgstr "Schick" + +#~ msgid "Hero" +#~ msgstr "Hero" + +#~ msgid "Display a random hero image." +#~ msgstr "Ein zufälliges Hero-Bild anzeigen." + +#~ msgid "https://www.advancedcustomfields.com" +#~ msgstr "https://www.advancedcustomfields.com" + +# @ acf +#~ msgid "" +#~ "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "WordPress durch leistungsfähige, professionelle und zugleich intuitive " +#~ "Felder erweitern." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inaktiv (%s)" +#~ msgstr[1] "Inaktiv (%s)" + +#~ msgid "Status" +#~ msgstr "Status" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Schau nach was es Neues in Version %s gibt." + +# @ acf +#~ msgid "Resources" +#~ msgstr "Dokumentation (engl.)" + +#~ msgid "Documentation" +#~ msgstr "Dokumentation" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Danke für das Vertrauen in ACF." + +# @ acf +#~ msgid "Synchronise field group" +#~ msgstr "Synchronisiere Feldgruppe" + +#~ msgid "Apply" +#~ msgstr "Anwenden" + +# @ acf +#~ msgid "Bulk Actions" +#~ msgstr "Massenverarbeitung" + +# @ acf +#~ msgid "Info" +#~ msgstr "Info" + +# @ acf +#~ msgid "What's New" +#~ msgstr "Was gibt es Neues" + +# @ acf +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Willkommen bei Advanced Custom Fields" + +# @ acf +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Vielen Dank fürs Aktualisieren! ACF %s ist größer und besser als je " +#~ "zuvor. Wir hoffen es wird dir gefallen." + +# @ acf +#~ msgid "A Smoother Experience" +#~ msgstr "Eine reibungslosere Erfahrung" + +# @ acf +#~ msgid "Improved Usability" +#~ msgstr "Verbesserte Benutzerfreundlichkeit" + +# @ acf +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Durch die Einführung der beliebten Select2 Bibliothek wurde sowohl die " +#~ "Benutzerfreundlichkeit als auch die Geschwindigkeit einiger Feldtypen wie " +#~ "Beitrags-Objekte, Seiten-Links, Taxonomien sowie von Auswahl-Feldern " +#~ "signifikant verbessert." + +# @ acf +#~ msgid "Improved Design" +#~ msgstr "Verbessertes Design" + +# @ acf +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Viele Felder wurden visuell überarbeitet, damit ACF besser denn je " +#~ "aussieht! Die markantesten Änderungen erfuhren das Galerie-, Beziehungs- " +#~ "sowie das nagelneue oEmbed-Feld!" + +# @ acf +#~ msgid "Improved Data" +#~ msgstr "Verbesserte Datenstruktur" + +# @ acf +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Die Neugestaltung der Datenarchitektur erlaubt es, dass Unterfelder " +#~ "unabhängig von ihren übergeordneten Feldern existieren können. Dies " +#~ "ermöglicht, dass Felder per Drag-and-Drop, in und aus ihren " +#~ "übergeordneten Feldern verschoben werden können!" + +# @ acf +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Macht's gut Add-ons… Hallo PRO" + +# @ acf +#~ msgid "Introducing ACF PRO" +#~ msgstr "Wir dürfen vorstellen… ACF PRO" + +# @ acf +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Wir haben die Art und Weise mit der die Premium-Funktionalität zur " +#~ "Verfügung gestellt wird geändert - das \"wie\" dürfte Dich begeistern!" + +# @ acf +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle vier, vormals separat erhältlichen, Premium-Add-ons wurden in der " +#~ "neuen Pro-Version von ACF zusammengefasst. Besagte " +#~ "Premium-Funktionalität, erhältlich in einer Einzel- sowie einer " +#~ "Entwickler-Lizenz, ist somit erschwinglicher denn je!" + +# @ acf +#~ msgid "Powerful Features" +#~ msgstr "Leistungsstarke Funktionen" + +# @ acf +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO enthält leistungsstarke Funktionen wie wiederholbare Daten, " +#~ "Flexible Inhalte-Layouts, ein wunderschönes Galerie-Feld sowie die " +#~ "Möglichkeit zusätzliche Options-Seiten im Admin-Bereich zu erstellen!" + +# @ acf +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Lies mehr über die ACF PRO Funktionen." + +# @ acf +#~ msgid "Easy Upgrading" +#~ msgstr "Kinderleichte Aktualisierung" + +#~ msgid "" +#~ "Upgrading to ACF PRO is easy. Simply purchase a license online and " +#~ "download the plugin!" +#~ msgstr "" +#~ "Das Upgrade auf ACF PRO ist leicht. Einfach online eine Lizenz erwerben " +#~ "und das Plugin herunterladen!" + +# @ acf +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk." +#~ msgstr "" +#~ "Um möglichen Fragen zu begegnen haben wir haben einen Upgrade-Leitfaden (Engl.) erstellt. Sollten dennoch Fragen " +#~ "auftreten, kontaktiere bitte unser Support-Team ." + +#~ msgid "New Features" +#~ msgstr "Neue Funktionen" + +# @ acf +#~ msgid "Link Field" +#~ msgstr "Link-Feld" + +#~ msgid "" +#~ "The Link field provides a simple way to select or define a link (url, " +#~ "title, target)." +#~ msgstr "" +#~ "Das Link-Feld bietet einen einfachen Weg um einen Link (URL, Titel, Ziel) " +#~ "entweder auszuwählen oder zu definieren." + +# @ acf +#~ msgid "Group Field" +#~ msgstr "Gruppen-Feld" + +#~ msgid "The Group field provides a simple way to create a group of fields." +#~ msgstr "" +#~ "Das Gruppen-Feld bietet einen einfachen Weg eine Gruppe von Feldern zu " +#~ "erstellen." + +# @ acf +#~ msgid "oEmbed Field" +#~ msgstr "oEmbed-Feld" + +#~ msgid "" +#~ "The oEmbed field allows an easy way to embed videos, images, tweets, " +#~ "audio, and other content." +#~ msgstr "" +#~ "Das oEmbed-Feld erlaubt auf eine einfache Weise Videos, Bilder, Tweets, " +#~ "Audio und weitere Inhalte einzubetten." + +# @ acf +#~ msgid "Clone Field" +#~ msgstr "Klon-Feld" + +#~ msgid "The clone field allows you to select and display existing fields." +#~ msgstr "" +#~ "Das Klon-Feld erlaubt es dir bestehende Felder auszuwählen und anzuzeigen." + +# @ acf +#~ msgid "More AJAX" +#~ msgstr "Mehr AJAX" + +# @ acf +#~ msgid "More fields use AJAX powered search to speed up page loading." +#~ msgstr "" +#~ "Mehr Felder verwenden nun eine AJAX-basierte Suche, die die Ladezeiten " +#~ "von Seiten deutlich verringert." + +# @ acf +#~ msgid "" +#~ "New auto export to JSON feature improves speed and allows for " +#~ "syncronisation." +#~ msgstr "" +#~ "Ein neuer automatischer Export nach JSON verbessert die Geschwindigkeit " +#~ "und erlaubt die Synchronisation." + +# @ acf +#~ msgid "Easy Import / Export" +#~ msgstr "Einfacher Import / Export" + +#~ msgid "Both import and export can easily be done through a new tools page." +#~ msgstr "" +#~ "Importe sowie Exporte können beide einfach auf der neuen Werkzeug-Seite " +#~ "durchgeführt werden." + +# @ acf +#~ msgid "New Form Locations" +#~ msgstr "Neue Positionen für Formulare" + +# @ acf +#~ msgid "" +#~ "Fields can now be mapped to menus, menu items, comments, widgets and all " +#~ "user forms!" +#~ msgstr "" +#~ "Felder können nun auch Menüs, Menüpunkten, Kommentaren, Widgets und allen " +#~ "Benutzer-Formularen zugeordnet werden!" + +# @ acf +#~ msgid "More Customization" +#~ msgstr "Weitere Anpassungen" + +#~ msgid "" +#~ "New PHP (and JS) actions and filters have been added to allow for more " +#~ "customization." +#~ msgstr "" +#~ "Neue Aktionen und Filter für PHP und JS wurden hinzugefügt um noch mehr " +#~ "Anpassungen zu erlauben." + +#~ msgid "Fresh UI" +#~ msgstr "Eine modernisierte Benutzeroberfläche" + +#~ msgid "" +#~ "The entire plugin has had a design refresh including new field types, " +#~ "settings and design!" +#~ msgstr "" +#~ "Das Design des kompletten Plugins wurde modernisiert, inklusive neuer " +#~ "Feldtypen, Einstellungen und Aussehen!" + +# @ acf +#~ msgid "New Settings" +#~ msgstr "Neue Einstellungen" + +# @ acf +#~ msgid "" +#~ "Field group settings have been added for Active, Label Placement, " +#~ "Instructions Placement and Description." +#~ msgstr "" +#~ "Die Feldgruppen wurden um die Einstellungen für das Aktivieren und " +#~ "Deaktivieren der Gruppe, die Platzierung von Beschriftungen und " +#~ "Anweisungen sowie eine Beschreibung erweitert." + +# @ acf +#~ msgid "Better Front End Forms" +#~ msgstr "Verbesserte Frontend-Formulare" + +# @ acf +#~ msgid "" +#~ "acf_form() can now create a new post on submission with lots of new " +#~ "settings." +#~ msgstr "" +#~ "acf_form() kann jetzt einen neuen Beitrag direkt beim Senden erstellen " +#~ "inklusive vieler neuer Einstellungsmöglichkeiten." + +# @ acf +#~ msgid "Better Validation" +#~ msgstr "Bessere Validierung" + +# @ acf +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." +#~ msgstr "" +#~ "Die Formular-Validierung wird nun mit Hilfe von PHP + AJAX erledigt, " +#~ "anstelle nur JS zu verwenden." + +# @ acf +#~ msgid "Moving Fields" +#~ msgstr "Verschiebbare Felder" + +# @ acf +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents." +#~ msgstr "" +#~ "Die neue Feldgruppen-Funktionalität erlaubt es ein Feld zwischen Gruppen " +#~ "und übergeordneten Gruppen frei zu verschieben." + +# @ acf +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Wir glauben Du wirst die Änderungen in %s lieben." + +# @ acf +#~ msgid "Add-ons" +#~ msgstr "Zusatz-Module" + +# @ acf +#~ msgid "Download & Install" +#~ msgstr "Download & Installieren" + +# @ acf +#~ msgid "Installed" +#~ msgstr "Installiert" + +# @ acf +#~ msgid "Shown when entering data" +#~ msgstr "Legt fest welche Maße die Vorschau in der Bearbeitungsansicht hat" + +#~ msgid "Testimonial" +#~ msgstr "Testimonial" + +#~ msgid "A custom testimonial block." +#~ msgstr "Ein individueller Testimonial-Block." + +#~ msgid "Slider" +#~ msgstr "Slider" + +# @ acf +#~ msgid "A custom gallery slider." +#~ msgstr "Ein individueller Galerie-Slider." + +# @ acf +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +# @ acf +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s Feldgruppe synchronisiert." +#~ msgstr[1] "%s Feldgruppen synchronisiert." + +# @ acf +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "" +#~ "Fehler. Die Liste der Zusatz-Module kann nicht geladen werden" + +#~ msgid "Error validating request" +#~ msgstr "Fehler bei der Überprüfung der Anfrage" + +# @ acf +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields Datenbank-Upgrade" + +# @ acf +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Bevor du die großartigen neuen Funktionen nutzen kannst ist ein Upgrade " +#~ "der Datenbank notwendig." + +# @ acf +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Wir haben den Aktualisierungsprozess so einfach wie möglich gehalten; melde Dich mit Deinem Store-Account an und fordere ein " +#~ "Gratisexemplar von ACF PRO an!" + +# @ acf +#~ msgid "Under the Hood" +#~ msgstr "Unter der Haube" + +# @ acf +#~ msgid "Smarter field settings" +#~ msgstr "Intelligentere Feld-Einstellungen" + +# @ acf +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACF speichert nun die Feld-Einstellungen als individuelle Beitrags-Objekte" + +# @ acf +#~ msgid "Better version control" +#~ msgstr "Verbesserte Versionskontrolle" + +# @ acf +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Die neue JSON Export Funktionalität erlaubt die Versionskontrolle von " +#~ "Feld-Einstellungen" + +# @ acf +#~ msgid "Swapped XML for JSON" +#~ msgstr "JSON ersetzt XML" + +# @ acf +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Das Import- und Export-Modul nutzt nun JSON anstelle XML" + +# @ acf +#~ msgid "New Forms" +#~ msgstr "Neue Formulare" + +# @ acf +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Ein neues Feld für das Einbetten von Inhalten wurde hinzugefügt" + +# @ acf +#~ msgid "New Gallery" +#~ msgstr "Neue Galerie" + +# @ acf +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "" +#~ "Das Galerie-Feld wurde einem längst überfälligen Face-Lifting unterzogen" + +# @ acf +#~ msgid "Relationship Field" +#~ msgstr "Beziehungs-Feld" + +# @ acf +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Neue Einstellungen innerhalb des Beziehungs-Feldes um nach Suche, " +#~ "Beitrags-Typ und oder Taxonomie filtern zu können" + +# @ acf +#~ msgid "New archives group in page_link field selection" +#~ msgstr "" +#~ "Im neuen Seitenlink-Feld werden alle Archiv-URL's der verfügbaren Custom " +#~ "Post Types in einer Options-Gruppe zusammengefasst" + +# @ acf +#~ msgid "Better Options Pages" +#~ msgstr "Verbesserte Options-Seiten" + +# @ acf +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Neue Funktionen für die Options-Seite erlauben die Erstellung von Menüs " +#~ "für übergeordnete Seiten sowie Unterseiten" + +# @ acf +#~ msgid "None" +#~ msgstr "Nur Text" + +#~ msgid "Error." +#~ msgstr "Fehler." + +# @ acf +#~ msgid "remove {layout}?" +#~ msgstr "{layout} entfernen?" + +# @ acf +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dieses Feld erfordert mindestens {min} {identifier}" + +# @ acf +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})" + +# @ acf +#~ msgid "Parent fields" +#~ msgstr "Übergeordnete Felder" + +# @ acf +#~ msgid "Sibling fields" +#~ msgstr "Geschwister-Felder" + +# @ acf +#~ msgid "Locating" +#~ msgstr "Lokalisiere" + +# @ acf +#~ msgid "No embed found for the given URL." +#~ msgstr "Keine Inhalte für die eingegebene URL gefunden." + +# @ acf +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimum der Einträge mit ({min} Einträge) erreicht" + +# @ acf +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomie" + +# @ acf +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportieren der Feld-Gruppen nach PHP" + +# @ acf +#~ msgid "Download export file" +#~ msgstr "JSON-Datei exportieren" + +# @ acf +#~ msgid "Generate export code" +#~ msgstr "Erstelle PHP-Code" + +# @ acf +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Ein Tab-Feld wird nicht korrekt dargestellt, wenn es zu einem " +#~ "Wiederholung- oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden " +#~ "ist" + +# @ acf +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Mit \"Tab Feldern\" können Felder für eine bessere Struktur im Editor in " +#~ "Tabs zusammengefasst werden." + +# @ acf +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle Felder, die auf dieses \"Tab Feld\" folgen (oder bis ein weiteres " +#~ "\"Tab Feld\" definiert ist), werden in einem Tab mit dem Namen dieses " +#~ "Felds zusammengefasst." + +# @ acf +#~ msgid "Getting Started" +#~ msgstr "Erste Schritte" + +# @ acf +#~ msgid "Field Types" +#~ msgstr "Feld-Typen" + +# @ acf +#~ msgid "Functions" +#~ msgstr "Funktionen" + +# @ acf +#~ msgid "Actions" +#~ msgstr "Aktionen" + +#~ msgid "How to" +#~ msgstr "Kurzanleitungen" + +# @ acf +#~ msgid "Tutorials" +#~ msgstr "Ausführliche Anleitungen" + +#~ msgid "FAQ" +#~ msgstr "Häufig gestellte Fragen" + +#~ msgid "Term meta upgrade not possible (termmeta table does not exist)" +#~ msgstr "" +#~ "Term Meta-Aktualisierung war nicht möglich (die termmeta-Tabelle " +#~ "existiert nicht)" + +# @ acf +#~ msgid "Error" +#~ msgstr "Fehler" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "Ein Feld bedarf Deiner Aufmerksamkeit." +#~ msgstr[1] "%d Felder bedürfen Deiner Aufmerksamkeit." + +#~ msgid "" +#~ "Error validating ACF PRO license URL (website does not match). Please re-" +#~ "activate your license" +#~ msgstr "" +#~ "Fehler bei der Überprüfung der ACF PRO Lizenz URL (Webseiten stimmen " +#~ "nicht überein). Bitte reaktiviere deine Lizenz" + +# @ acf +#~ msgid "'How to' guides" +#~ msgstr "Kurzanleitungen" + +# @ acf +#~ msgid "Created by" +#~ msgstr "Erstellt von" + +# @ acf +#~ msgid "See what's new" +#~ msgstr "Was ist neu" + +# @ acf +#~ msgid "eg. Show extra content" +#~ msgstr "z.B. Zeige zusätzliche Inhalte" + +#~ msgid "" +#~ "Error validating license URL (website does not match). Please re-activate " +#~ "your license" +#~ msgstr "" +#~ "Fehler bei der Überprüfung der Lizenz-URL (Webseite stimmt nicht " +#~ "überein). Bitte reaktiviere Deine Lizenz" + +# @ acf +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Erfolgreich. Der Import hat %s Feld-Gruppen hinzugefügt: %s" + +# @ acf +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Warnung. Der Import hat %s Feld-Gruppen erkannt, die schon " +#~ "vorhanden sind und diese ignoriert: %s" + +# @ acf +#~ msgid "Upgrade ACF" +#~ msgstr "Aktualisiere ACF" + +# @ acf +#~ msgid "Upgrade" +#~ msgstr "Aktualisieren" + +# @ acf +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "Die folgenden Seiten erfordern eine Datenbank- Aktualisierung. Markiere " +#~ "die gewünschten Seiten und klicke \\\"Aktualisiere Datenbank\\\"." + +# @ acf +#~ msgid "Select" +#~ msgstr "Auswahlmenü" + +# @ acf +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "" +#~ "Verbindungsfehler. Entschuldige, versuche es bitte später noch " +#~ "einmal" + +# @ acf +#~ msgid "Done" +#~ msgstr "Fertig" + +# @ acf +#~ msgid "Today" +#~ msgstr "Heute" + +# @ acf +#~ msgid "Show a different month" +#~ msgstr "Zeige einen anderen Monat" + +# @ acf +#~ msgid "See what's new in" +#~ msgstr "Neuerungen in" + +#~ msgid "Upgrading data to" +#~ msgstr "Aktualisiere Daten auf" + +# @ acf +#~ msgid "Return format" +#~ msgstr "Rückgabe-Format" + +# @ acf +#~ msgid "uploaded to this post" +#~ msgstr "zu diesem Beitrag hochgeladen" + +# @ acf +#~ msgid "File Name" +#~ msgstr "Dateiname" + +# @ acf +#~ msgid "File Size" +#~ msgstr "Dateigröße" + +# @ acf +#~ msgid "No File selected" +#~ msgstr "Keine Datei ausgewählt" + +# @ acf +#~ msgid "License" +#~ msgstr "Lizenz" + +# @ acf +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Um die Aktualisierungs-Fähigkeit freizuschalten, trage bitte Deinen " +#~ "Lizenzschlüssel im darunterliegenden Feld ein. Solltest Du noch keinen " +#~ "Lizenzschlüssel besitzen, informiere Dich bitte hier über die" + +# @ acf +#~ msgid "details & pricing" +#~ msgstr "Details und Preise." + +# @ acf +#~ 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 "" +#~ "Um die Aktualisierungen freizuschalten, trage bitte Deinen " +#~ "Lizenzschlüssel auf der Aktualisierungen-Seite ein. " +#~ "Solltest Du noch keinen Lizenzschlüssel besitzen, informiere Dich bitte " +#~ "hier über die Details und Preise" + +# @ acf +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +# @ acf +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +# @ acf +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +# @ acf +#~ msgid "Drag and drop to reorder" +#~ msgstr "Mittels Drag-and-Drop die Reihenfolge ändern" + +# @ acf +#~ msgid "Add new %s " +#~ msgstr "Neue %s " + +# @ acf +#~ msgid "Save Options" +#~ msgstr "Optionen speichern" + +#~ msgid "Sync Available" +#~ msgstr "Synchronisierung verfügbar" + +# @ acf +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Bitte beachte, dass der gesamte Text zuerst durch eine WordPress Funktion " +#~ "gefiltert wird. Siehe: " + +# @ acf +#~ msgid "Warning" +#~ msgstr "Warnung" + +# @ acf +#~ msgid "Show Field Keys" +#~ msgstr "Zeige Feld-Schlüssel" + +# @ acf +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "" +#~ "Felder-Gruppen werden nach diesem Wert sortiert, vom niedrigsten zum " +#~ "höchsten Wert." + +# @ acf +#~ msgid "Hide / Show All" +#~ msgstr "Alle Verstecken" + +# @ acf +#~ msgid "5.2.6" +#~ msgstr "5.2.6" diff --git a/lang/pro/acf-de_DE_formal.po b/lang/pro/acf-de_DE_formal.po new file mode 100644 index 0000000..5d37b72 --- /dev/null +++ b/lang/pro/acf-de_DE_formal.po @@ -0,0 +1,3865 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 12:59+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Ralf Koller \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +# @ acf +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +# @ acf +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Name des Block-Typs wird benötigt." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Block-Typ „%s“ ist bereits registriert." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Zum Bearbeiten wechseln" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Zur Vorschau wechseln" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Ausrichtung des Inhalts ändern" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s Einstellungen" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +# @ acf +#: pro/options-page.php:47 +msgid "Options" +msgstr "Optionen" + +# @ acf +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Aktualisieren" + +# @ acf +#: 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 "" + +# @ acf +#: pro/updates.php:279, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Erneut suchen" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "" + +# @ acf +#: pro/admin/admin-options-page.php:195 +msgid "Publish" +msgstr "Veröffentlichen" + +# @ acf +#: 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" + +# @ acf +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Feldgruppe bearbeiten" + +# @ acf +#: pro/admin/admin-updates.php:52 +msgid "Error. Could not connect to update server" +msgstr "" +"Fehler. Es konnte keine Verbindung zum Aktualisierungsserver " +"hergestellt werden" + +# @ acf +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Aktualisierungen" + +#: pro/admin/admin-updates.php:209 +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:196 +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 "Klon" + +# @ acf +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Felder" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten" + +# @ acf +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "Anzeige" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)" + +# @ acf +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Gibt die Art an wie die ausgewählten Felder ausgegeben werden sollen" + +# @ acf +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Block" + +# @ acf +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabelle" + +# @ acf +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Reihe" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Beschriftungen werden als %s angezeigt" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Präfix für Feldbeschriftungen" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Werte werden als %s gespeichert" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Präfix für Feldnamen" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Unbekanntes Feld" + +# @ acf +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(ohne Titel)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Unbekannte Feldgruppe" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle Felder der Feldgruppe %s" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexible Inhalte" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "Layout" +msgstr[1] "Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "Einträge" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "Dieses Feld erlaubt höchstens {max} {label} {identifier}" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} möglich (max {max})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} erforderlich (min {min})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibler Inhalt benötigt mindestens ein Layout" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "Klicke \"%s\" zum Erstellen des Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Ziehen zum Sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Layout hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Layout duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Layout entfernen" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Zum Auswählen anklicken" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Layout sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Sortieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Layout löschen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Löschen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Layout duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Duplizieren" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Neues Layout hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Erstellen" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Beschriftung" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Name" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Button-Beschriftung" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Mindestzahl an Layouts" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Höchstzahl an Layouts" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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] "" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Bild zur Galerie hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maximale Auswahl erreicht" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Länge" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Bearbeiten" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Entfernen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Titel" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Bildunterschrift" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alt Text" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Beschreibung" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Zur Galerie hinzufügen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Massenverarbeitung" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sortiere nach Upload-Datum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sortiere nach Änderungs-Datum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sortiere nach Titel" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Aktuelle Sortierung umkehren" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Schließen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Rückgabeformat" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Bild-Array" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Bild-URL" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Bild-ID" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Maße der Vorschau" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Einfügen" + +#: pro/fields/class-acf-field-gallery.php:603 +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:607 +msgid "Append to the end" +msgstr "Anhängen" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Voranstellen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Mediathek" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Beschränkt die Auswahl in der Mediathek" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Alle" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Für den Beitrag hochgeladen" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimale Auswahl" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maximale Auswahl" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Beschränkt welche Bilder hochgeladen werden können" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Breite" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Höhe" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Dateigröße" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maximum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Erlaubte Dateiformate" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Eine durch Komma getrennte Liste. Leer lassen um alle Dateiformate zu " +"erlauben" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Wiederholung" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Mindestzahl der Einträge hat ({min} Reihen) erreicht" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Höchstzahl der Einträge hat ({max} Reihen) erreicht" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Unterfelder" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Zugeklappt" + +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "" +"Wähle ein Unterfelder welches im zugeklappten Zustand angezeigt werden soll" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:187 +msgid "Minimum Rows" +msgstr "Mindestzahl der Einträge" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Höchstzahl der Einträge" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "Ungültiger Nonce." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Eintrag hinzufügen" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Zeile duplizieren" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Eintrag löschen" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +# @ acf +#: pro/locations/class-acf-location-block.php:71 +msgid "No block types exist" +msgstr "Keine Blocktypen vorhanden" + +# @ acf +#: pro/locations/class-acf-location-options-page.php:22 +msgid "Options Page" +msgstr "Options-Seite" + +# @ acf +#: pro/locations/class-acf-location-options-page.php:70 +msgid "No options pages exist" +msgstr "Keine Options-Seiten vorhanden" + +# @ acf +#: pro/admin/views/html-settings-updates.php:6 +msgid "Deactivate License" +msgstr "Lizenz deaktivieren" + +# @ acf +#: 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." + +# @ acf +#: pro/admin/views/html-settings-updates.php:41 +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 "" + +# @ acf +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Aktualisierungsinformationen" + +# @ acf +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Installierte Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Aktuellste Version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Aktualisierung verfügbar" + +# @ acf +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nein" + +# @ acf +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Ja" + +# @ acf +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Bitte geben Sie oben Ihren Lizenzschlüssel ein um die " +"Aktualisierungsfähigkeit freizuschalten" + +# @ acf +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Plugin aktualisieren" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +# @ acf +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Änderungsprotokoll" + +# @ acf +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Hinweis zum Upgrade" + +# @ acf +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +# @ acf +#~ msgid "Field Groups" +#~ msgstr "Feldgruppen" + +# @ acf +#~ msgid "Field Group" +#~ msgstr "Feldgruppe" + +# @ acf +#~ msgid "Add New Field Group" +#~ msgstr "Neue Feldgruppe erstellen" + +# @ acf +#~ msgid "Edit Field Group" +#~ msgstr "Feldgruppe bearbeiten" + +# @ acf +#~ msgid "New Field Group" +#~ msgstr "Neue Feldgruppe" + +# @ acf +#~ msgid "View Field Group" +#~ msgstr "Feldgruppe anzeigen" + +# @ acf +#~ msgid "Search Field Groups" +#~ msgstr "Feldgruppen durchsuchen" + +# @ acf +#~ msgid "No Field Groups found" +#~ msgstr "Keine Feldgruppen gefunden" + +# @ acf +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Keine Feldgruppen im Papierkorb gefunden" + +# @ acf +#~ msgid "Field" +#~ msgstr "Feld" + +# @ acf +#~ msgid "Add New Field" +#~ msgstr "Feld hinzufügen" + +# @ acf +#~ msgid "Edit Field" +#~ msgstr "Feld bearbeiten" + +# @ acf +#~ msgid "New Field" +#~ msgstr "Neues Feld" + +# @ acf +#~ msgid "View Field" +#~ msgstr "Feld anzeigen" + +# @ acf +#~ msgid "Search Fields" +#~ msgstr "Felder suchen" + +# @ acf +#~ msgid "No Fields found" +#~ msgstr "Keine Felder gefunden" + +# @ acf +#~ msgid "No Fields found in Trash" +#~ msgstr "Keine Felder im Papierkorb gefunden" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Deaktiviert (%s)" +#~ msgstr[1] "Deaktiviert (%s)" + +# @ acf +#~ msgid "(no label)" +#~ msgstr "(keine Beschriftung)" + +# @ acf +#~ msgid "copy" +#~ msgstr "Kopie" + +# @ acf +#~ msgid "Posts" +#~ msgstr "Beiträge" + +# @ acf +#~ msgid "Taxonomies" +#~ msgstr "Taxonomien" + +# @ acf +#~ msgid "Attachments" +#~ msgstr "Anhänge" + +# @ acf +#~ msgid "Comments" +#~ msgstr "Kommentare" + +# @ acf +#~ msgid "Widgets" +#~ msgstr "Widgets" + +#~ msgid "Menus" +#~ msgstr "Menüs" + +#~ msgid "Menu items" +#~ msgstr "Menüelemente" + +# @ acf +#~ msgid "Users" +#~ msgstr "Benutzer" + +# @ acf +#~ msgid "Blocks" +#~ msgstr "Blöcke" + +# @ acf +#~ msgid "Field group updated." +#~ msgstr "Feldgruppe aktualisiert." + +# @ acf +#~ msgid "Field group deleted." +#~ msgstr "Feldgruppe gelöscht." + +# @ acf +#~ msgid "Field group published." +#~ msgstr "Feldgruppe veröffentlicht." + +# @ acf +#~ msgid "Field group saved." +#~ msgstr "Feldgruppe gespeichert." + +# @ acf +#~ msgid "Field group submitted." +#~ msgstr "Feldgruppe übertragen." + +# @ acf +#~ msgid "Field group scheduled for." +#~ msgstr "Feldgruppe geplant für." + +# @ acf +#~ msgid "Field group draft updated." +#~ msgstr "Entwurf der Feldgruppe aktualisiert." + +# @ acf +#~ msgid "The string \"field_\" may not be used at the start of a field name" +#~ msgstr "Der Feldname darf nicht mit \"field_\" beginnen" + +# @ acf +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "" +#~ "Diese Feld kann erst verschoben werden, wenn die Änderungen gespeichert " +#~ "wurden" + +# @ acf +#~ msgid "Field group title is required" +#~ msgstr "Es ist ein Titel für die Feldgruppe erforderlich" + +# @ acf +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Wirklich in den Papierkorb verschieben?" + +# @ acf +#~ msgid "No toggle fields available" +#~ msgstr "Es liegen keine Auswahl-Feldtypen vor" + +# @ acf +#~ msgid "Move Custom Field" +#~ msgstr "Individuelles Feld verschieben" + +# @ acf +#~ msgid "Checked" +#~ msgstr "Ausgewählt" + +# @ acf +#~ msgid "(this field)" +#~ msgstr "(dieses Feld)" + +# @ acf +#~ msgid "or" +#~ msgstr "oder" + +# @ acf +#~ msgid "Null" +#~ msgstr "Null" + +#~ msgid "Has any value" +#~ msgstr "Hat einen Wert" + +#~ msgid "Has no value" +#~ msgstr "Hat keinen Wert" + +# @ acf +#~ msgid "Value is equal to" +#~ msgstr "Wert ist gleich" + +# @ acf +#~ msgid "Value is not equal to" +#~ msgstr "Wert ist ungleich" + +# @ acf +#~ msgid "Value matches pattern" +#~ msgstr "Wert entspricht regulärem Ausdruck" + +#~ msgid "Value contains" +#~ msgstr "Wert enthält" + +# @ acf +#~ msgid "Value is greater than" +#~ msgstr "Wert ist größer als" + +# @ acf +#~ msgid "Value is less than" +#~ msgstr "Wert ist kleiner als" + +#~ msgid "Selection is greater than" +#~ msgstr "Auswahl ist größer als" + +# @ acf +#~ msgid "Selection is less than" +#~ msgstr "Auswahl ist kleiner als" + +# @ acf +#~ msgid "Location" +#~ msgstr "Position" + +#~ msgid "Settings" +#~ msgstr "Einstellungen" + +#~ msgid "Field Keys" +#~ msgstr "Feldschlüssel" + +#~ msgid "Active" +#~ msgstr "Aktiviert" + +#~ msgid "Inactive" +#~ msgstr "Inaktiv" + +# @ acf +#~ msgid "Move Complete." +#~ msgstr "Verschieben erfolgreich abgeschlossen." + +# @ acf +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Das Feld \"%s\" wurde in die %s Feldgruppe verschoben" + +# @ acf +#~ msgid "Close Window" +#~ msgstr "Schließen" + +# @ acf +#~ msgid "Please select the destination for this field" +#~ msgstr "In welche Feldgruppe solle dieses Feld verschoben werden" + +# @ acf +#~ msgid "Move Field" +#~ msgstr "Feld verschieben" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Veröffentlicht (%s)" +#~ msgstr[1] "Veröffentlicht (%s)" + +#~ msgid "Review local JSON changes" +#~ msgstr "Lokale JSON-Änderungen überprüfen" + +# @ acf +#~ msgid "Loading diff" +#~ msgstr "Diff laden" + +# @ acf +#~ msgid "Sync changes" +#~ msgstr "Änderungen synchronisieren" + +#~ msgid "Key" +#~ msgstr "Schlüssel" + +# @ acf +#~ msgid "Local JSON" +#~ msgstr "Lokales JSON" + +#~ msgid "Various" +#~ msgstr "Verschiedene" + +#, php-format +#~ msgid "Located in theme: %s" +#~ msgstr "Befindet sich in Theme: %s" + +#, php-format +#~ msgid "Located in plugin: %s" +#~ msgstr "Befindet sich in Plugin: %s" + +# @ acf +#, php-format +#~ msgid "Located in: %s" +#~ msgstr "Befindet sich in: %s" + +# @ acf +#~ msgid "Sync available" +#~ msgstr "Synchronisierung verfügbar" + +# @ acf +#~ msgid "Sync" +#~ msgstr "Synchronisieren" + +#~ msgid "Review changes" +#~ msgstr "Änderungen überprüfen" + +# @ acf +#~ msgid "Import" +#~ msgstr "Importieren" + +#~ msgid "Saved" +#~ msgstr "Gespeichert" + +#~ msgid "Awaiting save" +#~ msgstr "Warten auf Speichern" + +# @ acf +#~ msgid "Duplicate this item" +#~ msgstr "Dieses Element duplizieren" + +# @ acf +#, php-format +#~ msgid "Field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "Feldgruppe dupliziert." +#~ msgstr[1] "%s Feldgruppen dupliziert." + +# @ acf +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Feldgruppe synchronisiert." +#~ msgstr[1] "%s Feldgruppen synchronisiert." + +# @ acf +#, php-format +#~ msgid "Select %s" +#~ msgstr "%s auswählen" + +#~ msgid "Tools" +#~ msgstr "Werkzeuge" + +# @ acf +#~ msgid "Upgrade Database" +#~ msgstr "Datenbank upgraden" + +# @ acf +#~ msgid "Review sites & upgrade" +#~ msgstr "Übersicht Websites & Upgrades" + +# @ acf +#~ msgid "Custom Fields" +#~ msgstr "Individuelle Felder" + +#~ msgid "Overview" +#~ msgstr "Übersicht" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin provides a visual form builder to " +#~ "customize WordPress edit screens with extra content fields, and an " +#~ "intuitive API to display custom field values in any theme template file." +#~ msgstr "" +#~ "Das Advanced Custom Fields-Plugin stellt einen visuellen Baukasten für " +#~ "Formulare zur Verfügung mit dessen Hilfe die Seiten der zu bearbeitenden " +#~ "Inhalte um extra Inhalts-Felder erweitert werden können. Es bietet zudem " +#~ "ein API um die Inhalte individueller Felder in den Template-Dateien von " +#~ "Themes darzustellen." + +#, php-format +#~ 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 Sie ihre erste Feldgruppe erstellen, empfehlen wir Ihnen zuerst " +#~ "einmal unser Erste Schritte Handbuch " +#~ "durchzulesen um sich mit der Philosophie hinter dem Plugin und den " +#~ "bewährtesten Praktiken vertraut zu machen." + +#~ msgid "" +#~ "Please use the Help & Support tab to get in touch should you find " +#~ "yourself requiring assistance." +#~ msgstr "" +#~ "Bitte nutzen Sie das Hilfe & Support-Tab um sich mit uns in Verbindung zu " +#~ "setzen für den Fall, dass Sie Hilfe benötigen." + +#~ msgid "Help & Support" +#~ msgstr "Hilfe & Support" + +#~ 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 sind geradezu fanatisch im Bezug auf Support und wollen, dass Sie das " +#~ "beste aus ihrer Website mit ACF herausholen. Sollten Sie auf Probleme " +#~ "stossen gibt es mehrere Stellen an denen Sie Hilfe finden können:" + +#, php-format +#~ msgid "" +#~ "Documentation. Our extensive " +#~ "documentation contains references and guides for most situations you may " +#~ "encounter." +#~ msgstr "" +#~ "Dokumentation. Unsere umfangreiche " +#~ "Dokumentation enthält Referenzen und Anleitungen zu den meisten Situation " +#~ "in die Sie geraten könnten." + +#, php-format +#~ 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 in unseren " +#~ "Foren eine aktive und freundliche Community, die Ihnen vielleicht " +#~ "behilflich sein kann sich in der ACF-Welt zurechtzufinden." + +#, php-format +#~ 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 Ihnen bei tiefer gehenden technischen " +#~ "Herausforderungen helfend zur Seite stehen." + +# @ acf +#~ msgid "Information" +#~ msgstr "Information" + +# @ acf +#, php-format +#~ msgid "Version %s" +#~ msgstr "Version %s" + +# @ acf +#~ msgid "View details" +#~ msgstr "Details anzeigen" + +#~ msgid "Visit website" +#~ msgstr "Website besuchen" + +# @ acf +#~ msgid "and" +#~ msgstr "und" + +# @ acf +#~ msgid "Export Field Groups" +#~ msgstr "Feldgruppen exportieren" + +#~ msgid "Generate PHP" +#~ msgstr "PHP erstellen" + +# @ acf +#~ msgid "No field groups selected" +#~ msgstr "Keine Feldgruppen ausgewählt" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "Eine Feldgruppe wurde exportiert." +#~ msgstr[1] "%s Feldgruppen wurden exportiert." + +# @ acf +#~ msgid "Select Field Groups" +#~ msgstr "Feldgruppen auswählen" + +# @ acf +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Entscheiden Sie welche Feldgruppen Sie exportieren möchten und wählen " +#~ "dann das Exportformat. Benutzen Sie den „Datei exportieren“-Button, um " +#~ "eine JSON-Datei zu generieren, welche Sie im Anschluss in eine andere ACF-" +#~ "Installation importieren können. Verwenden Sie den „PHP erstellen“-" +#~ "Button, um den resultierenden PHP-Code in ihr Theme einfügen zu können." + +# @ acf +#~ msgid "Export File" +#~ msgstr "Datei exportieren" + +# @ acf +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Der nachfolgende Code kann dazu verwendet werden eine lokale Version der " +#~ "ausgewählten Feldgruppe(n) zu registrieren. Eine lokale Feldgruppe bietet " +#~ "viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische " +#~ "Felder und Einstellungen. Kopieren Sie einfach folgenden Code und füge " +#~ "ihn in die functions.php oder eine externe Datei in Ihrem Theme ein." + +#~ msgid "Copy to clipboard" +#~ msgstr "In die Zwischenablage kopieren" + +#~ msgid "Copied" +#~ msgstr "Kopiert" + +# @ acf +#~ msgid "Import Field Groups" +#~ msgstr "Feldgruppen importieren" + +# @ acf +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Wählen Sie die Advanced Custom Fields JSON-Datei aus, welche Sie " +#~ "importieren möchten. Nach dem Klicken des „Datei importieren“-Buttons " +#~ "wird ACF die Feldgruppen hinzufügen." + +# @ acf +#~ msgid "Select File" +#~ msgstr "Datei auswählen" + +# @ acf +#~ msgid "Import File" +#~ msgstr "Datei importieren" + +# @ acf +#~ msgid "No file selected" +#~ msgstr "Keine Datei ausgewählt" + +# @ acf +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Fehler beim Upload der Datei. Bitte versuchen Sie es erneut" + +# @ acf +#~ msgid "Incorrect file type" +#~ msgstr "Falscher Dateityp" + +# @ acf +#~ msgid "Import file empty" +#~ msgstr "Die importierte Datei ist leer" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "Eine Feldgruppe importiert" +#~ msgstr[1] "%s Feldgruppen importiert" + +# @ acf +#~ msgid "Conditional Logic" +#~ msgstr "Bedingungen für die Anzeige" + +# @ acf +#~ msgid "Show this field if" +#~ msgstr "Zeige dieses Feld, wenn" + +# @ acf +#~ msgid "Add rule group" +#~ msgstr "Regelgruppe hinzufügen" + +# @ acf +#~ msgid "Edit field" +#~ msgstr "Feld bearbeiten" + +# @ acf +#~ msgid "Duplicate field" +#~ msgstr "Feld duplizieren" + +# @ acf +#~ msgid "Move field to another group" +#~ msgstr "Feld in eine andere Gruppe verschieben" + +# @ acf +#~ msgid "Move" +#~ msgstr "Verschieben" + +# @ acf +#~ msgid "Delete field" +#~ msgstr "Feld löschen" + +# @ acf +#~ msgid "Field Label" +#~ msgstr "Feldbeschriftung" + +# @ acf +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "" +#~ "Dieser Name wird in der Bearbeitungsansicht eines Beitrags angezeigt" + +# @ acf +#~ msgid "Field Name" +#~ msgstr "Feldname" + +# @ acf +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "" +#~ "Einzelnes Wort ohne Leerzeichen. Es sind nur Unter- und Bindestriche als " +#~ "Sonderzeichen erlaubt" + +# @ acf +#~ msgid "Field Type" +#~ msgstr "Feldtyp" + +# @ acf +#~ msgid "Instructions" +#~ msgstr "Anweisungen" + +# @ acf +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Anweisungen für die Autoren. Sie werden in der Bearbeitungsansicht " +#~ "angezeigt" + +# @ acf +#~ msgid "Required?" +#~ msgstr "Erforderlich?" + +# @ acf +#~ msgid "Wrapper Attributes" +#~ msgstr "Wrapper-Attribute" + +# @ acf +#~ msgid "width" +#~ msgstr "Breite" + +# @ acf +#~ msgid "class" +#~ msgstr "Klasse" + +# @ acf +#~ msgid "id" +#~ msgstr "ID" + +# @ acf +#~ msgid "Close Field" +#~ msgstr "Feld schließen" + +# @ acf +#~ msgid "Order" +#~ msgstr "Reihenfolge" + +# @ acf +#~ msgid "Type" +#~ msgstr "Typ" + +# @ acf +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Es sind noch keine Felder angelegt. Klicken Sie den + Feld " +#~ "hinzufügen-Button und erstellen Sie Ihr erstes Feld." + +# @ acf +#~ msgid "+ Add Field" +#~ msgstr "+ Feld hinzufügen" + +# @ acf +#~ msgid "Rules" +#~ msgstr "Regeln" + +# @ acf +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "Erstellen Sie ein Regelwerk das festlegt welche Bearbeitungs-Ansichten " +#~ "diese Advanced Custom Fields nutzen" + +# @ acf +#~ msgid "Style" +#~ msgstr "Stil" + +# @ acf +#~ msgid "Standard (WP metabox)" +#~ msgstr "WP-Metabox (Standard)" + +# @ acf +#~ msgid "Seamless (no metabox)" +#~ msgstr "Übergangslos ohne Metabox" + +# @ acf +#~ msgid "Position" +#~ msgstr "Position" + +# @ acf +#~ msgid "High (after title)" +#~ msgstr "Nach dem Titel vor dem Inhalt" + +# @ acf +#~ msgid "Normal (after content)" +#~ msgstr "Nach dem Inhalt" + +# @ acf +#~ msgid "Side" +#~ msgstr "Seitlich neben dem Inhalt" + +# @ acf +#~ msgid "Label placement" +#~ msgstr "Platzierung der Beschriftung" + +# @ acf +#~ msgid "Top aligned" +#~ msgstr "Über dem Feld" + +# @ acf +#~ msgid "Left aligned" +#~ msgstr "Links neben dem Feld" + +# @ acf +#~ msgid "Instruction placement" +#~ msgstr "Platzierung der Anweisungen" + +# @ acf +#~ msgid "Below labels" +#~ msgstr "Unterhalb der Beschriftungen" + +# @ acf +#~ msgid "Below fields" +#~ msgstr "Unterhalb der Felder" + +# @ acf +#~ msgid "Order No." +#~ msgstr "Reihenfolge" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "Feldgruppen mit einem niedrigeren Wert werden zuerst angezeigt" + +#~ msgid "Shown in field group list" +#~ msgstr "In der Feldgruppen-Liste anzeigen" + +# @ acf +#~ msgid "Permalink" +#~ msgstr "Permalink" + +# @ acf +#~ msgid "Content Editor" +#~ msgstr "Inhalts-Editor" + +# @ acf +#~ msgid "Excerpt" +#~ msgstr "Textauszug" + +# @ acf +#~ msgid "Discussion" +#~ msgstr "Diskussion" + +# @ acf +#~ msgid "Revisions" +#~ msgstr "Revisionen" + +# @ acf +#~ msgid "Slug" +#~ msgstr "Titelform" + +# @ acf +#~ msgid "Author" +#~ msgstr "Autor" + +# @ acf +#~ msgid "Format" +#~ msgstr "Format" + +# @ acf +#~ msgid "Page Attributes" +#~ msgstr "Seiten-Attribute" + +# @ acf +#~ msgid "Featured Image" +#~ msgstr "Beitragsbild" + +# @ acf +#~ msgid "Categories" +#~ msgstr "Kategorien" + +# @ acf +#~ msgid "Tags" +#~ msgstr "Schlagworte" + +# @ acf +#~ msgid "Send Trackbacks" +#~ msgstr "Sende Trackbacks" + +# @ acf +#~ msgid "Hide on screen" +#~ msgstr "Verstecken" + +# @ acf +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Wählen Sie die Elemente, welche in der " +#~ "Bearbeitungsansicht verborgen werden sollen." + +# @ acf +#~ 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 " +#~ "Nummer in der Reihe)" + +#, php-format +#~ 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. Markieren Sie die " +#~ "gewünschten Seiten und klicken Sie dann %s." + +#~ msgid "Upgrade Sites" +#~ msgstr "Websites upgraden" + +# @ acf +#~ msgid "Site" +#~ msgstr "Website" + +# @ acf +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s" + +# @ acf +#~ msgid "Site is up to date" +#~ msgstr "Die Website ist aktuell" + +# @ acf +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Upgrade der Datenbank fertiggestellt. Zum Netzwerk " +#~ "Dashboard" + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "Bitte zumindest eine Website zum Upgrade auswählen." + +# @ acf +#~ 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 Sie ihre Datenbank sichern, bevor Sie " +#~ "fortfahren. Sind sie sicher, dass Sie jetzt die Aktualisierung " +#~ "durchführen wollen?" + +# @ acf +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Daten auf Version %s upgraden" + +# @ default +#~ msgid "Upgrade complete." +#~ msgstr "Upgrade abgeschlossen." + +#~ msgid "Upgrade failed." +#~ msgstr "Upgrade fehlgeschlagen." + +# @ acf +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Aufgaben für das Upgrade einlesen…" + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "Datenbank-Upgrade abgeschlossen. Schauen Sie nach was es " +#~ "Neues gibt" + +# @ acf +#~ msgid "No updates available." +#~ msgstr "Keine Aktualisierungen verfügbar." + +#~ msgid "Back to all tools" +#~ msgstr "Zurück zur Werkzeugübersicht" + +# @ acf +#~ msgid "Show this field group if" +#~ msgstr "Zeige diese Felder, wenn" + +# @ acf +#~ msgid "Database Upgrade Required" +#~ msgstr "Es ist ein Upgrade der Datenbank erforderlich" + +# @ acf +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Danke für die Aktualisierung auf %s v%s!" + +#~ msgid "" +#~ "This version contains improvements to your database and requires an " +#~ "upgrade." +#~ msgstr "" +#~ "Die vorliegende Version enthält Verbesserungen für deine Datenbank und " +#~ "erfordert ein Upgrade." + +#, php-format +#~ msgid "" +#~ "Please also check all premium add-ons (%s) are updated to the latest " +#~ "version." +#~ msgstr "" +#~ "Stellen Sie bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) auf " +#~ "die neueste Version aktualisiert wurden." + +# @ acf +#~ msgid "Invalid field group parameter(s)." +#~ msgstr "Ungültige(r) Feldgruppen-Parameter." + +# @ acf +#~ msgid "Invalid field group ID." +#~ msgstr "Ungültige Feldgruppen-ID." + +#~ msgid "Sorry, this field group is unavailable for diff comparison." +#~ msgstr "" +#~ "Verzeihung, diese Feldgruppe steht für einen Diff-Vergleich nicht zur " +#~ "Verfügung." + +# @ acf +#, php-format +#~ msgid "Last updated: %s" +#~ msgstr "Zuletzt aktualisiert: %s" + +# @ acf +#~ msgid "Original field group" +#~ msgstr "Ursprüngliche Feldgruppe" + +# @ acf +#~ msgid "JSON field group (newer)" +#~ msgstr "JSON-Feldgruppe (neuer)" + +# @ acf +#~ msgid "Thumbnail" +#~ msgstr "Vorschaubild" + +# @ acf +#~ msgid "Medium" +#~ msgstr "Mittel" + +# @ acf +#~ msgid "Large" +#~ msgstr "Groß" + +# @ acf +#~ msgid "Full Size" +#~ msgstr "Volle Größe" + +# @ acf +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Die Breite des Bildes muss mindestens %dpx sein." + +# @ acf +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Die Breite des Bildes darf %dpx nicht überschreiten." + +# @ acf +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Die Höhe des Bildes muss mindestens %dpx sein." + +# @ acf +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Die Höhe des Bild darf %dpx nicht überschreiten." + +# @ acf +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Die Dateigröße muss mindestens %s sein." + +# @ acf +#, php-format +#~ msgid "File size must not exceed %s." +#~ msgstr "Die Dateigröße darf nicht größer als %s sein." + +# @ acf +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Der Dateityp muss %s sein." + +# @ acf +#~ msgid "Are you sure?" +#~ msgstr "Wirklich entfernen?" + +#~ msgid "Cancel" +#~ msgstr "Abbrechen" + +# @ acf +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "" +#~ "Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen " +#~ "wird" + +# @ acf +#~ msgid "Validation successful" +#~ msgstr "Überprüfung erfolgreich" + +# @ acf +#~ msgid "Validation failed" +#~ msgstr "Überprüfung fehlgeschlagen" + +# @ acf +#~ msgid "1 field requires attention" +#~ msgstr "Für 1 Feld ist eine Aktualisierung notwendig" + +# @ acf +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "Für %d Felder ist eine Aktualisierung notwendig" + +# @ acf +#~ msgid "Field type does not exist" +#~ msgstr "Feldtyp existiert nicht" + +#~ msgid "Unknown" +#~ msgstr "Unbekannt" + +# @ acf +#~ msgid "Basic" +#~ msgstr "Grundlage" + +# @ acf +#~ msgid "Content" +#~ msgstr "Inhalt" + +# @ acf +#~ msgid "Choice" +#~ msgstr "Auswahl" + +# @ acf +#~ msgid "Relational" +#~ msgstr "Relational" + +# @ acf +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Accordion" +#~ msgstr "Akkordeon" + +#~ msgid "Open" +#~ msgstr "Geöffnet" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "Dieses Akkordeon beim Laden der Seite als geöffnet anzeigen." + +#~ msgid "Multi-expand" +#~ msgstr "Gleichzeitig geöffnet" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Erlaubt dieses Akkordeon zu öffnen ohne andere zu schließen." + +#~ msgid "Endpoint" +#~ msgstr "Endpunkt" + +#~ 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 abschließende Akkordeon wird nicht sichtbar sein." + +#~ msgid "Button Group" +#~ msgstr "Button-Gruppe" + +# @ acf +#~ msgid "Choices" +#~ msgstr "Auswahlmöglichkeiten" + +# @ acf +#~ msgid "Enter each choice on a new line." +#~ msgstr "Jede Auswahlmöglichkeit in eine neue Zeile eingeben." + +# @ acf +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "" +#~ "Für mehr Kontrolle, können Sie sowohl einen Wert als auch eine " +#~ "Beschriftung wie folgt angeben:" + +# @ acf +#~ msgid "red : Red" +#~ msgstr "rot : Rot" + +# @ acf +#~ msgid "Allow Null?" +#~ msgstr "NULL-Werte zulassen?" + +# @ acf +#~ msgid "Default Value" +#~ msgstr "Standardwert" + +# @ acf +#~ msgid "Appears when creating a new post" +#~ msgstr "Erscheint bei der Erstellung eines neuen Beitrags" + +# @ acf +#~ msgid "Horizontal" +#~ msgstr "Horizontal" + +# @ acf +#~ msgid "Vertical" +#~ msgstr "Vertikal" + +# @ acf +#~ msgid "Return Value" +#~ msgstr "Rückgabewert" + +# @ acf +#~ msgid "Specify the returned value on front end" +#~ msgstr "Legt den Rückgabewert für das Frontend fest" + +#~ msgid "Value" +#~ msgstr "Wert" + +#~ msgid "Both (Array)" +#~ msgstr "Beide (Array)" + +# @ acf +#~ msgid "Checkbox" +#~ msgstr "Checkbox" + +# @ acf +#~ msgid "Toggle All" +#~ msgstr "Alle auswählen" + +#~ msgid "Add new choice" +#~ msgstr "Neue Auswahlmöglichkeit hinzufügen" + +#~ msgid "Allow Custom" +#~ msgstr "Individuelle Werte erlauben" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Erlaubt das Hinzufügen individueller Werte" + +#~ msgid "Save Custom" +#~ msgstr "Individuelle Werte speichern" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "" +#~ "Individuelle Werte unter den Auswahlmöglichkeiten des Feldes speichern" + +# @ acf +#~ msgid "Enter each default value on a new line" +#~ msgstr "Jeden Standardwert in einer neuen Zeile eingeben" + +#~ msgid "Toggle" +#~ msgstr "Alle Auswählen" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "" +#~ "Hängt eine zusätzliche Checkbox an mit der alle Optionen ausgewählt " +#~ "werden können" + +# @ acf +#~ msgid "Color Picker" +#~ msgstr "Farbauswahl" + +# @ acf +#~ msgid "Clear" +#~ msgstr "Leeren" + +# @ acf +#~ msgid "Default" +#~ msgstr "Standard" + +# @ acf +#~ msgid "Select Color" +#~ msgstr "Farbe auswählen" + +#~ msgid "Current Color" +#~ msgstr "Aktuelle Farbe" + +# @ acf +#~ msgid "Date Picker" +#~ msgstr "Datumsauswahl" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fertig" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Heute" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Nächstes" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Vorheriges" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "W" + +# @ acf +#~ msgid "Display Format" +#~ msgstr "Darstellungsformat" + +# @ acf +#~ msgid "The format displayed when editing a post" +#~ msgstr "Das Format für die Anzeige in der Bearbeitungsansicht" + +#~ msgid "Custom:" +#~ msgstr "Individuelles Format:" + +#~ msgid "Save Format" +#~ msgstr "Speicherformat" + +#~ msgid "The format used when saving a value" +#~ msgstr "Das Format das beim Speichern eines Wertes verwendet wird" + +# @ acf +#~ msgid "The format returned via template functions" +#~ msgstr "Das Format für die Ausgabe in den Template-Funktionen" + +# @ acf +#~ msgid "Week Starts On" +#~ msgstr "Die Woche beginnt am" + +#~ msgid "Date Time Picker" +#~ msgstr "Datums- und Zeitauswahl" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Zeit auswählen" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Zeit" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Stunde" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minute" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Sekunde" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Millisekunde" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Mikrosekunde" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Zeitzone" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Jetzt" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fertig" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Auswählen" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "Vorm." + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "Vorm." + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "Nachm." + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "Nachm." + +# @ acf +#~ msgid "Email" +#~ msgstr "E-Mail" + +# @ acf +#~ msgid "Placeholder Text" +#~ msgstr "Platzhaltertext" + +# @ acf +#~ msgid "Appears within the input" +#~ msgstr "Platzhaltertext solange keine Eingabe im Feld vorgenommen wurde" + +# @ acf +#~ msgid "Prepend" +#~ msgstr "Voranstellen" + +# @ acf +#~ msgid "Appears before the input" +#~ msgstr "Wird dem Eingabefeld vorangestellt" + +# @ acf +#~ msgid "Append" +#~ msgstr "Anhängen" + +# @ acf +#~ msgid "Appears after the input" +#~ msgstr "Wird dem Eingabefeld hinten angestellt" + +# @ acf +#~ msgid "File" +#~ msgstr "Datei" + +# @ acf +#~ msgid "Edit File" +#~ msgstr "Datei bearbeiten" + +# @ acf +#~ msgid "Update File" +#~ msgstr "Datei aktualisieren" + +#~ msgid "File name" +#~ msgstr "Dateiname" + +# @ acf +#~ msgid "Add File" +#~ msgstr "Datei hinzufügen" + +# @ acf +#~ msgid "File Array" +#~ msgstr "Datei-Array" + +# @ acf +#~ msgid "File URL" +#~ msgstr "Datei-URL" + +# @ acf +#~ msgid "File ID" +#~ msgstr "Datei-ID" + +# @ acf +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Beschränkt welche Dateien hochgeladen werden können" + +# @ acf +#~ msgid "Google Map" +#~ msgstr "Google Maps" + +# @ acf +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Dieser Browser unterstützt keine Geo-Lokation" + +# @ acf +#~ msgid "Search" +#~ msgstr "Suchen" + +# @ acf +#~ msgid "Clear location" +#~ msgstr "Position löschen" + +# @ acf +#~ msgid "Find current location" +#~ msgstr "Aktuelle Position finden" + +# @ acf +#~ msgid "Search for address..." +#~ msgstr "Nach der Adresse suchen..." + +# @ acf +#~ msgid "Center" +#~ msgstr "Mittelpunkt" + +# @ acf +#~ msgid "Center the initial map" +#~ msgstr "Mittelpunkt der Ausgangskarte" + +# @ acf +#~ msgid "Zoom" +#~ msgstr "Zoom" + +# @ acf +#~ msgid "Set the initial zoom level" +#~ msgstr "Legt die anfängliche Zoomstufe der Karte fest" + +# @ acf +#~ msgid "Customize the map height" +#~ msgstr "Passt die Höhe der Karte an" + +# @ acf +#~ msgid "Group" +#~ msgstr "Gruppe" + +# @ acf +#~ msgid "Image" +#~ msgstr "Bild" + +# @ acf +#~ msgid "Select Image" +#~ msgstr "Bild auswählen" + +# @ acf +#~ msgid "Edit Image" +#~ msgstr "Bild bearbeiten" + +# @ acf +#~ msgid "Update Image" +#~ msgstr "Bild aktualisieren" + +# @ acf +#~ msgid "All images" +#~ msgstr "Alle Bilder" + +# @ acf +#~ msgid "No image selected" +#~ msgstr "Kein Bild ausgewählt" + +# @ acf +#~ msgid "Add Image" +#~ msgstr "Bild hinzufügen" + +# @ acf +#~ msgid "Link" +#~ msgstr "Link" + +# @ acf +#~ msgid "Select Link" +#~ msgstr "Link auswählen" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "In einem neuen Fenster/Tab öffnen" + +# @ acf +#~ msgid "Link Array" +#~ msgstr "Link-Array" + +# @ acf +#~ msgid "Link URL" +#~ msgstr "Link-URL" + +# @ acf +#~ msgid "Message" +#~ msgstr "Mitteilung" + +# @ acf +#~ msgid "New Lines" +#~ msgstr "Neue Zeilen" + +# @ acf +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Legt fest wie Zeilenumbrüche gerendert werden" + +# @ acf +#~ msgid "Automatically add paragraphs" +#~ msgstr "Automatisches hinzufügen von Absätzen" + +# @ acf +#~ msgid "Automatically add <br>" +#~ msgstr "Automatisches hinzufügen von <br>" + +# @ acf +#~ msgid "No Formatting" +#~ msgstr "Keine Formatierung" + +# @ acf +#~ msgid "Escape HTML" +#~ msgstr "Escape HTML" + +# @ acf +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "" +#~ "Erlaubt HTML-Markup als sichtbaren Text anzuzeigen anstelle diesen zu " +#~ "rendern" + +# @ acf +#~ msgid "Number" +#~ msgstr "Numerisch" + +# @ acf +#~ msgid "Minimum Value" +#~ msgstr "Mindestwert" + +# @ acf +#~ msgid "Maximum Value" +#~ msgstr "Maximalwert" + +# @ acf +#~ msgid "Step Size" +#~ msgstr "Schrittweite" + +# @ acf +#~ msgid "Value must be a number" +#~ msgstr "Wert muss eine Zahl sein" + +# @ acf +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Wert muss größer oder gleich %d sein" + +# @ acf +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Wert muss kleiner oder gleich %d sein" + +# @ acf +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +# @ acf +#~ msgid "Enter URL" +#~ msgstr "URL eingeben" + +# @ acf +#~ msgid "Embed Size" +#~ msgstr "Maße" + +# @ acf +#~ msgid "Page Link" +#~ msgstr "Seiten-Link" + +# @ acf +#~ msgid "Archives" +#~ msgstr "Archive" + +#~ msgid "Parent" +#~ msgstr "Übergeordnet" + +# @ acf +#~ msgid "Filter by Post Type" +#~ msgstr "Nach Inhaltstyp filtern" + +# @ acf +#~ msgid "All post types" +#~ msgstr "Alle Inhaltstypen" + +# @ acf +#~ msgid "Filter by Taxonomy" +#~ msgstr "Nach Taxonomien filtern" + +# @ acf +#~ msgid "All taxonomies" +#~ msgstr "Alle Taxonomien" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Archiv-URL's zulassen" + +# @ acf +#~ msgid "Select multiple values?" +#~ msgstr "Mehrere Werte auswählbar?" + +# @ acf +#~ msgid "Password" +#~ msgstr "Passwort" + +# @ acf +#~ msgid "Post Object" +#~ msgstr "Beitrags-Objekt" + +# @ acf +#~ msgid "Post ID" +#~ msgstr "Beitrags-ID" + +# @ acf +#~ msgid "Radio Button" +#~ msgstr "Radio-Button" + +# @ acf +#~ msgid "Other" +#~ msgstr "Weitere" + +# @ acf +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "" +#~ "Das Hinzufügen der Auswahlmöglichkeit ‚Weitere‘ erlaubt " +#~ "benutzerdefinierte Werte" + +# @ acf +#~ msgid "Save Other" +#~ msgstr "Weitere speichern" + +# @ acf +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Weitere Werte unter den Auswahlmöglichkeiten des Feldes speichern" + +#~ msgid "Range" +#~ msgstr "Numerischer Bereich" + +# @ acf +#~ msgid "Relationship" +#~ msgstr "Beziehung" + +# @ acf +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Maximum der Einträge mit ({max} Einträge) erreicht" + +# @ acf +#~ msgid "Loading" +#~ msgstr "Lade" + +# @ acf +#~ msgid "No matches found" +#~ msgstr "Keine Übereinstimmung gefunden" + +# @ acf +#~ msgid "Select post type" +#~ msgstr "Inhaltstyp auswählen" + +# @ acf +#~ msgid "Select taxonomy" +#~ msgstr "Taxonomie auswählen" + +# @ acf +#~ msgid "Search..." +#~ msgstr "Suchen..." + +# @ acf +#~ msgid "Filters" +#~ msgstr "Filter" + +# @ acf +#~ msgid "Post Type" +#~ msgstr "Inhaltstyp" + +# @ acf +#~ msgid "Taxonomy" +#~ msgstr "Taxonomie" + +# @ acf +#~ msgid "Elements" +#~ msgstr "Elemente" + +# @ acf +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Die ausgewählten Elemente werden in jedem Ergebnis angezeigt" + +# @ acf +#~ msgid "Minimum posts" +#~ msgstr "Mindestzahl an Beiträgen" + +# @ acf +#~ msgid "Maximum posts" +#~ msgstr "Höchstzahl an Beiträgen" + +# @ acf +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s benötigt mindestens %s Selektion" +#~ msgstr[1] "%s benötigt mindestens %s Selektionen" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Auswahl" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "" +#~ "Es ist ein Ergebnis verfügbar, drücken Sie die Eingabetaste um es " +#~ "auszuwählen." + +#, php-format +#~ 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, benutzen Sie die Pfeiltasten um nach " +#~ "oben und unten zu navigieren." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Keine Übereinstimmungen gefunden" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Geben Sie bitte ein oder mehr Zeichen ein" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Geben Sie bitte %d oder mehr Zeichen ein" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Löschen Sie bitte ein Zeichen" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Löschen Sie bitte %d Zeichen" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Sie können nur ein Element auswählen" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Sie können nur %d Elemente auswählen" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Mehr Ergebnisse laden…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Suchen…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Laden fehlgeschlagen" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Auswählen" + +# @ acf +#~ msgid "Stylised UI" +#~ msgstr "Select2-Library aktivieren" + +# @ acf +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu laden?" + +#~ msgid "Specify the value returned" +#~ msgstr "Legen Sie den Rückgabewert fest" + +#~ msgid "Separator" +#~ msgstr "Trennelement" + +# @ acf +#~ msgid "Tab" +#~ msgstr "Tab" + +# @ acf +#~ msgid "Placement" +#~ msgstr "Platzierung" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definiert einen Endpunkt an dem die vorangegangenen Tabs enden. Das ist " +#~ "der Startpunkt für eine neue Gruppe an Tabs." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Keine %s" + +# @ acf +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Wählen Sie die Taxonomie, welche angezeigt werden soll" + +# @ acf +#~ msgid "Appearance" +#~ msgstr "Anzeige" + +# @ acf +#~ msgid "Select the appearance of this field" +#~ msgstr "Wählen Sie das Aussehen für dieses Feld" + +# @ acf +#~ msgid "Multiple Values" +#~ msgstr "Mehrere Werte" + +# @ acf +#~ msgid "Multi Select" +#~ msgstr "Auswahlmenü" + +# @ acf +#~ msgid "Single Value" +#~ msgstr "Einzelne Werte" + +# @ acf +#~ msgid "Radio Buttons" +#~ msgstr "Radio Button" + +# @ acf +#~ msgid "Create Terms" +#~ msgstr "Begriffe erstellen" + +# @ acf +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Erlaubt das Erstellen neuer Begriffe während des Bearbeitens" + +#~ msgid "Save Terms" +#~ msgstr "Begriffe speichern" + +# @ acf +#~ msgid "Connect selected terms to the post" +#~ msgstr "Verbindet die ausgewählten Begriffe mit dem Beitrag" + +#~ msgid "Load Terms" +#~ msgstr "Begriffe laden" + +#~ msgid "Load value from posts terms" +#~ msgstr "Den Wert aus den Begriffen des Beitrags laden" + +# @ acf +#~ msgid "Term Object" +#~ msgstr "Begriffs-Objekt" + +# @ acf +#~ msgid "Term ID" +#~ msgstr "Begriffs-ID" + +# @ acf +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Der Benutzer kann keine neue %s hinzufügen" + +# @ acf +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s ist bereits vorhanden" + +# @ acf +#, php-format +#~ msgid "%s added" +#~ msgstr "%s hinzugefügt" + +# @ acf +#~ msgid "Add" +#~ msgstr "Hinzufügen" + +# @ acf +#~ msgid "Text" +#~ msgstr "Text einzeilig" + +# @ acf +#~ msgid "Character Limit" +#~ msgstr "Zeichenbegrenzung" + +# @ acf +#~ msgid "Leave blank for no limit" +#~ msgstr "Leer lassen für keine Begrenzung" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "Wert darf %d Zeichen nicht überschreiten" + +# @ acf +#~ msgid "Text Area" +#~ msgstr "Text mehrzeilig" + +# @ acf +#~ msgid "Rows" +#~ msgstr "Zeilenanzahl" + +# @ acf +#~ msgid "Sets the textarea height" +#~ msgstr "Definiert die Höhe des Textfelds" + +#~ msgid "Time Picker" +#~ msgstr "Zeitauswahl" + +# @ acf +#~ msgid "True / False" +#~ msgstr "Wahr / Falsch" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Zeigt den Text neben der Checkbox an" + +#~ msgid "On Text" +#~ msgstr "Wenn aktiv" + +#~ msgid "Text shown when active" +#~ msgstr "Der Text der im aktiven Zustand angezeigt wird" + +#~ msgid "Off Text" +#~ msgstr "Wenn inaktiv" + +#~ msgid "Text shown when inactive" +#~ msgstr "Der Text der im inaktiven Zustand angezeigt wird" + +# @ acf +#~ msgid "Url" +#~ msgstr "URL" + +# @ acf +#~ msgid "Value must be a valid URL" +#~ msgstr "Bitte eine gültige URL eingeben" + +# @ acf +#~ msgid "User" +#~ msgstr "Benutzer" + +# @ acf +#~ msgid "Filter by role" +#~ msgstr "Nach Rolle filtern" + +# @ acf +#~ msgid "All user roles" +#~ msgstr "Alle Benutzerrollen" + +# @ acf +#~ msgid "User Array" +#~ msgstr "Benutzer-Array" + +# @ acf +#~ msgid "User Object" +#~ msgstr "Benutzer-Objekt" + +# @ acf +#~ msgid "User ID" +#~ msgstr "Benutzer-ID" + +#~ msgid "Error loading field." +#~ msgstr "Fehler beim Laden des Feldes." + +# @ acf +#~ msgid "Wysiwyg Editor" +#~ msgstr "WYSIWYG-Editor" + +# @ acf +#~ msgid "Visual" +#~ msgstr "Visuell" + +# @ acf +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Klicken um TinyMCE zu initialisieren" + +# @ acf +#~ msgid "Tabs" +#~ msgstr "Tabs" + +# @ acf +#~ msgid "Visual & Text" +#~ msgstr "Visuell & Text" + +# @ acf +#~ msgid "Visual Only" +#~ msgstr "Nur Visuell" + +# @ acf +#~ msgid "Text Only" +#~ msgstr "Nur Text" + +# @ acf +#~ msgid "Toolbar" +#~ msgstr "Werkzeugleiste" + +# @ acf +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Button zum Hochladen von Medien anzeigen?" + +#~ msgid "Delay initialization?" +#~ msgstr "Initialisierung verzögern?" + +#~ msgid "TinyMCE will not be initialized until field is clicked" +#~ msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird" + +#~ msgid "Validate Email" +#~ msgstr "E-Mail bestätigen" + +# @ acf +#~ msgid "Post updated" +#~ msgstr "Beitrag aktualisiert" + +#~ msgid "Spam Detected" +#~ msgstr "Spam entdeckt" + +#, php-format +#~ msgid "ERROR: %s" +#~ msgstr "FEHLER: %s" + +# @ acf +#, php-format +#~ msgid "Class \"%s\" does not exist." +#~ msgstr "Die Klasse „%s“ existiert nicht." + +#, php-format +#~ msgid "Location type \"%s\" is already registered." +#~ msgstr "Positions-Typ „%s“ ist bereits registriert." + +# @ acf +#~ msgid "Post" +#~ msgstr "Beitrag" + +# @ acf +#~ msgid "Page" +#~ msgstr "Seite" + +# @ acf +#~ msgid "Forms" +#~ msgstr "Formulare" + +# @ acf +#~ msgid "is equal to" +#~ msgstr "ist gleich" + +# @ acf +#~ msgid "is not equal to" +#~ msgstr "ist ungleich" + +# @ acf +#~ msgid "Attachment" +#~ msgstr "Anhang" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Alle %s Formate" + +# @ acf +#~ msgid "Comment" +#~ msgstr "Kommentar" + +# @ acf +#~ msgid "Current User Role" +#~ msgstr "Aktuelle Benutzerrolle" + +# @ acf +#~ msgid "Super Admin" +#~ msgstr "Super-Administrator" + +# @ acf +#~ msgid "Current User" +#~ msgstr "Aktueller Benutzer" + +# @ acf +#~ msgid "Logged in" +#~ msgstr "Angemeldet" + +# @ acf +#~ msgid "Viewing front end" +#~ msgstr "Frontend anzeigen" + +# @ acf +#~ msgid "Viewing back end" +#~ msgstr "Backend anzeigen" + +#~ msgid "Menu Item" +#~ msgstr "Menüelement" + +#~ msgid "Menu" +#~ msgstr "Menü" + +# @ acf +#~ msgid "Menu Locations" +#~ msgstr "Menüpositionen" + +# @ acf +#~ msgid "Page Parent" +#~ msgstr "Übergeordnete Seite" + +# @ acf +#~ msgid "Page Template" +#~ msgstr "Seiten-Template" + +# @ acf +#~ msgid "Default Template" +#~ msgstr "Standard-Template" + +# @ acf +#~ msgid "Page Type" +#~ msgstr "Seitentyp" + +# @ acf +#~ msgid "Front Page" +#~ msgstr "Startseite" + +# @ acf +#~ msgid "Posts Page" +#~ msgstr "Beitrags-Seite" + +# @ acf +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Seite ohne übergeordnete Seiten" + +# @ acf +#~ msgid "Parent Page (has children)" +#~ msgstr "Übergeordnete Seite (mit Unterseiten)" + +# @ acf +#~ msgid "Child Page (has parent)" +#~ msgstr "Unterseite (mit übergeordneter Seite)" + +# @ acf +#~ msgid "Post Category" +#~ msgstr "Beitragskategorie" + +# @ acf +#~ msgid "Post Format" +#~ msgstr "Beitragsformat" + +# @ acf +#~ msgid "Post Status" +#~ msgstr "Beitragsstatus" + +# @ acf +#~ msgid "Post Taxonomy" +#~ msgstr "Beitrags-Taxonomie" + +# @ acf +#~ msgid "Post Template" +#~ msgstr "Beitrags-Template" + +# @ acf +#~ msgid "User Form" +#~ msgstr "Benutzerformular" + +# @ acf +#~ msgid "Add / Edit" +#~ msgstr "Hinzufügen / Bearbeiten" + +# @ acf +#~ msgid "Register" +#~ msgstr "Registrieren" + +# @ acf +#~ msgid "User Role" +#~ msgstr "Benutzerrolle" + +# @ acf +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Bearbeiten" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Aktualisieren" + +# @ acf +#~ msgid "Uploaded to this post" +#~ msgstr "Zu diesem Beitrag hochgeladen" + +# @ acf +#~ msgid "Expand Details" +#~ msgstr "Details einblenden" + +# @ acf +#~ msgid "Collapse Details" +#~ msgstr "Details ausblenden" + +#~ msgid "Restricted" +#~ msgstr "Eingeschränkt" + +# @ acf +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s Wert ist erforderlich" + +#, php-format +#~ 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 "" +#~ "Um die Aktualisierungsfähigkeit freizuschalten geben Sie bitte Ihren " +#~ "Lizenzschlüssel auf der Aktualisierungen Seite ein. " +#~ "Falls Sie keinen besitzen informieren Sie sich bitte hier hinsichtlich " +#~ "der Preise und Einzelheiten." + +# @ acf +#~ msgid "Normal" +#~ msgstr "Normal" + +#~ msgid "Fancy" +#~ msgstr "Schick" + +#~ msgid "Hero" +#~ msgstr "Hero" + +#~ msgid "Display a random hero image." +#~ msgstr "Ein zufälliges Hero-Bild anzeigen." + +#~ msgid "https://www.advancedcustomfields.com" +#~ msgstr "https://www.advancedcustomfields.com" + +# @ acf +#~ msgid "" +#~ "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "WordPress durch leistungsfähige, professionelle und zugleich intuitive " +#~ "Felder erweitern." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inaktiv (%s)" +#~ msgstr[1] "Inaktiv (%s)" + +#~ msgid "Status" +#~ msgstr "Status" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Was gibt es Neues in Version %s." + +# @ acf +#~ msgid "Resources" +#~ msgstr "Dokumentation (engl.)" + +#~ msgid "Documentation" +#~ msgstr "Dokumentation" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Danke für das Vertrauen in ACF." + +# @ acf +#~ msgid "Synchronise field group" +#~ msgstr "Synchronisiere Feldgruppe" + +#~ msgid "Apply" +#~ msgstr "Anwenden" + +# @ acf +#~ msgid "Bulk Actions" +#~ msgstr "Massenverarbeitung" + +# @ acf +#~ msgid "Info" +#~ msgstr "Info" + +# @ acf +#~ msgid "What's New" +#~ msgstr "Was gibt es Neues" + +# @ acf +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Willkommen bei Advanced Custom Fields" + +# @ acf +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Vielen Dank fürs Aktualisieren! ACF %s ist größer und besser als je " +#~ "zuvor. Wir hoffen es wird ihnen gefallen." + +# @ acf +#~ msgid "A Smoother Experience" +#~ msgstr "Eine reibungslosere Erfahrung" + +# @ acf +#~ msgid "Improved Usability" +#~ msgstr "Verbesserte Benutzerfreundlichkeit" + +# @ acf +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Durch die Einführung der beliebten Select2 Bibliothek wurde sowohl die " +#~ "Benutzerfreundlichkeit als auch die Geschwindigkeit einiger Feldtypen wie " +#~ "Beitrags-Objekte, Seiten-Links, Taxonomien sowie von Auswahl-Feldern " +#~ "signifikant verbessert." + +# @ acf +#~ msgid "Improved Design" +#~ msgstr "Verbessertes Design" + +# @ acf +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Viele Felder wurden visuell überarbeitet, damit ACF besser denn je " +#~ "aussieht! Die markantesten Änderungen erfuhren das Galerie-, Beziehungs- " +#~ "sowie das nagelneue oEmbed-Feld!" + +# @ acf +#~ msgid "Improved Data" +#~ msgstr "Verbesserte Datenstruktur" + +# @ acf +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Die Neugestaltung der Datenarchitektur erlaubt es, dass Unterfelder " +#~ "unabhängig von ihren übergeordneten Feldern existieren können. Dies " +#~ "ermöglicht, dass Felder per Drag-and-Drop, in und aus ihren " +#~ "übergeordneten Feldern verschoben werden können!" + +# @ acf +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Macht's gut Add-ons… Hallo PRO" + +# @ acf +#~ msgid "Introducing ACF PRO" +#~ msgstr "Wir dürfen vorstellen… ACF PRO" + +# @ acf +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Wir haben die Art und Weise mit der die Premium-Funktionalität zur " +#~ "Verfügung gestellt wird geändert - das \"wie\" dürfte Sie begeistern!" + +# @ acf +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle vier, vormals separat erhältlichen, Premium-Add-ons wurden in der " +#~ "neuen Pro-Version von ACF zusammengefasst. Besagte " +#~ "Premium-Funktionalität, erhältlich in einer Einzel- sowie einer " +#~ "Entwickler-Lizenz, ist somit erschwinglicher denn je!" + +# @ acf +#~ msgid "Powerful Features" +#~ msgstr "Leistungsstarke Funktionen" + +# @ acf +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO enthält leistungsstarke Funktionen wie wiederholbare Daten, " +#~ "Flexible Inhalte-Layouts, ein wunderschönes Galerie-Feld sowie die " +#~ "Möglichkeit zusätzliche Options-Seiten im Admin-Bereich zu erstellen!" + +# @ acf +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Lesen Sie mehr über die ACF PRO Funktionen." + +# @ acf +#~ msgid "Easy Upgrading" +#~ msgstr "Kinderleichte Aktualisierung" + +#~ msgid "" +#~ "Upgrading to ACF PRO is easy. Simply purchase a license online and " +#~ "download the plugin!" +#~ msgstr "" +#~ "Das Upgrade auf ACF PRO ist leicht. Einfach online eine Lizenz erwerben " +#~ "und das Plugin herunterladen!" + +# @ acf +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk." +#~ msgstr "" +#~ "Um möglichen Fragen zu begegnen haben wir haben einen Upgrade-Leitfaden (Engl.) erstellt. Sollten dennoch Fragen " +#~ "auftreten, kontaktieren Sie bitte unser Support-Team ." + +#~ msgid "New Features" +#~ msgstr "Neue Funktionen" + +# @ acf +#~ msgid "Link Field" +#~ msgstr "Link-Feld" + +#~ msgid "" +#~ "The Link field provides a simple way to select or define a link (url, " +#~ "title, target)." +#~ msgstr "" +#~ "Das Link-Feld bietet einen einfachen Weg um einen Link (URL, Titel, Ziel) " +#~ "entweder auszuwählen oder zu definieren." + +# @ acf +#~ msgid "Group Field" +#~ msgstr "Gruppen-Feld" + +#~ msgid "The Group field provides a simple way to create a group of fields." +#~ msgstr "" +#~ "Das Gruppen-Feld bietet einen einfachen Weg eine Gruppe von Feldern zu " +#~ "erstellen." + +# @ acf +#~ msgid "oEmbed Field" +#~ msgstr "oEmbed-Feld" + +#~ msgid "" +#~ "The oEmbed field allows an easy way to embed videos, images, tweets, " +#~ "audio, and other content." +#~ msgstr "" +#~ "Das oEmbed-Feld erlaubt auf eine einfache Weise Videos, Bilder, Tweets, " +#~ "Audio und weitere Inhalte einzubetten." + +# @ acf +#~ msgid "Clone Field" +#~ msgstr "Klon-Feld" + +#~ msgid "The clone field allows you to select and display existing fields." +#~ msgstr "" +#~ "Das Klon-Feld erlaubt es ihnen bestehende Felder auszuwählen und " +#~ "anzuzeigen." + +# @ acf +#~ msgid "More AJAX" +#~ msgstr "Mehr AJAX" + +# @ acf +#~ msgid "More fields use AJAX powered search to speed up page loading." +#~ msgstr "" +#~ "Mehr Felder verwenden nun eine AJAX-basierte Suche, die die Ladezeiten " +#~ "von Seiten deutlich verringert." + +# @ acf +#~ msgid "" +#~ "New auto export to JSON feature improves speed and allows for " +#~ "syncronisation." +#~ msgstr "" +#~ "Ein neuer automatischer Export nach JSON verbessert die Geschwindigkeit " +#~ "und erlaubt die Synchronisation." + +# @ acf +#~ msgid "Easy Import / Export" +#~ msgstr "Einfacher Import / Export" + +#~ msgid "Both import and export can easily be done through a new tools page." +#~ msgstr "" +#~ "Importe sowie Exporte können beide einfach auf der neuen Werkzeug-Seite " +#~ "durchgeführt werden." + +# @ acf +#~ msgid "New Form Locations" +#~ msgstr "Neue Positionen für Formulare" + +# @ acf +#~ msgid "" +#~ "Fields can now be mapped to menus, menu items, comments, widgets and all " +#~ "user forms!" +#~ msgstr "" +#~ "Felder können nun auch Menüs, Menüpunkten, Kommentaren, Widgets und allen " +#~ "Benutzer-Formularen zugeordnet werden!" + +# @ acf +#~ msgid "More Customization" +#~ msgstr "Weitere Anpassungen" + +#~ msgid "" +#~ "New PHP (and JS) actions and filters have been added to allow for more " +#~ "customization." +#~ msgstr "" +#~ "Neue Aktionen und Filter für PHP und JS wurden hinzugefügt um noch mehr " +#~ "Anpassungen zu erlauben." + +#~ msgid "Fresh UI" +#~ msgstr "Eine modernisierte Benutzeroberfläche" + +#~ msgid "" +#~ "The entire plugin has had a design refresh including new field types, " +#~ "settings and design!" +#~ msgstr "" +#~ "Das Design des kompletten Plugins wurde modernisiert, inklusive neuer " +#~ "Feldtypen, Einstellungen und Aussehen!" + +# @ acf +#~ msgid "New Settings" +#~ msgstr "Neue Einstellungen" + +# @ acf +#~ msgid "" +#~ "Field group settings have been added for Active, Label Placement, " +#~ "Instructions Placement and Description." +#~ msgstr "" +#~ "Die Feldgruppen wurden um die Einstellungen für das Aktivieren und " +#~ "Deaktivieren der Gruppe, die Platzierung von Beschriftungen und " +#~ "Anweisungen sowie eine Beschreibung erweitert." + +# @ acf +#~ msgid "Better Front End Forms" +#~ msgstr "Verbesserte Frontend-Formulare" + +# @ acf +#~ msgid "" +#~ "acf_form() can now create a new post on submission with lots of new " +#~ "settings." +#~ msgstr "" +#~ "acf_form() kann jetzt einen neuen Beitrag direkt beim Senden erstellen " +#~ "inklusive vieler neuer Einstellungsmöglichkeiten." + +# @ acf +#~ msgid "Better Validation" +#~ msgstr "Bessere Validierung" + +# @ acf +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." +#~ msgstr "" +#~ "Die Formular-Validierung wird nun mit Hilfe von PHP + AJAX erledigt, " +#~ "anstelle nur JS zu verwenden." + +# @ acf +#~ msgid "Moving Fields" +#~ msgstr "Verschiebbare Felder" + +# @ acf +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents." +#~ msgstr "" +#~ "Die neue Feldgruppen-Funktionalität erlaubt es ein Feld zwischen Gruppen " +#~ "und übergeordneten Gruppen frei zu verschieben." + +# @ acf +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Wir glauben Sie werden die Änderungen in %s lieben." + +# @ acf +#~ msgid "Add-ons" +#~ msgstr "Zusatz-Module" + +# @ acf +#~ msgid "Download & Install" +#~ msgstr "Download & Installieren" + +# @ acf +#~ msgid "Installed" +#~ msgstr "Installiert" + +# @ acf +#~ msgid "Shown when entering data" +#~ msgstr "Legt fest welche Maße die Vorschau in der Bearbeitungsansicht hat" + +#~ msgid "Testimonial" +#~ msgstr "Testimonial" + +#~ msgid "A custom testimonial block." +#~ msgstr "Ein individueller Testimonial-Block." + +#~ msgid "Slider" +#~ msgstr "Slider" + +# @ acf +#~ msgid "A custom gallery slider." +#~ msgstr "Ein individueller Galerie-Slider." + +# @ acf +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +# @ acf +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s Feldgruppe synchronisiert." +#~ msgstr[1] "%s Feldgruppen synchronisiert." + +# @ acf +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "" +#~ "Fehler. Die Liste der Zusatz-Module kann nicht geladen werden" + +#~ msgid "Error validating request" +#~ msgstr "Fehler bei der Überprüfung der Anfrage" + +# @ acf +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields Datenbank-Upgrade" + +# @ acf +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Bevor Sie die großartigen neuen Funktionen nutzen können ist ein Upgrade " +#~ "der Datenbank notwendig." + +# @ acf +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Wir haben den Aktualisierungsprozess so einfach wie möglich gehalten; melden Sie sich mit Ihrem Store-Account an und fordern " +#~ "Sie ein Gratisexemplar von ACF PRO an!" + +# @ acf +#~ msgid "Under the Hood" +#~ msgstr "Unter der Haube" + +# @ acf +#~ msgid "Smarter field settings" +#~ msgstr "Intelligentere Feld-Einstellungen" + +# @ acf +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACF speichert nun die Feld-Einstellungen als individuelle Beitrags-Objekte" + +# @ acf +#~ msgid "Better version control" +#~ msgstr "Verbesserte Versionskontrolle" + +# @ acf +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Die neue JSON Export Funktionalität erlaubt die Versionskontrolle von " +#~ "Feld-Einstellungen" + +# @ acf +#~ msgid "Swapped XML for JSON" +#~ msgstr "JSON ersetzt XML" + +# @ acf +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Das Import- und Export-Modul nutzt nun JSON anstelle XML" + +# @ acf +#~ msgid "New Forms" +#~ msgstr "Neue Formulare" + +# @ acf +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Ein neues Feld für das Einbetten von Inhalten wurde hinzugefügt" + +# @ acf +#~ msgid "New Gallery" +#~ msgstr "Neue Galerie" + +# @ acf +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "" +#~ "Das Galerie-Feld wurde einem längst überfälligen Face-Lifting unterzogen" + +# @ acf +#~ msgid "Relationship Field" +#~ msgstr "Beziehungs-Feld" + +# @ acf +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Neue Einstellungen innerhalb des Beziehungs-Feldes um nach Suche, " +#~ "Beitrags-Typ und oder Taxonomie filtern zu können" + +# @ acf +#~ msgid "New archives group in page_link field selection" +#~ msgstr "" +#~ "Im neuen Seitenlink-Feld werden alle Archiv-URL's der verfügbaren Custom " +#~ "Post Types in einer Options-Gruppe zusammengefasst" + +# @ acf +#~ msgid "Better Options Pages" +#~ msgstr "Verbesserte Options-Seiten" + +# @ acf +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Neue Funktionen für die Options-Seite erlauben die Erstellung von Menüs " +#~ "für übergeordnete Seiten sowie Unterseiten" + +# @ acf +#~ msgid "None" +#~ msgstr "Nur Text" + +#~ msgid "Error." +#~ msgstr "Fehler." + +# @ acf +#~ msgid "remove {layout}?" +#~ msgstr "{layout} löschen?" + +# @ acf +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dieses Feld erfordert mindestens {min} {identifier}" + +# @ acf +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})" + +# @ acf +#~ msgid "Parent fields" +#~ msgstr "Übergeordnete Felder" + +# @ acf +#~ msgid "Sibling fields" +#~ msgstr "Geschwister-Felder" + +# @ acf +#~ msgid "Locating" +#~ msgstr "Lokalisiere" + +# @ acf +#~ msgid "No embed found for the given URL." +#~ msgstr "Keine Inhalte für die eingegebene URL gefunden." + +# @ acf +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimum der Einträge mit ({min} Einträge) erreicht" + +# @ acf +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomie" + +# @ acf +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportieren der Feld-Gruppen nach PHP" + +# @ acf +#~ msgid "Download export file" +#~ msgstr "JSON-Datei exportieren" + +# @ acf +#~ msgid "Generate export code" +#~ msgstr "Erstelle PHP-Code" + +# @ acf +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Ein Tab-Feld wird nicht korrekt dargestellt, wenn es zu einem " +#~ "Wiederholung- oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden " +#~ "ist" + +# @ acf +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Mit \"Tab Feldern\" können Felder für eine bessere Struktur im Editor in " +#~ "Tabs zusammengefasst werden." + +# @ acf +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle Felder, die auf dieses \"Tab Feld\" folgen (oder bis ein weiteres " +#~ "\"Tab Feld\" definiert ist), werden in einem Tab mit dem Namen dieses " +#~ "Felds zusammengefasst." + +# @ acf +#~ msgid "Getting Started" +#~ msgstr "Erste Schritte" + +# @ acf +#~ msgid "Field Types" +#~ msgstr "Feld-Typen" + +# @ acf +#~ msgid "Functions" +#~ msgstr "Funktionen" + +# @ acf +#~ msgid "Actions" +#~ msgstr "Aktionen" + +#~ msgid "How to" +#~ msgstr "Kurzanleitungen" + +# @ acf +#~ msgid "Tutorials" +#~ msgstr "Ausführliche Anleitungen" + +#~ msgid "FAQ" +#~ msgstr "Häufig gestellte Fragen" + +#~ msgid "Term meta upgrade not possible (termmeta table does not exist)" +#~ msgstr "" +#~ "Term Meta-Aktualisierung war nicht möglich (die termmeta-Tabelle " +#~ "existiert nicht)" + +# @ acf +#~ msgid "Error" +#~ msgstr "Fehler" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "Ein Feld bedarf Ihrer Aufmerksamkeit." +#~ msgstr[1] "%d Felder bedürfen Ihrer Aufmerksamkeit." + +#~ msgid "" +#~ "Error validating ACF PRO license URL (website does not match). Please re-" +#~ "activate your license" +#~ msgstr "" +#~ "Fehler bei der Überprüfung der ACF PRO Lizenz URL (Webseiten stimmen " +#~ "nicht überein). Bitte reaktivieren sie ihre Lizenz" + +# @ acf +#~ msgid "'How to' guides" +#~ msgstr "Kurzanleitungen" + +# @ acf +#~ msgid "Created by" +#~ msgstr "Erstellt von" + +# @ acf +#~ msgid "See what's new" +#~ msgstr "Was ist neu" + +# @ acf +#~ msgid "eg. Show extra content" +#~ msgstr "z.B. Zeige zusätzliche Inhalte" + +#~ msgid "" +#~ "Error validating license URL (website does not match). Please re-activate " +#~ "your license" +#~ msgstr "" +#~ "Fehler bei der Überprüfung der Lizenz-URL (Webseite stimmt nicht " +#~ "überein). Bitte reaktivieren Sie ihre Lizenz" + +# @ acf +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Erfolgreich. Der Import hat %s Feld-Gruppen hinzugefügt: %s" + +# @ acf +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Warnung. Der Import hat %s Feld-Gruppen erkannt, die schon " +#~ "vorhanden sind und diese ignoriert: %s" + +# @ acf +#~ msgid "Upgrade ACF" +#~ msgstr "Aktualisiere ACF" + +# @ acf +#~ msgid "Upgrade" +#~ msgstr "Aktualisieren" + +# @ acf +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "Die folgenden Seiten erfordern eine Datenbank- Aktualisierung. Markieren " +#~ "Sie die gewünschten Seiten und klicken \\\"Aktualisiere Datenbank\\\"." + +# @ acf +#~ msgid "Select" +#~ msgstr "Auswahlmenü" + +# @ acf +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "" +#~ "Verbindungsfehler. Entschuldigung, versuchen Sie es bitte später " +#~ "noch einmal" + +# @ acf +#~ msgid "Done" +#~ msgstr "Fertig" + +# @ acf +#~ msgid "Today" +#~ msgstr "Heute" + +# @ acf +#~ msgid "Show a different month" +#~ msgstr "Zeige einen anderen Monat" + +# @ acf +#~ msgid "See what's new in" +#~ msgstr "Neuerungen in" + +#~ msgid "Upgrading data to" +#~ msgstr "Aktualisiere Daten auf" + +# @ acf +#~ msgid "Return format" +#~ msgstr "Rückgabe-Format" + +# @ acf +#~ msgid "uploaded to this post" +#~ msgstr "zu diesem Beitrag hochgeladen" + +# @ acf +#~ msgid "File Name" +#~ msgstr "Dateiname" + +# @ acf +#~ msgid "File Size" +#~ msgstr "Dateigröße" + +# @ acf +#~ msgid "No File selected" +#~ msgstr "Keine Datei ausgewählt" + +# @ acf +#~ msgid "License" +#~ msgstr "Lizenz" + +# @ acf +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Um die Aktualisierungs-Fähigkeit freizuschalten, tragen Sie bitte Ihren " +#~ "Lizenzschlüssel im darunterliegenden Feld ein. Sollten Sie noch keinen " +#~ "Lizenzschlüssel besitzen, informieren Sie sich bitte hier über die" + +# @ acf +#~ msgid "details & pricing" +#~ msgstr "Details und Preise." + +# @ acf +#~ 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 "" +#~ "Um die Aktualisierungen freizuschalten, tragen Sie bitte Ihren " +#~ "Lizenzschlüssel auf der Aktualisierungen-Seite ein. " +#~ "Sollten Sie noch keinen Lizenzschlüssel besitzen, informieren Sie sich " +#~ "bitte hier über die Details und Preise" + +# @ acf +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +# @ acf +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +# @ acf +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +# @ acf +#~ msgid "Drag and drop to reorder" +#~ msgstr "Mittels Drag-and-Drop die Reihenfolge ändern" + +# @ acf +#~ msgid "Add new %s " +#~ msgstr "Neue %s " + +# @ acf +#~ msgid "Save Options" +#~ msgstr "Optionen speichern" + +#~ msgid "Sync Available" +#~ msgstr "Synchronisierung verfügbar" + +# @ acf +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Bitte beachten Sie, dass der gesamte Text zuerst durch eine WordPress " +#~ "Funktion gefiltert wird. Siehe: " + +# @ acf +#~ msgid "Warning" +#~ msgstr "Warnung" + +# @ acf +#~ msgid "Show Field Keys" +#~ msgstr "Zeige Feld-Schlüssel" + +# @ acf +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "" +#~ "Felder-Gruppen werden nach diesem Wert sortiert, vom niedrigsten zum " +#~ "höchsten Wert." + +# @ acf +#~ msgid "Hide / Show All" +#~ msgstr "Alle Verstecken" + +# @ acf +#~ msgid "5.2.6" +#~ msgstr "5.2.6" diff --git a/lang/pro/acf-en_GB.po b/lang/pro/acf-en_GB.po new file mode 100644 index 0000000..dc38951 --- /dev/null +++ b/lang/pro/acf-en_GB.po @@ -0,0 +1,775 @@ +# Copyright (C) 2022 Advanced Custom Fields PRO +# This file is distributed under the same license as the Advanced Custom Fields PRO package. +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields PRO\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-23 14:07+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: Delicious Brains \n" +"Language-Team: WP Engine \n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "" + +#: pro/blocks.php:168 +msgid "Block type name is required." +msgstr "" + +#. translators: The name of the block type +#: pro/blocks.php:176 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:719 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:720 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:721 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:724 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:929 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:935 +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:523 +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 Activation Error. Your defined licence key has changed, but an " +"error occurred when deactivating your old 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 "" +"ACF Activation Error. Your defined licence key has changed, but an " +"error occurred when connecting to activation server" + +#: 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:561 +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:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 license." + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:155 +msgid "Layout" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:163, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:162 +msgid "Table" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:164 +msgid "Row" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:879 +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:884 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:999 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1003 +msgid "(no title)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1036 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1040 +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:31, +#: pro/fields/class-acf-field-repeater.php:80, +#: pro/fields/class-acf-field-repeater.php:272 +msgid "Add Row" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:931, +#: pro/fields/class-acf-field-flexible-content.php:1010 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:930, +#: pro/fields/class-acf-field-flexible-content.php:1009 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:370 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:693 +msgid "Minimum Layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:704 +msgid "Maximum Layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:715, +#: pro/fields/class-acf-field-repeater.php:268 +msgid "Button Label" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1699, +#: pro/fields/class-acf-field-repeater.php:888 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1710 +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:1726 +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:73 +msgid "Add Image to Gallery" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:552 +msgid "Return Format" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:558 +msgid "Image Array" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:559 +msgid "Image URL" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:560 +msgid "Image ID" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:568 +msgid "Library" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:569 +msgid "Limit the media library choice" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:574, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:575 +msgid "Uploaded to post" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:611 +msgid "Minimum Selection" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Maximum Selection" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:631 +msgid "Minimum" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:632, +#: pro/fields/class-acf-field-gallery.php:668 +msgid "Restrict which images can be uploaded" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:635, +#: pro/fields/class-acf-field-gallery.php:671 +msgid "Width" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:646, +#: pro/fields/class-acf-field-gallery.php:682 +msgid "Height" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:658, +#: pro/fields/class-acf-field-gallery.php:694 +msgid "File size" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:667 +msgid "Maximum" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:703 +msgid "Allowed file types" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:704 +msgid "Comma separated list. Leave blank for all types" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:723 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:724 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:728 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:737 +msgid "Preview Size" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:840 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:432 +msgid "Minimum rows reached ({min} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:56 +msgid "Order will be assigned upon save" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:140 +msgid "Sub Fields" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:172 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:173 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:184 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:185 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:215 +msgid "Minimum Rows" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:226 +msgid "Maximum Rows" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:256 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:257 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:972 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:986 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:995 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:357 +msgid "Click to reorder" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Add row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:392 +msgid "Remove row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:436, +#: pro/fields/class-acf-repeater-table.php:453, +#: pro/fields/class-acf-repeater-table.php:454 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444, +#: pro/fields/class-acf-repeater-table.php:445 +msgid "First Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448, +#: pro/fields/class-acf-repeater-table.php:449 +msgid "Previous Page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:458 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465, +#: pro/fields/class-acf-repeater-table.php:466 +msgid "Next Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469, +#: pro/fields/class-acf-repeater-table.php:470 +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 "Deactivate Licence" + +#: pro/admin/views/html-settings-updates.php:6 +msgid "Activate License" +msgstr "Activate Licence" + +#: pro/admin/views/html-settings-updates.php:16 +msgid "License Information" +msgstr "Licence Information" + +#: 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 "" +"To unlock updates, please enter your licence key below. If you don't have a " +"licence key, please see details & pricing." + +#: pro/admin/views/html-settings-updates.php:37 +msgid "License Key" +msgstr "Licence Key" + +#: pro/admin/views/html-settings-updates.php:22 +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: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 "Enter your licence key to unlock updates" + +#: 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 "Please reactivate your licence to unlock updates" + +#~ msgid "Please enter your license key above to unlock updates" +#~ msgstr "Please enter your licence key above to unlock updates" diff --git a/lang/pro/acf-es_ES.po b/lang/pro/acf-es_ES.po new file mode 100644 index 0000000..c8917c6 --- /dev/null +++ b/lang/pro/acf-es_ES.po @@ -0,0 +1,4174 @@ +# 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 "" +"Project-Id-Version: Advanced Custom Fields\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2022-08-24 21:37-0400\n" +"Last-Translator: WP Overnight \n" +"Language-Team: \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: acf.php:497 +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:495 +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:526 +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:517 +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:355 +msgid "Invalid request." +msgstr "Petición no válida." + +#: includes/fields/class-acf-field-select.php:663 +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:667 +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:651 +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:642 +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:470 +msgid "%s requires a valid attachment ID." +msgstr "%s necesita un ID de adjunto válido." + +#: includes/admin/views/field-group-options.php:27 +msgid "Show in REST API" +msgstr "Mostrar en la API REST" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Activar la transparencia" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Array RGBA" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Cadena RGBA" + +#: includes/fields/class-acf-field-color_picker.php:95 +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Cadena hexadecimal" + +#: includes/admin/views/html-admin-navigation.php:89 +msgid "Upgrade to Pro" +msgstr "Actualizar a la versión Pro" + +#: includes/admin/admin-field-group.php:194 +#: assets/build/js/acf-field-group.js:745 +#: assets/build/js/acf-field-group.js:908 +msgid "Gallery (Pro only)" +msgstr "Galería (solo Pro)" + +#: includes/admin/admin-field-group.php:193 +#: assets/build/js/acf-field-group.js:742 +#: assets/build/js/acf-field-group.js:898 +msgid "Clone (Pro only)" +msgstr "Clon (solo Pro)" + +#: includes/admin/admin-field-group.php:192 +#: assets/build/js/acf-field-group.js:742 +#: assets/build/js/acf-field-group.js:895 +msgid "Flexible Content (Pro only)" +msgstr "Contenido flexible (solo Pro)" + +#: includes/admin/admin-field-group.php:191 +#: assets/build/js/acf-field-group.js:742 +#: assets/build/js/acf-field-group.js:892 +msgid "Repeater (Pro only)" +msgstr "Repetidor (solo Pro)" + +#. Author of the plugin +msgid "Delicious Brains" +msgstr "Delicious Brains" + +#: includes/admin/admin-field-group.php:385 +msgctxt "post status" +msgid "Active" +msgstr "Activo" + +#: includes/fields/class-acf-field-email.php:175 +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:74 +msgid "Color value" +msgstr "Valor del color" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Seleccionar el color por defecto" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Vaciar el color" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloques" + +#: includes/acf-wp-functions.php:83 +msgid "Options" +msgstr "Opciones" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Usuarios" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementos del menú" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Adjuntos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomías" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Entradas" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupo de campos JSON (más nuevo)" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Grupo de campos original" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Última actualización: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Lo siento, este grupo de campos no está disponible para la comparacion diff." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "ID de grupo de campos no válido." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Parámetro(s) de grupo de campos no válido(s)" + +#: includes/admin/admin-field-groups.php:484 +msgid "Awaiting save" +msgstr "Esperando el guardado" + +#: includes/admin/admin-field-groups.php:481 +msgid "Saved" +msgstr "Guardado" + +#: includes/admin/admin-field-groups.php:477 +msgid "Import" +msgstr "Importar" + +#: includes/admin/admin-field-groups.php:473 +msgid "Review changes" +msgstr "Revisar los cambios" + +#: includes/admin/admin-field-groups.php:449 +msgid "Located in: %s" +msgstr "Localizado en: %s" + +#: includes/admin/admin-field-groups.php:445 +msgid "Located in plugin: %s" +msgstr "Localizado en el plugin: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Located in theme: %s" +msgstr "Localizado en el tema: %s" + +#: includes/admin/admin-field-groups.php:419 +msgid "Various" +msgstr "Varios" + +#: includes/admin/admin-field-groups.php:198 +#: includes/admin/admin-field-groups.php:533 +msgid "Sync changes" +msgstr "Sincronizar cambios" + +#: includes/admin/admin-field-groups.php:197 +msgid "Loading diff" +msgstr "Cargando diff" + +#: includes/admin/admin-field-groups.php:196 +msgid "Review local JSON changes" +msgstr "Revisar cambios de JSON local" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Visitar web" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Ver detalles" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Información" + +#: includes/admin/admin.php:160 +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:156 +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:152 +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:149 +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:146 includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ayuda y soporte" + +#: includes/admin/admin.php:137 +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:134 +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:132 +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:129 includes/admin/admin.php:131 +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." + +#: acf.php:440 includes/admin/admin-field-group.php:385 +#: includes/admin/admin-field-groups.php:230 +msgctxt "post status" +msgid "Disabled" +msgstr "Desactivado" + +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Nonce no válido." + +#: includes/fields/class-acf-field-user.php:350 +msgid "Error loading field." +msgstr "Error al cargar el campo." + +#: assets/build/js/acf-input.js:2596 assets/build/js/acf-input.js:2657 +#: assets/build/js/acf-input.js:2904 assets/build/js/acf-input.js:2978 +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:71 +#: 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:364 +msgid "%s value is required" +msgstr "El valor de %s es obligatorio" + +#: includes/admin/views/field-group-field-conditional-logic.php:60 +msgid "Show this field if" +msgstr "Mostrar este campo si" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Lógica condicional" + +#: includes/admin/admin.php:201 +#: includes/admin/views/field-group-field-conditional-logic.php:157 +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "y" + +#: includes/admin/admin-field-groups.php:269 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/html-notice-upgrade.php:31 +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/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "¡Gracias por actualizar a %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Es necesario actualizar la base de datos" + +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Página de opciones" + +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galería" + +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Contenido flexible" + +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Volver a todas las herramientas" + +#: includes/admin/views/field-group-options.php:162 +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/field-group-options.php:162 +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/field-group-options.php:161 +msgid "Hide on screen" +msgstr "Ocultar en pantalla" + +#: includes/admin/views/field-group-options.php:153 +msgid "Send Trackbacks" +msgstr "Enviar trackbacks" + +#: includes/admin/views/field-group-options.php:152 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/views/field-group-options.php:151 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/views/field-group-options.php:149 +msgid "Page Attributes" +msgstr "Atributos de página" + +#: includes/admin/views/field-group-options.php:148 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:147 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:146 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:145 +msgid "Revisions" +msgstr "Revisiones" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:144 +msgid "Comments" +msgstr "Comentarios" + +#: includes/admin/views/field-group-options.php:143 +msgid "Discussion" +msgstr "Discusión" + +#: includes/admin/views/field-group-options.php:141 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/views/field-group-options.php:140 +msgid "Content Editor" +msgstr "Editor de contenido" + +#: includes/admin/views/field-group-options.php:139 +msgid "Permalink" +msgstr "Enlace permanente" + +#: includes/admin/views/field-group-options.php:128 +msgid "Shown in field group list" +msgstr "Mostrado en lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:115 +msgid "Field groups with a lower order will appear first" +msgstr "Los grupos de campos con menor orden aparecerán primero" + +#: includes/admin/views/field-group-options.php:114 +msgid "Order No." +msgstr "N.º de orden" + +#: includes/admin/views/field-group-options.php:105 +msgid "Below fields" +msgstr "Debajo de los campos" + +#: includes/admin/views/field-group-options.php:104 +msgid "Below labels" +msgstr "Debajo de las etiquetas" + +#: includes/admin/views/field-group-options.php:97 +msgid "Instruction placement" +msgstr "Ubicación de la instrucción" + +#: includes/admin/views/field-group-options.php:80 +msgid "Label placement" +msgstr "Ubicación de la etiqueta" + +#: includes/admin/views/field-group-options.php:70 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:69 +msgid "Normal (after content)" +msgstr "Normal (después del contenido)" + +#: includes/admin/views/field-group-options.php:68 +msgid "High (after title)" +msgstr "Alta (después del título)" + +#: includes/admin/views/field-group-options.php:61 +msgid "Position" +msgstr "Posición" + +#: includes/admin/views/field-group-options.php:52 +msgid "Seamless (no metabox)" +msgstr "Directo (sin caja meta)" + +#: includes/admin/views/field-group-options.php:51 +msgid "Standard (WP metabox)" +msgstr "Estándar (caja meta de WP)" + +#: includes/admin/views/field-group-options.php:44 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-fields.php:44 +msgid "+ Add Field" +msgstr "+ Añadir campo" + +#: includes/admin/views/field-group-fields.php:19 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"No hay campos. Haz clic en el botón + Añadir campo para " +"crear tu primer campo." + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/admin-field-groups.php:264 +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Clave" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Orden" + +#: includes/admin/views/field-group-field.php:215 +msgid "Close Field" +msgstr "Cerrar campo" + +#: includes/admin/views/field-group-field.php:201 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:185 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:167 +msgid "width" +msgstr "ancho" + +#: includes/admin/views/field-group-field.php:161 +msgid "Wrapper Attributes" +msgstr "Atributos del contenedor" + +#: includes/admin/views/field-group-field.php:135 +msgid "Required?" +msgstr "¿Obligatorio?" + +#: includes/admin/views/field-group-field.php:122 +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/field-group-field.php:121 +msgid "Instructions" +msgstr "Instrucciones" + +#: includes/admin/views/field-group-field.php:106 +msgid "Field Type" +msgstr "Tipo de campo" + +#: includes/admin/views/field-group-field.php:93 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Una sola palabra, sin espacios. Se permiten guiones y guiones bajos" + +#: includes/admin/views/field-group-field.php:92 +msgid "Field Name" +msgstr "Nombre del campo" + +#: includes/admin/views/field-group-field.php:79 +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/field-group-field.php:78 +msgid "Field Label" +msgstr "Etiqueta del campo" + +#: includes/admin/views/field-group-field.php:59 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/views/field-group-field.php:59 +msgid "Delete field" +msgstr "Borrar campo" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move field to another group" +msgstr "Mover campo a otro grupo" + +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:53 +#: includes/admin/views/field-group-field.php:56 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:49 +msgid "Drag to reorder" +msgstr "Arrastra para reordenar" + +#: includes/admin/admin-field-group.php:175 +#: includes/admin/views/html-location-group.php:3 +#: assets/build/js/acf-field-group.js:1694 +#: assets/build/js/acf-field-group.js:2011 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos si" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:34 +msgid "No updates available." +msgstr "No hay actualizaciones disponibles." + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Leyendo tareas de actualización..." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Fallo al actualizar." + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Actualización completa." + +#: includes/admin/views/html-admin-page-upgrade-network.php:148 +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Actualizando datos a la versión %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121 +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "El sitio está actualizado" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sitio" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Actualizar los sitios" + +#: includes/admin/views/html-admin-page-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/field-group-field-conditional-logic.php:172 +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Añadir grupo de reglas" + +#: includes/admin/views/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/field-group-locations.php:9 +msgid "Rules" +msgstr "Reglas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:472 +msgid "Copied" +msgstr "Copiado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:435 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: includes/admin/tools/class-acf-admin-tool-export.php:405 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"El siguiente código puede ser utilizado para registrar una versión local del " +"o los grupos seleccionados. Un grupo de campos local puede brindar muchos " +"beneficios como tiempos de carga más cortos, 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 como un archivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:334 +msgid "Export File" +msgstr "Exportar archivo" + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button 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. Utiliza el botón de descarga para exportar a un " +"archivo .json que puedes importar en otra instalación de ACF. Utiliza el " +"botón generar para exportar a código PHP que puedes incluir en tu tema." + +#: includes/admin/tools/class-acf-admin-tool-export.php:233 +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Selecciona grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos." +msgstr[1] "Exportado %s 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:335 +#: includes/admin/tools/class-acf-admin-tool-export.php:364 +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:142 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Se ha importado un grupo de campos" +msgstr[1] "Se han importado %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:111 +msgid "Import file empty" +msgstr "Archivo de imporación vacío" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Incorrect file type" +msgstr "Tipo de campo incorrecto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:97 +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:66 +msgid "Import File" +msgstr "Importar archivo" + +#: 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 field groups." +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:28 +msgid "Import Field Groups" +msgstr "Importar grupo de campos" + +#: includes/admin/admin-field-groups.php:472 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:800 +msgid "Select %s" +msgstr "Selecciona %s" + +#: includes/admin/admin-field-groups.php:505 +#: includes/admin/admin-field-groups.php:525 +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:505 +msgid "Duplicate this item" +msgstr "Duplicar este elemento" + +#: includes/admin/admin-field-groups.php:263 +#: includes/admin/views/field-group-options.php:127 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Descripción" + +#: includes/admin/admin-field-groups.php:469 +#: includes/admin/admin-field-groups.php:687 +msgid "Sync available" +msgstr "Sincronización disponible" + +#: includes/admin/admin-field-groups.php:612 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:555 +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-field-groups.php:116 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activo (%s)" +msgstr[1] "Activos (%s)" + +#: includes/admin/admin-upgrade.php:201 +msgid "Review sites & upgrade" +msgstr "Revisar sitios y actualizar" + +#: includes/admin/admin-upgrade.php:51 includes/admin/admin-upgrade.php:113 +#: includes/admin/admin-upgrade.php:114 includes/admin/admin-upgrade.php:177 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Actualizar base de datos" + +#: includes/admin/admin.php:49 includes/admin/views/field-group-options.php:142 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: includes/admin/admin-field-group.php:804 +msgid "Move Field" +msgstr "Mover campo" + +#: includes/admin/admin-field-group.php:797 +msgid "Please select the destination for this field" +msgstr "Por favor, selecciona el destino para este campo" + +#: includes/admin/admin-field-group.php:758 +msgid "Close Window" +msgstr "Cerrar ventana" + +#: includes/admin/admin-field-group.php:754 +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/admin-field-group.php:752 +msgid "Move Complete." +msgstr "Movimiento completo." + +#: includes/admin/views/field-group-options.php:10 +msgid "Active" +msgstr "Activo" + +#: includes/admin/admin-field-group.php:361 +msgid "Field Keys" +msgstr "Claves de campo" + +#: includes/admin/admin-field-group.php:235 +#: includes/admin/tools/class-acf-admin-tool-export.php:288 +msgid "Settings" +msgstr "Ajustes" + +#: includes/admin/admin-field-group.php:234 +#: includes/admin/admin-field-groups.php:265 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/admin-field-group.php:176 assets/build/js/acf-input.js:963 +#: assets/build/js/acf-input.js:1075 +msgid "Null" +msgstr "Null" + +#: includes/acf-field-group-functions.php:846 +#: includes/admin/admin-field-group.php:173 +#: assets/build/js/acf-field-group.js:994 +#: assets/build/js/acf-field-group.js:1228 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:172 +#: assets/build/js/acf-field-group.js:318 +#: assets/build/js/acf-field-group.js:383 +msgid "(this field)" +msgstr "(este campo)" + +#: includes/admin/admin-field-group.php:170 assets/build/js/acf-input.js:900 +#: assets/build/js/acf-input.js:924 assets/build/js/acf-input.js:1002 +#: assets/build/js/acf-input.js:1030 +msgid "Checked" +msgstr "Seleccionado" + +#: includes/admin/admin-field-group.php:169 +#: assets/build/js/acf-field-group.js:1075 +#: assets/build/js/acf-field-group.js:1326 +msgid "Move Custom Field" +msgstr "Mover campo personalizado" + +#: includes/admin/admin-field-group.php:168 +#: assets/build/js/acf-field-group.js:341 +#: assets/build/js/acf-field-group.js:409 +msgid "No toggle fields available" +msgstr "No hay campos de conmutación disponibles" + +#: includes/admin/admin-field-group.php:167 +#: assets/build/js/acf-field-group.js:2056 +#: assets/build/js/acf-field-group.js:2425 +msgid "Move to trash. Are you sure?" +msgstr "Mover a papelera. ¿Estás seguro?" + +#: includes/admin/admin-field-group.php:166 +#: assets/build/js/acf-field-group.js:2047 +#: assets/build/js/acf-field-group.js:2413 +msgid "Field group title is required" +msgstr "El título del grupo de campos es obligatorio" + +#: includes/admin/admin-field-group.php:165 +#: assets/build/js/acf-field-group.js:1063 +#: assets/build/js/acf-field-group.js:1312 +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/admin-field-group.php:164 +#: assets/build/js/acf-field-group.js:893 +#: assets/build/js/acf-field-group.js:1110 +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/admin-field-group.php:93 +msgid "Field group draft updated." +msgstr "Borrador del grupo de campos actualizado." + +#: includes/admin/admin-field-group.php:92 +msgid "Field group scheduled for." +msgstr "Grupo de campos programado." + +#: includes/admin/admin-field-group.php:91 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:90 +msgid "Field group saved." +msgstr "Grupo de campos guardado." + +#: includes/admin/admin-field-group.php:89 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:86 +msgid "Field group deleted." +msgstr "Grupo de campos eliminado." + +#: includes/admin/admin-field-group.php:84 +#: includes/admin/admin-field-group.php:85 +#: includes/admin/admin-field-group.php:87 +msgid "Field group updated." +msgstr "Grupo de campos actualizado." + +#: includes/admin/admin-tools.php:119 +#: includes/admin/views/html-admin-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/locations.php:100 includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Página" + +#: includes/locations.php:99 includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Entrada" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relación" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Elección" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Desconocido" + +#: includes/fields.php:313 +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:355 includes/forms/form-front.php:49 +msgid "Content" +msgstr "Contenido" + +#: includes/forms/form-front.php:40 +msgid "Title" +msgstr "Título" + +#: includes/assets.php:371 includes/forms/form-comment.php:160 +#: assets/build/js/acf-input.js:6870 assets/build/js/acf-input.js:7822 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: includes/admin/admin-field-group.php:188 assets/build/js/acf-input.js:1102 +#: assets/build/js/acf-input.js:1230 +msgid "Selection is less than" +msgstr "La selección es menor que" + +#: includes/admin/admin-field-group.php:187 assets/build/js/acf-input.js:1084 +#: assets/build/js/acf-input.js:1202 +msgid "Selection is greater than" +msgstr "La selección es mayor que" + +#: includes/admin/admin-field-group.php:186 assets/build/js/acf-input.js:1051 +#: assets/build/js/acf-input.js:1170 +msgid "Value is less than" +msgstr "El valor es menor que" + +#: includes/admin/admin-field-group.php:185 assets/build/js/acf-input.js:1020 +#: assets/build/js/acf-input.js:1139 +msgid "Value is greater than" +msgstr "El valor es mayor que" + +#: includes/admin/admin-field-group.php:184 assets/build/js/acf-input.js:871 +#: assets/build/js/acf-input.js:960 +msgid "Value contains" +msgstr "El valor contiene" + +#: includes/admin/admin-field-group.php:183 assets/build/js/acf-input.js:846 +#: assets/build/js/acf-input.js:926 +msgid "Value matches pattern" +msgstr "El valor coincide con el patrón" + +#: includes/admin/admin-field-group.php:182 assets/build/js/acf-input.js:825 +#: assets/build/js/acf-input.js:999 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/admin-field-group.php:181 assets/build/js/acf-input.js:796 +#: assets/build/js/acf-input.js:944 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/admin-field-group.php:180 assets/build/js/acf-input.js:775 +#: assets/build/js/acf-input.js:841 +msgid "Has no value" +msgstr "No tiene ningún valor" + +#: includes/admin/admin-field-group.php:179 assets/build/js/acf-input.js:744 +#: assets/build/js/acf-input.js:783 +msgid "Has any value" +msgstr "No tiene algún valor" + +#: includes/assets.php:352 assets/build/js/acf.js:1489 +#: assets/build/js/acf.js:1550 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/assets.php:348 assets/build/js/acf.js:1641 +#: assets/build/js/acf.js:1747 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: includes/assets.php:368 assets/build/js/acf-input.js:8793 +#: assets/build/js/acf-input.js:10110 +msgid "%d fields require attention" +msgstr "%d campos requieren atención" + +#: includes/assets.php:367 assets/build/js/acf-input.js:8791 +#: assets/build/js/acf-input.js:10106 +msgid "1 field requires attention" +msgstr "1 campo requiere atención" + +#: includes/assets.php:366 includes/validation.php:286 +#: includes/validation.php:296 assets/build/js/acf-input.js:8784 +#: assets/build/js/acf-input.js:10101 +msgid "Validation failed" +msgstr "Validación fallida" + +#: includes/assets.php:365 assets/build/js/acf-input.js:8939 +#: assets/build/js/acf-input.js:10284 +msgid "Validation successful" +msgstr "Validación correcta" + +#: includes/media.php:54 assets/build/js/acf-input.js:6699 +#: assets/build/js/acf-input.js:7626 +msgid "Restricted" +msgstr "Restringido" + +#: includes/media.php:53 assets/build/js/acf-input.js:6529 +#: assets/build/js/acf-input.js:7390 +msgid "Collapse Details" +msgstr "Contraer detalles" + +#: includes/media.php:52 assets/build/js/acf-input.js:6529 +#: assets/build/js/acf-input.js:7387 +msgid "Expand Details" +msgstr "Ampliar detalles" + +#: includes/media.php:51 assets/build/js/acf-input.js:6401 +#: assets/build/js/acf-input.js:7235 +msgid "Uploaded to this post" +msgstr "Subido a esta publicación" + +#: includes/media.php:50 assets/build/js/acf-input.js:6437 +#: assets/build/js/acf-input.js:7274 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/assets.php:362 assets/build/js/acf-input.js:8561 +#: assets/build/js/acf-input.js:9872 +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:3413 +msgid "File type must be %s." +msgstr "El tipo de archivo debe ser %s." + +#: includes/admin/admin-field-group.php:174 +#: includes/admin/views/field-group-field-conditional-logic.php:60 +#: includes/admin/views/field-group-field-conditional-logic.php:170 +#: includes/admin/views/field-group-locations.php:36 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3409 assets/build/js/acf-field-group.js:447 +#: assets/build/js/acf-field-group.js:1727 +#: assets/build/js/acf-field-group.js:538 +#: assets/build/js/acf-field-group.js:2055 +msgid "or" +msgstr "o" + +#: includes/api/api-helpers.php:3382 +msgid "File size must not exceed %s." +msgstr "El tamaño del archivo no debe ser mayor de %s." + +#: includes/api/api-helpers.php:3377 +msgid "File size must be at least %s." +msgstr "El tamaño de archivo debe ser al menos %s." + +#: includes/api/api-helpers.php:3362 +msgid "Image height must not exceed %dpx." +msgstr "La altura de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3357 +msgid "Image height must be at least %dpx." +msgstr "La altura de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:3343 +msgid "Image width must not exceed %dpx." +msgstr "El ancho de la imagen no debe exceder %dpx." + +#: includes/api/api-helpers.php:3338 +msgid "Image width must be at least %dpx." +msgstr "El ancho de la imagen debe ser al menos %dpx." + +#: includes/api/api-helpers.php:1569 includes/api/api-term.php:147 +msgid "(no title)" +msgstr "(sin título)" + +#: includes/api/api-helpers.php:864 +msgid "Full Size" +msgstr "Tamaño completo" + +#: includes/api/api-helpers.php:823 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:822 +msgid "Medium" +msgstr "Mediano" + +#: includes/api/api-helpers.php:821 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/acf-field-functions.php:841 +#: includes/admin/admin-field-group.php:171 +#: assets/build/js/acf-field-group.js:709 +#: assets/build/js/acf-field-group.js:846 +msgid "(no label)" +msgstr "(sin etiqueta)" + +#: includes/fields/class-acf-field-textarea.php:137 +msgid "Sets the textarea height" +msgstr "Establece la altura del área de texto" + +#: includes/fields/class-acf-field-textarea.php:136 +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:394 +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:393 +msgid "Toggle" +msgstr "Cambiar" + +#: includes/fields/class-acf-field-checkbox.php:353 +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:348 +msgid "Save Custom" +msgstr "Guardar personalizados" + +#: includes/fields/class-acf-field-checkbox.php:340 +msgid "Allow 'custom' values to be added" +msgstr "Permite añadir valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:335 +msgid "Allow Custom" +msgstr "Permitir personalizados" + +#: includes/fields/class-acf-field-checkbox.php:207 +msgid "Add new choice" +msgstr "Añadir nueva opción" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Toggle All" +msgstr "Invertir todos" + +#: includes/fields/class-acf-field-page_link.php:494 +msgid "Allow Archives URLs" +msgstr "Permitir las URLs de los archivos" + +#: includes/fields/class-acf-field-page_link.php:165 +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:961 +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Añadir" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:926 +msgid "Name" +msgstr "Nombre" + +#: includes/fields/class-acf-field-taxonomy.php:910 +msgid "%s added" +msgstr "%s añadido/s" + +#: includes/fields/class-acf-field-taxonomy.php:874 +msgid "%s already exists" +msgstr "%s ya existe" + +#: includes/fields/class-acf-field-taxonomy.php:862 +msgid "User unable to add new %s" +msgstr "El usuario no puede añadir nuevos %s" + +#: includes/fields/class-acf-field-taxonomy.php:807 +msgid "Term ID" +msgstr "ID de término" + +#: includes/fields/class-acf-field-taxonomy.php:806 +msgid "Term Object" +msgstr "Objeto de término" + +#: includes/fields/class-acf-field-taxonomy.php:790 +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:789 +msgid "Load Terms" +msgstr "Cargar términos" + +#: includes/fields/class-acf-field-taxonomy.php:778 +msgid "Connect selected terms to the post" +msgstr "Conectar los términos seleccionados con la publicación" + +#: includes/fields/class-acf-field-taxonomy.php:777 +msgid "Save Terms" +msgstr "Guardar términos" + +#: includes/fields/class-acf-field-taxonomy.php:766 +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:765 +msgid "Create Terms" +msgstr "Crear términos" + +#: includes/fields/class-acf-field-taxonomy.php:737 +msgid "Radio Buttons" +msgstr "Botones de radio" + +#: includes/fields/class-acf-field-taxonomy.php:736 +msgid "Single Value" +msgstr "Valor único" + +#: includes/fields/class-acf-field-taxonomy.php:734 +msgid "Multi Select" +msgstr "Selección múltiple" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:733 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "Multiple Values" +msgstr "Valores múltiples" + +#: includes/fields/class-acf-field-taxonomy.php:727 +msgid "Select the appearance of this field" +msgstr "Selecciona la apariencia de este campo" + +#: includes/fields/class-acf-field-taxonomy.php:726 +msgid "Appearance" +msgstr "Apariencia" + +#: includes/fields/class-acf-field-taxonomy.php:715 +msgid "Select the taxonomy to be displayed" +msgstr "Selecciona la taxonomía a mostrar" + +#: includes/fields/class-acf-field-taxonomy.php:673 +msgctxt "No terms" +msgid "No %s" +msgstr "Ningún %s" + +#: includes/fields/class-acf-field-number.php:251 +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:244 +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:229 +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:232 +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:227 +msgid "Save Other" +msgstr "Guardar otros" + +#: includes/fields/class-acf-field-radio.php:219 +msgid "Add 'other' choice to allow for custom values" +msgstr "Añade la opción 'otros' para permitir valores personalizados" + +#: includes/fields/class-acf-field-radio.php:214 +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:127 +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:115 +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:114 +msgid "Multi-expand" +msgstr "Multi-expansión" + +#: includes/fields/class-acf-field-accordion.php:103 +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:102 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Acordeón" + +#: includes/fields/class-acf-field-file.php:262 +#: includes/fields/class-acf-field-file.php:275 +msgid "Restrict which files can be uploaded" +msgstr "Restringir qué archivos que se pueden subir" + +#: includes/fields/class-acf-field-file.php:236 +msgid "File ID" +msgstr "ID del archivo" + +#: includes/fields/class-acf-field-file.php:235 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/fields/class-acf-field-file.php:234 +msgid "File Array" +msgstr "Array del archivo" + +#: includes/fields/class-acf-field-file.php:183 +msgid "Add File" +msgstr "Añadir archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:89 +#: includes/fields/class-acf-field-file.php:183 +msgid "No file selected" +msgstr "Ningún archivo seleccionado" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nombre del archivo" + +#: includes/fields/class-acf-field-file.php:60 +#: assets/build/js/acf-input.js:2334 assets/build/js/acf-input.js:2603 +msgid "Update File" +msgstr "Actualizar archivo" + +#: includes/fields/class-acf-field-file.php:59 +#: assets/build/js/acf-input.js:2333 assets/build/js/acf-input.js:2602 +msgid "Edit File" +msgstr "Editar archivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:55 +#: includes/fields/class-acf-field-file.php:58 +#: assets/build/js/acf-input.js:2308 assets/build/js/acf-input.js:2575 +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:440 +msgid "Specify the value returned" +msgstr "Especifica el valor devuelto" + +#: includes/fields/class-acf-field-select.php:422 +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:367 +#: includes/fields/class-acf-field-select.php:376 +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:255 includes/media.php:48 +#: assets/build/js/acf-input.js:6311 assets/build/js/acf-input.js:7120 +msgctxt "verb" +msgid "Select" +msgstr "Selecciona" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Error al cargar" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Buscando…" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Cargando más resultados…" + +#: includes/fields/class-acf-field-select.php:115 +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:114 +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:113 +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:112 +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:111 +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:110 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-select.php:108 +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:107 +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:738 +msgctxt "noun" +msgid "Select" +msgstr "Selección" + +#: includes/fields/class-acf-field-user.php:97 +msgid "User ID" +msgstr "ID del usuario" + +#: includes/fields/class-acf-field-user.php:96 +msgid "User Object" +msgstr "Grupo de objetos" + +#: includes/fields/class-acf-field-user.php:95 +msgid "User Array" +msgstr "Grupo de usuarios" + +#: includes/fields/class-acf-field-user.php:61 +msgid "All user roles" +msgstr "Todos los roles de usuario" + +#: includes/fields/class-acf-field-user.php:53 +msgid "Filter by role" +msgstr "Filtrar por perfil" + +#: includes/fields/class-acf-field-user.php:20 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:73 +msgid "Select Color" +msgstr "Seleccionar color" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Por defecto" + +#: includes/fields/class-acf-field-color_picker.php:69 +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:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Seleccionar" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Hecho" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ahora" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona horaria" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +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-tab.php:118 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Definir un punto final para detener las pestañas anteriores. Esto iniciará " +"un nuevo grupo de pestañas." + +#: includes/fields/class-acf-field-accordion.php:126 +#: includes/fields/class-acf-field-tab.php:117 +msgid "Endpoint" +msgstr "Variable" + +#: includes/admin/views/field-group-options.php:88 +#: includes/fields/class-acf-field-tab.php:108 +msgid "Left aligned" +msgstr "Alineada a la izquierda" + +#: includes/admin/views/field-group-options.php:87 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Top aligned" +msgstr "Alineada arriba" + +#: includes/fields/class-acf-field-tab.php:103 +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:154 +msgid "Value must be a valid URL" +msgstr "El valor debe ser una URL válida" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: 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:142 +msgid "Opens in a new window/tab" +msgstr "Abrir en una nueva ventana/pestaña" + +#: includes/fields/class-acf-field-link.php:137 +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:191 +#: includes/fields/class-acf-field-range.php:198 +msgid "Step Size" +msgstr "Tamaño de paso" + +#: includes/fields/class-acf-field-number.php:180 +#: includes/fields/class-acf-field-range.php:186 +msgid "Maximum Value" +msgstr "Valor máximo" + +#: includes/fields/class-acf-field-number.php:169 +#: includes/fields/class-acf-field-range.php:174 +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:205 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-radio.php:280 +#: includes/fields/class-acf-field-select.php:446 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:204 +#: includes/fields/class-acf-field-checkbox.php:412 +#: includes/fields/class-acf-field-radio.php:279 +#: includes/fields/class-acf-field-select.php:445 +msgid "Label" +msgstr "Etiqueta" + +#: includes/fields/class-acf-field-button-group.php:203 +#: includes/fields/class-acf-field-checkbox.php:411 +#: includes/fields/class-acf-field-radio.php:278 +#: includes/fields/class-acf-field-select.php:444 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:188 +#: includes/fields/class-acf-field-checkbox.php:383 +#: includes/fields/class-acf-field-radio.php:262 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:187 +#: includes/fields/class-acf-field-checkbox.php:384 +#: includes/fields/class-acf-field-radio.php:263 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:148 +#: includes/fields/class-acf-field-checkbox.php:325 +#: includes/fields/class-acf-field-radio.php:192 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rojo : Rojo" + +#: includes/fields/class-acf-field-button-group.php:148 +#: includes/fields/class-acf-field-checkbox.php:325 +#: includes/fields/class-acf-field-radio.php:192 +#: includes/fields/class-acf-field-select.php:365 +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:325 +#: includes/fields/class-acf-field-radio.php:192 +#: includes/fields/class-acf-field-select.php:365 +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:324 +#: includes/fields/class-acf-field-radio.php:191 +#: includes/fields/class-acf-field-select.php:364 +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-page_link.php:506 +#: includes/fields/class-acf-field-post_object.php:406 +#: includes/fields/class-acf-field-select.php:398 +#: includes/fields/class-acf-field-user.php:79 +msgid "Select multiple values?" +msgstr "¿Seleccionar múltiples valores?" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:482 +#: includes/fields/class-acf-field-post_object.php:394 +#: includes/fields/class-acf-field-radio.php:202 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-taxonomy.php:748 +#: includes/fields/class-acf-field-user.php:68 +msgid "Allow Null?" +msgstr "¿Permitir Null?" + +#: includes/fields/class-acf-field-page_link.php:249 +#: includes/fields/class-acf-field-post_object.php:250 +#: includes/fields/class-acf-field-taxonomy.php:948 +msgid "Parent" +msgstr "Superior" + +#: includes/fields/class-acf-field-wysiwyg.php:391 +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:390 +msgid "Delay initialization?" +msgstr "¿Retrasar el inicio?" + +#: includes/fields/class-acf-field-wysiwyg.php:378 +msgid "Show Media Upload Buttons?" +msgstr "¿Mostrar botones de subida de medios?" + +#: includes/fields/class-acf-field-wysiwyg.php:361 +msgid "Toolbar" +msgstr "Barra de herramientas" + +#: includes/fields/class-acf-field-wysiwyg.php:352 +msgid "Text Only" +msgstr "Sólo texto" + +#: includes/fields/class-acf-field-wysiwyg.php:351 +msgid "Visual Only" +msgstr "Sólo visual" + +#: includes/fields/class-acf-field-wysiwyg.php:350 +msgid "Visual & Text" +msgstr "Visual y Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:345 +msgid "Tabs" +msgstr "Pestañas" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Haz clic para iniciar TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-text.php:168 +#: includes/fields/class-acf-field-textarea.php:221 +msgid "Value must not exceed %d characters" +msgstr "El valor no debe exceder los %d caracteres" + +#: includes/fields/class-acf-field-text.php:142 +#: includes/fields/class-acf-field-textarea.php:126 +msgid "Leave blank for no limit" +msgstr "Déjalo en blanco para ilimitado" + +#: includes/fields/class-acf-field-text.php:141 +#: includes/fields/class-acf-field-textarea.php:125 +msgid "Character Limit" +msgstr "Límite de caracteres" + +#: includes/fields/class-acf-field-email.php:151 +#: includes/fields/class-acf-field-number.php:159 +#: includes/fields/class-acf-field-password.php:96 +#: includes/fields/class-acf-field-range.php:222 +#: includes/fields/class-acf-field-text.php:131 +msgid "Appears after the input" +msgstr "Aparece después del campo" + +#: includes/fields/class-acf-field-email.php:150 +#: includes/fields/class-acf-field-number.php:158 +#: includes/fields/class-acf-field-password.php:95 +#: includes/fields/class-acf-field-range.php:221 +#: includes/fields/class-acf-field-text.php:130 +msgid "Append" +msgstr "Anexar" + +#: includes/fields/class-acf-field-email.php:140 +#: includes/fields/class-acf-field-number.php:148 +#: includes/fields/class-acf-field-password.php:85 +#: includes/fields/class-acf-field-range.php:211 +#: includes/fields/class-acf-field-text.php:120 +msgid "Appears before the input" +msgstr "Aparece antes del campo" + +#: includes/fields/class-acf-field-email.php:139 +#: includes/fields/class-acf-field-number.php:147 +#: includes/fields/class-acf-field-password.php:84 +#: includes/fields/class-acf-field-range.php:210 +#: includes/fields/class-acf-field-text.php:119 +msgid "Prepend" +msgstr "Anteponer" + +#: includes/fields/class-acf-field-email.php:129 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:74 +#: includes/fields/class-acf-field-text.php:109 +#: includes/fields/class-acf-field-textarea.php:115 +#: includes/fields/class-acf-field-url.php:113 +msgid "Appears within the input" +msgstr "Aparece en el campo" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:73 +#: includes/fields/class-acf-field-text.php:108 +#: includes/fields/class-acf-field-textarea.php:114 +#: includes/fields/class-acf-field-url.php:112 +msgid "Placeholder Text" +msgstr "Marcador de posición" + +#: includes/fields/class-acf-field-button-group.php:171 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:126 +#: includes/fields/class-acf-field-radio.php:246 +#: includes/fields/class-acf-field-range.php:164 +#: includes/fields/class-acf-field-text.php:98 +#: includes/fields/class-acf-field-textarea.php:104 +#: includes/fields/class-acf-field-url.php:102 +#: includes/fields/class-acf-field-wysiwyg.php:335 +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:752 +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:424 +#: includes/fields/class-acf-field-relationship.php:668 +msgid "Post ID" +msgstr "ID de publicación" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:423 +#: includes/fields/class-acf-field-relationship.php:667 +msgid "Post Object" +msgstr "Objeto de publicación" + +#: includes/fields/class-acf-field-relationship.php:651 +msgid "Maximum posts" +msgstr "Publicaciones máximas" + +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Minimum posts" +msgstr "Publicaciones mínimas" + +#: includes/admin/views/field-group-options.php:150 +#: includes/fields/class-acf-field-relationship.php:631 +msgid "Featured Image" +msgstr "Imagen destacada" + +#: includes/fields/class-acf-field-relationship.php:627 +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:626 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:617 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:714 +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taxonomía" + +#: includes/fields/class-acf-field-relationship.php:616 +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:610 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-page_link.php:474 +#: includes/fields/class-acf-field-post_object.php:386 +#: includes/fields/class-acf-field-relationship.php:602 +msgid "All taxonomies" +msgstr "Todas las taxonomías" + +#: includes/fields/class-acf-field-page_link.php:466 +#: includes/fields/class-acf-field-post_object.php:378 +#: includes/fields/class-acf-field-relationship.php:594 +msgid "Filter by Taxonomy" +msgstr "Filtrar por taxonomía" + +#: includes/fields/class-acf-field-page_link.php:458 +#: includes/fields/class-acf-field-post_object.php:370 +#: 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:450 +#: includes/fields/class-acf-field-post_object.php:362 +#: 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:469 +msgid "Search..." +msgstr "Buscar..." + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Selecciona taxonomía" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Seleccionar tipo de contenido" + +#: includes/fields/class-acf-field-relationship.php:65 +#: assets/build/js/acf-input.js:3686 assets/build/js/acf-input.js:4168 +msgid "No matches found" +msgstr "No se han encontrado coincidencias" + +#: includes/fields/class-acf-field-relationship.php:64 +#: assets/build/js/acf-input.js:3670 assets/build/js/acf-input.js:4147 +msgid "Loading" +msgstr "Cargando" + +#: includes/fields/class-acf-field-relationship.php:63 +#: assets/build/js/acf-input.js:3593 assets/build/js/acf-input.js:4051 +msgid "Maximum values reached ( {max} values )" +msgstr "Valores máximos alcanzados ( {max} valores )" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relación" + +#: includes/fields/class-acf-field-file.php:288 +#: includes/fields/class-acf-field-image.php:325 +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:287 +#: includes/fields/class-acf-field-image.php:324 +msgid "Allowed file types" +msgstr "Tipos de archivos permitidos" + +#: includes/fields/class-acf-field-file.php:274 +#: includes/fields/class-acf-field-image.php:287 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-file.php:265 +#: includes/fields/class-acf-field-file.php:278 +#: includes/fields/class-acf-field-image.php:277 +#: includes/fields/class-acf-field-image.php:314 +msgid "File size" +msgstr "Tamaño del archivo" + +#: includes/fields/class-acf-field-image.php:251 +#: includes/fields/class-acf-field-image.php:288 +msgid "Restrict which images can be uploaded" +msgstr "Restringir qué imágenes se pueden subir" + +#: includes/fields/class-acf-field-file.php:261 +#: includes/fields/class-acf-field-image.php:250 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:252 +#: includes/fields/class-acf-field-image.php:241 +msgid "Uploaded to post" +msgstr "Subidos al contenido" + +#: includes/fields/class-acf-field-file.php:251 +#: includes/fields/class-acf-field-image.php:240 +#: 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:246 +#: includes/fields/class-acf-field-image.php:235 +msgid "Limit the media library choice" +msgstr "Limitar las opciones de la biblioteca de medios" + +#: includes/fields/class-acf-field-file.php:245 +#: includes/fields/class-acf-field-image.php:234 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-image.php:222 +msgid "Preview Size" +msgstr "Tamaño de vista previa" + +#: includes/fields/class-acf-field-image.php:213 +msgid "Image ID" +msgstr "ID de imagen" + +#: includes/fields/class-acf-field-image.php:212 +msgid "Image URL" +msgstr "URL de imagen" + +#: includes/fields/class-acf-field-image.php:211 +msgid "Image Array" +msgstr "Array de imágenes" + +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:406 +#: includes/fields/class-acf-field-file.php:229 +#: includes/fields/class-acf-field-link.php:171 +#: includes/fields/class-acf-field-radio.php:273 +msgid "Specify the returned value on front end" +msgstr "Especificar el valor devuelto en la web" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:405 +#: includes/fields/class-acf-field-file.php:228 +#: includes/fields/class-acf-field-link.php:170 +#: includes/fields/class-acf-field-radio.php:272 +#: includes/fields/class-acf-field-taxonomy.php:801 +msgid "Return Value" +msgstr "Valor de retorno" + +#: includes/fields/class-acf-field-image.php:159 +msgid "Add Image" +msgstr "Añadir imagen" + +#: includes/fields/class-acf-field-image.php:159 +msgid "No image selected" +msgstr "No hay ninguna imagen seleccionada" + +#: includes/assets.php:351 includes/fields/class-acf-field-file.php:159 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:142 assets/build/js/acf.js:1488 +#: assets/build/js/acf.js:1549 +msgid "Remove" +msgstr "Quitar" + +#: includes/admin/views/field-group-field.php:56 +#: includes/fields/class-acf-field-file.php:157 +#: includes/fields/class-acf-field-image.php:137 +#: includes/fields/class-acf-field-link.php:142 +msgid "Edit" +msgstr "Editar" + +#: includes/fields/class-acf-field-image.php:67 includes/media.php:55 +#: assets/build/js/acf-input.js:6354 assets/build/js/acf-input.js:7174 +msgid "All images" +msgstr "Todas las imágenes" + +#: includes/fields/class-acf-field-image.php:66 +#: assets/build/js/acf-input.js:2997 assets/build/js/acf-input.js:3377 +msgid "Update Image" +msgstr "Actualizar imagen" + +#: includes/fields/class-acf-field-image.php:65 +#: assets/build/js/acf-input.js:2996 assets/build/js/acf-input.js:3376 +msgid "Edit Image" +msgstr "Editar imagen" + +#: includes/fields/class-acf-field-image.php:64 +#: assets/build/js/acf-input.js:2974 assets/build/js/acf-input.js:3351 +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:128 +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:127 +msgid "Escape HTML" +msgstr "Escapar HTML" + +#: includes/fields/class-acf-field-message.php:118 +#: includes/fields/class-acf-field-textarea.php:155 +msgid "No Formatting" +msgstr "Sin formato" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:154 +msgid "Automatically add <br>" +msgstr "Añadir <br> automáticamente" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:153 +msgid "Automatically add paragraphs" +msgstr "Añadir párrafos automáticamente" + +#: includes/fields/class-acf-field-message.php:112 +#: includes/fields/class-acf-field-textarea.php:149 +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:111 +#: includes/fields/class-acf-field-textarea.php:148 +msgid "New Lines" +msgstr "Nuevas líneas" + +#: includes/fields/class-acf-field-date_picker.php:237 +#: 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:203 +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:202 +msgid "Save Format" +msgstr "Guardar formato" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Siguiente" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoy" + +#: includes/fields/class-acf-field-date_picker.php:60 +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:254 +#: includes/fields/class-acf-field-image.php:291 +#: includes/fields/class-acf-field-oembed.php:279 +msgid "Width" +msgstr "Ancho" + +#: includes/fields/class-acf-field-oembed.php:276 +#: includes/fields/class-acf-field-oembed.php:289 +msgid "Embed Size" +msgstr "Tamaño de incrustación" + +#: includes/fields/class-acf-field-oembed.php:230 +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:190 +msgid "Text shown when inactive" +msgstr "Texto mostrado cuando está inactivo" + +#: includes/fields/class-acf-field-true_false.php:189 +msgid "Off Text" +msgstr "Texto desactivado" + +#: includes/fields/class-acf-field-true_false.php:173 +msgid "Text shown when active" +msgstr "Texto mostrado cuando está activo" + +#: includes/fields/class-acf-field-true_false.php:172 +msgid "On Text" +msgstr "Texto activado" + +#: includes/fields/class-acf-field-select.php:410 +#: includes/fields/class-acf-field-true_false.php:159 +msgid "Stylised UI" +msgstr "UI estilizada" + +#: includes/fields/class-acf-field-button-group.php:170 +#: includes/fields/class-acf-field-checkbox.php:366 +#: includes/fields/class-acf-field-color_picker.php:155 +#: includes/fields/class-acf-field-email.php:117 +#: includes/fields/class-acf-field-number.php:125 +#: includes/fields/class-acf-field-radio.php:245 +#: includes/fields/class-acf-field-range.php:163 +#: includes/fields/class-acf-field-select.php:375 +#: includes/fields/class-acf-field-text.php:97 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-true_false.php:148 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:334 +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:100 +#: includes/fields/class-acf-field-true_false.php:137 +msgid "Message" +msgstr "Mensaje" + +#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:83 +#: includes/fields/class-acf-field-true_false.php:193 +#: assets/build/js/acf.js:1645 assets/build/js/acf.js:1749 +msgid "No" +msgstr "No" + +#: includes/assets.php:349 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:176 +#: assets/build/js/acf.js:1643 assets/build/js/acf.js:1748 +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:470 +msgid "Row" +msgstr "Fila" + +#: includes/fields/class-acf-field-group.php:469 +msgid "Table" +msgstr "Tabla" + +#: includes/fields/class-acf-field-group.php:468 +msgid "Block" +msgstr "Bloque" + +#: includes/fields/class-acf-field-group.php:463 +msgid "Specify the style used to render the selected fields" +msgstr "" +"Especifica el estilo utilizado para representar los campos seleccionados" + +#: includes/fields.php:359 includes/fields/class-acf-field-button-group.php:181 +#: includes/fields/class-acf-field-checkbox.php:377 +#: includes/fields/class-acf-field-group.php:462 +#: includes/fields/class-acf-field-radio.php:256 +msgid "Layout" +msgstr "Estructura" + +#: includes/fields/class-acf-field-group.php:446 +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:232 +msgid "Customize the map height" +msgstr "Personalizar la altura del mapa" + +#: includes/fields/class-acf-field-google-map.php:231 +#: includes/fields/class-acf-field-image.php:265 +#: includes/fields/class-acf-field-image.php:302 +#: includes/fields/class-acf-field-oembed.php:292 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Establecer el nivel inicial de zoom" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:193 +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centrar inicialmente el mapa" + +#: includes/fields/class-acf-field-google-map.php:192 +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Buscar dirección..." + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Encontrar ubicación actual" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Borrar ubicación" + +#: includes/fields/class-acf-field-google-map.php:155 +#: includes/fields/class-acf-field-relationship.php:615 +msgid "Search" +msgstr "Buscar" + +#: includes/fields/class-acf-field-google-map.php:60 +#: assets/build/js/acf-input.js:2673 assets/build/js/acf-input.js:3004 +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:217 +#: includes/fields/class-acf-field-date_time_picker.php:202 +#: 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:179 +#: includes/fields/class-acf-field-date_picker.php:216 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-image.php:205 +#: includes/fields/class-acf-field-post_object.php:418 +#: includes/fields/class-acf-field-relationship.php:662 +#: includes/fields/class-acf-field-select.php:439 +#: includes/fields/class-acf-field-time_picker.php:131 +#: includes/fields/class-acf-field-user.php:90 +msgid "Return Format" +msgstr "Formato de retorno" + +#: includes/fields/class-acf-field-date_picker.php:190 +#: includes/fields/class-acf-field-date_picker.php:226 +#: includes/fields/class-acf-field-date_time_picker.php:192 +#: includes/fields/class-acf-field-date_time_picker.php:211 +#: includes/fields/class-acf-field-time_picker.php:122 +#: 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:115 +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:114 +msgid "Display Format" +msgstr "Formato de visualización" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Selector de hora" + +#: acf.php:445 +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Desactivado (%s)" +msgstr[1] "Desactivados (%s)" + +#: acf.php:402 +msgid "No Fields found in Trash" +msgstr "No se han encontrado campos en la papelera" + +#: acf.php:401 +msgid "No Fields found" +msgstr "No se han encontrado campos" + +#: acf.php:400 +msgid "Search Fields" +msgstr "Buscar campos" + +#: acf.php:399 +msgid "View Field" +msgstr "Ver campo" + +#: acf.php:398 includes/admin/views/field-group-fields.php:56 +msgid "New Field" +msgstr "Nuevo campo" + +#: acf.php:397 +msgid "Edit Field" +msgstr "Editar campo" + +#: acf.php:396 +msgid "Add New Field" +msgstr "Añadir nuevo campo" + +#: acf.php:394 +msgid "Field" +msgstr "Campo" + +#: acf.php:393 includes/admin/admin-field-group.php:233 +#: includes/admin/admin-field-groups.php:266 +msgid "Fields" +msgstr "Campos" + +#: acf.php:368 +msgid "No Field Groups found in Trash" +msgstr "No se han encontrado grupos de campos en la papelera" + +#: acf.php:367 +msgid "No Field Groups found" +msgstr "No se han encontrado grupos de campos" + +#: acf.php:366 +msgid "Search Field Groups" +msgstr "Buscar grupo de campos" + +#: acf.php:365 +msgid "View Field Group" +msgstr "Ver grupo de campos" + +#: acf.php:364 +msgid "New Field Group" +msgstr "Nuevo grupo de campos" + +#: acf.php:363 +msgid "Edit Field Group" +msgstr "Editar grupo de campos" + +#: acf.php:362 +msgid "Add New Field Group" +msgstr "Añadir nuevo grupo de campos" + +#: acf.php:361 acf.php:395 includes/admin/admin.php:51 +msgid "Add New" +msgstr "Añadir nuevo" + +#: acf.php:360 +msgid "Field Group" +msgstr "Grupo de campos" + +#: acf.php:359 includes/admin/admin.php:50 +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 +#. Author URI of the plugin +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Plugin Name of the plugin +#: acf.php:70 +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:166 +msgid "Block type name is required." +msgstr "El nombre del tipo de bloque es requerido." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "El tipo de bloque \" %s\" ya está registrado." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Cambiar a Editar" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Cambiar a vista previa" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Cambiar la alineación del contenido" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s ajustes" + +#: pro/blocks.php:949 +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:955 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Comprobar de nuevo" + +#: pro/updates.php:561 +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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Actualizaciones" + +#: pro/admin/admin-updates.php:209 +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:196 +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:25 +msgctxt "noun" +msgid "Clone" +msgstr "Clonar" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Mostrar" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Transparente (reemplaza este campo con los campos seleccionados)" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Las etiquetas se mostrarán como %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Etiquetas del prefijo de campo" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Los valores se guardarán como %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Nombres de prefijos de campos" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Campo desconocido" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Grupo de campos desconocido" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Todos los campos del grupo de campo %s" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Agregar Fila" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "diseño" +msgstr[1] "esquema" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "diseños" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} disponible (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} requerido (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +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:276 +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:413 +msgid "Add layout" +msgstr "Agregar Esquema" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Duplicar Diseño" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Remover esquema" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Clic para mostrar" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Reordenar Esquema" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Reordenar" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Eliminar Esquema" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Duplicar Esquema" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Agregar Nuevo Esquema" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Etiqueta del Botón" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Esquemas Mínimos" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Esquemas Máximos" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +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:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "Agregar Imagen a Galería" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Selección máxima alcanzada" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Longitud" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Leyenda" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Texto Alt" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Agregar a galería" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Acciones en lote" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Ordenar por fecha de subida" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Ordenar por fecha de modificación" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Ordenar por título" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Invertir orden actual" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Cerrar" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Insertar" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Especificar dónde se agregan nuevos adjuntos" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Añadir al final" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Adelantar hasta el principio" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Selección Mínima" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Selección Máxima" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Mínimo de filas alcanzado ({min} rows)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Máximo de filas alcanzado ({max} rows)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "Error al cargar la página" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Colapsado" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Mínimo de Filas" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Máximo de Filas" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "Paginación" + +#: pro/fields/class-acf-field-repeater.php:229 +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:240 +msgid "Rows Per Page" +msgstr "Filas por página" + +#: pro/fields/class-acf-field-repeater.php:241 +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:959 +msgid "Invalid field key." +msgstr "Clave de campo no válida." + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "Ha habido un error al recuperar el campo." + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Agregar fila" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Duplicar fila" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Remover fila" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "Página actual" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "Primera página" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "Página anterior" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s de %2$s" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "Página siguiente" + +#: pro/fields/class-acf-repeater-table.php:469 +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:41 +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:76 +msgid "Update Information" +msgstr "Información de Actualización" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Versión Actual" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Última Versión" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Actualización Disponible" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Por favor ingresa tu clave de licencia para habilitar actualizaciones" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Actualizar Plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "Reactive su licencia para desbloquear actualizaciones" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Registro de cambios" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Notificación de Actualización" + +#~ msgid "Inactive" +#~ msgstr "Inactivo" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Activo (%s)" +#~ msgstr[1] "Activos (%s)" + +#~ msgid "Parent fields" +#~ msgstr "Campos Padre" + +#~ msgid "Sibling fields" +#~ msgstr "Campos de mismo nivel" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s grupo de campos sincronizado." +#~ msgstr[1] "%s grupos de campos sincronizado." + +#~ msgid "Status" +#~ msgstr "Estado" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Ver las novedades de la versión %s." + +#~ msgid "Resources" +#~ msgstr "Recursos" + +#~ msgid "Website" +#~ msgstr "Sitio web" + +#~ msgid "Documentation" +#~ msgstr "Documentación" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Gracias por crear con ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "Sincronizar grupo de campos" + +#~ msgid "Apply" +#~ msgstr "Aplicar" + +#~ msgid "Bulk Actions" +#~ msgstr "Acciones en lote" + +#~ msgid "Add-ons" +#~ msgstr "Agregados" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Error. No se pudo cargar la lista de agregados" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "What's New" +#~ msgstr "Qué hay de nuevo" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Actualización de Base de Datos de Advanced Custom Fields" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Antes de comenzar a utilizar las nuevas y excelentes características, por " +#~ "favor actualizar tu base de datos a la versión más nueva." + +#~ msgid "Download & Install" +#~ msgstr "Descargar e Instalar" + +#~ msgid "Installed" +#~ msgstr "Instalado" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Bienvenido a Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Gracias por actualizar! ACF %s es más grande y poderoso que nunca. " +#~ "Esperamos que te guste." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Una experiencia de campos personalizados más fluida" + +#~ msgid "Improved Usability" +#~ msgstr "Usabilidad Mejorada" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Incluir la popular librería Select2 ha mejorado tanto la usabilidad como " +#~ "la velocidad a través de varios tipos de campos, incluyendo el objeto " +#~ "post , link a página, taxonomía y selección." + +#~ msgid "Improved Design" +#~ msgstr "Diseño Mejorado" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Muchos campos han experimentado un mejorado visual para hacer que ACF " +#~ "luzca mejor que nunca! Hay cambios notables en los campos de galería, " +#~ "relación y oEmbed (nuevo)!" + +#~ msgid "Improved Data" +#~ msgstr "Datos Mejorados" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Rediseñar la arquitectura de datos ha permitido que los sub campos vivan " +#~ "independientemente de sus padres. Esto permite arrastrar y soltar campos " +#~ "desde y hacia otros campos padres!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Adiós Agregados. Hola PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Presentando ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Estamos cambiando la manera en que las funcionalidades premium son " +#~ "brindadas de un modo muy interesante!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Todos los 4 agregados premium han sido combinados en una nueva version Pro de ACF. Con lincencias personales y para " +#~ "desarrolladores disponibles, la funcionalidad premium es más acequible " +#~ "que nunca!" + +#~ msgid "Powerful Features" +#~ msgstr "Características Poderosas" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO contiene poderosas características como campo de repetición, " +#~ "contenido con disposición flexible, un hermoso campo de galería y la " +#~ "habilidad de crear páginas de opciones extra en el panel de " +#~ "administración." + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "" +#~ "Lee más acerca de las características de ACF PRO." + +#~ msgid "Easy Upgrading" +#~ msgstr "Fácil Actualización" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Para facilitar la actualización, accede a tu cuenta en " +#~ "nuestra tienda y solicita una copia gratis de ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Nosotros también escribimos una guía de actualización " +#~ "para responder cualquier pregunta, pero si tienes una, por favor contacta " +#~ "nuestro equipo de soporte via mesa de ayuda" + +#~ msgid "Under the Hood" +#~ msgstr "Debajo del Capó" + +#~ msgid "Smarter field settings" +#~ msgstr "Ajustes de campos más inteligentes" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACF ahora guarda los ajustes de los campos como objetos post individuales" + +#~ msgid "More AJAX" +#~ msgstr "Más AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Más campos utilizan búsqueda manejada por AJAX para acelerar la carga de " +#~ "página" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "La nueva funcionalidad de exportar a JSON mejora la velocidad" + +#~ msgid "Better version control" +#~ msgstr "Mejor Control por Versiones" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "La nueva funcionalidad de exporta a JSON permite que los ajustes de los " +#~ "campos se controlen por versiones" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "Reemplazamos XML por JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Importar / Exportar ahora utilizan JSON en vez de XML" + +#~ msgid "New Forms" +#~ msgstr "Nuevos Formularios" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Los campos ahora pueden ser mapeados a comentarios, widgets y todos los " +#~ "formularios de usuario!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Se agregó un nuevo campo para embeber contenido." + +#~ msgid "New Gallery" +#~ msgstr "Nueva Galería" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "El campo galería ha experimentado un muy necesario lavado de cara" + +#~ msgid "New Settings" +#~ msgstr "Nuevos Ajustes" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Se agregaron ajustes de grupos de campos para posicionamiento de las " +#~ "etiquetas y las instrucciones" + +#~ msgid "Better Front End Forms" +#~ msgstr "Mejores formularios para Front End" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() ahora puede crear nuevos post" + +#~ msgid "Better Validation" +#~ msgstr "Mejor Validación" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "La validación de los formularios es ahora realizada via PHP + AJAX en vez " +#~ "de sólo JS" + +#~ msgid "Relationship Field" +#~ msgstr "Campod de Relación" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nuevos ajustes para 'Filtros' en camp de Relación (Búsqueda, Tipo de " +#~ "Post, Taxonomía)" + +#~ msgid "Moving Fields" +#~ msgstr "Moviendo Campos" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Nueva funcionalidad de grupos permite mover campos entre grupos y padres" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nuevo grupo archivos en el campo de selección de page_link" + +#~ msgid "Better Options Pages" +#~ msgstr "Mejores Páginas de Opciones" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nuevas funciones para las páginas de opciones permiten crear tanto " +#~ "páginas de menú hijas como superiores." + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Creemos que te encantarán los cambios en %s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportar Field Groups a PHP" + +#~ msgid "Download export file" +#~ msgstr "Descargar archivo de exportación" + +#~ msgid "Generate export code" +#~ msgstr "Generar código de exportación" + +#~ msgid "Current Color" +#~ msgstr "Color actual" + +#~ msgid "Locating" +#~ msgstr "Ubicando" + +#~ msgid "Shown when entering data" +#~ msgstr "Mostrado cuando se ingresan datos" + +#~ msgid "Error." +#~ msgstr "Error." + +#~ msgid "No embed found for the given URL." +#~ msgstr "No se encontró embed para la URL proporcionada." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Valores mínimos alcanzados ( {min} valores )" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "El campo pestaña se visualizará incorrectamente cuando sea agregado a un " +#~ "campo de repetición con estilo Tabla o a un layout de contenido flexible" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Usa \"Campos Pestaña\" para organizar mejor tu pantalla de edición " +#~ "agrupando campos." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Todos los campos que siguen de este \"campo pestaña\" (o hasta que otro " +#~ "\"campo pestaña\" sea definido) serán agrepados la etiqueta de este campo " +#~ "como título de la pestaña." + +#~ msgid "None" +#~ msgstr "Ninguno" + +#~ msgid "Taxonomy Term" +#~ msgstr "Término de Taxonomía" + +#~ msgid "remove {layout}?" +#~ msgstr "remover {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Este campo requiere al menos {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Límite máximo de {label} alcanzado. ({max} {identifier})" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "See what's new in" +#~ msgstr "Que hay de nuevo en" + +#~ msgid "Getting Started" +#~ msgstr "Comenzando" + +#~ msgid "Field Types" +#~ msgstr "Tipos de Campos" + +#~ msgid "Functions" +#~ msgstr "Funciones" + +#~ msgid "Actions" +#~ msgstr "Acciones" + +#~ msgid "'How to' guides" +#~ msgstr "Guías 'Cómo hacer'" + +#~ msgid "Tutorials" +#~ msgstr "Tutoriales" + +#~ msgid "Created by" +#~ msgstr "Creado por" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "Perfecto. La herramienta de importación agregó %s grupos de " +#~ "campos: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Alerta. La herramienta de importación detectó que %s grupos de " +#~ "campos ya existen y han sido ignorados: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Actualizar ACF" + +#~ msgid "Upgrade" +#~ msgstr "Actualizar" + +#~ msgid "Error" +#~ msgstr "Error" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Arrastra y suelta para reordenar" + +#~ msgid "Upgrading data to" +#~ msgstr "Actualizando datos a" + +#~ msgid "See what's new" +#~ msgstr "Mira qué hay de nuevo" + +#~ msgid "Show a different month" +#~ msgstr "Mostrar un mes diferente" + +#~ msgid "Return format" +#~ msgstr "Formato de Retorno" + +#~ msgid "uploaded to this post" +#~ msgstr "subidos a este post" + +#~ msgid "File Size" +#~ msgstr "Tamaño de Archivo" + +#~ msgid "No File selected" +#~ msgstr "No hay ningún archivo seleccionado" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Por favor toma en cuenta que todo el texto será pasado primero por la " +#~ "función wp" + +#~ msgid "Warning" +#~ msgstr "Alerta" + +#~ msgid "Add new %s " +#~ msgstr "Agregar nuevo %s" + +#~ msgid "eg. Show extra content" +#~ msgstr "ej. Mostrar contenido extra" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Error de Conección. Disculpa, por favor intenta nuevamente" + +#~ msgid "Save Options" +#~ msgstr "Guardar Opciones" + +#~ msgid "License" +#~ msgstr "Licencia" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Para desbloquear las actualizaciones, por favor ingresa tu clabe de " +#~ "licencia debajo. Si no tienes una clave de licencia, por favor mira" + +#~ msgid "details & pricing" +#~ msgstr "detalles y precios" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "Fallo en la validación. Uno o más campos son requeridos." + +#~ msgid "Error: Field Type does not exist!" +#~ msgstr "Error: El tipo de campo no existe!" + +#~ msgid "No ACF groups selected" +#~ msgstr "No hay grupos de ACF seleccionados" + +#~ msgid "Field Order" +#~ msgstr "Orden de los campos" + +#~ msgid "Docs" +#~ msgstr "Docs" + +#~ msgid "Field Instructions" +#~ msgstr "Instrucciones del campo" + +#~ msgid "Save Field" +#~ msgstr "Guardar Field" + +#~ msgid "Hide this edit screen" +#~ msgstr "Ocultar esta pantalla de edición" + +#~ msgid "continue editing ACF" +#~ msgstr "continuar editando ACF" + +#~ msgid "match" +#~ msgstr "coincide" + +#~ msgid "of the above" +#~ msgstr "de los superiores" + +#~ msgid "Field groups are created in order
                              from lowest to highest." +#~ msgstr "Los Field Groups son creados en orden
                              de menor a mayor." + +#~ msgid "Show on page" +#~ msgstr "Mostrar en página" + +#~ msgid "Deselect items to hide them on the edit page" +#~ msgstr "Deselecciona items para esconderlos en la página de edición" + +#~ msgid "" +#~ "If multiple ACF groups appear on an edit page, the first ACF group's " +#~ "options will be used. The first ACF group is the one with the lowest " +#~ "order number." +#~ msgstr "" +#~ "Si aparecen multiples grupos de ACF en una página de edición, se usarán " +#~ "las opciones del primer grupo. Se considera primer grupo de ACF al que " +#~ "cuenta con el número de orden más bajo." + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "" +#~ "Lee la documentación, aprende sobre las funciones y encuentra algunos " +#~ "trucos y consejos para tu siguiente proyecto web." + +#~ msgid "Vote" +#~ msgstr "Vota" + +#~ msgid "Follow" +#~ msgstr "Sígueme" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "Ajustes de Advanced Custom Fields" + +#~ msgid "Activate Add-ons." +#~ msgstr "Activar Add-ons." + +#~ msgid "Flexible Content Field" +#~ msgstr "Flexible Content Field" + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "" +#~ "Las Add-ons pueden desbloquearse comprando una clave de licencia. Cada " +#~ "clave puede usarse en multiple sites." + +#~ msgid "Find Add-ons" +#~ msgstr "Buscar Add-ons" + +#~ msgid "Export Field Groups to XML" +#~ msgstr "Exportar Field Groups a XML" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "ACF creará un archivo .xml que es compatible con el plugin de importación " +#~ "nativo de WP." + +#~ msgid "Export XML" +#~ msgstr "Exportar XML" + +#~ msgid "Navigate to the" +#~ msgstr "Navegar a" + +#~ msgid "and select WordPress" +#~ msgstr "y selecciona WordPress" + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "Instalar el plugin de importación de WP si se pide" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "Subir e importar tu archivo .xml exportado" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "Selecciona tu usuario e ignora Import Attachments" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "¡Eso es todo! Feliz WordPressing" + +#~ msgid "ACF will create the PHP code to include in your theme" +#~ msgstr "ACF creará el código PHP para incluir en tu tema" + +#~ msgid "Register Field Groups with PHP" +#~ msgstr "Registrar Field Groups con PHP" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Copia el código PHP generado" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Pegalo en tu archivo functions.php" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "Para activar cualquier Add-on, edita y usa el código en las primeras " +#~ "pocas lineas." + +#~ msgid "" +#~ "/**\n" +#~ " * Activate Add-ons\n" +#~ " * Here you can enter your activation codes to unlock Add-ons to use in " +#~ "your theme. \n" +#~ " * Since all activation codes are multi-site licenses, you are allowed to " +#~ "include your key in premium themes. \n" +#~ " * Use the commented out code to update the database with your activation " +#~ "code. \n" +#~ " * You may place this code inside an IF statement that only runs on theme " +#~ "activation.\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Activar Add-ons\n" +#~ " * Aquí puedes introducir tus códigos de activación para desbloquear Add-" +#~ "ons y utilizarlos en tu tema. \n" +#~ " * Ya que todos los códigos de activación tiene licencia multi-site, se " +#~ "te permite incluir tu clave en temas premium. \n" +#~ " * Utiliza el código comentado para actualizar la base de datos con tu " +#~ "código de activación. \n" +#~ " * Puedes colocar este código dentro de una instrucción IF para que sólo " +#~ "funcione en la activación del tema.\n" +#~ " */" + +#~ msgid "" +#~ "/**\n" +#~ " * Register field groups\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" +#~ " * This code must run every time the functions.php file is read\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Registrar field groups\n" +#~ " * La función register_field_group acepta un 1 array que contiene los " +#~ "datos pertinentes para registrar un Field Group\n" +#~ " * Puedes editar el array como mejor te parezca. Sin embargo, esto puede " +#~ "dar lugar a errores si la matriz no es compatible con ACF\n" +#~ " * Este código debe ejecutarse cada vez que se lee el archivo functions." +#~ "php\n" +#~ " */" + +#~ msgid "No field groups were selected" +#~ msgstr "No hay ningún Field Group seleccionado" + +#~ msgid "No choices to choose from" +#~ msgstr "No hay opciones para escojer" + +#~ msgid "" +#~ "Enter your choices one per line
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tRed
                              \n" +#~ "\t\t\t\tBlue
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tor
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tred : Red
                              \n" +#~ "\t\t\t\tblue : Blue" +#~ msgstr "" +#~ "Introduce tus opciones, una por línea
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tRojo
                              \n" +#~ "\t\t\t\tAzul
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\to
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tred : Rojo
                              \n" +#~ "\t\t\t\tblue : Azul" + +#~ msgid "eg. dd/mm/yy. read more about" +#~ msgstr "ej. dd/mm/yy. leer más sobre" + +#~ msgid "Remove File" +#~ msgstr "Eliminar Archivo" + +#~ msgid "Click the \"add row\" button below to start creating your layout" +#~ msgstr "" +#~ "Haz click sobre el botón \"añadir fila\" para empezar a crear tu Layout" + +#~ msgid "+ Add Row" +#~ msgstr "+ Añadir fila" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Field button\" to create your first field." +#~ msgstr "" +#~ "No hay campos. Haz click en el botón \"+ Añadir Campo\" para crear tu " +#~ "primer campo." + +#~ msgid "" +#~ "Filter posts by selecting a post type
                              \n" +#~ "\t\t\t\tTip: deselect all post types to show all post type's posts" +#~ msgstr "" +#~ "Filtrar posts seleccionando un post type
                              \n" +#~ "\t\t\t\tConsejo: deselecciona todos los post type para mostrar todos los " +#~ "tipos de post" + +#~ msgid "Filter from Taxonomy" +#~ msgstr "Filtrar por Taxonomía" + +#~ msgid "Set to -1 for inifinit" +#~ msgstr "Se establece en -1 para inifinito" + +#~ msgid "Repeater Fields" +#~ msgstr "Repeater Fields" + +#~ msgid "Row Limit" +#~ msgstr "Limite de filas" + +#~ msgid "Formatting" +#~ msgstr "Formato" + +#~ msgid "Define how to render html tags" +#~ msgstr "Define como renderizar las etiquetas html" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Define como renderizar los tags html / nuevas lineas" diff --git a/lang/pro/acf-fa_IR.po b/lang/pro/acf-fa_IR.po new file mode 100644 index 0000000..ef7ab17 --- /dev/null +++ b/lang/pro/acf-fa_IR.po @@ -0,0 +1,3684 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:02+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Majix \n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "زمینه‌های سفارشی پیشرفته نسخه حرفه ای" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "حالت ویرایش" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "حالت پیش‌نمایش" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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:523 +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 "" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "بررسی دوباره" + +#: pro/updates.php:561 +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:209 +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:196 +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:814 +msgid "Fields" +msgstr "زمینه ها" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "انتخاب فیلد دیگری برای کپی" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "نمایش" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "مشخص کردن استایل مورد نظر در نمایش دسته فیلدها" + +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "گروه ها(نمایش فیلدهای انتخابی در یک گروه با این فیلد)" + +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "بدون مانند (جایگزینی این فیلد با فیلدهای انتخابی)" + +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "چیدمان" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "استایل جهت نمایش فیلد انتخابی" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "بلوک" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "جدول" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "سطر" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "برچسب ها نمایش داده شوند به صورت %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "پیشوند پرچسب فیلدها" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "مقادیر ذخیره خواهند شد به صورت %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "پیشوند نام فایل ها" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "فیلد ناشناس" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(بدون عنوان)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "گروه ناشناس" + +#: pro/fields/class-acf-field-clone.php:1042 +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:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "سطر جدید" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "طرح‌ها" +msgstr[1] "طرح" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "طرح ها" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "این زمینه لازم دارد {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "این گزینه محدود است به {max} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} موجود است (حداکثر {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} لازم دارد (حداقل {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "زمینه محتوای انعطاف پذیر حداقل به یک طرح نیاز دارد" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "روی دکمه \"%s\" دز زیر کلیک کنید تا چیدمان خود را بسازید" + +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "گرفتن و کشیدن برای مرتب سازی" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "طرح جدید" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "حذف طرح" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "کلیک برای انتخاب" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "ترتیب بندی طرح ها" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "مرتب سازی" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "حذف طرح" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "حذف" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "تکثیر طرح" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "تکثیر" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "افزودن طرح جدید" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "افزودن" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "برچسب زمینه" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "نام" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "حداقل" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "حداکثر" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "متن دکمه" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "حداقل تعداد طرح ها" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "حداکثر تعداد طرح ها" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "افزودن تصویر به گالری" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "بیشترین حد انتخاب شده است" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "طول" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "ویرایش" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "حذف" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "عنوان" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "متن" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "متن جایگزین" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "توضیحات" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "اضافه به گالری" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "کارهای گروهی" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "به ترتیب تاریخ آپلود" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "به ترتیب تاریخ اعمال تغییرات" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "به ترتیب عنوان" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "معکوس سازی ترتیب کنونی" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "بستن" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "فرمت بازگشت" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "آرایه تصاویر" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "آدرس تصویر" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "شناسه(ID) تصویر" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "اندازه پیش نمایش" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "درج" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "مشخص کنید که پیوست ها کجا اضافه شوند" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "افزودن به انتها" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "افزودن قبل از" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "کتابخانه" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "محدود کردن انتخاب کتابخانه چندرسانه ای" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "همه" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "بارگذاری شده در نوشته" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "حداقل انتخاب" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "حداکثر انتخاب" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "کمترین" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "محدودیت در آپلود تصاویر" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "عرض" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "ارتفاع" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "اندازه فایل" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "بیشترین" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "انواع مجاز فایل" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "با کامای انگلیسی جدا کرده یا برای عدم محدودیت خالی بگذارید" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "زمینه تکرار کننده" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "مقادیر به حداکثر رسیده اند ( {min} سطر )" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "مقادیر به حداکثر رسیده اند ( {max} سطر )" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "زمینه‌های زیرمجموعه" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "جمع شده" + +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "یک زمینه زیرمجموعه را انتخاب کنید تا زمان بسته شدن طر نمایش داده شود" + +#: pro/fields/class-acf-field-repeater.php:187 +msgid "Minimum Rows" +msgstr "حداقل تعداد سطرها" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "حداکثر تعداد سطرها" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "افزودن سطر" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "حذف سطر" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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:41 +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:76 +msgid "Update Information" +msgstr "اطلاعات به روز رسانی" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "نسخه فعلی" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "آخرین نسخه" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "بروزرسانی موجود است" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "خیر" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "بله" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "برای فعالسازی به روزرسانی لایسنس خود را بنویسید" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "بروزرسانی افزونه" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "تغییرات" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "نکات به روزرسانی" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "زمینه‌های سفارشی پیشرفته" + +#~ msgid "Field Groups" +#~ msgstr "گروه‌های زمینه" + +#~ msgid "Field Group" +#~ msgstr "گروه زمینه" + +#~ msgid "Add New Field Group" +#~ msgstr "افزودن گروه زمینه جدید" + +#~ msgid "Edit Field Group" +#~ msgstr "ویرایش گروه زمینه" + +#~ msgid "New Field Group" +#~ msgstr "گروه زمینه جدید" + +#~ msgid "View Field Group" +#~ msgstr "مشاهده گروه زمینه" + +#~ msgid "Search Field Groups" +#~ msgstr "جستجوی گروه های زمینه" + +#~ msgid "No Field Groups found" +#~ msgstr "گروه زمینه ای یافت نشد" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "گروه زمینه ای در زباله دان یافت نشد" + +#~ msgid "Field" +#~ msgstr "زمینه" + +#~ msgid "Add New Field" +#~ msgstr "زمینه جدید" + +#~ msgid "Edit Field" +#~ msgstr "ویرایش زمینه" + +#~ msgid "New Field" +#~ msgstr "زمینه جدید" + +#~ msgid "View Field" +#~ msgstr "نمایش زمینه" + +#~ msgid "Search Fields" +#~ msgstr "جستجوی گروه های زمینه" + +#~ msgid "No Fields found" +#~ msgstr "گروه زمینه ای یافت نشد" + +#~ msgid "No Fields found in Trash" +#~ msgstr "گروه زمینه ای در زباله دان یافت نشد" + +#~ msgid "Inactive" +#~ msgstr "غیرفعال" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "غیرفعال (%s)" +#~ msgstr[1] "غیرفعال (%s)" + +#~ msgid "(no label)" +#~ msgstr "(بدون برچسب)" + +#~ msgid "copy" +#~ msgstr "کپی" + +#~ msgid "Field group updated." +#~ msgstr "گروه زمینه بروز شد." + +#~ msgid "Field group deleted." +#~ msgstr "گروه زمینه حذف شد." + +#~ msgid "Field group published." +#~ msgstr "گروه زمینه انتشار یافت." + +#~ msgid "Field group saved." +#~ msgstr "گروه زمینه ذخیره شد." + +#~ msgid "Field group submitted." +#~ msgstr "گروه زمینه ارسال شد." + +#~ msgid "Field group scheduled for." +#~ msgstr "گروه زمینه برنامه ریزی انتشار پیدا کرده برای." + +#~ msgid "Field group draft updated." +#~ msgstr "پیش نویش گروه زمینه بروز شد." + +#~ msgid "The string \"field_\" may not be used at the start of a field name" +#~ msgstr "کلمه متنی \"field_\" نباید در ابتدای نام فیلد استفاده شود" + +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "این زمینه قبل از اینکه ذخیره شود نمی تواند جابجا شود" + +#~ msgid "Field group title is required" +#~ msgstr "عنوان گروه زمینه ضروری است" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "انتقال به زباله دان، آیا شما مطمئنید؟" + +#~ msgid "No toggle fields available" +#~ msgstr "هیچ زمینه شرط پذیری موجود نیست" + +#~ msgid "Move Custom Field" +#~ msgstr "جابجایی زمینه دلخواه" + +#~ msgid "Checked" +#~ msgstr "انتخاب شده" + +#~ msgid "(this field)" +#~ msgstr "(این گزینه)" + +#~ msgid "or" +#~ msgstr "یا" + +#~ msgid "Null" +#~ msgstr "خالی (null)" + +#~ msgid "Location" +#~ msgstr "مکان" + +#~ msgid "Settings" +#~ msgstr "تنظیمات" + +#~ msgid "Field Keys" +#~ msgstr "کایدهای زمینه" + +#~ msgid "Active" +#~ msgstr "فعال" + +#~ msgid "Move Complete." +#~ msgstr "انتقال کامل شد." + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "زمینه %s اکنون در گروه زمینه %s قرار گرفته است" + +#~ msgid "Close Window" +#~ msgstr "بستن زمینه" + +#~ msgid "Please select the destination for this field" +#~ msgstr "مقصد انتقال این زمینه را مشخص کنید" + +#~ msgid "Move Field" +#~ msgstr "جابجایی زمینه" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "فعال (%s)" +#~ msgstr[1] "فعال (%s)" + +#, php-format +#~ msgid "Field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s گروه زمینه تکثیر شدند." +#~ msgstr[1] "گروه زمینه تکثیر شد." + +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s گروه زمینه همگام سازی شد." +#~ msgstr[1] "گروه زمینه همگام سازی شد." + +#~ msgid "Sync available" +#~ msgstr "هماهنگ سازی موجود است" + +#~ msgid "Status" +#~ msgstr "وضعیت" + +#~ msgid "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "وردپرس را با زمینه‌های حرفه‌ای و قدرتمند سفارشی کنید." + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "مشاهده موارد جدید نسخه %s." + +#~ msgid "Resources" +#~ msgstr "منابع" + +#~ msgid "Website" +#~ msgstr "وب سایت" + +#~ msgid "Documentation" +#~ msgstr "مستندات" + +#~ msgid "Support" +#~ msgstr "پشتیبانی" + +#~ msgid "Pro" +#~ msgstr "پیشرفته" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "با تشکر از شما برای استفاده از ACF." + +#~ msgid "Duplicate this item" +#~ msgstr "تکثیر این زمینه" + +#~ msgid "Search" +#~ msgstr "جستجو" + +#, php-format +#~ msgid "Select %s" +#~ msgstr "انتخاب %s" + +#~ msgid "Synchronise field group" +#~ msgstr "هماهنگ سازی گروه زمینه" + +#~ msgid "Sync" +#~ msgstr "هماهنگ" + +#~ msgid "Apply" +#~ msgstr "اعمال" + +#~ msgid "Bulk Actions" +#~ msgstr "اعمال گروهی" + +#~ msgid "Tools" +#~ msgstr "ابزارها" + +#~ msgid "Upgrade Database" +#~ msgstr "به‌روزرسانی پایگاه داده" + +#~ msgid "Review sites & upgrade" +#~ msgstr "بازبینی و به‌روزرسانی سایت‌ها" + +#~ msgid "Custom Fields" +#~ msgstr "زمینه‌های سفارشی" + +#~ msgid "Info" +#~ msgstr "اطلاعات" + +#~ msgid "What's New" +#~ msgstr "چه چیز جدید است" + +#~ msgid "Export Field Groups" +#~ msgstr "برون بری گروه های زمینه" + +#~ msgid "Generate PHP" +#~ msgstr "تولید کد PHP" + +#~ msgid "No field groups selected" +#~ msgstr "گروه زمینه ای انتخاب نشده است" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "%s گروه زمینه برون‌بری شد." +#~ msgstr[1] "۱ گروه زمینه برون‌بری شد." + +#~ msgid "Select Field Groups" +#~ msgstr "انتخاب گروه های زمینه" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which you " +#~ "can then import to another ACF installation. Use the generate button to " +#~ "export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "گروه زمینه‌هایی که مایل به تهیه خروجی آنها هستید را انتخاب کنید و در ادامه " +#~ "روش خروجی را نیز مشخص کنید. از دکمه دانلود برای خروجی فایل .json برای وارد " +#~ "کردن در یک سایت دیگر که این افزونه نصب شده است استفاده کنید. از دکمه تولید " +#~ "می توانید برای ساخت کد PHP برای قراردادن در قالب خود استفاده کنید." + +#~ msgid "Export File" +#~ msgstr "خروجی فایل" + +#~ msgid "" +#~ "The following code can be used to register a local version of the selected " +#~ "field group(s). A local field group 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." +#~ msgstr "" +#~ "این کد می تواند برای ثبت یک نسخه محلی (لوکال)از گروه زمینه‌های انتخاب شده " +#~ "استفاده شود. یک نسخه محلی فواید زیادی دارد، مثلا سرعت لود بالاتر، کنترل " +#~ "نسخه و پویاسازی زمینه ها و تنظیماتشان. به راحتی می توانید کد زیر را در " +#~ "فایل function.php خود کپی کنید و یا از یک فایل دیگر انرا فراخوانی نمایید." + +#~ msgid "Copy to clipboard" +#~ msgstr "درج در حافظه موقت" + +#~ msgid "Copied" +#~ msgstr "کپی شد" + +#~ msgid "Import Field Groups" +#~ msgstr "وارد کردن گروه های زمینه" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. When " +#~ "you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "فایل JSON ای که قبلا از این افزونه خروجی گرفته اید را انتخاب کنید تا وارد " +#~ "شود. زمانی که دکمه وارد کردن را در زیر کلیک کنید، سیستم اقدام به ساخت گروه " +#~ "های زمینه خواهد نمود." + +#~ msgid "Select File" +#~ msgstr "انتخاب پرونده" + +#~ msgid "Import File" +#~ msgstr "وارد کردن فایل" + +#~ msgid "No file selected" +#~ msgstr "هیچ پرونده ای انتخاب نشده" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "خطا در آپلود فایل. لطفا مجدد بررسی کنید" + +#~ msgid "Incorrect file type" +#~ msgstr "نوع فایل صحیح نیست" + +#~ msgid "Import file empty" +#~ msgstr "فایل وارد شده خالی است" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "%s گروه زمینه درون‌ریزی شد" +#~ msgstr[1] "۱ گروه زمینه درون‌ریزی شد" + +#~ msgid "Conditional Logic" +#~ msgstr "منطق شرطی" + +#~ msgid "Show this field if" +#~ msgstr "نمایش این گروه زمینه اگر" + +#~ msgid "and" +#~ msgstr "و" + +#~ msgid "Add rule group" +#~ msgstr "افزودن گروه قانون" + +#~ msgid "Edit field" +#~ msgstr "ویرایش زمینه" + +#~ msgid "Duplicate field" +#~ msgstr "تکثیر زمینه" + +#~ msgid "Move field to another group" +#~ msgstr "انتقال زمینه ها به گروه دیگر" + +#~ msgid "Move" +#~ msgstr "انتقال" + +#~ msgid "Delete field" +#~ msgstr "حذف زمینه" + +#~ msgid "Field Label" +#~ msgstr "برچسب زمینه" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "این نامی است که در صفحه \"ویرایش\" نمایش داده خواهد شد" + +#~ msgid "Field Name" +#~ msgstr "نام زمینه" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "تک کلمه، بدون فاصله. خط زیرین و خط تیره ها مجازاند" + +#~ msgid "Field Type" +#~ msgstr "نوع زمینه" + +#~ msgid "Instructions" +#~ msgstr "دستورالعمل ها" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند" + +#~ msgid "Required?" +#~ msgstr "لازم است؟" + +#~ msgid "Wrapper Attributes" +#~ msgstr "مشخصات پوشش فیلد" + +#~ msgid "width" +#~ msgstr "عرض" + +#~ msgid "class" +#~ msgstr "کلاس" + +#~ msgid "id" +#~ msgstr "شناسه" + +#~ msgid "Close Field" +#~ msgstr "بستن زمینه" + +#~ msgid "Order" +#~ msgstr "ترتیب" + +#~ msgid "Key" +#~ msgstr "کلید" + +#~ msgid "Type" +#~ msgstr "نوع زمینه" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "هیچ زمینه ای وجود ندارد. روی دکمه+ افزودن زمینه کلیک کنید " +#~ "تا اولین زمینه خود را بسازید." + +#~ msgid "+ Add Field" +#~ msgstr "+ افزودن زمینه" + +#~ msgid "Rules" +#~ msgstr "قوانین" + +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "مجموعه ای از قوانین را بسازید تا مشخص کنید در کدام صفحه ویرایش، این " +#~ "زمینه‌های سفارشی سفارشی نمایش داده شوند" + +#~ msgid "Style" +#~ msgstr "شیوه نمایش" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "استاندارد (دارای متاباکس)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "بدون متاباکس" + +#~ msgid "Position" +#~ msgstr "موقعیت" + +#~ msgid "High (after title)" +#~ msgstr "بالا (بعد از عنوان)" + +#~ msgid "Normal (after content)" +#~ msgstr "معمولی (بعد از ادیتور متن)" + +#~ msgid "Side" +#~ msgstr "کنار" + +#~ msgid "Label placement" +#~ msgstr "مکان برچسب" + +#~ msgid "Top aligned" +#~ msgstr "سمت بالا" + +#~ msgid "Left aligned" +#~ msgstr "سمت چپ" + +#~ msgid "Instruction placement" +#~ msgstr "مکان دستورالعمل ها" + +#~ msgid "Below labels" +#~ msgstr "زیر برچسب ها" + +#~ msgid "Below fields" +#~ msgstr "زیر زمینه ها" + +#~ msgid "Order No." +#~ msgstr "شماره ترتیب." + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "گروه ها با شماره ترتیب کمتر اول دیده می شوند" + +#~ msgid "Shown in field group list" +#~ msgstr "نمایش لیست گروه زمینه" + +#~ msgid "Permalink" +#~ msgstr "پیوند یکتا" + +#~ msgid "Content Editor" +#~ msgstr "ویرایش گر محتوا(ادیتور اصلی)" + +#~ msgid "Excerpt" +#~ msgstr "چکیده" + +#~ msgid "Discussion" +#~ msgstr "گفتگو" + +#~ msgid "Comments" +#~ msgstr "دیدگاه ها" + +#~ msgid "Revisions" +#~ msgstr "بازنگری ها" + +#~ msgid "Slug" +#~ msgstr "نامک" + +#~ msgid "Author" +#~ msgstr "نویسنده" + +#~ msgid "Format" +#~ msgstr "فرمت" + +#~ msgid "Page Attributes" +#~ msgstr "صفات برگه" + +#~ msgid "Featured Image" +#~ msgstr "تصویر شاخص" + +#~ msgid "Categories" +#~ msgstr "دسته ها" + +#~ msgid "Tags" +#~ msgstr "برچسب ها" + +#~ msgid "Send Trackbacks" +#~ msgstr "ارسال بازتاب ها" + +#~ msgid "Hide on screen" +#~ msgstr "مخفی کردن در صفحه" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "انتخاب آیتم ها برای پنهان کردن آن ها از صفحه ویرایش." + +#~ 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 "" +#~ "اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود،اولین تنظیمات گروه " +#~ "زمینه استفاده خواهد شد. (یکی با کمترین شماره)" + +#, php-format +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click %s." +#~ msgstr "این سایت ها نیاز به به روز رسانی دارند برای انجام %s کلیک کنید." + +#~ msgid "Upgrade Sites" +#~ msgstr "ارتقاء سایت" + +#~ msgid "Site" +#~ msgstr "سایت" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "سایت نیاز به به‌روزرسانی از %s به %s دارد" + +#~ msgid "Site is up to date" +#~ msgstr "سایت به روز است" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "به روزرسانی دیتابیس انجام شد. بازگشت به پیشخوان شبکه" + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "لطفا حداقل یک سایت برای ارتقا انتخاب کنید." + +#~ msgid "" +#~ "It is strongly recommended that you backup your database before " +#~ "proceeding. Are you sure you wish to run the updater now?" +#~ msgstr "" +#~ "قویا توصیه می شود از بانک اطلاعاتی خود قبل از هر کاری پشتیبان تهیه کنید. " +#~ "آیا مایلید به روز رسانی انجام شود؟" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "به روز رسانی داده ها به نسحه %s" + +#~ msgid "Upgrade complete." +#~ msgstr "ارتقا کامل شد." + +#~ msgid "Upgrade failed." +#~ msgstr "ارتقا با خطا مواجه شد." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "در حال خواندن مراحل به روزرسانی..." + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "ارتقای پایگاه داده کامل شد. تغییرات جدید را ببینید" + +#~ msgid "No updates available." +#~ msgstr "به‌روزرسانی موجود نیست." + +#~ msgid "Back to all tools" +#~ msgstr "بازگشت به همه ابزارها" + +#~ msgid "Show this field group if" +#~ msgstr "نمایش این گروه زمینه اگر" + +#~ msgid "Database Upgrade Required" +#~ msgstr "به روزرسانی دیتابیس لازم است" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "از شما برای بروزرسانی به آخرین نسخه %s v%s ممنون هستیم!" + +#~ msgid "" +#~ "This version contains improvements to your database and requires an " +#~ "upgrade." +#~ msgstr "این نسخه شامل بهبودهایی در پایگاه داده است و نیاز به ارتقا دارد." + +#, php-format +#~ msgid "" +#~ "Please also check all premium add-ons (%s) are updated to the latest " +#~ "version." +#~ msgstr "" +#~ "همچنین لطفا همه افزونه‌های پولی (%s) را بررسی کنید که به نسخه آخر بروز شده " +#~ "باشند." + +#~ msgid "Add-ons" +#~ msgstr "افزودنی ها" + +#~ msgid "Download & Install" +#~ msgstr "دانلود و نصب" + +#~ msgid "Installed" +#~ msgstr "نصب شده" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "به افزونه زمینه‌های سفارشی پیشرفته خوش آمدید" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "از اینکه به روزرسانی کردید متشکریم! افزونه زمینه دلخواه پیشرفته %s بزرگتر " +#~ "و بهتر از قبل شده است. امیدواریم لذت ببرید." + +#~ msgid "A Smoother Experience" +#~ msgstr "یک تجربه راحتتر" + +#~ msgid "Improved Usability" +#~ msgstr "کاربری بهینه شده" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "استفاده از کتابخانه محبوب Select2 باعث سرعت در عملکرد و کاربری بهتر در " +#~ "انواع زمینه هاشامل آبجکت نوشته، پیوند(لینک) صفحه ، طبقه بندی و زمینه‌های " +#~ "انتخاب(Select) شده است." + +#~ msgid "Improved Design" +#~ msgstr "طراحی بهینه شده" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "بسیاری از زمینه ها از نظر ظاهری باز طراحی شدند تا این افزونه از قبل بهتر " +#~ "شده باشد. تغییرات چشم گیر در گالری و ارتباط و زمینه جدید به نام oEmbed " +#~ "صورت گرفته است!" + +#~ msgid "Improved Data" +#~ msgstr "داده ها بهینه شده اند" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "بازطراحی معماری داده ها این اجازه را به زمینه‌های زیرمجموعه داده است که " +#~ "بدون زمینه‌های والد باقی بمانند. این به شما کمک می کند که زمینه ها را از یک " +#~ "فیلد اصلی خارج یا به آن وارد نمایید !" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "خداحافظ افزودنی ها و سلام به نسخه حرفه ای" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "معرفی نسخه حرفه ای" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "ما در حال تغییر راه عملکردهای پولی افزونه به شیوه ای هیجان انگیز هستیم!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "هر چهار افزدونی پولی یکی شده و تحت عنوان نسخه حرفه ای (Pro) " +#~ " از افزونه زمینه‌های سفارشی معرفی شده اند. دو نسخه شخصی و توسعه دهنده " +#~ "موجود است که در هر دو این امکانات بهتر و دسترس تر از قبل موجود است!" + +#~ msgid "Powerful Features" +#~ msgstr "امکانات قدرتمند" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create extra " +#~ "admin options pages!" +#~ msgstr "" +#~ "نسخه حرفه دارای امکانات قدرتمندی نظیر داده های تکرارپذیر، محتوای منعطف، یک " +#~ "زمینه گالری زیبا و امکان ساخت صفحات تنظیمات می باشد !" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "اطلاعات بیشتر در امکانات نسخه حرفه ای." + +#~ msgid "Easy Upgrading" +#~ msgstr "به روزرسانی آسان" + +#~ msgid "" +#~ "Upgrading to ACF PRO is easy. Simply purchase a license online and " +#~ "download the plugin!" +#~ msgstr "" +#~ "ارتقا به نسخه حرفه‌ای آسان است. به سادگی لایسنس را بخرید و افزونه را دانلود " +#~ "کنید!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any questions, " +#~ "but if you do have one, please contact our support team via the help desk." +#~ msgstr "" +#~ "همچنین در اینجا راهنمایی برای ارتقا وجود دارد که به " +#~ "سوالات شما پاسخ می‌دهد. لطفا از طریق میز راهنما با تیم " +#~ "پشتیبانی تماس حاصل کنید." + +#~ msgid "New Features" +#~ msgstr "ویژگی‌های جدید" + +#~ msgid "Link Field" +#~ msgstr "زمینه پیوند (Link)" + +#~ msgid "" +#~ "The Link field provides a simple way to select or define a link (url, " +#~ "title, target)." +#~ msgstr "" +#~ "با استفاده از زمینه پیوند میتوانید به سادگی یک روش برای انتخاب یا تعریف یک " +#~ "پیوند (url-title-target) ایجاد کنید." + +#~ msgid "Group Field" +#~ msgstr "گروه زمینه" + +#~ msgid "The Group field provides a simple way to create a group of fields." +#~ msgstr "با استفاده از گروه زمینه می‌توانید گروهی از زمینه‌ها را ایجاد کنید." + +#~ msgid "oEmbed Field" +#~ msgstr "زمینه oEmbed" + +#~ msgid "" +#~ "The oEmbed field allows an easy way to embed videos, images, tweets, " +#~ "audio, and other content." +#~ msgstr "" +#~ "با استفاده از زمینه oEmbed میتوانید به سادگی ویدیو، تصویر، توییت، صدا و " +#~ "محتواهای دیگر را جاسازی کنید." + +#~ msgid "Clone Field" +#~ msgstr "فیلد کپی" + +#~ msgid "The clone field allows you to select and display existing fields." +#~ msgstr "" +#~ "با استفاده از فیلد کپی میتوانید فیلدهای موجود را انتخاب کنید یا نمایش دهید." + +#~ msgid "More AJAX" +#~ msgstr "ایجکس بیشتر" + +#~ msgid "More fields use AJAX powered search to speed up page loading." +#~ msgstr "" +#~ "بیشتر زمینه‌ها از قدرت AJAX برای جستجو استفاده می‌کند تا سرعت بارگذاری را " +#~ "افزایش دهند." + +#~ msgid "Local JSON" +#~ msgstr "JSON های لوکال" + +#~ msgid "" +#~ "New auto export to JSON feature improves speed and allows for " +#~ "syncronisation." +#~ msgstr "" +#~ "ویژگی جدید برون‌بری خودکار به فایل JSON سرعت را بهبود داده و همگام سازی را " +#~ "فراهم می‌کند." + +#~ msgid "Easy Import / Export" +#~ msgstr "درون‌ریزی یا برون‌بری آسان" + +#~ msgid "Both import and export can easily be done through a new tools page." +#~ msgstr "درون ریزی یا برون بری به سادگی از طریق یک ابزار جدید انجام می‌شود." + +#~ msgid "New Form Locations" +#~ msgstr "مکان جدید فرم‌ها" + +#~ msgid "" +#~ "Fields can now be mapped to menus, menu items, comments, widgets and all " +#~ "user forms!" +#~ msgstr "" +#~ "زمینه‌ها اکنون می‌توانند به فهرست‌ها، موارد فهرست، دیدگاه‌ها، ابزارک‌ها و تمامی " +#~ "فرم‌های مرتبط با کاربر ارجاع داده شوند!" + +#~ msgid "More Customization" +#~ msgstr "سفارشی سازی بیشتر" + +#~ msgid "" +#~ "New PHP (and JS) actions and filters have been added to allow for more " +#~ "customization." +#~ msgstr "" +#~ "اکشن‌ها و فیلترهای جدید PHP (و JS) برای سفارشی سازی بیشتر اضافه شد‌ه‌اند." + +#~ msgid "Fresh UI" +#~ msgstr "رابط کاربری تازه" + +#~ msgid "" +#~ "The entire plugin has had a design refresh including new field types, " +#~ "settings and design!" +#~ msgstr "تمامی افزونه با یک رابط کاربری جدید بروز شده است!" + +#~ msgid "New Settings" +#~ msgstr "تنظیمات جدید" + +#~ msgid "" +#~ "Field group settings have been added for Active, Label Placement, " +#~ "Instructions Placement and Description." +#~ msgstr "" +#~ "تنظیمات گروه زمینه برای مکان برچسب، راهنمای قرارگیری و توضیحات اضافه شده " +#~ "است." + +#~ msgid "Better Front End Forms" +#~ msgstr "فرم های سمت کاربر بهتر شده اند" + +#~ msgid "" +#~ "acf_form() can now create a new post on submission with lots of new " +#~ "settings." +#~ msgstr "" +#~ "تابع acf_form() اکنون میتوانید نوشته‌های جدید را همراه با تنظیمات بیشتر ثبت " +#~ "کند." + +#~ msgid "Better Validation" +#~ msgstr "خطایابی بهتر" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." +#~ msgstr "اعتبارسنجی فرم‌ها اکنون از طریق PHP + AJAX صورت می‌گیرد." + +#~ msgid "Moving Fields" +#~ msgstr "جابجایی زمینه ها" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents." +#~ msgstr "" +#~ "عملکرد جدید گروه زمینه اکنون اجازه می‌دهد تا یک زمینه را بین گروه‌ها و " +#~ "والدهای مختلف جابجا کنید." + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "فکر می کنیم شما تغییرات در %s را دوست خواهید داشت." + +#~ msgid "Thumbnail" +#~ msgstr "تصویر بندانگشتی" + +#~ msgid "Medium" +#~ msgstr "متوسط" + +#~ msgid "Large" +#~ msgstr "بزرگ" + +#~ msgid "Full Size" +#~ msgstr "اندازه کامل" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "عرض تصویر باید حداقل %d پیکسل باشد." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "عرض تصویر نباید از %d پیکسل بیشتر باشد." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "ارتفاع فایل باید حداقل %d پیکسل باشد." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "ارتفاع تصویر نباید از %d پیکسل بیشتر باشد." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "حجم فایل باید حداقل %s باشد." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "حجم فایل ها نباید از %s بیشتر باشد." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "نوع فایل باید %s باشد." + +#~ msgid "The changes you made will be lost if you navigate away from this page" +#~ msgstr "اگر از صفحه جاری خارج شوید ، تغییرات شما ذخیره نخواهند شد" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "انتخاب" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "ویرایش" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "بروزرسانی" + +#~ msgid "Uploaded to this post" +#~ msgstr "بارگذاری شده در این نوشته" + +#~ msgid "Expand Details" +#~ msgstr "نمایش جزئیات" + +#~ msgid "Collapse Details" +#~ msgstr "عدم نمایش جزئیات" + +#~ msgid "Restricted" +#~ msgstr "ممنوع" + +#~ msgid "All images" +#~ msgstr "تمام تصاویر" + +#~ msgid "Validation successful" +#~ msgstr "اعتبار سنجی موفق بود" + +#~ msgid "Validation failed" +#~ msgstr "مشکل در اعتبار سنجی" + +#~ msgid "1 field requires attention" +#~ msgstr "یکی از گزینه ها نیاز به بررسی دارد" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d گزینه نیاز به بررسی دارد" + +#~ msgid "Are you sure?" +#~ msgstr "اطمینان دارید؟" + +#~ msgid "Cancel" +#~ msgstr "لغو" + +#~ msgid "Has any value" +#~ msgstr "هر نوع مقدار" + +#~ msgid "Has no value" +#~ msgstr "بدون مقدار" + +#~ msgid "Value is equal to" +#~ msgstr "مقدار برابر است با" + +#~ msgid "Value is not equal to" +#~ msgstr "مقدار برابر نیست با" + +#~ msgid "Value matches pattern" +#~ msgstr "مقدار الگوی" + +#~ msgid "Value contains" +#~ msgstr "شامل می شود" + +#~ msgid "Value is greater than" +#~ msgstr "مقدار بیشتر از" + +#~ msgid "Value is less than" +#~ msgstr "مقدار کمتر از" + +#~ msgid "Selection is greater than" +#~ msgstr "انتخاب بیشتر از" + +#~ msgid "Selection is less than" +#~ msgstr "انتخاب کمتر از" + +#~ msgid "Field type does not exist" +#~ msgstr "نوع زمینه وجود ندارد" + +#~ msgid "Unknown" +#~ msgstr "ناشناخته" + +#~ msgid "Basic" +#~ msgstr "پایه" + +#~ msgid "Content" +#~ msgstr "محتوا" + +#~ msgid "Choice" +#~ msgstr "انتخاب" + +#~ msgid "Relational" +#~ msgstr "رابطه" + +#~ msgid "jQuery" +#~ msgstr "جی کوئری" + +#~ msgid "Accordion" +#~ msgstr "آکاردئونی" + +#~ msgid "Open" +#~ msgstr "باز" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "نمایش آکوردئون این به عنوان باز در بارگذاری صفحات." + +#~ msgid "Multi-expand" +#~ msgstr "چند گسترش" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "اجازه دهید این آکوردئون بدون بستن دیگر آکاردئون‌ها باز شود." + +#~ msgid "Endpoint" +#~ msgstr "نقطه پایانی" + +#~ msgid "" +#~ "Define an endpoint for the previous accordion to stop. This accordion will " +#~ "not be visible." +#~ msgstr "" +#~ "یک نقطه پایانی برای توقف آکاردئون قبلی تعریف کنید. این آکاردئون مخفی خواهد " +#~ "بود." + +#~ msgid "Button Group" +#~ msgstr "گروه دکمه‌ها" + +#~ msgid "Choices" +#~ msgstr "انتخاب ها" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "هر انتخاب را در یک خط جدید وارد کنید." + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "" +#~ "برای کنترل بیشتر، ممکن است هر دو مقدار و برچسب را مانند زیر مشخص کنید:" + +#~ msgid "red : Red" +#~ msgstr "red : قرمز" + +#~ msgid "Allow Null?" +#~ msgstr "آیا Null مجاز است؟" + +#~ msgid "Default Value" +#~ msgstr "مقدار پیش فرض" + +#~ msgid "Appears when creating a new post" +#~ msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود" + +#~ msgid "Horizontal" +#~ msgstr "افقی" + +#~ msgid "Vertical" +#~ msgstr "عمودی" + +#~ msgid "Return Value" +#~ msgstr "مقدار بازگشت" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "مقدار برگشتی در نمایش نهایی را تعیین کنید" + +#~ msgid "Value" +#~ msgstr "مقدار" + +#~ msgid "Both (Array)" +#~ msgstr "هر دو (آرایه)" + +#~ msgid "Checkbox" +#~ msgstr "جعبه انتخاب (Checkbox)" + +#~ msgid "Toggle All" +#~ msgstr "انتخاب همه" + +#~ msgid "Add new choice" +#~ msgstr "درج انتخاب جدید" + +#~ msgid "Allow Custom" +#~ msgstr "اجازه دلخواه" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "اجازه درج مقادیر دلخواه" + +#~ msgid "Save Custom" +#~ msgstr "ذخیره دلخواه" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "ذخیره مقادیر دلخواه در انتخاب های زمینه" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید" + +#~ msgid "Toggle" +#~ msgstr "انتخاب" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "اضافه کردن چک باکس اضافی برای انتخاب همه" + +#~ msgid "Color Picker" +#~ msgstr "انتخاب کننده رنگ" + +#~ msgid "Clear" +#~ msgstr "پاکسازی" + +#~ msgid "Default" +#~ msgstr "پیش فرض" + +#~ msgid "Select Color" +#~ msgstr "رنگ را انتخاب کنید" + +#~ msgid "Current Color" +#~ msgstr "رنگ فعلی" + +#~ msgid "Date Picker" +#~ msgstr "تاریخ" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "انجام شد" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "امروز" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "بعدی" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "قبلی" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "هفته" + +#~ msgid "Display Format" +#~ msgstr "فرمت نمایش" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "قالب در زمان نمایش نوشته دیده خواهد شد" + +#~ msgid "Custom:" +#~ msgstr "دلخواه:" + +#~ msgid "Save Format" +#~ msgstr "ذخیره قالب" + +#~ msgid "The format used when saving a value" +#~ msgstr "قالب استفاده در زمان ذخیره مقدار" + +#~ msgid "The format returned via template functions" +#~ msgstr "قالب توسط توابع پوسته نمایش داده خواهد شد" + +#~ msgid "Week Starts On" +#~ msgstr "اولین روز هفته" + +#~ msgid "Date Time Picker" +#~ msgstr "انتخاب کننده زمان و تاریخ" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "انتخاب زمان" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "زمان" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "ساعت" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "دقیقه" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "ثانیه" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "میلی ثانیه" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "میکرو ثانیه" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "منطقه زمانی" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "الان" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "انجام شد" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "انتخاب" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "صبح" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "صبح" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "عصر" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "عصر" + +#~ msgid "Email" +#~ msgstr "پست الکترونیکی" + +#~ msgid "Placeholder Text" +#~ msgstr "نگهدارنده مکان متن" + +#~ msgid "Appears within the input" +#~ msgstr "در داخل ورودی نمایش داده می شود" + +#~ msgid "Prepend" +#~ msgstr "پیشوند" + +#~ msgid "Appears before the input" +#~ msgstr "قبل از ورودی نمایش داده می شود" + +#~ msgid "Append" +#~ msgstr "پسوند" + +#~ msgid "Appears after the input" +#~ msgstr "بعد از ورودی نمایش داده می شود" + +#~ msgid "File" +#~ msgstr "پرونده" + +#~ msgid "Edit File" +#~ msgstr "ویرایش پرونده" + +#~ msgid "Update File" +#~ msgstr "بروزرسانی پرونده" + +#~ msgid "File name" +#~ msgstr "نام فایل" + +#~ msgid "Add File" +#~ msgstr "افزودن پرونده" + +#~ msgid "File Array" +#~ msgstr "آرایه فایل" + +#~ msgid "File URL" +#~ msgstr "آدرس پرونده" + +#~ msgid "File ID" +#~ msgstr "شناسه(ID) پرونده" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "محدودیت در آپلود فایل ها" + +#~ msgid "Google Map" +#~ msgstr "نقشه گوگل" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "با عرض پوزش، این مرورگر از موقعیت یابی جغرافیایی پشتیبانی نمی کند" + +#~ msgid "Clear location" +#~ msgstr "حذف مکان" + +#~ msgid "Find current location" +#~ msgstr "پیدا کردن مکان فعلی" + +#~ msgid "Search for address..." +#~ msgstr "جستجو برای آدرس . . ." + +#~ msgid "Center" +#~ msgstr "مرکز" + +#~ msgid "Center the initial map" +#~ msgstr "نقشه اولیه را وسط قرار بده" + +#~ msgid "Zoom" +#~ msgstr "بزرگنمایی" + +#~ msgid "Set the initial zoom level" +#~ msgstr "تعین مقدار بزرگنمایی اولیه" + +#~ msgid "Customize the map height" +#~ msgstr "سفارشی سازی ارتفاع نقشه" + +#~ msgid "Group" +#~ msgstr "گروه" + +#~ msgid "Image" +#~ msgstr "تصویر" + +#~ msgid "Select Image" +#~ msgstr "انتخاب تصویر" + +#~ msgid "Edit Image" +#~ msgstr "ویرایش تصویر" + +#~ msgid "Update Image" +#~ msgstr "بروزرسانی تصویر" + +#~ msgid "No image selected" +#~ msgstr "هیچ تصویری انتخاب نشده" + +#~ msgid "Add Image" +#~ msgstr "افزودن تصویر" + +#~ msgid "Shown when entering data" +#~ msgstr "هنگام وارد کردن داده ها نمایش داده می شود" + +#~ msgid "Link" +#~ msgstr "لینک" + +#~ msgid "Select Link" +#~ msgstr "انتخاب لینک" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "در پنجره جدید باز شود" + +#~ msgid "Link Array" +#~ msgstr "آرایه لینک" + +#~ msgid "Link URL" +#~ msgstr "آدرس لینک" + +#~ msgid "Message" +#~ msgstr "پیام" + +#~ msgid "New Lines" +#~ msgstr "خطوط جدید" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "تنظیم کنید که خطوط جدید چگونه نمایش داده شوند" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "پاراگراف ها خودکار اضافه شوند" + +#~ msgid "Automatically add <br>" +#~ msgstr "اضافه کردن خودکار <br>" + +#~ msgid "No Formatting" +#~ msgstr "بدون قالب بندی" + +#~ msgid "Escape HTML" +#~ msgstr "حذف HTML" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "اجازه نمایش کدهای HTML به عنوان متن به جای اعمال آنها" + +#~ msgid "Number" +#~ msgstr "عدد" + +#~ msgid "Minimum Value" +#~ msgstr "حداقل مقدار" + +#~ msgid "Maximum Value" +#~ msgstr "حداکثر مقدار" + +#~ msgid "Step Size" +#~ msgstr "اندازه مرحله" + +#~ msgid "Value must be a number" +#~ msgstr "مقدار باید عددی باشد" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "مقدار باید مساوی یا بیشتر از %d باشد" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "مقدار باید کوچکتر یا مساوی %d باشد" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "آدرس را وارد کنید" + +#~ msgid "Embed Size" +#~ msgstr "اندازه جانمایی" + +#~ msgid "Page Link" +#~ msgstr "پیوند (لینک) برگه/نوشته" + +#~ msgid "Archives" +#~ msgstr "بایگانی ها" + +#~ msgid "Parent" +#~ msgstr "مادر" + +#~ msgid "Filter by Post Type" +#~ msgstr "فیلتر با نوع نوشته" + +#~ msgid "All post types" +#~ msgstr "تمام انواع نوشته" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "فیلتر با طبقه بندی" + +#~ msgid "All taxonomies" +#~ msgstr "تمام طبقه بندی ها" + +#~ msgid "Allow Archives URLs" +#~ msgstr "اجازه آدرس های آرشیو" + +#~ msgid "Select multiple values?" +#~ msgstr "آیا چندین مقدار انتخاب شوند؟" + +#~ msgid "Password" +#~ msgstr "رمزعبور" + +#~ msgid "Post Object" +#~ msgstr "آبجکت یک نوشته" + +#~ msgid "Post ID" +#~ msgstr "شناسه(ID) نوشته" + +#~ msgid "Radio Button" +#~ msgstr "دکمه رادیویی" + +#~ msgid "Other" +#~ msgstr "دیگر" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "افزودن گزینه 'دیگر' برای ثبت مقادیر دلخواه" + +#~ msgid "Save Other" +#~ msgstr "ذخیره دیگر" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "ذخیره مقادیر دیگر در انتخاب های زمینه" + +#~ msgid "Range" +#~ msgstr "محدوده" + +#~ msgid "Relationship" +#~ msgstr "ارتباط" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "مقادیر به حداکثر رسیده اند ( {max} آیتم )" + +#~ msgid "Loading" +#~ msgstr "درحال خواندن" + +#~ msgid "No matches found" +#~ msgstr "مطابقتی یافت نشد" + +#~ msgid "Select post type" +#~ msgstr "انتحاب نوع نوشته" + +#~ msgid "Select taxonomy" +#~ msgstr "انتخاب طبقه بندی" + +#~ msgid "Search..." +#~ msgstr "جستجو . . ." + +#~ msgid "Filters" +#~ msgstr "فیلترها" + +#~ msgid "Post Type" +#~ msgstr "نوع نوشته" + +#~ msgid "Taxonomy" +#~ msgstr "طبقه بندی" + +#~ msgid "Elements" +#~ msgstr "عناصر" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد" + +#~ msgid "Minimum posts" +#~ msgstr "حداقل تعداد نوشته‌ها" + +#~ msgid "Maximum posts" +#~ msgstr "حداکثر تعداد نوشته ها" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s به حداقل %s انتخاب نیاز دارد" +#~ msgstr[1] "%s به حداقل %s انتخاب نیاز دارد" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "انتخاب (Select)" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "یک نتیجه موجود است برای انتخاب Enter را فشار دهید." + +#, php-format +#~ msgctxt "Select2 JS matches_n" +#~ msgid "%d results are available, use up and down arrow keys to navigate." +#~ msgstr "" +#~ "نتایج %d در دسترس است با استفاده از کلید بالا و پایین روی آنها حرکت کنید." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "مشابهی یافت نشد" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "یک یا چند حرف وارد کنید" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "لطفا %d یا چند کاراکتر دیگر وارد کنید" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "یک حرف را حذف کنید" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "لطفا %d کاراکتر را حذف کنید" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "فقط می توانید یک آیتم را انتخاب کنید" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "شما فقط می توانید %d مورد را انتخاب کنید" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "بارگذاری نتایج بیشتر…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "جستجو …" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "خطا در فراخوانی داده ها" + +#~ msgid "Stylised UI" +#~ msgstr "ظاهر بهینه شده" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "از ایجکس برای خواندن گزینه های استفاده شود؟" + +#~ msgid "Specify the value returned" +#~ msgstr "مقدار بازگشتی را انتخاب کنید" + +#~ msgid "Separator" +#~ msgstr "جداکننده" + +#~ msgid "Tab" +#~ msgstr "تب" + +#~ msgid "Placement" +#~ msgstr "جانمایی" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "یک نقطه پایانی برای توقف زبانه قبلی تعریف کنید. این کار باعث می‌شود گروه " +#~ "جدیدی از زبانه‌ها ایجاد شود." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "بدون %s" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "طبقه‌بندی را برای برون بری انتخاب کنید" + +#~ msgid "Appearance" +#~ msgstr "ظاهر" + +#~ msgid "Select the appearance of this field" +#~ msgstr "ظاهر این زمینه را مشخص کنید" + +#~ msgid "Multiple Values" +#~ msgstr "چندین مقدار" + +#~ msgid "Multi Select" +#~ msgstr "چندین انتخاب" + +#~ msgid "Single Value" +#~ msgstr "تک مقدار" + +#~ msgid "Radio Buttons" +#~ msgstr "دکمه‌های رادیویی" + +#~ msgid "Create Terms" +#~ msgstr "ساخت آیتم (ترم)" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "اجازه به ساخت آیتم‌ها(ترم‌ها) جدید در زمان ویرایش" + +#~ msgid "Save Terms" +#~ msgstr "ذخیره ترم ها" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "الصاق آیتم های انتخابی به نوشته" + +#~ msgid "Load Terms" +#~ msgstr "خواندن ترم ها" + +#~ msgid "Load value from posts terms" +#~ msgstr "خواندن مقادیر از ترم های نوشته" + +#~ msgid "Term Object" +#~ msgstr "به صورت آبجکت" + +#~ msgid "Term ID" +#~ msgstr "شناسه(ID) آیتم(ترم)" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "کاربر قادر به اضافه کردن%s جدید نیست" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s هم اکنون موجود است" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s اضافه شد" + +#~ msgid "Add" +#~ msgstr "افزودن" + +#~ msgid "Text" +#~ msgstr "متن" + +#~ msgid "Character Limit" +#~ msgstr "محدودیت کاراکتر" + +#~ msgid "Leave blank for no limit" +#~ msgstr "برای نامحدود بودن این بخش را خالی بگذارید" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "مقدار نباید از %d کاراکتر بیشتر شود" + +#~ msgid "Text Area" +#~ msgstr "جعبه متن (متن چند خطی)" + +#~ msgid "Rows" +#~ msgstr "سطرها" + +#~ msgid "Sets the textarea height" +#~ msgstr "تعیین ارتفاع باکس متن" + +#~ msgid "Time Picker" +#~ msgstr "انتخاب زمان" + +#~ msgid "True / False" +#~ msgstr "صحیح / غلط" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "نمایش متن همراه انتخاب" + +#~ msgid "On Text" +#~ msgstr "با متن" + +#~ msgid "Text shown when active" +#~ msgstr "نمایش متن در زمان فعال بودن" + +#~ msgid "Off Text" +#~ msgstr "بدون متن" + +#~ msgid "Text shown when inactive" +#~ msgstr "نمایش متن در زمان غیر فعال بودن" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Value must be a valid URL" +#~ msgstr "مقدار باید یک آدرس صحیح باشد" + +#~ msgid "User" +#~ msgstr "کاربر" + +#~ msgid "Filter by role" +#~ msgstr "تفکیک با نقش" + +#~ msgid "All user roles" +#~ msgstr "تمام نقش های کاربر" + +#~ msgid "User Array" +#~ msgstr "آرایه کاربر" + +#~ msgid "User Object" +#~ msgstr "آبجکت کاربر" + +#~ msgid "User ID" +#~ msgstr "شناسه کاربر" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "ویرایشگر دیداری" + +#~ msgid "Visual" +#~ msgstr "بصری" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "متن" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "برای اجرای TinyMCE کلیک کنید" + +#~ msgid "Tabs" +#~ msgstr "تب ها" + +#~ msgid "Visual & Text" +#~ msgstr "بصری و متنی" + +#~ msgid "Visual Only" +#~ msgstr "فقط بصری" + +#~ msgid "Text Only" +#~ msgstr "فقط متن" + +#~ msgid "Toolbar" +#~ msgstr "نوار ابزار" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "آیا دکمه‌های بارگذاری رسانه نمایش داده شوند؟" + +#~ msgid "Delay initialization?" +#~ msgstr "نمایش با تاخیر؟" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد" + +#~ msgid "Validate Email" +#~ msgstr "اعتبار سنجی ایمیل" + +#~ msgid "Post updated" +#~ msgstr "نوشته بروز شد" + +#~ msgid "Spam Detected" +#~ msgstr "اسپم تشخیص داده شد" + +#~ msgid "Post" +#~ msgstr "نوشته" + +#~ msgid "Page" +#~ msgstr "برگه" + +#~ msgid "Forms" +#~ msgstr "فرم ها" + +#~ msgid "is equal to" +#~ msgstr "برابر شود با" + +#~ msgid "is not equal to" +#~ msgstr "برابر نشود با" + +#~ msgid "Attachment" +#~ msgstr "پیوست" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "همه‌ی فرمت‌های %s" + +#~ msgid "Comment" +#~ msgstr "دیدگاه" + +#~ msgid "Current User Role" +#~ msgstr "نقش کاربرفعلی" + +#~ msgid "Super Admin" +#~ msgstr "مدیرکل" + +#~ msgid "Current User" +#~ msgstr "کاربر فعلی" + +#~ msgid "Logged in" +#~ msgstr "وارده شده" + +#~ msgid "Viewing front end" +#~ msgstr "درحال نمایش سمت کاربر" + +#~ msgid "Viewing back end" +#~ msgstr "درحال نمایش سمت مدیریت" + +#~ msgid "Menu Item" +#~ msgstr "آیتم منو" + +#~ msgid "Menu" +#~ msgstr "منو" + +#~ msgid "Menu Locations" +#~ msgstr "محل منو" + +#~ msgid "Menus" +#~ msgstr "منوها" + +#~ msgid "Page Parent" +#~ msgstr "برگه مادر" + +#~ msgid "Page Template" +#~ msgstr "قالب برگه" + +#~ msgid "Default Template" +#~ msgstr "پوسته پیش فرض" + +#~ msgid "Page Type" +#~ msgstr "نوع برگه" + +#~ msgid "Front Page" +#~ msgstr "برگه نخست" + +#~ msgid "Posts Page" +#~ msgstr "برگه ی نوشته ها" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "بالاترین سطح برگه(بدون والد)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "برگه مادر (دارای زیر مجموعه)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "برگه زیر مجموعه (دارای مادر)" + +#~ msgid "Post Category" +#~ msgstr "دسته بندی نوشته" + +#~ msgid "Post Format" +#~ msgstr "فرمت نوشته" + +#~ msgid "Post Status" +#~ msgstr "وضعیت نوشته" + +#~ msgid "Post Taxonomy" +#~ msgstr "طبقه بندی نوشته" + +#~ msgid "Post Template" +#~ msgstr "قالب نوشته" + +#~ msgid "User Form" +#~ msgstr "فرم کاربر" + +#~ msgid "Add / Edit" +#~ msgstr "اضافه کردن/ویرایش" + +#~ msgid "Register" +#~ msgstr "ثبت نام" + +#~ msgid "User Role" +#~ msgstr "نقش کاربر" + +#~ msgid "Widget" +#~ msgstr "ابزارک" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "مقدار %s لازم است" + +#, php-format +#~ 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 "" +#~ "برای به روزرسانی لطفا کد لایسنس را وارد کنید. بروزرسانی. قیمت ها." + +#~ msgid "Testimonial" +#~ msgstr "توصیه‌نامه" + +#~ msgid "A custom testimonial block." +#~ msgstr "بلوک سفارشی توصیه‌نامه (Testimonial)" + +#~ msgid "Slider" +#~ msgstr "اسلایدر" + +#~ msgid "A custom gallery slider." +#~ msgstr "اسلایدر گالری سفارشی" + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Field group duplicated. %s" +#~ msgstr "گروه زمینه تکثیر شد. %s" + +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s گروه زمینه تکثیر شد" + +#~ msgid "Field group synchronised. %s" +#~ msgstr "گروه زمینه هماهنگ شد. %s" + +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "گروه زمینه %s هماهنگ شده است" + +#~ msgid "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "سفارشی کردن وردپرس با زمینه های قدرتمند، حرفه ای و بصری." + +#~ msgid "Error validating request" +#~ msgstr "خطا در اعتبار سنجی درخواست" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "خطا. لیست افزونه ها قابل خواندن نیست" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "به‌روزرسانی پایگاه داده زمینه های دلخواه پیشرفته" + +#~ msgid "Upgrade complete" +#~ msgstr "به‌روزرسانی انجام شد" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "قبل از اینکه از تمام امکانات شگفت انگیز جدید استفاده کنید لازم است بانک " +#~ "اطلاعاتی را به روز کنید" + +#~ msgid "" +#~ "Please also ensure any premium add-ons (%s) have first been updated to the " +#~ "latest version." +#~ msgstr "" +#~ "لطفا اطمینان حاصل کنید که افزودنی های تجاري (%s) ابتدا به آخرین نسخه بروز " +#~ "شده‌اند." + +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "" +#~ "ارتقاء پایگاه داده کامل شد. تغییرات جدید را ببینید" + +#~ msgid "A smoother custom field experience" +#~ msgstr "احساس بهتر در استفاده از زمینه دلخواه" + +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "برای به روزرسانی ساده به بخش کاربری خود در فروشگاه وارد " +#~ "شوید و یک نسخه از ویرایش حرفه ای را دانلود کنید!" + +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any questions, " +#~ "but if you do have one, please contact our support team via the help desk" +#~ msgstr "" +#~ "همچنین یک راهنمای به روزرسانی برای پاسخ به سوالات " +#~ "نوشته ایم ولی اگر هنوز سوالی دارید از تیم پشتیبانی " +#~ "بپرسید " + +#~ msgid "Under the Hood" +#~ msgstr "در پشت قضیه" + +#~ msgid "Smarter field settings" +#~ msgstr "تنظیمات زمینه ها هوشمندتر شدند" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "افزونه اکنون تنظیمات زمینه ها را به عنوان آبجکت ها مختلف نوشته ذخیره می کند" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "زمینه های بیشتری از جستجوهای ایجکس برای کاهش بار صفحه استفاده می کنند" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "امکان جدید خرجی خودکار JSON سرعت را بهبود بخشیده است" + +#~ msgid "Better version control" +#~ msgstr "کنترل نسخه بهتر" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "اکنون با خروجی جدید JSON امکان کنترل نسخه بهتر را فراهم کردیم" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "جابجایی XML با JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "اکنون خروجی و ورودی از JSON استفاده می کند" + +#~ msgid "New Forms" +#~ msgstr "فرم های جدید" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "گزینه ها اکنون می توانند به نظرات، ابزارک ها و حتی فرم های مربوط به " +#~ "کاربران متصل شوند !" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "زمینه جدیدی برای جانمایی محتوا اضافه شده است" + +#~ msgid "New Gallery" +#~ msgstr "گالری جدید" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "گالری دارای بهینه سازی هایی برای ارائه امکانات جدید شده است" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "تنظیماتی به گروه زمینه برای مکان برچسب ها و توضیحات اضافه شده است" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "تابع acf_form می تواند در زمان ارسال نوشته تولید کند !" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "خطایابی فرم (validation) اکنون از طریق PHP + AJAX به جای JS انجام می شود" + +#~ msgid "Relationship Field" +#~ msgstr "زمینه ارتباط" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "تنظیمات جدید برای زمینه ارتباط و فیلتر کردن اضافه شده است" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "عملکرد جدید گروه زمینه ها به شما امکان جابجایی زمینه ها بین گروه ها و بین " +#~ "گروه های والد را می دهد" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "گروه بندی بایگانی جدید در انتخاب زمینه پیوند صفحه" + +#~ msgid "Better Options Pages" +#~ msgstr "صفحه تنظیمات بهتر" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "تنظیمات جدید برای صفحه تنظیمات اجازه ساخت هر دو صفحه منوی والد و زیرمجموعه " +#~ "را می دهد" + +#~ msgid "Customise the map height" +#~ msgstr "سفارشی کردن ارتفاع نقشه" + +#~ msgid "checked" +#~ msgstr "انتخاب شده" + +#~ msgid "Parent fields" +#~ msgstr "زمینه های مادر" + +#~ msgid "Sibling fields" +#~ msgstr "زمینه های هدف" + +#~ msgid "Locating" +#~ msgstr "مکان یابی" + +#~ msgid "Error." +#~ msgstr "خطا." + +#~ msgid "No embed found for the given URL." +#~ msgstr "امکان جاسازی برای آدرس وارد شده یافت نشد." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "مقار به حداقل رسیده است ( {max} )" + +#~ msgid "None" +#~ msgstr "هیچ" + +#~ msgid "Taxonomy Term" +#~ msgstr "آیتم طبقه بندی" + +#~ msgid "remove {layout}?" +#~ msgstr "حذف {layout} ؟" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "این زمینه نیازدارد به {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "این زمینه محدود است به {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "حداکثر {label} پرشده است ({max} {identifier})" + +#~ msgid "Allow this accordion to open without closing others. " +#~ msgstr "اجاره به آکاردئون برای باز شدن بدون بستن دیگران" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "زمینه تب در زمانی که در آن زمینه تکرارشونده و یا زمینه محتوای انعطاف پذیر " +#~ "به کار ببرید درست نمایش داده نخواهد شد" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "از (زمینه تب) برای سازماندهی بهتر صفحه ویرایش با گروه بندی زمینه ها زیر تب " +#~ "ها استفاده کنید. " + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "همه زمینه های زیر این \" زمینه تب \" (یا تا زمینه تب بعدی) با هم گروه " +#~ "بندی می شوند و برچسب زمینه در تب به نمایش در خواهد آمد" + +#~ msgid "End-point" +#~ msgstr "نقطه پایانی" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "" +#~ "استفاده از این زمینه به عنوان نقطه پایانی و شروع یک گروه جدید از تب ها" + +#~ msgid "Disabled" +#~ msgstr "غیرفعال" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "غیرفعال (%s)" + +#~ msgid "Getting Started" +#~ msgstr "راهنمای شروع" + +#~ msgid "Field Types" +#~ msgstr "انواع زمینه" + +#~ msgid "Functions" +#~ msgstr "توابع" + +#~ msgid "Actions" +#~ msgstr "اکشن ها (مربوط به کدنویسی)" + +#~ msgid "'How to' guides" +#~ msgstr "راهنماهای کوتاه" + +#~ msgid "Tutorials" +#~ msgstr "آموزش ها" + +#~ msgid "FAQ" +#~ msgstr "پرسش و پاسخ" + +#~ msgid "Created by" +#~ msgstr "برنامه نویسی شده توسط" + +#~ msgid "Error loading update" +#~ msgstr "خطا در به روز رسانی" + +#~ msgid "Error" +#~ msgstr "خطا" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "برون بری گروه های زمینه به PHP" + +#~ msgid "Download export file" +#~ msgstr "دانلود فایل خروجی" + +#~ msgid "Generate export code" +#~ msgstr "تولید کد خروجی" + +#~ msgid "Import" +#~ msgstr "وارد کردن" + +#~ msgid "See what's new" +#~ msgstr "ببینید چه چیزی جدید است" + +#~ msgid "eg. Show extra content" +#~ msgstr "به عنوان مثال: نمایش محتوای اضافی" + +#~ msgid "Customise WordPress with powerful, professional and intuitive fields" +#~ msgstr "شخصی سازی وردپرس با زمینه های قدرتمند، حرفه ای و دیداری" + +#~ msgid "See what's new in" +#~ msgstr "ببینید چه چیزی جدید است" + +#~ msgid "version" +#~ msgstr "نسخه" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "انجام شد ابزار وارد سازی %s زمینه را وارد کرد: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "اخطار ابزار وارد سازی تشخصی داد که گروه زمینه %s اکنون موجود می " +#~ "باشد و %s نادیده گرفته شد" + +#~ msgid "Upgrade ACF" +#~ msgstr "بروزرسانی " + +#~ msgid "Upgrade" +#~ msgstr "بروزرسانی" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "با گرفتن و کشیدن مرتب سازی کنید" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "سایت‌های زیر نیاز به به‌روزرسانی دیتابیس دارند. آن‌هایی که تمایل دارید را " +#~ "انتخاب کنید و دکمه به روزرسانی را کلیک کنید." + +#~ msgid "Upgrading data to" +#~ msgstr "به روزرسانی داده ها به" + +#~ msgid "Done" +#~ msgstr "انجام شده" + +#~ msgid "Today" +#~ msgstr "امروز" + +#~ msgid "Show a different month" +#~ msgstr "نمایش یک ماه دیگر" + +#~ msgid "Return format" +#~ msgstr "فرمت بازگشت" + +#~ msgid "uploaded to this post" +#~ msgstr "بارگذاری شده در این نوشته" + +#~ msgid "File Name" +#~ msgstr "نام پرونده" + +#~ msgid "File Size" +#~ msgstr "اندازه پرونده" + +#~ msgid "No File selected" +#~ msgstr "هیچ پرونده ای انتخاب نشده" + +#~ msgid "Select" +#~ msgstr "انتخاب(دراپ باکس)" + +#~ msgid "Add new %s " +#~ msgstr "افزودن %s " + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "خطا در اتصال. متاسفیم. لطفا مجددا بررسی کنید" + +#~ msgid "Save Options" +#~ msgstr "ذخیره تنظیمات" + +#~ msgid "License" +#~ msgstr "لایسنس" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "برای به روزرسانی لطفا لایسنس خود را وارد کنید. اگر لایسنس ندارید اینجا را " +#~ "ببنید:" + +#~ msgid "details & pricing" +#~ msgstr "جزئیات و قیمت" + +#~ 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 "" +#~ "برای به روز رسانی لایسنس خود را در قسمت به روزرسانی ها " +#~ "وارد کنید. اگر لایسنس ندارید اینجا را ببینید: جزئیات ئ " +#~ "قیمت" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "دقت کنید که نکاک متن ها اول از تابع وردپرس عبور خواهند کرد" + +#~ msgid "Warning" +#~ msgstr "اخطار" + +#~ msgid "Hide / Show All" +#~ msgstr "مخفی کردن / نمایش همه" + +#~ msgid "Show Field Keys" +#~ msgstr "نمایش کلید های زمینه" + +#~ msgid "Import / Export" +#~ msgstr "درون ریزی/برون بری" + +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "" +#~ "گروه های زمینه به ترتیب از کوچکترین شماره تا بزرگترین شماره نمایش داده می " +#~ "شوند" + +#~ msgid "Upgrading data to " +#~ msgstr "به روز رسانی داده ها به %s" + +#~ msgid "Sync Terms" +#~ msgstr "همگام سازی آیتم‌ها(ترم‌ها)" + +#~ msgid "Pending Review" +#~ msgstr "در انتظار بررسی" + +#~ msgid "Draft" +#~ msgstr "پیش نویس" + +#~ msgid "Future" +#~ msgstr "شاخص" + +#~ msgid "Private" +#~ msgstr "خصوصی" + +#~ msgid "Revision" +#~ msgstr "بازنگری" + +#~ msgid "Trash" +#~ msgstr "زباله دان" + +#~ msgid "ACF PRO Required" +#~ msgstr "نسخه حرفه ای لازم است" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "مشکلی مشاهده شده است که نیاز به توجه شما دارد. این وب سایت مجاز به استفاده " +#~ "از افزودنی های پولی (%s) می باشد که دیگر سازگار نیستند" + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF as " +#~ "you know it!" +#~ msgstr "مشکلی نیست. شما می توانید به نسخه ای که به آن عادت دارید برگردید!" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "بازگشت به v%s" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "یاد بگیرید که چرا نسخه حرفه ای بای سایت شما لازم است" + +#~ msgid "Data Upgrade" +#~ msgstr "به روزرسانی داده ها" + +#~ msgid "Data upgraded successfully." +#~ msgstr "داده ها با موفقیت به روز رسانی شدند" + +#~ msgid "Data is at the latest version." +#~ msgstr "داده ها آخرین نسخه می باشند" + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "زمینه زیر خالی است" +#~ msgstr[1] "%s زمینه در زیر خالی است" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "خواندن و ذخیره دسته(ترم)ها برای نوشته" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "مقدار بر اساس دسته(ترم) نوشته خوانده شود و دسته های نوشته را در هنگام " +#~ "ذخیره به روز رسانی کند" + +#~ msgid "Controls how HTML tags are rendered" +#~ msgstr "کنترل چگونگی نمایش تگ های HTML" + +#, fuzzy +#~ msgid "image" +#~ msgstr "تصویر" + +#, fuzzy +#~ msgid "expand_details" +#~ msgstr "نمایش جزئیات" + +#, fuzzy +#~ msgid "collapse_details" +#~ msgstr "عدم نمایش جزئیات" + +#, fuzzy +#~ msgid "relationship" +#~ msgstr "ارتباط" + +#, fuzzy +#~ msgid "unload" +#~ msgstr "دانلود" + +#, fuzzy +#~ msgid "title_is_required" +#~ msgstr "عنوان گروه زمینه ضروری است" + +#, fuzzy +#~ msgid "move_field" +#~ msgstr "جابجایی زمینه" + +#, fuzzy +#~ msgid "flexible_content" +#~ msgstr "محتوای انعطاف پذیر" + +#, fuzzy +#~ msgid "gallery" +#~ msgstr "گالری" + +#, fuzzy +#~ msgid "repeater" +#~ msgstr "زمینه تکرار کننده" + +#~ msgid "Attachment Details" +#~ msgstr "جزئیات پیوست" + +#~ msgid "Custom field updated." +#~ msgstr "زمینه دلخواه بروز شد" + +#~ msgid "Custom field deleted." +#~ msgstr "زمینه دلخواه حذف شد" + +#~ msgid "Field group duplicated! Edit the new \"%s\" field group." +#~ msgstr "گروه زمینه تکراری است! گروه زمینه جدید \"%s\" را ویرایش کنید" + +#~ msgid "Import/Export" +#~ msgstr "درون ریزی/برون بری" + +#~ msgid "Column Width" +#~ msgstr "عرض ستون" + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "گروه زمینه از %s برای تجدید نظر بازگردانده شد." + +#~ msgid "No ACF groups selected" +#~ msgstr "هیچ گروه زمینه دلخواه پیشرفته ای انتخاب نشده است." + +#~ msgid "" +#~ "Create infinite rows of repeatable data with this versatile interface!" +#~ msgstr "" +#~ "ایجاد بی نهایت سطر از داده های تکرار شونده به وسیله این زمینه چند منظوره!" + +#~ msgid "Create image galleries in a simple and intuitive interface!" +#~ msgstr "ایجاد گالری های تصاویر در یک رابط کاربری ساده و دیداری!" + +#~ msgid "Create global data to use throughout your website!" +#~ msgstr "ایجاد داده فراگیر برای استفاده در همه جای سایت شما!" + +#~ msgid "Create unique designs with a flexible content layout manager!" +#~ msgstr "ایجاد طرح های منحصر به فرد با زمینه محتوای انعطاف پذیر!" + +#~ msgid "Gravity Forms Field" +#~ msgstr "زمینه افزونه GravityForms" + +#~ msgid "Creates a select field populated with Gravity Forms!" +#~ msgstr "" +#~ "زمینه جدید از نوع انتخاب می سازد که می توانید یکی از فرم های GravityForms " +#~ "که ساخته اید را از آن انتخاب کنید" + +#~ msgid "Date & Time Picker" +#~ msgstr "تاریخ و زمان" + +#~ msgid "jQuery date & time picker" +#~ msgstr "تاریخ و زمان جی کوئری" + +#~ msgid "Find addresses and coordinates of a desired location" +#~ msgstr "یافتن آدرس و مختصات مکان مورد نظر" + +#~ msgid "Contact Form 7 Field" +#~ msgstr "زمینه فرم تماس (Contact Form 7)" + +#~ msgid "Assign one or more contact form 7 forms to a post" +#~ msgstr "اختصاص یک یا چند فرم تماس (Contact Form 7) به یک نوشته" + +#~ msgid "Advanced Custom Fields Add-Ons" +#~ msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته" + +#~ msgid "" +#~ "The following Add-ons are available to increase the functionality of the " +#~ "Advanced Custom Fields plugin." +#~ msgstr "" +#~ "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته " +#~ "قابل استفاده هستند." + +#~ msgid "" +#~ "Each Add-on can be installed as a separate plugin (receives updates) or " +#~ "included in your theme (does not receive updates)." +#~ msgstr "" +#~ "هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا " +#~ "در پوسته شما (غیرقابل بروزرسانی) قرار گیرد." + +#~ msgid "Purchase & Install" +#~ msgstr "خرید و نصب" + +#~ msgid "Export" +#~ msgstr "برون بری" + +#~ msgid "Export to XML" +#~ msgstr "برون بری به فرمت XML" + +#~ msgid "Export to PHP" +#~ msgstr "برون بری به فرمت PHP" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد " +#~ "که با افزونه Wordpress Importer سازگار است." + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "گروه های زمینه درون ریزی شده در لیست گروه های زمینه قابل ویرایش نمایش داده " +#~ "خواهند شد. این روش برای انتقال گروه های زمینه در بین سایت های " +#~ "وردپرسی مفید است." + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "" +#~ "گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML)) " +#~ "کلیک کنید" + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "فایل .xml را وقتی آماده شد، ذخیره کنید" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "به ((ابزارها > درون ریزی)) بروید و وردپرس را انتخاب کنید." + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "افزونه درون ریزی وردپرس را در صورت درخواست نصب نمایید" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "فایل .xml خود را آپلود و درون ریزی کنید" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "کاربر خود را انتخاب کنید و درون ریزی پیوست ها را نا دیده بگیرید" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "همین ! از وردپرس لذت ببرید" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "" +#~ "افزونه زمینه های دلخواه پیشرفته کد های PHP برای اضافه کردن در پوسته در " +#~ "اختیاران قرار می دهد" + +#~ msgid "" +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." +#~ msgstr "" +#~ "گروه های زمینه ساخته خواهند شد ولی قابل ویرایش نخواهند بود.یعنی در " +#~ "لیست افزونه برای ویرایش دیده نمی شوند. این روش برای قرار دادن زمینه ها در " +#~ "پوسته ها (برای مشتری) مفید است." + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "لطفا توجه کنید که اگر از هر دو روش ذکر شما در یک وردپرس به صورت هم زمان " +#~ "استفاده کنید، در صفحه ویرایش مطالب، دو بار زمینه ها را خواهید دید. واضح " +#~ "است که برای حل این مشکل یا باید زمینه ها را از افزونه حذف کنید یا کدهای " +#~ "php را از پوسته و احتمالا functions.php حذف کنید." + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "" +#~ "گروه های زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت " +#~ "PHP)) کلیک کنید" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "کدهای PHP تولید شده را کپی کنید" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "در فایل functions.php پوسته خود قرار دهید" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "برای فعالسازی افزودنی ها،چند سطر اول کدها را ویرایش و استفاده کنید" + +#~ msgid "Notes" +#~ msgstr "نکته ها" + +#~ msgid "Include in theme" +#~ msgstr "قرار دادن در پوسته" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin can be included within a theme. To do " +#~ "so, move the ACF plugin inside your theme and add the following code to " +#~ "your functions.php file:" +#~ msgstr "" +#~ "افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار " +#~ "بگیرد. برای انجام این کار، افزونه را به کنار پوسته تان انتقال دهید و کدهای " +#~ "زیر را به پرونده functions.php اضافه کنید:" + +#~ msgid "" +#~ "To remove all visual interfaces from the ACF plugin, you can use a " +#~ "constant to enable lite mode. Add the following code to your functions.php " +#~ "file before the include_once code:" +#~ msgstr "" +#~ "برای حذف همه رابط های بصری از افزونه زمینه های دلخواه پیشرفته (دیده نشدن " +#~ "افزونه)، می توانید از یک ثابت (کانستنت) برای فعال سازی حالت سبک (lite) " +#~ "استفاده کنید. کد زیر را به پرونده functions.php خود قبل از تابع " +#~ "include_once اضافه کنید:" + +#~ msgid "Back to export" +#~ msgstr "بازگشت به برون بری" + +#~ msgid "What’s New" +#~ msgstr "چه چیزی جدید است؟" + +#~ msgid "Activation codes have grown into plugins!" +#~ msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!" + +#~ msgid "" +#~ "Add-ons are now activated by downloading and installing individual " +#~ "plugins. Although these plugins will not be hosted on the wordpress.org " +#~ "repository, each Add-on will continue to receive updates in the usual way." +#~ msgstr "" +#~ "افزودنی ها الان با دریافت و نصب افزونه های جداگانه فعال می شوند. با اینکه " +#~ "این افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد، هر افزودنی به صورت معمول " +#~ "به روز رسانی را دریافت خواهد کرد." + +#~ msgid "All previous Add-ons have been successfully installed" +#~ msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند" + +#~ msgid "This website uses premium Add-ons which need to be downloaded" +#~ msgstr "این سایت از افزودنی های پولی استفاده می کند که لازم است دانلود شوند" + +#~ msgid "Download your activated Add-ons" +#~ msgstr "افزودنی های فعال شده ی خود را دانلود کنید" + +#~ msgid "" +#~ "This website does not use premium Add-ons and will not be affected by this " +#~ "change." +#~ msgstr "" +#~ "این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار " +#~ "نخواهد گرفت" + +#~ msgid "Easier Development" +#~ msgstr "توسعه آسانتر" + +#~ msgid "New Field Types" +#~ msgstr "انواع زمینه جدید" + +#~ msgid "Taxonomy Field" +#~ msgstr "زمینه طبقه بندی" + +#~ msgid "Email Field" +#~ msgstr "زمینه پست الکترونیکی" + +#~ msgid "Password Field" +#~ msgstr "زمینه رمزعبور" + +#~ msgid "" +#~ "Creating your own field type has never been easier! Unfortunately, version " +#~ "3 field types are not compatible with version 4." +#~ msgstr "" +#~ "ساخت نوع زمینه دلخواه برای خودتان هرگز به این آسانی نبوده! متأسفانه، انواع " +#~ "زمینه های نسخه 3 با نسخه 4 سازگار نیستند." + +#~ msgid "Migrating your field types is easy, please" +#~ msgstr "" +#~ "انتقال انواع زمینه ها آسان است. پس لطفا افزونه خود را بروزرسانی کنید." + +#~ msgid "follow this tutorial" +#~ msgstr "این آموزش را دنبال کنید" + +#~ msgid "to learn more." +#~ msgstr "تا بیشتر بیاموزید" + +#~ msgid "Actions & Filters" +#~ msgstr "اکشن ها و فیلترها" + +#~ msgid "" +#~ "All actions & filters have received a major facelift to make customizing " +#~ "ACF even easier! Please" +#~ msgstr "" +#~ "همه اکشن ها و فیلترها دارای تغییرات عمده ای شدند تا دلخواه سازی ACF از قبل " +#~ "آسانتر شود" + +#~ msgid "read this guide" +#~ msgstr "لطفا راهنما را مطالعه فرمایید" + +#~ msgid "to find the updated naming convention." +#~ msgstr "تا نامگذاری های جدید را متوجه شوید" + +#~ msgid "Preview draft is now working!" +#~ msgstr "پیش نمایش پیش نویس اکنون کار می کند" + +#~ msgid "This bug has been squashed along with many other little critters!" +#~ msgstr "این مشکل همراه با بسیاری از مشکلات دیگر برطرف شده اند!" + +#~ msgid "See the full changelog" +#~ msgstr "مشاهده تغییرات کامل" + +#~ msgid "Database Changes" +#~ msgstr "تغییرات پایگاه داده" + +#~ msgid "" +#~ "Absolutely no changes have been made to the database " +#~ "between versions 3 and 4. This means you can roll back to version 3 " +#~ "without any issues." +#~ msgstr "" +#~ "هیچ تغییری در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. " +#~ "این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 " +#~ "برگردید." + +#~ msgid "Potential Issues" +#~ msgstr "مسائل بالقوه" + +#~ msgid "" +#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "filters, your website may not operate correctly. It is important that you " +#~ "read the full" +#~ msgstr "" +#~ "با توجه به تغییرات افزودنی ها، انواع زمینه ها و اکشن ها/فیلترها، ممکن است " +#~ "سایت شما به درستی عمل نکند. پس لازم است راهنمای کامل " + +#~ msgid "Migrating from v3 to v4" +#~ msgstr "مهاجرت از نسخه 3 به نسخه 4 را مطالعه کنید" + +#~ msgid "guide to view the full list of changes." +#~ msgstr "راهنمایی برای مشاهده لیست کاملی از تغییرات" + +#~ msgid "Really Important!" +#~ msgstr "واقعا مهم!" + +#~ msgid "" +#~ "If you updated the ACF plugin without prior knowledge of such changes, " +#~ "please roll back to the latest" +#~ msgstr "" +#~ "اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین " +#~ "تغییرات بروزرسانی کردید، لطفا به نسخه قبل برگردید " + +#~ msgid "version 3" +#~ msgstr "نسخه 3" + +#~ msgid "of this plugin." +#~ msgstr "از این افزونه." + +#~ msgid "Thank You" +#~ msgstr "از شما متشکرم" + +#~ msgid "" +#~ "A BIG thank you to everyone who has helped test the " +#~ "version 4 beta and for all the support I have received." +#~ msgstr "" +#~ "یک تشکر بزرگ از شما و همه کسانی که در تست نسخه 4 بتا به " +#~ "من کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از " +#~ "همه شما متشکرم." + +#~ msgid "Without you all, this release would not have been possible!" +#~ msgstr "بدون همه شما انتشار این نسخه امکان پذیر نبود!" + +#~ msgid "Changelog for" +#~ msgstr "تغییرات برای" + +#~ msgid "Learn more" +#~ msgstr "اطلاعات بیشتر" + +#~ msgid "Overview" +#~ msgstr "بازنگری" + +#~ msgid "" +#~ "Previously, all Add-ons were unlocked via an activation code (purchased " +#~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " +#~ "plugins which need to be individually downloaded, installed and updated." +#~ msgstr "" +#~ "پیش از این، قفل همه افزودنی ها از طریق یک کد فعالسازی (خریداری شده از " +#~ "فروشگاه افزودنی ها) باز می شدند.اما در نسخه 4 همه آنها به صورت افزودنی های " +#~ "جداگانه هستند و باید به صورت جدا دریافت، نصب و بروزرسانی شوند." + +#~ msgid "" +#~ "This page will assist you in downloading and installing each available Add-" +#~ "on." +#~ msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد." + +#~ msgid "Available Add-ons" +#~ msgstr "افزودنی های موجود" + +#~ msgid "" +#~ "The following Add-ons have been detected as activated on this website." +#~ msgstr "افزودنی های زیر به صورت فعال در این سایت شناسایی شده اند" + +#~ msgid "Installation" +#~ msgstr "نصب" + +#~ msgid "For each Add-on available, please perform the following:" +#~ msgstr "برای هر افزودنی موجود، لطفا کارهای زیر را انجام دهید:" + +#~ msgid "Download the Add-on plugin (.zip file) to your desktop" +#~ msgstr "دانلود افزونه افزودنی (پرونده ZIP) در کامپیوتر خود" + +#~ msgid "Navigate to" +#~ msgstr "رفتن به" + +#~ msgid "Plugins > Add New > Upload" +#~ msgstr "افزونه ها > افزودن > بارگذاری" + +#~ msgid "" +#~ "Use the uploader to browse, select and install your Add-on (.zip file)" +#~ msgstr "" +#~ "از بارگذار برای انتخاب فایل استفاده کنید. افزودنی خود را (پرونده ZIP) " +#~ "انتخاب و نصب نمایید" + +#~ msgid "" +#~ "Once the plugin has been uploaded and installed, click the 'Activate " +#~ "Plugin' link" +#~ msgstr "" +#~ "هنگامی که یک افزونه دریافت و نصب شده است، روی لینک (( فعال کردن افزونه)) " +#~ "کلیک کنید" + +#~ msgid "The Add-on is now installed and activated!" +#~ msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!" + +#~ msgid "Awesome. Let's get to work" +#~ msgstr "شگفت انگیزه، نه؟ پس بیا شروع به کار کنیم." + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "یک یا چند مورد از گزینه های زیر را لازم است تکمیل نمایید" + +#~ msgid "Modifying field group options 'show on page'" +#~ msgstr "اصلاح گزینه های 'نمایش در برگه' ی گروه زمینه" + +#~ msgid "Modifying field option 'taxonomy'" +#~ msgstr "اصلاح گزینه 'صبقه بندی' زمینه" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "انتقال زمینه های دلخواه کاربر از wp_options به wp_usermeta" + +#~ msgid "blue : Blue" +#~ msgstr "blue : آبی" + +#~ msgid "Dummy" +#~ msgstr "ساختگی" + +#~ msgid "Size" +#~ msgstr "اندازه" + +#~ msgid "File Object" +#~ msgstr "آبجکت پرونده" + +#~ msgid "Image Object" +#~ msgstr "آبجکت تصویر" + +#~ msgid "Text & HTML entered here will appear inline with the fields" +#~ msgstr "" +#~ "متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد شد" + +#~ msgid "Enter your choices one per line" +#~ msgstr "انتخاب ها را در هر خط وارد کنید" + +#~ msgid "Red" +#~ msgstr "قرمز" + +#~ msgid "Blue" +#~ msgstr "آبی" + +#~ msgid "Post Objects" +#~ msgstr "آبجکت های نوشته ها" + +#~ msgid "Post Type Select" +#~ msgstr "انتخاب نوع نوشته" + +#~ msgid "Use multiple tabs to divide your fields into sections." +#~ msgstr "از چندین تب برای تقسیم زمینه های خود به بخش های مختلف استفاده کنید." + +#~ msgid "Formatting" +#~ msgstr "قالب بندی" + +#~ msgid "Effects value on front end" +#~ msgstr "موثر بر شیوه نمایش در سایت اصلی" + +#~ msgid "Convert HTML into tags" +#~ msgstr "تبدیل HTML به تگ ها" + +#~ msgid "Convert new lines into <br /> tags" +#~ msgstr "تبدیل خط های جدید به برچسب ها" + +#~ msgid "Save format" +#~ msgstr "فرمت ذخیره" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned via " +#~ "the API" +#~ msgstr "" +#~ "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API " +#~ "قابل خواندن است" + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "\"yymmdd\" بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر" + +#~ msgid "jQuery date formats" +#~ msgstr "فرمت های تاریخ جی کوئری" + +#~ msgid "This format will be seen by the user when entering a value" +#~ msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد" + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "" +#~ "\"dd/mm/yy\" یا \"mm/dd/yy\" پر استفاده ترین قالب های نمایش تاریخ می " +#~ "باشند. اطلاعات بیشتر" + +#~ msgid "Field Order" +#~ msgstr "ترتیب زمینه" + +#~ msgid "Edit this Field" +#~ msgstr "ویرایش این زمینه" + +#~ msgid "Docs" +#~ msgstr "توضیحات" + +#~ msgid "Field Instructions" +#~ msgstr "دستورالعمل های زمینه" + +#~ msgid "Show this field when" +#~ msgstr "نمایش این زمینه موقعی که" + +#~ msgid "all" +#~ msgstr "همه" + +#~ msgid "any" +#~ msgstr "هرکدام از" + +#~ msgid "these rules are met" +#~ msgstr "این قوانین تلاقی کردند" + +#~ msgid "Vote" +#~ msgstr "رأی دادن" + +#~ msgid "Follow" +#~ msgstr "دنبال کردن" + +#~ msgid "credits" +#~ msgstr "اعتبارات" + +#~ msgid "Term" +#~ msgstr "دوره" + +#~ msgid "No Metabox" +#~ msgstr "بدون متاباکس" diff --git a/lang/pro/acf-fi.po b/lang/pro/acf-fi.po new file mode 100644 index 0000000..24b7a28 --- /dev/null +++ b/lang/pro/acf-fi.po @@ -0,0 +1,3997 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2022-02-25 11:11+0200\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:3, pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: acf.php:4, acf.php:8 +msgid "https://www.advancedcustomfields.com" +msgstr "http://www.advancedcustomfields.com" + +#: acf.php:5 +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Mukauta WordPressiä tehokkailla, ammattimaisilla ja intuitiivisilla kentillä." + +#: acf.php:7 +msgid "Delicious Brains" +msgstr "Delicious Brains" + +#: acf.php:71 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:360, includes/admin/admin.php:50, includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "Kenttäryhmät" + +#: acf.php:361 +msgid "Field Group" +msgstr "Kenttäryhmä" + +#: acf.php:362, acf.php:396, includes/admin/admin.php:51, +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Lisää uusi" + +#: acf.php:363 +msgid "Add New Field Group" +msgstr "Lisää uusi kenttäryhmä" + +#: acf.php:364 +msgid "Edit Field Group" +msgstr "Muokkaa kenttäryhmää" + +#: acf.php:365 +msgid "New Field Group" +msgstr "Lisää uusi kenttäryhmä" + +#: acf.php:366 +msgid "View Field Group" +msgstr "Katso kenttäryhmää" + +#: acf.php:367 +msgid "Search Field Groups" +msgstr "Etsi kenttäryhmiä" + +#: acf.php:368 +msgid "No Field Groups found" +msgstr "Kenttäryhmiä ei löytynyt" + +#: acf.php:369 +msgid "No Field Groups found in Trash" +msgstr "Kenttäryhmiä ei löytynyt roskakorista" + +#: acf.php:394, includes/admin/admin-field-group.php:233, +#: includes/admin/admin-field-groups.php:266, +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Kentät" + +#: acf.php:395 +msgid "Field" +msgstr "Kenttä" + +#: acf.php:397 +msgid "Add New Field" +msgstr "Lisää uusi kenttä" + +#: acf.php:398 +msgid "Edit Field" +msgstr "Muokkaa kenttää" + +#: acf.php:399, includes/admin/views/field-group-fields.php:56 +msgid "New Field" +msgstr "Uusi kenttä" + +#: acf.php:400 +msgid "View Field" +msgstr "Näytä kenttä" + +#: acf.php:401 +msgid "Search Fields" +msgstr "Etsi kenttiä" + +#: acf.php:402 +msgid "No Fields found" +msgstr "Ei löytynyt kenttiä" + +#: acf.php:403 +msgid "No Fields found in Trash" +msgstr "Kenttiä ei löytynyt roskakorista" + +#: acf.php:441, includes/admin/admin-field-group.php:385, +#: includes/admin/admin-field-groups.php:230 +msgctxt "post status" +msgid "Disabled" +msgstr "Pois käytöstä" + +#: acf.php:446 +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Poistettu käytöstä (%s)" +msgstr[1] "Poistettu käytöstä (%s)" + +#: acf.php:496 +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 "" +"Lisäosien Advanced Custom Fields ja Advanced Custom Fields PRO ei pitäisi " +"olla käytössä yhtäaikaa. Suljimme Advanced Custom Fields -lisäosan " +"automaattisesti." + +#: acf.php:498 +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 "" +"Lisäosien Advanced Custom Fields ja Advanced Custom Fields PRO ei pitäisi " +"olla käytössä yhtäaikaa. Suljimme Advanced Custom Fields PRO -lisäosan " +"automaattisesti." + +#: includes/acf-field-functions.php:841, +#: includes/admin/admin-field-group.php:171 +msgid "(no label)" +msgstr "(ei nimiötä)" + +#: includes/acf-field-group-functions.php:846, +#: includes/admin/admin-field-group.php:173 +msgid "copy" +msgstr "kopio" + +#: includes/acf-value-functions.php:353 +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 - Olemme havainneet yhden tai useamman kutsun ACF-" +"kenttäarvojen noutamiseksi ennen ACF:n alustamista. Tätä ei tueta ja se voi " +"johtaa väärin muotoiltuihin tai puuttuviin tietoihin. Lue lisää tämän korjaamisesta." + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Artikkelit" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taksonomiat" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Liitteet" + +#: includes/acf-wp-functions.php:63, +#: includes/admin/views/field-group-options.php:144 +msgid "Comments" +msgstr "Kommentit" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Vimpaimet" + +#: includes/acf-wp-functions.php:71, +#: includes/locations/class-acf-location-nav-menu.php:89 +msgid "Menus" +msgstr "Valikot" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Valikkokohteet" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Käyttäjät" + +#: includes/acf-wp-functions.php:83, pro/options-page.php:47 +msgid "Options" +msgstr "Asetukset" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Lohkot" + +#: includes/assets.php:348 +msgid "Are you sure?" +msgstr "Oletko varma?" + +#: includes/assets.php:349, includes/fields/class-acf-field-true_false.php:80, +#: includes/fields/class-acf-field-true_false.php:176, +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Kyllä" + +#: includes/assets.php:350, includes/fields/class-acf-field-true_false.php:83, +#: includes/fields/class-acf-field-true_false.php:193, +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Ei" + +#: includes/assets.php:351, includes/fields/class-acf-field-file.php:159, +#: includes/fields/class-acf-field-image.php:139, +#: includes/fields/class-acf-field-link.php:142, +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Poista" + +#: includes/assets.php:352 +msgid "Cancel" +msgstr "Peruuta" + +#: includes/assets.php:362 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "Tekemäsi muutokset menetetään, jos siirryt pois tältä sivulta" + +#: includes/assets.php:365 +msgid "Validation successful" +msgstr "Kenttäryhmän validointi onnistui" + +#: includes/assets.php:366, includes/validation.php:286, +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Lisäkentän validointi epäonnistui" + +#: includes/assets.php:367 +msgid "1 field requires attention" +msgstr "Yksi kenttä vaatii huomiota" + +#: includes/assets.php:368 +msgid "%d fields require attention" +msgstr "%d kenttää vaativat huomiota" + +#: includes/assets.php:371, includes/forms/form-comment.php:160, +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Muokkaa kenttäryhmää" + +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Kenttätyyppi ei ole olemassa" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Tuntematon" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Perus" + +#: includes/fields.php:355, includes/forms/form-front.php:49 +msgid "Content" +msgstr "Sisältö" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Valintakentät" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relationaalinen" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:359, +#: includes/fields/class-acf-field-button-group.php:181, +#: includes/fields/class-acf-field-checkbox.php:377, +#: includes/fields/class-acf-field-group.php:462, +#: includes/fields/class-acf-field-radio.php:256, +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:451 +msgid "Layout" +msgstr "Asettelu" + +#: includes/locations.php:25 +msgid "Class \"%s\" does not exist." +msgstr "Luokkaa \"%s\" ei ole." + +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "Sijaintityyppi \"%s\" on jo rekisteröity." + +#: includes/locations.php:99, includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Artikkeli" + +#: includes/locations.php:100, +#: includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Sivu" + +#: includes/locations.php:101, includes/fields/class-acf-field-user.php:20 +msgid "User" +msgstr "Käyttäjä" + +#: includes/locations.php:102 +msgid "Forms" +msgstr "Lomakkeet" + +#: includes/media.php:48, includes/fields/class-acf-field-select.php:255 +msgctxt "verb" +msgid "Select" +msgstr "Valitse" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Muokkaa" + +#: includes/media.php:50 +msgctxt "verb" +msgid "Update" +msgstr "Päivitä" + +#: includes/media.php:51 +msgid "Uploaded to this post" +msgstr "Tähän kenttäryhmään ladatut kuvat" + +#: includes/media.php:52 +msgid "Expand Details" +msgstr "Enemmän tietoja" + +#: includes/media.php:53 +msgid "Collapse Details" +msgstr "Vähemmän tietoja" + +#: includes/media.php:54 +msgid "Restricted" +msgstr "Rajoitettu" + +#: includes/media.php:55, includes/fields/class-acf-field-image.php:67 +msgid "All images" +msgstr "Kaikki kuvat" + +#: includes/validation.php:364 +msgid "%s value is required" +msgstr "%s arvo on pakollinen" + +#: pro/blocks.php:37 +msgid "Block type name is required." +msgstr "Lohkotyypin nimi on pakollinen." + +#: pro/blocks.php:44 +msgid "Block type \"%s\" is already registered." +msgstr "Lohkotyyppi \"%s\" on jo rekisteröity." + +#: pro/blocks.php:495 +msgid "Switch to Edit" +msgstr "Siirry muokkaamaan" + +#: pro/blocks.php:496 +msgid "Switch to Preview" +msgstr "Siirry esikatseluun" + +#: pro/blocks.php:497 +msgid "Change content alignment" +msgstr "Sisällön tasauksen muuttaminen" + +#. translators: %s: Block type title +#: pro/blocks.php:500 +msgid "%s settings" +msgstr "%s asetusta" + +#: pro/options-page.php:77, includes/forms/form-front.php:106, +#: pro/fields/class-acf-field-gallery.php:523 +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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Tarkista uudelleen" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "ACF käynnistysvirhe. Ei voitu yhdistää käynnistyspalvelimeen" + +#: includes/admin/admin-field-group.php:84, +#: includes/admin/admin-field-group.php:85, +#: includes/admin/admin-field-group.php:87 +msgid "Field group updated." +msgstr "Kenttäryhmä päivitetty." + +#: includes/admin/admin-field-group.php:86 +msgid "Field group deleted." +msgstr "Kenttäryhmä poistettu." + +#: includes/admin/admin-field-group.php:89 +msgid "Field group published." +msgstr "Kenttäryhmä julkaistu." + +#: includes/admin/admin-field-group.php:90 +msgid "Field group saved." +msgstr "Kenttäryhmä tallennettu." + +#: includes/admin/admin-field-group.php:91 +msgid "Field group submitted." +msgstr "Kenttäryhmä lähetetty." + +#: includes/admin/admin-field-group.php:92 +msgid "Field group scheduled for." +msgstr "Kenttäryhmä ajoitettu." + +#: includes/admin/admin-field-group.php:93 +msgid "Field group draft updated." +msgstr "Luonnos kenttäryhmästä päivitetty." + +#: includes/admin/admin-field-group.php:164 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "Merkkijonoa \"field_\" ei saa käyttää kentän nimen alussa" + +#: includes/admin/admin-field-group.php:165 +msgid "This field cannot be moved until its changes have been saved" +msgstr "Tätä kenttää ei voi siirtää ennen kuin muutokset on talletettu" + +#: includes/admin/admin-field-group.php:166 +msgid "Field group title is required" +msgstr "Kenttäryhmän otsikko on pakollinen" + +#: includes/admin/admin-field-group.php:167 +msgid "Move to trash. Are you sure?" +msgstr "Haluatko varmasti siirtää roskakoriin?" + +#: includes/admin/admin-field-group.php:168 +msgid "No toggle fields available" +msgstr "Ei vaihtokenttiä saatavilla" + +#: includes/admin/admin-field-group.php:169 +msgid "Move Custom Field" +msgstr "Siirrä muokattua kenttää" + +#: includes/admin/admin-field-group.php:170 +msgid "Checked" +msgstr "Valittu" + +#: includes/admin/admin-field-group.php:172 +msgid "(this field)" +msgstr "(tämä kenttä)" + +#: includes/admin/admin-field-group.php:174, includes/api/api-helpers.php:3409, +#: includes/admin/views/field-group-field-conditional-logic.php:60, +#: includes/admin/views/field-group-field-conditional-logic.php:170, +#: includes/admin/views/field-group-locations.php:36, +#: includes/admin/views/html-location-group.php:3 +msgid "or" +msgstr "tai" + +#: includes/admin/admin-field-group.php:175, +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Näytä tämä kenttäryhmä, jos" + +#: includes/admin/admin-field-group.php:176 +msgid "Null" +msgstr "Tyhjä" + +#: includes/admin/admin-field-group.php:179 +msgid "Has any value" +msgstr "On mitään arvoa" + +#: includes/admin/admin-field-group.php:180 +msgid "Has no value" +msgstr "Ei ole arvoa" + +#: includes/admin/admin-field-group.php:181 +msgid "Value is equal to" +msgstr "Arvo on sama kuin" + +#: includes/admin/admin-field-group.php:182 +msgid "Value is not equal to" +msgstr "Arvo ei ole sama kuin" + +#: includes/admin/admin-field-group.php:183 +msgid "Value matches pattern" +msgstr "Arvo vastaa kaavaa" + +#: includes/admin/admin-field-group.php:184 +msgid "Value contains" +msgstr "Arvo sisältää" + +#: includes/admin/admin-field-group.php:185 +msgid "Value is greater than" +msgstr "Arvo on suurempi kuin" + +#: includes/admin/admin-field-group.php:186 +msgid "Value is less than" +msgstr "Arvo on pienempi kuin" + +#: includes/admin/admin-field-group.php:187 +msgid "Selection is greater than" +msgstr "Valinta on suurempi kuin" + +#: includes/admin/admin-field-group.php:188 +msgid "Selection is less than" +msgstr "Valinta on pienempi kuin" + +#: includes/admin/admin-field-group.php:191 +msgid "Repeater (Pro only)" +msgstr "Toistin (vain Pro)" + +#: includes/admin/admin-field-group.php:192 +msgid "Flexible Content (Pro only)" +msgstr "Joustava sisältö (vain Pro)" + +#: includes/admin/admin-field-group.php:193 +msgid "Clone (Pro only)" +msgstr "Klooni (vain Pro)" + +#: includes/admin/admin-field-group.php:194 +msgid "Gallery (Pro only)" +msgstr "Galleria (vain Pro)" + +#: includes/admin/admin-field-group.php:234, +#: includes/admin/admin-field-groups.php:265 +msgid "Location" +msgstr "Sijainti" + +#: includes/admin/admin-field-group.php:235, +#: includes/admin/tools/class-acf-admin-tool-export.php:288 +msgid "Settings" +msgstr "Asetukset" + +#: includes/admin/admin-field-group.php:361 +msgid "Field Keys" +msgstr "Kenttäavaimet" + +#: includes/admin/admin-field-group.php:385 +msgctxt "post status" +msgid "Active" +msgstr "Käytössä" + +#: includes/admin/admin-field-group.php:752 +msgid "Move Complete." +msgstr "Siirto valmis." + +#: includes/admin/admin-field-group.php:754 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "Kenttä %1$s löytyy nyt kenttäryhmästä %2$s" + +#: includes/admin/admin-field-group.php:758 +msgid "Close Window" +msgstr "Sulje ikkuna" + +#: includes/admin/admin-field-group.php:797 +msgid "Please select the destination for this field" +msgstr "Valitse kohde kentälle" + +#: includes/admin/admin-field-group.php:804 +msgid "Move Field" +msgstr "Siirrä kenttä" + +#: includes/admin/admin-field-groups.php:116 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Käytössä (%s)" +msgstr[1] "Käytössä (%s)" + +#: includes/admin/admin-field-groups.php:196 +msgid "Review local JSON changes" +msgstr "Tarkista paikalliset JSON-muutokset" + +#: includes/admin/admin-field-groups.php:197 +msgid "Loading diff" +msgstr "Ladataan diff" + +#: includes/admin/admin-field-groups.php:198, +#: includes/admin/admin-field-groups.php:533 +msgid "Sync changes" +msgstr "Synkronoi muutokset" + +#: includes/admin/admin-field-groups.php:263, +#: pro/fields/class-acf-field-gallery.php:388, +#: includes/admin/views/field-group-options.php:127, +#: includes/admin/views/html-admin-page-upgrade-network.php:38, +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Kuvaus" + +#: includes/admin/admin-field-groups.php:264, +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Avain" + +#: includes/admin/admin-field-groups.php:269 +msgid "Local JSON" +msgstr "Paikallinen JSON" + +#: includes/admin/admin-field-groups.php:419 +msgid "Various" +msgstr "Sekalaisia" + +#: includes/admin/admin-field-groups.php:449 +msgid "Located in: %s" +msgstr "Sijaitsee: %s" + +#: includes/admin/admin-field-groups.php:445 +msgid "Located in plugin: %s" +msgstr "Lisäosalla: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Located in theme: %s" +msgstr "Teemalla: %s" + +#: includes/admin/admin-field-groups.php:484 +msgid "Awaiting save" +msgstr "Odottaa tallentamista" + +#: includes/admin/admin-field-groups.php:481 +msgid "Saved" +msgstr "Tallennettu" + +#: includes/admin/admin-field-groups.php:469, +#: includes/admin/admin-field-groups.php:687 +msgid "Sync available" +msgstr "Synkronointi saatavissa" + +#: includes/admin/admin-field-groups.php:477 +msgid "Import" +msgstr "Tuo" + +#: includes/admin/admin-field-groups.php:472 +msgid "Sync" +msgstr "Synkronointi" + +#: includes/admin/admin-field-groups.php:473 +msgid "Review changes" +msgstr "Tarkista muutokset" + +#: includes/admin/admin-field-groups.php:505 +msgid "Duplicate this item" +msgstr "Monista tämä kohde" + +#: includes/admin/admin-field-groups.php:505, +#: includes/admin/admin-field-groups.php:525, +#: pro/fields/class-acf-field-flexible-content.php:553, +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate" +msgstr "Monista" + +#: includes/admin/admin-field-groups.php:555 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Kenttäryhmä monistettu." +msgstr[1] "%s kenttäryhmää monistettu." + +#: includes/admin/admin-field-groups.php:612 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Kenttäryhmä synkronoitu." +msgstr[1] "%s kenttäryhmää synkronoitu." + +#: includes/admin/admin-field-groups.php:800 +msgid "Select %s" +msgstr "Valitse %s" + +#: includes/admin/admin-tools.php:119, +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Työkalut" + +#: includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:113, +#: includes/admin/admin-upgrade.php:114, includes/admin/admin-upgrade.php:177, +#: includes/admin/views/html-admin-page-upgrade-network.php:24, +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Päivitä tietokanta" + +#: includes/admin/admin-upgrade.php:201 +msgid "Review sites & upgrade" +msgstr "Tarkastele sivuja & päivitä" + +#: includes/admin/admin.php:49, +#: includes/admin/views/field-group-options.php:142 +msgid "Custom Fields" +msgstr "Lisäkentät" + +#: includes/admin/admin.php:129, includes/admin/admin.php:131 +msgid "Overview" +msgstr "Yleiskatsaus" + +#: includes/admin/admin.php:132 +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 -lisäosa tarjoaa visuaalisen lomaketyökalun " +"WordPressin muokkausnäyttöjen mukauttamiseksi ylimääräisillä kentillä ja " +"intuitiivisen API:n mukautettujen kenttäarvojen näyttämiseksi missä tahansa " +"teeman mallitiedostossa." + +#: includes/admin/admin.php:134 +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 "" +"Ennen kuin luot ensimmäisen kenttäryhmäsi, suosittelemme lukemaan aloitusoppaamme, jossa tutustutaan lisäosan " +"filosofiaan ja parhaisiin käytäntöihin." + +#: includes/admin/admin.php:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" +"Ota yhteyttä Ohjeet & tukipalvelut -välilehdessä, jos huomaat tarvitsevasi " +"apua." + +#: includes/admin/admin.php:146, includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Ohjeet & tukipalvelut" + +#: includes/admin/admin.php:149 +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 "" +"Olemme fanaattisia tuen suhteen ja haluamme, että saat kaiken mahdollisen " +"irti verkkosivustostasi ACF:n avulla. Jos kohtaat ongelmia, apua löytyy " +"useista paikoista:" + +#: includes/admin/admin.php:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" +"Dokumentaatio. Laaja dokumentaatiomme " +"sisältää viittauksia ja oppaita useimpiin kohtaamiisi tilanteisiin." + +#: includes/admin/admin.php:156 +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 "" +"Keskustelut. Yhteisöfoorumeillamme on " +"aktiivinen ja ystävällinen yhteisö, joka voi ehkä auttaa sinua selvittämään " +"ACF-maailman ihmeellisyyksiä." + +#: includes/admin/admin.php:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" +"Tukipalvelu. Tukipalvelumme " +"ammattilaiset auttavat syvällisemmissä teknisissä haasteissasi." + +#: includes/admin/admin.php:169 +msgid "Information" +msgstr "Tiedot" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Versio %s" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Näytä tarkemmat tiedot" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Siirry verkkosivuille" + +#: includes/admin/admin.php:201, +#: includes/admin/views/field-group-field-conditional-logic.php:157, +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "ja" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Virheelliset kenttäryhmän parametrit." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Virheellinen kenttäryhmän tunnus." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" +"Tämä kenttäryhmä ei valitettavasti ole käytettävissä diff-vertailua varten." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Päivitetty viimeksi: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Alkuperäinen kenttäryhmä" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "JSON-kenttäryhmä (uusi)" + +#: includes/ajax/class-acf-ajax-upgrade.php:34, +#: includes/admin/views/html-admin-page-upgrade.php:94 +msgid "No updates available." +msgstr "Päivityksiä ei ole saatavilla." + +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Virheellinen nonce." + +#: includes/api/api-helpers.php:821 +msgid "Thumbnail" +msgstr "Pienoiskuva" + +#: includes/api/api-helpers.php:822 +msgid "Medium" +msgstr "Keskikokoinen" + +#: includes/api/api-helpers.php:823 +msgid "Large" +msgstr "Iso" + +#: includes/api/api-helpers.php:864 +msgid "Full Size" +msgstr "Täysikokoinen" + +#: includes/api/api-helpers.php:1569, includes/api/api-term.php:147, +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(ei otsikkoa)" + +#: includes/api/api-helpers.php:3343 +msgid "Image width must not exceed %dpx." +msgstr "Kuvan leveys ei saa ylittää %dpx." + +#: includes/api/api-helpers.php:3338 +msgid "Image width must be at least %dpx." +msgstr "Kuvan leveys täytyy olla vähintään %dpx." + +#: includes/api/api-helpers.php:3362 +msgid "Image height must not exceed %dpx." +msgstr "Kuvan korkeus ei saa ylittää %dpx." + +#: includes/api/api-helpers.php:3357 +msgid "Image height must be at least %dpx." +msgstr "Kuvan korkeus täytyy olla vähintään %dpx." + +#: includes/api/api-helpers.php:3382 +msgid "File size must not exceed %s." +msgstr "Tiedoston koko ei saa ylittää %s." + +#: includes/api/api-helpers.php:3377 +msgid "File size must be at least %s." +msgstr "Tiedoston koko täytyy olla vähintään %s." + +#: includes/api/api-helpers.php:3413 +msgid "File type must be %s." +msgstr "Tiedoston koko täytyy olla %s." + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Haitari (Accordion)" + +#: includes/fields/class-acf-field-accordion.php:102 +msgid "Open" +msgstr "Avoinna" + +#: includes/fields/class-acf-field-accordion.php:103 +msgid "Display this accordion as open on page load." +msgstr "Näytä tämä haitari avoimena sivun latautuessa." + +#: includes/fields/class-acf-field-accordion.php:114 +msgid "Multi-expand" +msgstr "Avaa useita" + +#: includes/fields/class-acf-field-accordion.php:115 +msgid "Allow this accordion to open without closing others." +msgstr "Salli tämän haitarin avautua sulkematta muita." + +#: includes/fields/class-acf-field-accordion.php:126, +#: includes/fields/class-acf-field-tab.php:117 +msgid "Endpoint" +msgstr "Päätepiste" + +#: includes/fields/class-acf-field-accordion.php:127 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"Määritä päätepiste aiemmalle haitarille. Tämä haitari ei tule näkyviin." + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Painikeryhmä" + +#: includes/fields/class-acf-field-button-group.php:147, +#: includes/fields/class-acf-field-checkbox.php:324, +#: includes/fields/class-acf-field-radio.php:191, +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Valinnat" + +#: includes/fields/class-acf-field-button-group.php:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Syötä jokainen valinta uudelle riville." + +#: includes/fields/class-acf-field-button-group.php:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "Halutessasi voit määrittää sekä arvon että nimiön tähän tapaan:" + +#: includes/fields/class-acf-field-button-group.php:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "koira_istuu : Koira istuu" + +#: includes/fields/class-acf-field-button-group.php:158, +#: includes/fields/class-acf-field-page_link.php:482, +#: includes/fields/class-acf-field-post_object.php:394, +#: includes/fields/class-acf-field-radio.php:202, +#: includes/fields/class-acf-field-select.php:386, +#: includes/fields/class-acf-field-taxonomy.php:748, +#: includes/fields/class-acf-field-user.php:68 +msgid "Allow Null?" +msgstr "Salli tyhjä?" + +#: includes/fields/class-acf-field-button-group.php:170, +#: includes/fields/class-acf-field-checkbox.php:366, +#: includes/fields/class-acf-field-color_picker.php:155, +#: includes/fields/class-acf-field-email.php:117, +#: includes/fields/class-acf-field-number.php:125, +#: includes/fields/class-acf-field-radio.php:245, +#: includes/fields/class-acf-field-range.php:163, +#: includes/fields/class-acf-field-select.php:375, +#: includes/fields/class-acf-field-text.php:97, +#: includes/fields/class-acf-field-textarea.php:103, +#: includes/fields/class-acf-field-true_false.php:148, +#: includes/fields/class-acf-field-url.php:101, +#: includes/fields/class-acf-field-wysiwyg.php:334 +msgid "Default Value" +msgstr "Oletusarvo" + +#: includes/fields/class-acf-field-button-group.php:171, +#: includes/fields/class-acf-field-email.php:118, +#: includes/fields/class-acf-field-number.php:126, +#: includes/fields/class-acf-field-radio.php:246, +#: includes/fields/class-acf-field-range.php:164, +#: includes/fields/class-acf-field-text.php:98, +#: includes/fields/class-acf-field-textarea.php:104, +#: includes/fields/class-acf-field-url.php:102, +#: includes/fields/class-acf-field-wysiwyg.php:335 +msgid "Appears when creating a new post" +msgstr "Kentän oletusarvo" + +#: includes/fields/class-acf-field-button-group.php:187, +#: includes/fields/class-acf-field-checkbox.php:384, +#: includes/fields/class-acf-field-radio.php:263 +msgid "Horizontal" +msgstr "Vaakasuuntainen" + +#: includes/fields/class-acf-field-button-group.php:188, +#: includes/fields/class-acf-field-checkbox.php:383, +#: includes/fields/class-acf-field-radio.php:262 +msgid "Vertical" +msgstr "Pystysuuntainen" + +#: includes/fields/class-acf-field-button-group.php:197, +#: includes/fields/class-acf-field-checkbox.php:405, +#: includes/fields/class-acf-field-file.php:227, +#: includes/fields/class-acf-field-link.php:170, +#: includes/fields/class-acf-field-radio.php:272, +#: includes/fields/class-acf-field-taxonomy.php:801 +msgid "Return Value" +msgstr "Palauta arvo" + +#: includes/fields/class-acf-field-button-group.php:198, +#: includes/fields/class-acf-field-checkbox.php:406, +#: includes/fields/class-acf-field-file.php:228, +#: includes/fields/class-acf-field-link.php:171, +#: includes/fields/class-acf-field-radio.php:273 +msgid "Specify the returned value on front end" +msgstr "Määritä palautettu arvo front endiin" + +#: includes/fields/class-acf-field-button-group.php:203, +#: includes/fields/class-acf-field-checkbox.php:411, +#: includes/fields/class-acf-field-radio.php:278, +#: includes/fields/class-acf-field-select.php:444 +msgid "Value" +msgstr "Arvo" + +#: includes/fields/class-acf-field-button-group.php:204, +#: includes/fields/class-acf-field-checkbox.php:412, +#: includes/fields/class-acf-field-radio.php:279, +#: includes/fields/class-acf-field-select.php:445, +#: pro/fields/class-acf-field-flexible-content.php:581, +#: includes/admin/views/field-group-fields.php:5 +msgid "Label" +msgstr "Nimiö" + +#: includes/fields/class-acf-field-button-group.php:205, +#: includes/fields/class-acf-field-checkbox.php:413, +#: includes/fields/class-acf-field-radio.php:280, +#: includes/fields/class-acf-field-select.php:446 +msgid "Both (Array)" +msgstr "Molemmat (palautusmuoto on tällöin taulukko)" + +#: includes/fields/class-acf-field-checkbox.php:25, +#: includes/fields/class-acf-field-taxonomy.php:733 +msgid "Checkbox" +msgstr "Valintaruutu" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Toggle All" +msgstr "Valitse kaikki" + +#: includes/fields/class-acf-field-checkbox.php:207 +msgid "Add new choice" +msgstr "Lisää uusi valinta" + +#: includes/fields/class-acf-field-checkbox.php:335 +msgid "Allow Custom" +msgstr "Salli mukautettu" + +#: includes/fields/class-acf-field-checkbox.php:340 +msgid "Allow 'custom' values to be added" +msgstr "Salli käyttäjän syöttää omia arvojaan" + +#: includes/fields/class-acf-field-checkbox.php:348 +msgid "Save Custom" +msgstr "Tallenna mukautettu" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Save 'custom' values to the field's choices" +msgstr "" +"Tallenna 'Muu’-kentän arvo kentän valinta vaihtoehdoksi tulevaisuudessa" + +#: includes/fields/class-acf-field-checkbox.php:367, +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Syötä jokainen oletusarvo uudelle riville" + +#: includes/fields/class-acf-field-checkbox.php:393 +msgid "Toggle" +msgstr "Valitse" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Näytetäänkö ”Valitse kaikki” -valintaruutu" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Värinvalitsin" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Tyhjennä" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Tyhjennä väri" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Oletus" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Valitse oletusväri" + +#: includes/fields/class-acf-field-color_picker.php:73 +msgid "Select Color" +msgstr "Valitse väri" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Väriarvo" + +#: includes/fields/class-acf-field-color_picker.php:95, +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Heksamerkkijono" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "RGBA-merkkijono" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Ota läpinäkyvyys käyttöön" + +#: includes/fields/class-acf-field-color_picker.php:179, +#: includes/fields/class-acf-field-date_picker.php:216, +#: includes/fields/class-acf-field-date_time_picker.php:201, +#: includes/fields/class-acf-field-image.php:204, +#: includes/fields/class-acf-field-post_object.php:418, +#: includes/fields/class-acf-field-relationship.php:662, +#: includes/fields/class-acf-field-select.php:439, +#: includes/fields/class-acf-field-time_picker.php:131, +#: includes/fields/class-acf-field-user.php:90, +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Palautusmuoto" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "RGBA-taulukko" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Päivämäärävalitsin" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Sulje" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Tänään" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Seuraava" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Edellinen" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Vk" + +#: 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:114 +msgid "Display Format" +msgstr "Muokkausnäkymän muoto" + +#: 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:115 +msgid "The format displayed when editing a post" +msgstr "Päivämäärän muoto muokkausnäkymässä" + +#: includes/fields/class-acf-field-date_picker.php:190, +#: includes/fields/class-acf-field-date_picker.php:226, +#: includes/fields/class-acf-field-date_time_picker.php:192, +#: includes/fields/class-acf-field-date_time_picker.php:211, +#: includes/fields/class-acf-field-time_picker.php:122, +#: includes/fields/class-acf-field-time_picker.php:139 +msgid "Custom:" +msgstr "Mukautettu:" + +#: includes/fields/class-acf-field-date_picker.php:217, +#: includes/fields/class-acf-field-date_time_picker.php:202, +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "The format returned via template functions" +msgstr "Sivupohjan funktioiden palauttama päivämäärän muoto" + +#: includes/fields/class-acf-field-date_picker.php:202 +msgid "Save Format" +msgstr "Tallennusmuoto" + +#: includes/fields/class-acf-field-date_picker.php:203 +msgid "The format used when saving a value" +msgstr "Arvo tallennetaan tähän muotoon" + +#: includes/fields/class-acf-field-date_picker.php:237, +#: includes/fields/class-acf-field-date_time_picker.php:220 +msgid "Week Starts On" +msgstr "Viikon ensimmäinen päivä" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Päivämäärä- ja kellonaikavalitsin" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Valitse aika" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Aika" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Tunti" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuutti" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Sekunti" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Millisekunti" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekunti" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Aikavyöhyke" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Nyt" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Sulje" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Valitse" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +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 amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Sähköposti" + +#: includes/fields/class-acf-field-email.php:128, +#: includes/fields/class-acf-field-number.php:136, +#: includes/fields/class-acf-field-password.php:73, +#: includes/fields/class-acf-field-text.php:108, +#: includes/fields/class-acf-field-textarea.php:114, +#: includes/fields/class-acf-field-url.php:112 +msgid "Placeholder Text" +msgstr "Täyteteksti" + +#: includes/fields/class-acf-field-email.php:129, +#: includes/fields/class-acf-field-number.php:137, +#: includes/fields/class-acf-field-password.php:74, +#: includes/fields/class-acf-field-text.php:109, +#: includes/fields/class-acf-field-textarea.php:115, +#: includes/fields/class-acf-field-url.php:113 +msgid "Appears within the input" +msgstr "Näkyy input-kentän sisällä" + +#: includes/fields/class-acf-field-email.php:139, +#: includes/fields/class-acf-field-number.php:147, +#: includes/fields/class-acf-field-password.php:84, +#: includes/fields/class-acf-field-range.php:210, +#: includes/fields/class-acf-field-text.php:119 +msgid "Prepend" +msgstr "Etuliite" + +#: includes/fields/class-acf-field-email.php:140, +#: includes/fields/class-acf-field-number.php:148, +#: includes/fields/class-acf-field-password.php:85, +#: includes/fields/class-acf-field-range.php:211, +#: includes/fields/class-acf-field-text.php:120 +msgid "Appears before the input" +msgstr "Näkyy ennen input-kenttää" + +#: includes/fields/class-acf-field-email.php:150, +#: includes/fields/class-acf-field-number.php:158, +#: includes/fields/class-acf-field-password.php:95, +#: includes/fields/class-acf-field-range.php:221, +#: includes/fields/class-acf-field-text.php:130 +msgid "Append" +msgstr "Loppuliite" + +#: includes/fields/class-acf-field-email.php:151, +#: includes/fields/class-acf-field-number.php:159, +#: includes/fields/class-acf-field-password.php:96, +#: includes/fields/class-acf-field-range.php:222, +#: includes/fields/class-acf-field-text.php:131 +msgid "Appears after the input" +msgstr "Näkyy input-kentän jälkeen" + +#: includes/fields/class-acf-field-email.php:175 +msgid "'%s' is not a valid email address" +msgstr "'%s' ei ole kelvollinen sähköpostiosoite" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Tiedosto" + +#: includes/fields/class-acf-field-file.php:58, +#: includes/admin/tools/class-acf-admin-tool-import.php:55 +msgid "Select File" +msgstr "Valitse tiedosto" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Edit File" +msgstr "Muokkaa tiedostoa" + +#: includes/fields/class-acf-field-file.php:60 +msgid "Update File" +msgstr "Päivitä tiedosto" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Tiedoston nimi" + +#: includes/fields/class-acf-field-file.php:151, +#: includes/fields/class-acf-field-file.php:264, +#: includes/fields/class-acf-field-file.php:277, +#: includes/fields/class-acf-field-image.php:276, +#: includes/fields/class-acf-field-image.php:313, +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Tiedoston koko" + +#: includes/fields/class-acf-field-file.php:157, +#: includes/fields/class-acf-field-image.php:137, +#: includes/fields/class-acf-field-link.php:142, +#: pro/fields/class-acf-field-gallery.php:335, +#: includes/admin/views/field-group-field.php:56 +msgid "Edit" +msgstr "Muokkaa" + +#: includes/fields/class-acf-field-file.php:182, +#: includes/admin/tools/class-acf-admin-tool-import.php:89 +msgid "No file selected" +msgstr "Ei valittua tiedostoa" + +#: includes/fields/class-acf-field-file.php:182 +msgid "Add File" +msgstr "Lisää tiedosto" + +#: includes/fields/class-acf-field-file.php:233 +msgid "File Array" +msgstr "Tiedosto" + +#: includes/fields/class-acf-field-file.php:234 +msgid "File URL" +msgstr "Tiedoston URL" + +#: includes/fields/class-acf-field-file.php:235 +msgid "File ID" +msgstr "Tiedoston ID" + +#: includes/fields/class-acf-field-file.php:244, +#: includes/fields/class-acf-field-image.php:233, +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Kirjasto" + +#: includes/fields/class-acf-field-file.php:245, +#: includes/fields/class-acf-field-image.php:234, +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Rajoita valintaa mediakirjastosta" + +#: includes/fields/class-acf-field-file.php:250, +#: includes/fields/class-acf-field-image.php:239, +#: 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, +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Kaikki" + +#: includes/fields/class-acf-field-file.php:251, +#: includes/fields/class-acf-field-image.php:240, +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Vain tähän artikkeliin ladatut" + +#: includes/fields/class-acf-field-file.php:260, +#: includes/fields/class-acf-field-image.php:249, +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimiarvo(t)" + +#: includes/fields/class-acf-field-file.php:261, +#: includes/fields/class-acf-field-file.php:274 +msgid "Restrict which files can be uploaded" +msgstr "Määritä tiedoston koko" + +#: includes/fields/class-acf-field-file.php:273, +#: includes/fields/class-acf-field-image.php:286, +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maksimiarvo(t)" + +#: includes/fields/class-acf-field-file.php:286, +#: includes/fields/class-acf-field-image.php:323, +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Sallitut tiedostotyypit" + +#: includes/fields/class-acf-field-file.php:287, +#: includes/fields/class-acf-field-image.php:324, +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "Erota pilkulla. Jätä tyhjäksi, jos haluat sallia kaikki tiedostyypit" + +#: includes/fields/class-acf-field-file.php:469 +msgid "%s requires a valid attachment ID." +msgstr "%s edellyttää kelvollista liitetunnusta (ID)." + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Google-kartta" + +#: includes/fields/class-acf-field-google-map.php:60 +msgid "Sorry, this browser does not support geolocation" +msgstr "Pahoittelut, tämä selain ei tue paikannusta" + +#: includes/fields/class-acf-field-google-map.php:155, +#: includes/fields/class-acf-field-relationship.php:615 +msgid "Search" +msgstr "Etsi" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Tyhjennä paikkatieto" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Etsi nykyinen sijainti" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Etsi osoite..." + +#: includes/fields/class-acf-field-google-map.php:192, +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Sijainti" + +#: includes/fields/class-acf-field-google-map.php:193, +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Kartan oletussijainti" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zoomaus" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Aseta oletuszoomaus" + +#: includes/fields/class-acf-field-google-map.php:231, +#: includes/fields/class-acf-field-image.php:264, +#: includes/fields/class-acf-field-image.php:301, +#: includes/fields/class-acf-field-oembed.php:292, +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Korkeus" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "Kartan korkeuden mukauttaminen" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Ryhmä" + +#: includes/fields/class-acf-field-group.php:446, +#: pro/fields/class-acf-field-repeater.php:381 +msgid "Sub Fields" +msgstr "Alakentät" + +#: includes/fields/class-acf-field-group.php:463, +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa" + +#: includes/fields/class-acf-field-group.php:468, +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:459, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Lohko" + +#: includes/fields/class-acf-field-group.php:469, +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Table" +msgstr "Taulukko" + +#: includes/fields/class-acf-field-group.php:470, +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:460 +msgid "Row" +msgstr "Rivi" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Kuva" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Select Image" +msgstr "Valitse kuva" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Edit Image" +msgstr "Muokkaa kuvaa" + +#: includes/fields/class-acf-field-image.php:66 +msgid "Update Image" +msgstr "Päivitä kuva" + +#: includes/fields/class-acf-field-image.php:158 +msgid "No image selected" +msgstr "Ei kuvia valittu" + +#: includes/fields/class-acf-field-image.php:158 +msgid "Add Image" +msgstr "Lisää kuva" + +#: includes/fields/class-acf-field-image.php:210, +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Kuva" + +#: includes/fields/class-acf-field-image.php:211, +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Kuvan URL" + +#: includes/fields/class-acf-field-image.php:212, +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Kuvan ID" + +#: includes/fields/class-acf-field-image.php:221, +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Esikatselukuvan koko" + +#: includes/fields/class-acf-field-image.php:250, +#: includes/fields/class-acf-field-image.php:287, +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Määritä millaisia kuvia voidaan ladata" + +#: includes/fields/class-acf-field-image.php:253, +#: includes/fields/class-acf-field-image.php:290, +#: includes/fields/class-acf-field-oembed.php:279, +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Leveys" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Linkki" + +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Valitse linkki" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Avaa uuteen ikkunaan/välilehteen" + +#: includes/fields/class-acf-field-link.php:176 +msgid "Link Array" +msgstr "Linkkitaulukko (array)" + +#: includes/fields/class-acf-field-link.php:177 +msgid "Link URL" +msgstr "Linkin URL-osoite" + +#: includes/fields/class-acf-field-message.php:26, +#: includes/fields/class-acf-field-message.php:100, +#: includes/fields/class-acf-field-true_false.php:137 +msgid "Message" +msgstr "Viesti" + +#: includes/fields/class-acf-field-message.php:111, +#: includes/fields/class-acf-field-textarea.php:148 +msgid "New Lines" +msgstr "Uudet rivit" + +#: includes/fields/class-acf-field-message.php:112, +#: includes/fields/class-acf-field-textarea.php:149 +msgid "Controls how new lines are rendered" +msgstr "Määrittää kuinka uudet rivit muotoillaan" + +#: includes/fields/class-acf-field-message.php:116, +#: includes/fields/class-acf-field-textarea.php:153 +msgid "Automatically add paragraphs" +msgstr "Lisää automaattisesti kappale" + +#: includes/fields/class-acf-field-message.php:117, +#: includes/fields/class-acf-field-textarea.php:154 +msgid "Automatically add <br>" +msgstr "Lisää automaattisesti <br>" + +#: includes/fields/class-acf-field-message.php:118, +#: includes/fields/class-acf-field-textarea.php:155 +msgid "No Formatting" +msgstr "Ei muotoilua" + +#: includes/fields/class-acf-field-message.php:127 +msgid "Escape HTML" +msgstr "Escape HTML" + +#: includes/fields/class-acf-field-message.php:128 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "Salli HTML-muotoilun näkyminen tekstinä renderöinnin sijaan" + +#: includes/fields/class-acf-field-number.php:25 +msgid "Number" +msgstr "Numero" + +#: includes/fields/class-acf-field-number.php:169, +#: includes/fields/class-acf-field-range.php:174 +msgid "Minimum Value" +msgstr "Minimiarvo" + +#: includes/fields/class-acf-field-number.php:180, +#: includes/fields/class-acf-field-range.php:186 +msgid "Maximum Value" +msgstr "Maksimiarvo" + +#: includes/fields/class-acf-field-number.php:191, +#: includes/fields/class-acf-field-range.php:198 +msgid "Step Size" +msgstr "Askelluksen koko" + +#: includes/fields/class-acf-field-number.php:229 +msgid "Value must be a number" +msgstr "Arvon täytyy olla numero" + +#: includes/fields/class-acf-field-number.php:244 +msgid "Value must be equal to or higher than %d" +msgstr "Arvon täytyy olla sama tai suurempi kuin %d" + +#: includes/fields/class-acf-field-number.php:251 +msgid "Value must be equal to or lower than %d" +msgstr "Arvon täytyy olla sama tai pienempi kuin %d" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:230 +msgid "Enter URL" +msgstr "Syötä URL" + +#: includes/fields/class-acf-field-oembed.php:276, +#: includes/fields/class-acf-field-oembed.php:289 +msgid "Embed Size" +msgstr "Upotuksen koko" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Sivun URL" + +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Arkistot" + +#: includes/fields/class-acf-field-page_link.php:249, +#: includes/fields/class-acf-field-post_object.php:250, +#: includes/fields/class-acf-field-taxonomy.php:948 +msgid "Parent" +msgstr "Vanhempi" + +#: includes/fields/class-acf-field-page_link.php:450, +#: includes/fields/class-acf-field-post_object.php:362, +#: includes/fields/class-acf-field-relationship.php:578 +msgid "Filter by Post Type" +msgstr "Suodata tyypin mukaan" + +#: includes/fields/class-acf-field-page_link.php:458, +#: includes/fields/class-acf-field-post_object.php:370, +#: includes/fields/class-acf-field-relationship.php:586 +msgid "All post types" +msgstr "Kaikki artikkelityypit" + +#: includes/fields/class-acf-field-page_link.php:466, +#: includes/fields/class-acf-field-post_object.php:378, +#: includes/fields/class-acf-field-relationship.php:594 +msgid "Filter by Taxonomy" +msgstr "Suodata taksonomian mukaan" + +#: includes/fields/class-acf-field-page_link.php:474, +#: includes/fields/class-acf-field-post_object.php:386, +#: includes/fields/class-acf-field-relationship.php:602 +msgid "All taxonomies" +msgstr "Kaikki taksonomiat" + +#: includes/fields/class-acf-field-page_link.php:494 +msgid "Allow Archives URLs" +msgstr "Salli arkistojen URL-osoitteita" + +#: includes/fields/class-acf-field-page_link.php:506, +#: includes/fields/class-acf-field-post_object.php:406, +#: includes/fields/class-acf-field-select.php:398, +#: includes/fields/class-acf-field-user.php:79 +msgid "Select multiple values?" +msgstr "Valitse useita arvoja?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Salasana" + +#: includes/fields/class-acf-field-post_object.php:25, +#: includes/fields/class-acf-field-post_object.php:423, +#: includes/fields/class-acf-field-relationship.php:667 +msgid "Post Object" +msgstr "Artikkeliolio" + +#: includes/fields/class-acf-field-post_object.php:424, +#: includes/fields/class-acf-field-relationship.php:668 +msgid "Post ID" +msgstr "Artikkelin ID" + +#: includes/fields/class-acf-field-post_object.php:642 +msgid "%1$s must have a valid post ID." +msgstr "%1$s:lla on oltava kelvollinen artikkelitunnus (post ID)." + +#: includes/fields/class-acf-field-post_object.php:651 +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 pitää olla artikkelityyppiä %2$s." +msgstr[1] "%1$s pitää olla joku seuraavista artikkelityypeistä: %2$s" + +#: includes/fields/class-acf-field-post_object.php:667 +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:lla pitää olla termi %2$s." +msgstr[1] "%1$s:lla pitää olla jokin seuraavista termeistä: %2$s" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Valintanappi" + +#: includes/fields/class-acf-field-radio.php:214 +msgid "Other" +msgstr "Muu" + +#: includes/fields/class-acf-field-radio.php:219 +msgid "Add 'other' choice to allow for custom values" +msgstr "Lisää 'muu' vaihtoehto salliaksesi mukautettuja arvoja" + +#: includes/fields/class-acf-field-radio.php:227 +msgid "Save Other" +msgstr "Tallenna Muu" + +#: includes/fields/class-acf-field-radio.php:232 +msgid "Save 'other' values to the field's choices" +msgstr "Tallenna 'muu'-kentän arvo kentän valinnaksi" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Liukusäädin" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Suodata artikkeleita" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Maximum values reached ( {max} values )" +msgstr "Maksimiarvo saavutettu ( {max} artikkelia )" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "Loading" +msgstr "Ladataan" + +#: includes/fields/class-acf-field-relationship.php:65 +msgid "No matches found" +msgstr "Ei yhtään osumaa" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Valitse artikkelityyppi" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Valitse taksonomia" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Etsi..." + +#: includes/fields/class-acf-field-relationship.php:610 +msgid "Filters" +msgstr "Suodattimet" + +#: includes/fields/class-acf-field-relationship.php:616, +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Artikkelityyppi" + +#: includes/fields/class-acf-field-relationship.php:617, +#: includes/fields/class-acf-field-taxonomy.php:28, +#: includes/fields/class-acf-field-taxonomy.php:714, +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taksonomia" + +#: includes/fields/class-acf-field-relationship.php:626 +msgid "Elements" +msgstr "Elementit" + +#: includes/fields/class-acf-field-relationship.php:627 +msgid "Selected elements will be displayed in each result" +msgstr "Valitut elementit näytetään jokaisessa tuloksessa" + +#: includes/fields/class-acf-field-relationship.php:631, +#: includes/admin/views/field-group-options.php:150 +msgid "Featured Image" +msgstr "Artikkelikuva" + +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Minimum posts" +msgstr "Vähimmäismäärä artikkeleita" + +#: includes/fields/class-acf-field-relationship.php:651 +msgid "Maximum posts" +msgstr "Maksimimäärä artikkeleita" + +#: includes/fields/class-acf-field-relationship.php:752, +#: pro/fields/class-acf-field-gallery.php:832 +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" + +#: includes/fields/class-acf-field-select.php:25, +#: includes/fields/class-acf-field-taxonomy.php:738 +msgctxt "noun" +msgid "Select" +msgstr "Valintalista" + +#: includes/fields/class-acf-field-select.php:107 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Yksi tulos on saatavilla. Valitse se painamalla enter-näppäintä." + +#: includes/fields/class-acf-field-select.php:108 +msgctxt "Select2 JS matches_n" +msgid "%d results are available, use up and down arrow keys to navigate." +msgstr "" +"%d tulosta on saatavilla. Voit navigoida tuloksian välillä käyttämällä " +"”ylös” ja ”alas” -näppäimiä." + +#: includes/fields/class-acf-field-select.php:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Osumia ei löytynyt" + +#: includes/fields/class-acf-field-select.php:110 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "Kirjoita yksi tai useampi merkki" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "Kirjoita %d tai useampi merkkiä" + +#: includes/fields/class-acf-field-select.php:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Poista 1 merkki" + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Poista %d merkkiä" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Voit valita vain yhden kohteen" + +#: includes/fields/class-acf-field-select.php:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Voit valita vain %d kohdetta" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Lataa lisää tuloksia …" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Etsii…" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Lataus epäonnistui" + +#: includes/fields/class-acf-field-select.php:410, +#: includes/fields/class-acf-field-true_false.php:159 +msgid "Stylised UI" +msgstr "Tyylikäs käyttöliittymä" + +#: includes/fields/class-acf-field-select.php:422 +msgid "Use AJAX to lazy load choices?" +msgstr "Haluatko ladata valinnat laiskasti (käyttää AJAXia)?" + +#: includes/fields/class-acf-field-select.php:440 +msgid "Specify the value returned" +msgstr "Määritä palautetun arvon muoto" + +#: includes/fields/class-acf-field-select.php:663 +msgid "%1$s is not one of %2$s" +msgstr "%1$s ei ole yksi näistä: %2$s" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Erotusmerkki" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Välilehti" + +#: includes/fields/class-acf-field-tab.php:103 +msgid "Placement" +msgstr "Sijainti" + +#: includes/fields/class-acf-field-tab.php:107, +#: includes/admin/views/field-group-options.php:87 +msgid "Top aligned" +msgstr "Tasaa ylös" + +#: includes/fields/class-acf-field-tab.php:108, +#: includes/admin/views/field-group-options.php:88 +msgid "Left aligned" +msgstr "Tasaa vasemmalle" + +#: includes/fields/class-acf-field-tab.php:118 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Määritä päätepiste, johon edelliset välilehdet lopetetaan. Tämä aloittaa " +"uuden välilehtiryhmän." + +#: includes/fields/class-acf-field-taxonomy.php:673 +msgctxt "No terms" +msgid "No %s" +msgstr "Ei %s" + +#: includes/fields/class-acf-field-taxonomy.php:715 +msgid "Select the taxonomy to be displayed" +msgstr "Valitse taksonomia, joka näytetään" + +#: includes/fields/class-acf-field-taxonomy.php:726 +msgid "Appearance" +msgstr "Ulkoasu" + +#: includes/fields/class-acf-field-taxonomy.php:727 +msgid "Select the appearance of this field" +msgstr "Valitse ulkoasu tälle kenttälle" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "Multiple Values" +msgstr "Useita arvoja" + +#: includes/fields/class-acf-field-taxonomy.php:734 +msgid "Multi Select" +msgstr "Valitse useita" + +#: includes/fields/class-acf-field-taxonomy.php:736 +msgid "Single Value" +msgstr "Yksi arvo" + +#: includes/fields/class-acf-field-taxonomy.php:737 +msgid "Radio Buttons" +msgstr "Valintanappi" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Create Terms" +msgstr "Uusien ehtojen luominen" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Allow new terms to be created whilst editing" +msgstr "Salli uusien ehtojen luominen samalla kun muokataan" + +#: includes/fields/class-acf-field-taxonomy.php:777 +msgid "Save Terms" +msgstr "Tallenna ehdot" + +#: includes/fields/class-acf-field-taxonomy.php:778 +msgid "Connect selected terms to the post" +msgstr "Yhdistä valitut ehdot artikkeliin" + +#: includes/fields/class-acf-field-taxonomy.php:789 +msgid "Load Terms" +msgstr "Lataa ehdot" + +#: includes/fields/class-acf-field-taxonomy.php:790 +msgid "Load value from posts terms" +msgstr "Lataa arvo artikkelin ehdoista" + +#: includes/fields/class-acf-field-taxonomy.php:806 +msgid "Term Object" +msgstr "Ehto" + +#: includes/fields/class-acf-field-taxonomy.php:807 +msgid "Term ID" +msgstr "Ehdon ID" + +#: includes/fields/class-acf-field-taxonomy.php:862 +msgid "User unable to add new %s" +msgstr "Käyttäjä ei voi lisätä uutta %s" + +#: includes/fields/class-acf-field-taxonomy.php:874 +msgid "%s already exists" +msgstr "%s on jo olemassa" + +#: includes/fields/class-acf-field-taxonomy.php:910 +msgid "%s added" +msgstr "%s lisättiin" + +#: includes/fields/class-acf-field-taxonomy.php:926, +#: pro/fields/class-acf-field-flexible-content.php:597, +#: includes/admin/views/field-group-fields.php:6 +msgid "Name" +msgstr "Nimi" + +#: includes/fields/class-acf-field-taxonomy.php:961, +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Lisää" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Teksti" + +#: includes/fields/class-acf-field-text.php:141, +#: includes/fields/class-acf-field-textarea.php:125 +msgid "Character Limit" +msgstr "Merkkirajoitus" + +#: includes/fields/class-acf-field-text.php:142, +#: includes/fields/class-acf-field-textarea.php:126 +msgid "Leave blank for no limit" +msgstr "Jos et halua rajoittaa, jätä tyhjäksi" + +#: includes/fields/class-acf-field-text.php:168, +#: includes/fields/class-acf-field-textarea.php:221 +msgid "Value must not exceed %d characters" +msgstr "Arvo ei saa olla suurempi kuin %d merkkiä" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Tekstialue" + +#: includes/fields/class-acf-field-textarea.php:136 +msgid "Rows" +msgstr "Rivit" + +#: includes/fields/class-acf-field-textarea.php:137 +msgid "Sets the textarea height" +msgstr "Aseta tekstialueen koko" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Kellonaikavalitsin" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "”Tosi / Epätosi” -valinta" + +#: includes/fields/class-acf-field-true_false.php:138 +msgid "Displays text alongside the checkbox" +msgstr "Näytä teksti valintaruudun rinnalla" + +#: includes/fields/class-acf-field-true_false.php:172 +msgid "On Text" +msgstr "Päällä -teksti" + +#: includes/fields/class-acf-field-true_false.php:173 +msgid "Text shown when active" +msgstr "Teksti, joka näytetään kun valinta on aktiivinen" + +#: includes/fields/class-acf-field-true_false.php:189 +msgid "Off Text" +msgstr "Pois päältä -teksti" + +#: includes/fields/class-acf-field-true_false.php:190 +msgid "Text shown when inactive" +msgstr "Teksti, joka näytetään kun valinta ei ole aktiivinen" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-url.php:154 +msgid "Value must be a valid URL" +msgstr "Arvon täytyy olla validi URL" + +#: includes/fields/class-acf-field-user.php:53 +msgid "Filter by role" +msgstr "Suodata roolin mukaan" + +#: includes/fields/class-acf-field-user.php:61 +msgid "All user roles" +msgstr "Kaikki käyttäjäroolit" + +#: includes/fields/class-acf-field-user.php:95 +msgid "User Array" +msgstr "Käyttäjätaulukko" + +#: includes/fields/class-acf-field-user.php:96 +msgid "User Object" +msgstr "Käyttäjäobjekti" + +#: includes/fields/class-acf-field-user.php:97 +msgid "User ID" +msgstr "Käyttäjätunnus" + +#: includes/fields/class-acf-field-user.php:350 +msgid "Error loading field." +msgstr "Virhe ladattaessa kenttää." + +#: includes/fields/class-acf-field-user.php:355 +msgid "Invalid request." +msgstr "Virheellinen pyyntö." + +#: includes/fields/class-acf-field-user.php:517 +msgid "%1$s must have a valid user ID." +msgstr "%1$s:lla on oltava kelvollinen käyttäjätunnus." + +#: includes/fields/class-acf-field-user.php:526 +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:lla pitää olla käyttäjä roolilla %2$s." +msgstr[1] "%1$s:lla pitää olla käyttäjä jollakin näistä rooleista: %2$s" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg-editori" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Graafinen" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Teksti" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Klikkaa ottaaksesi käyttöön graafisen editorin" + +#: includes/fields/class-acf-field-wysiwyg.php:345 +msgid "Tabs" +msgstr "Välilehdet" + +#: includes/fields/class-acf-field-wysiwyg.php:350 +msgid "Visual & Text" +msgstr "Graafinen ja teksti" + +#: includes/fields/class-acf-field-wysiwyg.php:351 +msgid "Visual Only" +msgstr "Vain graafinen" + +#: includes/fields/class-acf-field-wysiwyg.php:352 +msgid "Text Only" +msgstr "Vain teksti" + +#: includes/fields/class-acf-field-wysiwyg.php:361 +msgid "Toolbar" +msgstr "Työkalupalkki" + +#: includes/fields/class-acf-field-wysiwyg.php:378 +msgid "Show Media Upload Buttons?" +msgstr "Näytä Lisää media -painike?" + +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Delay initialization?" +msgstr "Viivytä alustusta?" + +#: includes/fields/class-acf-field-wysiwyg.php:391 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "TinyMCE:tä ei alusteta ennen kuin kenttää napsautetaan" + +#: includes/forms/form-front.php:40, pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Otsikko" + +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "Validoi sähköposti" + +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Artikkeli päivitetty" + +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Roskapostia havaittu" + +#: includes/forms/form-user.php:353 +msgid "Error: %s" +msgstr "Virhe: %s" + +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "on sama kuin" + +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "ei ole sama kuin" + +#: includes/locations/class-acf-location-attachment.php:22 +msgid "Attachment" +msgstr "Liite" + +#: includes/locations/class-acf-location-attachment.php:84 +msgid "All %s formats" +msgstr "Kaikki %s muodot" + +#: includes/locations/class-acf-location-comment.php:22 +msgid "Comment" +msgstr "Kommentti" + +#: includes/locations/class-acf-location-current-user-role.php:22 +msgid "Current User Role" +msgstr "Nykyinen käyttäjärooli" + +#: includes/locations/class-acf-location-current-user-role.php:77 +msgid "Super Admin" +msgstr "Super pääkäyttäjä" + +#: includes/locations/class-acf-location-current-user.php:22 +msgid "Current User" +msgstr "Nykyinen käyttäjä" + +#: includes/locations/class-acf-location-current-user.php:71 +msgid "Logged in" +msgstr "Kirjautunut sisään" + +#: includes/locations/class-acf-location-current-user.php:72 +msgid "Viewing front end" +msgstr "Käyttää front endiä" + +#: includes/locations/class-acf-location-current-user.php:73 +msgid "Viewing back end" +msgstr "Käyttää back endiä" + +#: includes/locations/class-acf-location-nav-menu-item.php:22 +msgid "Menu Item" +msgstr "Valikkokohde" + +#: includes/locations/class-acf-location-nav-menu.php:22 +msgid "Menu" +msgstr "Valikko" + +#: includes/locations/class-acf-location-nav-menu.php:80 +msgid "Menu Locations" +msgstr "Valikkosijainnit" + +#: includes/locations/class-acf-location-page-parent.php:22 +msgid "Page Parent" +msgstr "Sivun vanhempi" + +#: includes/locations/class-acf-location-page-template.php:22 +msgid "Page Template" +msgstr "Sivupohja" + +#: includes/locations/class-acf-location-page-template.php:73, +#: includes/locations/class-acf-location-post-template.php:85 +msgid "Default Template" +msgstr "Oletus sivupohja" + +#: includes/locations/class-acf-location-page-type.php:22 +msgid "Page Type" +msgstr "Sivun tyyppi" + +#: includes/locations/class-acf-location-page-type.php:110 +msgid "Front Page" +msgstr "Etusivu" + +#: includes/locations/class-acf-location-page-type.php:111 +msgid "Posts Page" +msgstr "Artikkelit -sivu" + +#: includes/locations/class-acf-location-page-type.php:112 +msgid "Top Level Page (no parent)" +msgstr "Ylätason sivu (sivu, jolla ei ole vanhempia)" + +#: includes/locations/class-acf-location-page-type.php:113 +msgid "Parent Page (has children)" +msgstr "Vanhempi sivu (sivu, jolla on alasivuja)" + +#: includes/locations/class-acf-location-page-type.php:114 +msgid "Child Page (has parent)" +msgstr "Lapsisivu (sivu, jolla on vanhempi)" + +#: includes/locations/class-acf-location-post-category.php:22 +msgid "Post Category" +msgstr "Artikkelin kategoria" + +#: includes/locations/class-acf-location-post-format.php:22 +msgid "Post Format" +msgstr "Artikkelin muoto" + +#: includes/locations/class-acf-location-post-status.php:22 +msgid "Post Status" +msgstr "Artikkelin tila" + +#: includes/locations/class-acf-location-post-taxonomy.php:22 +msgid "Post Taxonomy" +msgstr "Artikkelin taksonomia" + +#: includes/locations/class-acf-location-post-template.php:22 +msgid "Post Template" +msgstr "Sivupohja" + +#: includes/locations/class-acf-location-user-form.php:22 +msgid "User Form" +msgstr "Käyttäjälomake" + +#: includes/locations/class-acf-location-user-form.php:73 +msgid "Add / Edit" +msgstr "Lisää / Muokkaa" + +#: includes/locations/class-acf-location-user-form.php:74 +msgid "Register" +msgstr "Rekisteröi" + +#: includes/locations/class-acf-location-user-role.php:24 +msgid "User Role" +msgstr "Käyttäjän rooli" + +#: includes/locations/class-acf-location-widget.php:22 +msgid "Widget" +msgstr "Vimpain" + +#: 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-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:209 +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:196 +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:815 +msgid "Select one or more fields you wish to clone" +msgstr "Valitse kentät, jotka haluat kopioida" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "Näytä" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Saumaton (korvaa tämä klooni-kenttä valituilla kentillä)" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Kentän nimiö näytetään seuraavassa muodossa: %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Kentän nimiön etuliite" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Arvot tallennetaan muodossa: %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Kentän nimen etuliite" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Tuntematon kenttä" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Tuntematon kenttäryhmä" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Kaikki kentät kenttäryhmästä %s" + +#: pro/fields/class-acf-field-flexible-content.php:25, +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Joustava sisältö" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:182, +#: pro/fields/class-acf-field-repeater.php:473 +msgid "Add Row" +msgstr "Lisää rivi" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "asettelu" +msgstr[1] "asettelut" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "asettelua" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} saatavilla (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} vaadittu (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Vaaditaan vähintään yksi asettelu" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:410, +#: pro/fields/class-acf-field-repeater.php:295, +#: includes/admin/views/field-group-field.php:49 +msgid "Drag to reorder" +msgstr "Muuta järjestystä vetämällä ja pudottamalla" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Lisää asettelu" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Monista asettelu" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Poista asettelu" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-field-repeater.php:297 +msgid "Click to toggle" +msgstr "Piilota/Näytä" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Järjestä asettelu uudelleen" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Järjestä uudelleen" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Poista asettelu" + +#: pro/fields/class-acf-field-flexible-content.php:552, +#: includes/admin/views/field-group-field.php:59 +msgid "Delete" +msgstr "Poista" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Monista asettelu" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Lisää uusi asettelu" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:469 +msgid "Button Label" +msgstr "Painikkeen teksti" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Asetteluita vähintään" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Asetteluita enintään" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:1108 +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:1715 +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:1731 +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, +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galleria" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Lisää kuva galleriaan" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Et voi valita enempää kuvia" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Pituus" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Kuvateksti" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Vaihtoehtoinen teksti" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Lisää galleriaan" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Massatoiminnot" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Lajittele latauksen päivämäärän mukaan" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Lajittele viimeisimmän muokkauksen päivämäärän mukaan" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Lajittele otsikon mukaan" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Käännän nykyinen järjestys" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Sulje" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Lisää" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Määritä mihin uudet liitteet lisätään" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Lisää loppuun" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Lisää alkuun" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Pienin määrä kuvia" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Suurin määrä kuvia" + +#: pro/fields/class-acf-field-repeater.php:25, +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Toista rivejä" + +#: pro/fields/class-acf-field-repeater.php:64, +#: pro/fields/class-acf-field-repeater.php:659 +msgid "Minimum rows reached ({min} rows)" +msgstr "Pienin määrä rivejä saavutettu ({min} riviä)" + +#: pro/fields/class-acf-field-repeater.php:65 +msgid "Maximum rows reached ({max} rows)" +msgstr "Suurin määrä rivejä saavutettu ({max} riviä)" + +#: pro/fields/class-acf-field-repeater.php:334 +msgid "Add row" +msgstr "Lisää rivi" + +#: pro/fields/class-acf-field-repeater.php:335 +msgid "Duplicate row" +msgstr "Monista rivi" + +#: pro/fields/class-acf-field-repeater.php:336 +msgid "Remove row" +msgstr "Poista rivi" + +#: pro/fields/class-acf-field-repeater.php:414 +msgid "Collapsed" +msgstr "Piilotettu" + +#: pro/fields/class-acf-field-repeater.php:415 +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:427 +msgid "Minimum Rows" +msgstr "Pienin määrä rivejä" + +#: pro/fields/class-acf-field-repeater.php:439 +msgid "Maximum Rows" +msgstr "Suurin määrä rivejä" + +#: 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, +#: includes/admin/views/html-notice-upgrade.php:18 +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" + +#: tests/basic/test-blocks.php:456 +msgid "Hero" +msgstr "Nosto" + +#: tests/basic/test-blocks.php:457 +msgid "Display a random hero image." +msgstr "Näytä satunnainen nostokuva." + +#: tests/basic/test-blocks.php:630 +msgid "Test JS" +msgstr "Testaa JS" + +#: tests/basic/test-blocks.php:631 +msgid "A block for testing JS." +msgstr "Lohko JS:n testaamiseen." + +#: includes/admin/tools/class-acf-admin-tool-export.php:35 +msgid "Export Field Groups" +msgstr "Vie kenttäryhmiä" + +#: includes/admin/tools/class-acf-admin-tool-export.php:39, +#: includes/admin/tools/class-acf-admin-tool-export.php:335, +#: includes/admin/tools/class-acf-admin-tool-export.php:364 +msgid "Generate PHP" +msgstr "Luo PHP-koodi" + +#: 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 "Ei kenttäryhmää valittu" + +#: includes/admin/tools/class-acf-admin-tool-export.php:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Viety yksi kenttäryhmä." +msgstr[1] "Viety %s kenttäryhmää." + +#: includes/admin/tools/class-acf-admin-tool-export.php:233, +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Valitse kenttäryhmät" + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Valitse kenttäryhmät, jotka haluat viedä ja valitse sitten vientimetodisi. " +"Käytä Lataa-painiketta viedäksesi .json-tiedoston, jonka voit sitten tuoda " +"toisessa ACF asennuksessa. Käytä Generoi-painiketta luodaksesi PHP koodia, " +"jonka voit sijoittaa teemaasi." + +#: includes/admin/tools/class-acf-admin-tool-export.php:334 +msgid "Export File" +msgstr "Vie tiedosto" + +#: includes/admin/tools/class-acf-admin-tool-export.php:405 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Tällä koodilla voit rekisteröidä valitut kenttäryhmät paikallisesti. " +"Paikallinen kenttäryhmä tarjoaa monia etuja, kuten nopeammat latausajat, " +"versionhallinnan & dynaamiset kentät/asetukset. Kopioi ja liitä koodi " +"teemasi functions.php tiedostoon tai sisällytä se ulkoisen tiedoston avulla." + +#: includes/admin/tools/class-acf-admin-tool-export.php:435 +msgid "Copy to clipboard" +msgstr "Kopioi leikepöydälle" + +#: includes/admin/tools/class-acf-admin-tool-export.php:472 +msgid "Copied" +msgstr "Kopioitu" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +msgid "Import Field Groups" +msgstr "Tuo kenttäryhmiä" + +#: 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 field groups." +msgstr "" +"Valitse JSON-tiedosto, jonka haluat tuoda. Kenttäryhmät tuodaan, kun " +"klikkaat Tuo-painiketta." + +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +msgid "Import File" +msgstr "Tuo tiedosto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:97 +msgid "Error uploading file. Please try again" +msgstr "Virhe tiedostoa ladattaessa. Yritä uudelleen" + +#: includes/admin/tools/class-acf-admin-tool-import.php:102 +msgid "Incorrect file type" +msgstr "Virheellinen tiedostomuoto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:111 +msgid "Import file empty" +msgstr "Tuotu tiedosto on tyhjä" + +#: includes/admin/tools/class-acf-admin-tool-import.php:142 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Tuotu yksi kenttäryhmä" +msgstr[1] "Tuotu %s kenttäryhmää" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Ehdollinen logiikka" + +#: includes/admin/views/field-group-field-conditional-logic.php:60 +msgid "Show this field if" +msgstr "Näytä tämä kenttä, jos" + +#: includes/admin/views/field-group-field-conditional-logic.php:172, +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Lisää sääntöryhmä" + +#: includes/admin/views/field-group-field.php:53, +#: includes/admin/views/field-group-field.php:56 +msgid "Edit field" +msgstr "Muokkaa kenttää" + +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate field" +msgstr "Monista kenttä" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move field to another group" +msgstr "Siirrä kenttä toiseen ryhmään" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move" +msgstr "Siirrä" + +#: includes/admin/views/field-group-field.php:59 +msgid "Delete field" +msgstr "Poista kenttä" + +#: includes/admin/views/field-group-field.php:78 +msgid "Field Label" +msgstr "Kentän nimiö" + +#: includes/admin/views/field-group-field.php:79 +msgid "This is the name which will appear on the EDIT page" +msgstr "Tätä nimeä käytetään MUOKKAA-sivulla" + +#: includes/admin/views/field-group-field.php:92 +msgid "Field Name" +msgstr "Kentän nimi" + +#: includes/admin/views/field-group-field.php:93 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Yksi sana, ei välilyöntejä. Alaviivat ja ajatusviivat sallitaan" + +#: includes/admin/views/field-group-field.php:106 +msgid "Field Type" +msgstr "Kenttätyyppi" + +#: includes/admin/views/field-group-field.php:121 +msgid "Instructions" +msgstr "Ohjeet" + +#: includes/admin/views/field-group-field.php:122 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Ohjeet kirjoittajille. Näytetään tietojen lähettämisen yhteydessä" + +#: includes/admin/views/field-group-field.php:135 +msgid "Required?" +msgstr "Pakollinen?" + +#: includes/admin/views/field-group-field.php:161 +msgid "Wrapper Attributes" +msgstr "Kääreen määritteet" + +#: includes/admin/views/field-group-field.php:167 +msgid "width" +msgstr "leveys" + +#: includes/admin/views/field-group-field.php:185 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:201 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:215, +#: includes/admin/views/field-group-field.php:215 +msgid "Close Field" +msgstr "Sulje kenttä" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Järjestys" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Tyyppi" + +#: includes/admin/views/field-group-fields.php:19 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Ei kenttiä. Klikkaa + Lisää kenttä -painiketta luodaksesi " +"ensimmäisen kenttäsi." + +#: includes/admin/views/field-group-fields.php:44 +msgid "+ Add Field" +msgstr "+ Lisää kenttä" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Säännöt" + +#: includes/admin/views/field-group-locations.php:10 +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Tästä voit määrittää, missä muokkausnäkymässä tämä kenttäryhmä näytetään" + +#: includes/admin/views/field-group-options.php:10 +msgid "Active" +msgstr "Käytössä" + +#: includes/admin/views/field-group-options.php:27 +msgid "Show in REST API" +msgstr "Näytä REST API:ssa" + +#: includes/admin/views/field-group-options.php:44 +msgid "Style" +msgstr "Tyyli" + +#: includes/admin/views/field-group-options.php:51 +msgid "Standard (WP metabox)" +msgstr "Standardi (WP-metalaatikko)" + +#: includes/admin/views/field-group-options.php:52 +msgid "Seamless (no metabox)" +msgstr "Saumaton (ei metalaatikkoa)" + +#: includes/admin/views/field-group-options.php:61 +msgid "Position" +msgstr "Sijainti" + +#: includes/admin/views/field-group-options.php:68 +msgid "High (after title)" +msgstr "Korkea (otsikon jälkeen)" + +#: includes/admin/views/field-group-options.php:69 +msgid "Normal (after content)" +msgstr "Normaali (sisällön jälkeen)" + +#: includes/admin/views/field-group-options.php:70 +msgid "Side" +msgstr "Reuna" + +#: includes/admin/views/field-group-options.php:80 +msgid "Label placement" +msgstr "Nimiön sijainti" + +#: includes/admin/views/field-group-options.php:97 +msgid "Instruction placement" +msgstr "Ohjeen sijainti" + +#: includes/admin/views/field-group-options.php:104 +msgid "Below labels" +msgstr "Tasaa nimiön alapuolelle" + +#: includes/admin/views/field-group-options.php:105 +msgid "Below fields" +msgstr "Tasaa kentän alapuolelle" + +#: includes/admin/views/field-group-options.php:114 +msgid "Order No." +msgstr "Järjestysnro." + +#: includes/admin/views/field-group-options.php:115 +msgid "Field groups with a lower order will appear first" +msgstr "" +"Kenttäryhmät, joilla on pienempi järjestysnumero, tulostetaan ensimmäisenä" + +#: includes/admin/views/field-group-options.php:128 +msgid "Shown in field group list" +msgstr "Näytetään kenttäryhmien listauksessa" + +#: includes/admin/views/field-group-options.php:139 +msgid "Permalink" +msgstr "Kestolinkki" + +#: includes/admin/views/field-group-options.php:140 +msgid "Content Editor" +msgstr "Sisältöeditori" + +#: includes/admin/views/field-group-options.php:141 +msgid "Excerpt" +msgstr "Katkelma" + +#: includes/admin/views/field-group-options.php:143 +msgid "Discussion" +msgstr "Keskustelu" + +#: includes/admin/views/field-group-options.php:145 +msgid "Revisions" +msgstr "Tarkastettu" + +#: includes/admin/views/field-group-options.php:146 +msgid "Slug" +msgstr "Polkutunnus (slug)" + +#: includes/admin/views/field-group-options.php:147 +msgid "Author" +msgstr "Kirjoittaja" + +#: includes/admin/views/field-group-options.php:148 +msgid "Format" +msgstr "Muoto" + +#: includes/admin/views/field-group-options.php:149 +msgid "Page Attributes" +msgstr "Sivun attribuutit" + +#: includes/admin/views/field-group-options.php:151 +msgid "Categories" +msgstr "Kategoriat" + +#: includes/admin/views/field-group-options.php:152 +msgid "Tags" +msgstr "Avainsanat" + +#: includes/admin/views/field-group-options.php:153 +msgid "Send Trackbacks" +msgstr "Lähetä paluuviitteet" + +#: includes/admin/views/field-group-options.php:161 +msgid "Hide on screen" +msgstr "Piilota näytöltä" + +#: includes/admin/views/field-group-options.php:162 +msgid "Select items to hide them from the edit screen." +msgstr "Valitse kohteita piilottaaksesi ne muokkausnäkymästä." + +#: includes/admin/views/field-group-options.php:162 +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 "" +"Jos muokkausnäkymässä on useita kenttäryhmiä, käytetään ensimmäisen (pienin " +"järjestysnumero) kenttäryhmän asetuksia" + +#: includes/admin/views/html-admin-navigation.php:89 +msgid "Upgrade to Pro" +msgstr "Päivitä Pro-versioon" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"Seuraavat sivustot vaativat tietokantapäivityksen. Valitse ne, jotka haluat " +"päivittää ja klikkaa %s." + +#: includes/admin/views/html-admin-page-upgrade-network.php:26, +#: includes/admin/views/html-admin-page-upgrade-network.php:27, +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Päivitä sivustot" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36, +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Sivusto" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Sivusto on ajan tasalla" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "Sivusto edellyttää tietokannan päivityksen (%1$s -> %2$s)" + +#: includes/admin/views/html-admin-page-upgrade-network.php:97 +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Tietokanta on päivitetty. Palaa verkon hallinnan " +"ohjausnäkymään" + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "Valitse vähintään yksi päivitettävä sivusto." + +#: includes/admin/views/html-admin-page-upgrade-network.php:121, +#: includes/admin/views/html-notice-upgrade.php:45 +msgid "" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "" +"Tietokannan varmuuskopio on erittäin suositeltavaa ennen kuin jatkat. Oletko " +"varma, että haluat jatkaa päivitystä nyt?" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148, +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Päivitetään data versioon %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Päivitys valmis." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165, +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Päivitys epäonnistui." + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Luetaan päivitystehtäviä..." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "Tietokannan päivitys on valmis. Katso mikä on uutta" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Takaisin kaikkiin työkaluihin" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Tietokanta on päivitettävä" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Kiitos päivityksestä: %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "" +"Tämä versio sisältää parannuksia tietokantaan ja edellyttää päivitystä." + +#: includes/admin/views/html-notice-upgrade.php:31 +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "" +"Varmista myös, että kaikki premium-lisäosat (%s) on päivitetty uusimpaan " +"versioon." + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Päivitä tiedot" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Nykyinen versio" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Uusin versio" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Päivitys saatavilla" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Syötä lisenssiavain saadaksesi päivityksiä" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Päivitä lisäosa" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "Aktivoi käyttöoikeus saadaksesi päivityksiä" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Muutosloki" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Päivitys Ilmoitus" + +#~ msgid "Inactive" +#~ msgstr "Ei käytössä" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Ei käytössä (%s)" +#~ msgstr[1] "Ei käytössä (%s)" + +#~ msgid "Status" +#~ msgstr "Status" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Katso mitä uutta versiossa %s." + +#~ msgid "Resources" +#~ msgstr "Resurssit" + +#~ msgid "Documentation" +#~ msgstr "Dokumentaatio" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Kiitos, että luot sisältöä ACF:llä." + +#~ msgid "Synchronise field group" +#~ msgstr "Synkronoi kenttäryhmä" + +#~ msgid "Apply" +#~ msgstr "Käytä" + +#~ msgid "Bulk Actions" +#~ msgstr "Massatoiminnot" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "What's New" +#~ msgstr "Katso mitä uutta" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Tervetuloa Advanced Custom Fields -lisäosaan" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Kiitos, että päivitit! ACF %s on suurempi ja parempi kuin koskaan ennen. " +#~ "Toivomme, että pidät siitä." + +#~ msgid "A Smoother Experience" +#~ msgstr "Sujuvampi kokemus" + +#~ msgid "Improved Usability" +#~ msgstr "Käytettävyyttä parannettu" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Mukaan otettu Select2-kirjasto on parantanut sekä käytettävyyttä että " +#~ "nopeutta erilaisissa kenttätyypeissä kuten artikkelioliossa, sivun " +#~ "linkissä, taksonomiassa ja valinnassa." + +#~ msgid "Improved Design" +#~ msgstr "Parantunut muotoilu" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Monet kentät ovat käyneet läpi visuaalisen uudistuksen ja ACF näyttää " +#~ "paremmalta kuin koskaan ennen! Huomattavat muutokset ovat nähtävissä " +#~ "kentissä galleria, suodata artikkeleita ja oEmbed (uusi)!" + +#~ msgid "Improved Data" +#~ msgstr "Parannettu data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Data-arkkitehtuurin uudelleensuunnittelu mahdollisti alakenttien " +#~ "riippumattomuuden vanhemmistaan. Tämän muutoksen myötä voit vetää ja " +#~ "pudottaa kenttiä riippumatta kenttähierarkiasta!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Hyvästi lisäosat. Tervetuloa PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Esittelyssä ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Olemme muuttamassa tapaa, jolla Premium-toiminnallisuus toimitetaan " +#~ "jännittävällä tavalla!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Kaikki neljä premium-lisäosaa on yhdistetty uuteen ACF PRO " +#~ "-versioon. Lisensseistä saatavilla on sekä henkilökohtaisia että " +#~ "kehittäjien lisenssejä, joten korkealuokkaiset toiminnallisuudet ovat nyt " +#~ "edullisimpia ja saavutettavampia kuin koskaan ennen!" + +#~ msgid "Powerful Features" +#~ msgstr "Tehokkaat ominaisuudet" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO sisältää tehokkaita ominaisuuksia, kuten toistuva data, joustavat " +#~ "sisältö-layoutit, kaunis galleriakenttä sekä mahdollisuus luoda " +#~ "ylimääräisiä ylläpitäjän asetussivuja!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Lue lisää ACF PRO:n ominaisuuksista." + +#~ msgid "Easy Upgrading" +#~ msgstr "Helppo päivitys" + +#~ msgid "" +#~ "Upgrading to ACF PRO is easy. Simply purchase a license online and " +#~ "download the plugin!" +#~ msgstr "" +#~ "Päivittäminen ACF PRO-versioon on helppoa. Osta lisenssi verkossa ja " +#~ "lataa lisäosa!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk." +#~ msgstr "" +#~ "Kirjoitimme myös päivitysoppaan vastataksemme " +#~ "kysymyksiin. Jos jokin asia vielä vaivaa mieltäsi, ota yhteyttä " +#~ "asiakaspalveluumme neuvontapalvelun kautta." + +#~ msgid "New Features" +#~ msgstr "Uudet ominaisuudet" + +#~ msgid "Link Field" +#~ msgstr "Linkki-kenttä" + +#~ msgid "" +#~ "The Link field provides a simple way to select or define a link (url, " +#~ "title, target)." +#~ msgstr "" +#~ "Linkki-kentässä on yksinkertainen tapa valita tai määrittää linkki (URL, " +#~ "otsikko, kohde)." + +#~ msgid "Group Field" +#~ msgstr "Ryhmä-kenttä" + +#~ msgid "The Group field provides a simple way to create a group of fields." +#~ msgstr "Ryhmä-kentässä on yksinkertainen tapa luoda kenttäryhmiä." + +#~ msgid "oEmbed Field" +#~ msgstr "oEmbed-kenttä" + +#~ msgid "" +#~ "The oEmbed field allows an easy way to embed videos, images, tweets, " +#~ "audio, and other content." +#~ msgstr "" +#~ "oEmbed-kentän avulla voit helposti upottaa videoita, kuvia, twiittejä, " +#~ "ääntä ja muuta sisältöä." + +#~ msgid "Clone Field" +#~ msgstr "Klooni-kenttä" + +#~ msgid "The clone field allows you to select and display existing fields." +#~ msgstr "" +#~ "Klooni-kentän avulla voit valita ja näyttää aiemmin luotuja kenttiä." + +#~ msgid "More AJAX" +#~ msgstr "Enemmän AJAXia" + +#~ msgid "More fields use AJAX powered search to speed up page loading." +#~ msgstr "" +#~ "Useammat kentät käyttävät AJAX-käyttöistä hakua ja näin sivujen lataus " +#~ "nopeutuu." + +#~ msgid "" +#~ "New auto export to JSON feature improves speed and allows for " +#~ "syncronisation." +#~ msgstr "" +#~ "Uusi automaattinen vienti JSON:iin parantaa nopeutta ja mahdollistaa " +#~ "synkronoinnin." + +#~ msgid "Easy Import / Export" +#~ msgstr "Helppo tuonti / vienti" + +#~ msgid "Both import and export can easily be done through a new tools page." +#~ msgstr "" +#~ "Sekä tuonti että vienti voidaan tehdä helposti uudella työkalut-sivulla." + +#~ msgid "New Form Locations" +#~ msgstr "Uudet valikkosijainnit" + +#~ msgid "" +#~ "Fields can now be mapped to menus, menu items, comments, widgets and all " +#~ "user forms!" +#~ msgstr "" +#~ "Kentät voidaan nyt linkittää valikkoihin, valikkokohteisiin, " +#~ "kommentteihin, vimpaimiin ja kaikkiin käyttäjälomakkeisiin!" + +#~ msgid "More Customization" +#~ msgstr "Lisää muokkauksia" + +#~ msgid "" +#~ "New PHP (and JS) actions and filters have been added to allow for more " +#~ "customization." +#~ msgstr "" +#~ "Uudet PHP (ja JS) -toiminnot ja -suodattimet on lisätty mahdollistamaan " +#~ "kattavamman mukautuksen." + +#~ msgid "Fresh UI" +#~ msgstr "Tuore UI" + +#~ msgid "" +#~ "The entire plugin has had a design refresh including new field types, " +#~ "settings and design!" +#~ msgstr "" +#~ "Koko lisäosa on saanut design-päivityksen, mukaan lukien uudet " +#~ "kenttätyypit, asetukset ja suunnittelu!" + +#~ msgid "New Settings" +#~ msgstr "Uudet asetukset" + +#~ msgid "" +#~ "Field group settings have been added for Active, Label Placement, " +#~ "Instructions Placement and Description." +#~ msgstr "" +#~ "Kenttäryhmän asetukset on lisätty ominaisuuksiin Aktiivinen, Nimiön " +#~ "sijoittelu, Ohjeiden sijoittelu ja Kuvaus." + +#~ msgid "Better Front End Forms" +#~ msgstr "Paremmat front endin lomakkeet" + +#~ msgid "" +#~ "acf_form() can now create a new post on submission with lots of new " +#~ "settings." +#~ msgstr "" +#~ "acf_form() voi nyt luoda uuden artikkelin pyydettäessä useilla uusilla " +#~ "asetuksilla." + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." +#~ msgstr "" +#~ "Lomakkeen validointi tehdään nyt yhdistelmällä PHP + AJAX pelkän JS:n " +#~ "sijaan." + +#~ msgid "Moving Fields" +#~ msgstr "Kenttien siirtäminen" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents." +#~ msgstr "" +#~ "Uusi kenttäryhmien toiminnallisuus sallii kenttien siirtämisen ryhmien ja " +#~ "vanhempien välillä." + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Uskomme, että tulet rakastamaan muutoksia %s:ssa." + +#~ msgid "Current Color" +#~ msgstr "Nykyinen väri" + +#~ msgid "Normal" +#~ msgstr "Normaali" + +#~ msgid "Fancy" +#~ msgstr "Hieno" + +#~ msgid "Parent fields" +#~ msgstr "Yläkentät" + +#~ msgid "Sibling fields" +#~ msgstr "Sisaruskentät" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s kenttäryhmä synkronoitu." +#~ msgstr[1] "%s kenttäryhmät synkronoitu." + +#~ msgid "Error validating request" +#~ msgstr "Virhe pyynnön käsittelyssä" + +#~ msgid "Add-ons" +#~ msgstr "Lisäosat" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Virhe. Lisäosa luetteloa ei voitu ladata" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields -tietokantapäivitys" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Ennen kuin alat käyttämään uusia mahtavia ominaisuuksia, ole hyvä ja " +#~ "päivitä tietokantasi uuteen versioon." + +#~ msgid "Download & Install" +#~ msgstr "Lataa ja asenna" + +#~ msgid "Installed" +#~ msgstr "Asennettu" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Tehdäksesi päivityksen helpoksi, kirjaudu kauppaan ja " +#~ "lataa ilmainen kopio ACF PRO:sta!" + +#~ msgid "Under the Hood" +#~ msgstr "Konepellin alla" + +#~ msgid "Smarter field settings" +#~ msgstr "Älykkäämmät kenttäasetukset" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF tallentaa nyt kenttäasetukset yksittäisenä artikkelioliona" + +#~ msgid "Better version control" +#~ msgstr "Parempi versionhallinta" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Uusi automaattinen JSON-vienti sallii kenttäasetuksia versionhallinnan" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML vaihdettu JSON:iin" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Tuonti / Vienti käyttää nyt JSONia XML:n sijaan" + +#~ msgid "New Forms" +#~ msgstr "Uudet lomakkeet" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Lisättiin uusi kenttä sisällön upottamiseen" + +#~ msgid "New Gallery" +#~ msgstr "Uusi galleria" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Galleriakenttä on käynyt läpi suuresti tarvitun kasvojenkohotuksen" + +#~ msgid "Relationship Field" +#~ msgstr "Suodata artikkeleita -kenttä" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Uudet Suodata artikkeleita -kentän asetukset 'Suodattamille' (Etsi, " +#~ "Artikkelityyppi, Taksonomia)" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Uusi arkistoryhmä page_link -kentän valintana" + +#~ msgid "Better Options Pages" +#~ msgstr "Paremmat asetukset-sivut" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Uusi toiminnallisuus asetukset-sivulle, joka sallii sekä vanhempi että " +#~ "lapsi menu-sivujen luomisen" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Vie kenttäryhmä PHP:llä" + +#~ msgid "Download export file" +#~ msgstr "Lataa vientitiedosto" + +#~ msgid "Generate export code" +#~ msgstr "Generoi vientikoodi" + +#~ msgid "Locating" +#~ msgstr "Paikannus" + +#~ msgid "Shown when entering data" +#~ msgstr "Näytetään muokkausnäkymässä" + +#~ msgid "Error." +#~ msgstr "Virhe." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Upotettavaa ei löytynyt annetusta URL-osoitteesta." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Pienin määrä arvoja saavutettu ({min} arvoa)" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Välilehtikentän ulkoasu rikkoutuu, jos lisätään taulukko-tyyli toistin " +#~ "kenttä tai joustava sisältö kenttä asettelu" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Ryhmittele kenttiä käyttämällä ”välilehtikenttiä”. Näin saat selkeämmän " +#~ "muokkausnäkymän." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Kaikki kentät, jotka seuraavat tätä \"välilehtikenttää\" (tai kunnes " +#~ "toinen \"välilehtikenttä\" määritellään) ryhmitellään yhteen ja " +#~ "välilehden otsikoksi tulee tämän kentän nimiö." + +#~ msgid "None" +#~ msgstr "Ei mitään" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taksonomian ehto" + +#~ msgid "remove {layout}?" +#~ msgstr "poista {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Tämä kenttä vaatii vähintään {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maksimi {label} saavutettu ({max} {identifier})" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Getting Started" +#~ msgstr "Miten pääset alkuun" + +#~ msgid "Field Types" +#~ msgstr "Kenttätyypit" + +#~ msgid "Functions" +#~ msgstr "Funktiot" + +#~ msgid "Actions" +#~ msgstr "Toiminnot" + +#~ msgid "'How to' guides" +#~ msgstr "\"Miten\" oppaat" + +#~ msgid "Tutorials" +#~ msgstr "Oppaat" + +#~ msgid "FAQ" +#~ msgstr "UKK" + +#~ msgid "Created by" +#~ msgstr "Tekijä" + +#~ msgid "Error" +#~ msgstr "Virhe" + +#~ msgid "See what's new" +#~ msgstr "Katso mitä uutta" + +#~ msgid "eg. Show extra content" +#~ msgstr "Esim. näytä ylimääräinen sisältö" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "Yksi kenttä vaatii huomiota" +#~ msgstr[1] "%d kenttää vaatii huomiota." + +#~ msgid "" +#~ "Error validating license URL (website does not match). Please re-activate " +#~ "your license" +#~ msgstr "" +#~ "Virhe lisenssin URL:n validoinnissa (websivu ei täsmää). Ole hyvä ja " +#~ "aktivoi lisenssisi uudelleen" + +#~ msgid "See what's new in" +#~ msgstr "Katso mitä uutta löytyy" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Onnistui! Tuontityökalu lisäsi %s kenttäryhmään: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Varoitus! Tuontityökalu havaitsi %s kenttäryhmää on jo olemassa ja " +#~ "siksi ne jätettiin huomiotta: %s\t" + +#~ msgid "Upgrade ACF" +#~ msgstr "Päivitä ACF" + +#~ msgid "Upgrade" +#~ msgstr "Päivitä" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Vedä ja pudota muuttaaksesi järjestystä" + +#~ msgid "Show a different month" +#~ msgstr "Näytä eri kuuakusi" + +#~ msgid "Return format" +#~ msgstr "Palautusmuoto" + +#~ msgid "uploaded to this post" +#~ msgstr "ladattu tähän artikkeliin" + +#~ msgid "File Size" +#~ msgstr "Tiedoston koko" + +#~ msgid "No File selected" +#~ msgstr "Ei tiedostoa valittu" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "Huomioithan, että teksti syötetään aina funktiolle " + +#~ msgid "Warning" +#~ msgstr "Varoitus" + +#~ msgid "Add new %s " +#~ msgstr "Lisää uusi %s " + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "" +#~ "Olemme pahoillamme, mutta tapahtui Yhteysvirhe. Ole hyvä ja yritä " +#~ "uudelleen" + +#~ msgid "Save Options" +#~ msgstr "Tallenna asetukset" + +#~ msgid "License" +#~ msgstr "lisenssi" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Saadaksesi mahdollisuuden päivityksiin, syötä lisenssiavain. Jos sinulla " +#~ "ei ole lisenssiavainta, katso" + +#~ msgid "details & pricing" +#~ msgstr "lisätiedot & hinnoittelu" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "Show Field Keys" +#~ msgstr "Näytä kenttäavain" + +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "" +#~ "Kenttäryhmät luodaan järjestyksessä alkaen pienimmästä järjestysnumerosta" + +#~ msgid "Upgrading data to " +#~ msgstr "Päivitetään data versioon %s" + +#~ msgid "Hide / Show All" +#~ msgstr "Piilota / Näytä kaikki" + +#~ msgid "Pending Review" +#~ msgstr "Odottaa tarkistusta" + +#~ msgid "Draft" +#~ msgstr "Luonnos" + +#~ msgid "Future" +#~ msgstr "Tuleva" + +#~ msgid "Private" +#~ msgstr "Yksityinen" + +#~ msgid "Revision" +#~ msgstr "Tarkastettu" + +#~ msgid "Trash" +#~ msgstr "Roskakori" + +#~ msgid "ACF PRO Required" +#~ msgstr "Vaaditaan ACF PRO" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "Olemme havainneet ongelman, joka vaatii huomiotasi: Tämä websivu käyttää " +#~ "premium lisäosia (%s), jotka eivät enää ole yhteensopivia ACF:n kanssa." + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Ei kuitenkaan hätää! Voit helposti palata ja jatkaa ACF:n käyttöä " +#~ "sellaisena kuin sen tunnet!" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Palaa takaisin ACF v%s:ään" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Lue miksi ACF PRO vaaditaan sivustollani" + +#~ msgid "Data Upgrade" +#~ msgstr "Tietojen päivitys" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Tietojen päivitys onnistui!" + +#~ msgid "Data is at the latest version." +#~ msgstr "Tiedot ovat ajan tasalla." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "Yksi vaadittu kenttä on tyhjä" +#~ msgstr[1] "%s valittua kenttää ovat tyhjiä" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Lataa & tallenna taksonomian ehdot artikkeliin" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Lataa arvo perustuen artikkelin ehtoihin ja päivitä artikkelin ehdot " +#~ "tallennettaessa" diff --git a/lang/pro/acf-fr_CA.po b/lang/pro/acf-fr_CA.po new file mode 100644 index 0000000..6b601ba --- /dev/null +++ b/lang/pro/acf-fr_CA.po @@ -0,0 +1,3637 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.8.8\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2020-04-23 20:16-0400\n" +"PO-Revision-Date: 2020-04-23 21:07-0400\n" +"Last-Translator: Berenger Zyla \n" +"Language-Team: Bérenger Zyla \n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.3\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +# @ acf +#: acf.php:68 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +# @ acf +#: acf.php:349 includes/admin/admin.php:54 +msgid "Field Groups" +msgstr "Groupes de champs" + +# @ acf +#: acf.php:350 +msgid "Field Group" +msgstr "Groupe de champs" + +# @ acf +#: acf.php:351 acf.php:383 includes/admin/admin.php:55 +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New" +msgstr "Ajouter" + +# @ acf +#: acf.php:352 +msgid "Add New Field Group" +msgstr "Ajouter un nouveau groupe de champs" + +# @ acf +#: acf.php:353 +msgid "Edit Field Group" +msgstr "Modifier le groupe de champs" + +# @ acf +#: acf.php:354 +msgid "New Field Group" +msgstr "Nouveau groupe de champs" + +# @ default +#: acf.php:355 +msgid "View Field Group" +msgstr "Voir le groupe de champs" + +# @ default +#: acf.php:356 +msgid "Search Field Groups" +msgstr "Rechercher des groupes de champs" + +# @ default +#: acf.php:357 +msgid "No Field Groups found" +msgstr "Aucun groupe de champs trouvé" + +# @ default +#: acf.php:358 +msgid "No Field Groups found in Trash" +msgstr "Aucun groupe de champs trouvé dans la corbeille" + +# @ acf +#: acf.php:381 includes/admin/admin-field-group.php:220 +#: includes/admin/admin-field-groups.php:260 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "Champs" + +# @ acf +#: acf.php:382 +msgid "Field" +msgstr "Champ" + +# @ acf +#: acf.php:384 +msgid "Add New Field" +msgstr "Ajouter un champ" + +# @ acf +#: acf.php:385 +msgid "Edit Field" +msgstr "Modifier le champ" + +# @ acf +#: acf.php:386 includes/admin/views/field-group-fields.php:41 +msgid "New Field" +msgstr "Nouveau champ" + +# @ acf +#: acf.php:387 +msgid "View Field" +msgstr "Voir le champ" + +# @ default +#: acf.php:388 +msgid "Search Fields" +msgstr "Rechercher des champs" + +# @ default +#: acf.php:389 +msgid "No Fields found" +msgstr "Aucun champ trouvé" + +# @ default +#: acf.php:390 +msgid "No Fields found in Trash" +msgstr "Aucun champ trouvé dans la corbeille" + +#: acf.php:425 +msgid "Disabled" +msgstr "Désactivé" + +#: acf.php:430 +#, php-format +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Désactivé (%s)" +msgstr[1] "Désactivés (%s)" + +#: includes/acf-field-functions.php:831 +#: includes/admin/admin-field-group.php:178 +msgid "(no label)" +msgstr "(aucun label)" + +#: includes/acf-field-group-functions.php:820 +#: includes/admin/admin-field-group.php:180 +msgid "copy" +msgstr "copie" + +# @ acf +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Articles" + +# @ acf +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taxonomies" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Fichiers attachés" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "Commentaires" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgets" + +#: includes/acf-wp-functions.php:71 +#: includes/locations/class-acf-location-nav-menu.php:87 +msgid "Menus" +msgstr "Menus" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Éléments de menu" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Utilisateurs" + +# @ acf +#: includes/acf-wp-functions.php:83 pro/options-page.php:51 +msgid "Options" +msgstr "Options" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blocs" + +# @ default +#: includes/admin/admin-field-group.php:86 +#: includes/admin/admin-field-group.php:87 +#: includes/admin/admin-field-group.php:89 +msgid "Field group updated." +msgstr "Groupe de champs mis à jour." + +# @ default +#: includes/admin/admin-field-group.php:88 +msgid "Field group deleted." +msgstr "Groupe de champs supprimé." + +# @ default +#: includes/admin/admin-field-group.php:91 +msgid "Field group published." +msgstr "Groupe de champ publié." + +# @ default +#: includes/admin/admin-field-group.php:92 +msgid "Field group saved." +msgstr "Groupe de champ enregistré." + +# @ default +#: includes/admin/admin-field-group.php:93 +msgid "Field group submitted." +msgstr "Groupe de champ enregistré." + +#: includes/admin/admin-field-group.php:94 +msgid "Field group scheduled for." +msgstr "Groupe de champs programmé pour." + +#: includes/admin/admin-field-group.php:95 +msgid "Field group draft updated." +msgstr "Brouillon du groupe de champs mis à jour." + +#: includes/admin/admin-field-group.php:171 +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/admin-field-group.php:172 +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" + +# @ default +#: includes/admin/admin-field-group.php:173 +msgid "Field group title is required" +msgstr "Veuillez indiquer un titre pour le groupe de champs" + +# @ acf +#: includes/admin/admin-field-group.php:174 +msgid "Move to trash. Are you sure?" +msgstr "Mettre à la corbeille. Êtes-vous sûr?" + +#: includes/admin/admin-field-group.php:175 +msgid "No toggle fields available" +msgstr "Aucun champ de sélection disponible" + +# @ acf +#: includes/admin/admin-field-group.php:176 +msgid "Move Custom Field" +msgstr "Déplacer le champ personnalisé" + +#: includes/admin/admin-field-group.php:177 +msgid "Checked" +msgstr "Coché" + +#: includes/admin/admin-field-group.php:179 +msgid "(this field)" +msgstr "(ce champ)" + +#: includes/admin/admin-field-group.php:181 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3649 +msgid "or" +msgstr "ou" + +#: includes/admin/admin-field-group.php:182 +msgid "Null" +msgstr "Vide" + +# @ acf +#: includes/admin/admin-field-group.php:221 +#: includes/admin/admin-field-groups.php:259 +msgid "Location" +msgstr "Emplacement" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Réglages" + +#: includes/admin/admin-field-group.php:372 +msgid "Field Keys" +msgstr "Identifiants des champs" + +#: includes/admin/admin-field-group.php:402 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Actif" + +#: includes/admin/admin-field-group.php:402 +msgid "Inactive" +msgstr "Inactif" + +#: includes/admin/admin-field-group.php:763 +msgid "Move Complete." +msgstr "Déplacement effectué." + +#: includes/admin/admin-field-group.php:764 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Le champ %s a été déplacé dans le groupe %s" + +# @ acf +#: includes/admin/admin-field-group.php:765 +msgid "Close Window" +msgstr "Fermer la fenêtre" + +# @ acf +#: includes/admin/admin-field-group.php:806 +msgid "Please select the destination for this field" +msgstr "Choisissez la destination de ce champ" + +# @ acf +#: includes/admin/admin-field-group.php:813 +msgid "Move Field" +msgstr "Déplacer le champ" + +#: includes/admin/admin-field-groups.php:102 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Actif (%s)" +msgstr[1] "Actifs (%s)" + +#: includes/admin/admin-field-groups.php:135 +msgid "Overview" +msgstr "Aperçu" + +#: includes/admin/admin-field-groups.php:224 +msgctxt "post status" +msgid "Disabled" +msgstr "Désactivé" + +# @ acf +#: includes/admin/admin-field-groups.php:257 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +#: pro/fields/class-acf-field-gallery.php:380 +msgid "Description" +msgstr "Description" + +#: includes/admin/admin-field-groups.php:258 +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Identifiant" + +#: includes/admin/admin-field-groups.php:263 +#: includes/admin/views/settings-info.php:91 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/admin-field-groups.php:413 +msgid "Various" +msgstr "Variable" + +#: includes/admin/admin-field-groups.php:435 +#, php-format +msgid "Located in theme: %s" +msgstr "Localisé dans le thème : %s" + +#: includes/admin/admin-field-groups.php:439 +#, php-format +msgid "Located in plugin: %s" +msgstr "Localisé dans le plugin : %s" + +# @ acf +#: includes/admin/admin-field-groups.php:443 +#, php-format +msgid "Located in: %s" +msgstr "Localisé dans : %s" + +# @ acf +#: includes/admin/admin-field-groups.php:463 +#: includes/admin/admin-field-groups.php:672 +msgid "Sync available" +msgstr "Synchronisation disponible" + +#: includes/admin/admin-field-groups.php:466 +msgid "Sync" +msgstr "Synchroniser" + +#: includes/admin/admin-field-groups.php:467 +msgid "Review changes" +msgstr "Réviser les changements" + +#: includes/admin/admin-field-groups.php:471 +msgid "Import" +msgstr "Importer" + +#: includes/admin/admin-field-groups.php:475 +msgid "Saved" +msgstr "Sauvegardé" + +#: includes/admin/admin-field-groups.php:478 +msgid "Awaiting save" +msgstr "En attente de sauvegarde" + +# @ acf +#: includes/admin/admin-field-groups.php:499 +msgid "Duplicate this item" +msgstr "Dupliquer cet élément" + +#: includes/admin/admin-field-groups.php:499 +#: includes/admin/admin-field-groups.php:519 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate" +msgstr "Dupliquer" + +#: includes/admin/admin-field-groups.php:524 +msgid "Sync changes" +msgstr "Synchroniser les changements" + +# @ default +#: includes/admin/admin-field-groups.php:546 +#, php-format +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Groupe de champs dupliqué." +msgstr[1] "%s groupes de champs dupliqués." + +# @ default +#: includes/admin/admin-field-groups.php:603 +#, php-format +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Groupe de champs synchronisé." +msgstr[1] "%s groupes de champs synchronisés." + +# @ acf +#: includes/admin/admin-field-groups.php:776 +#, php-format +msgid "Select %s" +msgstr "Choisir %s" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Outils" + +# @ acf +#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 +#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Mise à niveau de la base de données" + +#: includes/admin/admin-upgrade.php:199 +msgid "Review sites & upgrade" +msgstr "Examiner les sites et mettre à niveau" + +# @ acf +#: includes/admin/admin.php:53 includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "ACF" + +#: includes/admin/admin.php:59 +msgid "Info" +msgstr "Informations" + +#: includes/admin/admin.php:124 +msgid "What's New" +msgstr "Nouveautés" + +# @ acf +#: includes/admin/admin.php:125 pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Liste des modifications" + +#: includes/admin/admin.php:182 +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:86 +msgid "and" +msgstr "et" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Exporter les groupes de champs" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Générer le PHP" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "Aucun groupe de champs sélectionné" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Un groupe de champ a été exporté." +msgstr[1] "%s groupes de champs ont été exportés." + +# @ default +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Sélectionnez les groupes de champs" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Sélectionnez les groupes de champs que vous souhaitez exporter puis " +"choisissez la méthode d’export. Utilisez le bouton « télécharger » pour " +"exporter un fichier JSON que vous pourrez importer dans une autre " +"installation ACF. Utilisez le « générer » pour exporter le code PHP que vous " +"pourrez ajouter à votre thème." + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "Exporter le fichier" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Le code suivant peut être utilisé pour enregistrer une version locale du/des " +"groupe(s) de champs sélectionné(s). Un groupe de champ local apporte de " +"nombreux bénéfices comme des temps de chargement plus rapide, la gestion de " +"versions, ou des champs/paramètres dynamiques. Copiez-collez le code suivant " +"dans le fichier functions.php de votre thème ou incluez-le depuis un autre " +"fichier." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "Copier dans le presse-papiers" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "Copié" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Importer les groupes de champs" + +#: includes/admin/tools/class-acf-admin-tool-import.php:47 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Sélectionnez le fichier JSON ACF que vous souhaitez importer et cliquez sur " +"Importer. ACF importera les groupes de champs." + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:52 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "Sélectionner un fichier" + +#: includes/admin/tools/class-acf-admin-tool-import.php:62 +msgid "Import File" +msgstr "Importer le fichier" + +# @ acf +#: includes/admin/tools/class-acf-admin-tool-import.php:85 +#: includes/fields/class-acf-field-file.php:170 +msgid "No file selected" +msgstr "Aucun fichier sélectionné" + +#: includes/admin/tools/class-acf-admin-tool-import.php:93 +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:98 +msgid "Incorrect file type" +msgstr "Type de fichier incorrect" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Import file empty" +msgstr "Le fichier à importer est vide" + +#: includes/admin/tools/class-acf-admin-tool-import.php:138 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Un groupe de champs importé" +msgstr[1] "%s groupes de champs importés" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Logique conditionnelle" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "Montrer ce champ si" + +# @ acf +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Ajouter une règle" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:410 +#: pro/fields/class-acf-field-repeater.php:299 +msgid "Drag to reorder" +msgstr "Faites glisser pour réorganiser" + +# @ acf +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "Modifier ce champ" + +# @ acf +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:152 +#: includes/fields/class-acf-field-image.php:138 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:337 +msgid "Edit" +msgstr "Modifier" + +# @ acf +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "Dupliquer ce champ" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "Déplacer le champ dans un autre groupe" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "Déplacer" + +# @ acf +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "Supprimer ce champ" + +# @ acf +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete" +msgstr "Supprimer" + +# @ acf +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "Titre du champ" + +# @ acf +#: includes/admin/views/field-group-field.php:66 +msgid "This is the name which will appear on the EDIT page" +msgstr "Ce nom apparaîtra sur la page d‘édition" + +# @ acf +#: includes/admin/views/field-group-field.php:75 +msgid "Field Name" +msgstr "Nom du champ" + +# @ acf +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Un seul mot, sans espace. Les « _ » et « - » sont autorisés" + +# @ acf +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "Type de champ" + +# @ acf +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "Instructions" + +# @ acf +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instructions pour les auteurs. Affichées lors de la saisie du contenu" + +# @ acf +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "Requis?" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Attributs du conteneur" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "largeur" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id" + +# @ acf +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "Fermer le champ" + +# @ acf +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Ordre" + +# @ acf +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:433 +#: pro/fields/class-acf-field-flexible-content.php:582 +msgid "Label" +msgstr "Intitulé" + +# @ acf +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:936 +#: pro/fields/class-acf-field-flexible-content.php:596 +msgid "Name" +msgstr "Nom" + +# @ acf +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Type" + +# @ acf +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Aucun champ. Cliquez sur le bouton + Ajouter un champ pour " +"créer votre premier champ." + +# @ acf +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Ajouter un champ" + +# @ acf +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Règles" + +# @ acf +#: includes/admin/views/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é" + +# @ acf +#: includes/admin/views/field-group-options.php:23 +msgid "Style" +msgstr "Style" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Standard (boîte WP)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Sans contour (directement dans la page)" + +# @ acf +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Position" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Haute (après le titre)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Normal (après le contenu)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Sur le côté" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Emplacement de l’intitulé" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Aligné en haut" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Aligné à gauche" + +# @ acf +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Emplacement des instructions" + +# @ acf +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Sous les intitulés" + +# @ acf +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Sous les champs" + +# @ acf +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Ordre" + +#: includes/admin/views/field-group-options.php:86 +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/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Affiché dans la liste des groupes de champs" + +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "Permalien" + +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "Éditeur de contenu" + +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "Extrait" + +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "Discussion" + +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "Révisions" + +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "Identifiant (slug)" + +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "Auteur" + +# @ acf +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "Attributs de page" + +# @ acf +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:607 +msgid "Featured Image" +msgstr "Image à la Une" + +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "Catégories" + +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "Mots-clés" + +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "Envoyer des rétroliens" + +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "Masquer" + +# @ acf +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Sélectionnez les champs que vous souhaitez masquer sur la page " +"d‘édition." + +# @ acf +#: includes/admin/views/field-group-options.php:129 +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/html-admin-page-upgrade-network.php:26 +#, php-format +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/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "Mettre à niveau les sites" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/html-admin-page-upgrade-network.php:74 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Le site requiert une mise à niveau de la base données de %s à %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:76 +msgid "Site is up to date" +msgstr "Le site est à jour" + +#: includes/admin/views/html-admin-page-upgrade-network.php:93 +#, php-format +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/html-admin-page-upgrade-network.php:113 +msgid "Please select at least one site to upgrade." +msgstr "Merci de sélectionner au moins un site à mettre à niveau." + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +#: includes/admin/views/html-notice-upgrade.php:38 +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/html-admin-page-upgrade-network.php:144 +#: includes/admin/views/html-admin-page-upgrade.php:31 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Migration des données vers la version %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:158 +msgid "Upgrade complete." +msgstr "Mise à niveau terminée." + +#: includes/admin/views/html-admin-page-upgrade-network.php:161 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Mise à niveau échouée." + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Lecture des instructions de mise à niveau…" + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, php-format +msgid "Database upgrade complete. See what's new" +msgstr "" +"Mise à niveau de la base de données terminée. Consulter les " +"nouveautés" + +# @ acf +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:32 +msgid "No updates available." +msgstr "Aucune mise à jour disponible." + +#: includes/admin/views/html-admin-tools.php:21 +msgid "Back to all tools" +msgstr "Retour aux outils" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Montrer ce groupe si" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Répéteur" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Contenu flexible" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + +# @ acf +#: includes/admin/views/html-notice-upgrade.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Page d‘options" + +#: includes/admin/views/html-notice-upgrade.php:21 +msgid "Database Upgrade Required" +msgstr "Mise à jour de la base de données nécessaire" + +#: includes/admin/views/html-notice-upgrade.php:22 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Merci d’avoir mis à jour %s v%s!" + +#: includes/admin/views/html-notice-upgrade.php:22 +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/html-notice-upgrade.php:24 +#, php-format +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." + +# @ acf +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Bienvenue sur Advanced Custom Fields" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Merci d’avoir mis à jour! ACF %s est plus performant que jamais. Nous " +"espérons que vous l’apprécierez." + +#: includes/admin/views/settings-info.php:15 +msgid "A Smoother Experience" +msgstr "Une expérience plus fluide" + +#: includes/admin/views/settings-info.php:18 +msgid "Improved Usability" +msgstr "Convivialité améliorée" + +#: includes/admin/views/settings-info.php:19 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"ACF inclue désormais la librairie populaire Select2, qui améliore " +"l’ergonomie et la vitesse sur plusieurs types de champs dont l’objet " +"article, lien vers page, taxonomie, et sélection." + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Design" +msgstr "Design amélioré" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Plusieurs champs ont reçu une refonte graphique pour qu’ACF apparaisse sous " +"son plus beau jour! Les améliorations sont notamment visibles sur la " +"galerie, le champ relationnel et le petit nouveau : oEmbed (champ de contenu " +"embarqué)!" + +#: includes/admin/views/settings-info.php:26 +msgid "Improved Data" +msgstr "Données améliorées" + +#: includes/admin/views/settings-info.php:27 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"L’architecture des données a été complètement revue et permet dorénavant aux " +"sous-champs de vivre indépendamment de leurs parents. Cela permet de " +"déplacer les champs en dehors de leurs parents!" + +#: includes/admin/views/settings-info.php:35 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Au revoir modules d’extension. Bonjour ACF Pro" + +#: includes/admin/views/settings-info.php:38 +msgid "Introducing ACF PRO" +msgstr "Découvrez ACF PRO" + +#: includes/admin/views/settings-info.php:39 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" +"Nous avons changé la façon dont les fonctionnalités premium sont délivrées!" + +#: includes/admin/views/settings-info.php:40 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Les 4 modules d’extension premium (répéteur, galerie, contenu flexible et " +"pages d’options) ont été combinés en une toute nouvelle version PRO d’ACF. Avec des licences personnelles et développeur " +"disponibles, les fonctionnalités premium sont encore plus accessibles que " +"jamais!" + +#: includes/admin/views/settings-info.php:44 +msgid "Powerful Features" +msgstr "Nouvelles fonctionnalités surpuissantes" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"ACF PRO contient de nouvelles super fonctionnalités telles que les champs " +"répéteurs, les dispositions flexibles, une superbe galerie et la possibilité " +"de créer des pages d’options!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "" +"En savoir plus à propos des fonctionnalités d’ACF PRO." + +# @ wp3i +#: includes/admin/views/settings-info.php:50 +msgid "Easy Upgrading" +msgstr "Mise à niveau facile" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"Upgrading to ACF PRO is easy. Simply purchase a license online and download " +"the plugin!" +msgstr "" +"La mise à niveau vers ACF PRO est facile. Achetez simplement une licence en " +"ligne et téléchargez l’extension!" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk." +msgstr "" +"Nous avons également écrit un guide de mise à niveau pour " +"répondre aux questions habituelles, mais si vous avez une question " +"spécifique, veuillez contacter notre équipe de support via le support technique." + +#: includes/admin/views/settings-info.php:61 +msgid "New Features" +msgstr "Nouvelles Fonctionnalités" + +#: includes/admin/views/settings-info.php:66 +msgid "Link Field" +msgstr "Champ Lien" + +#: includes/admin/views/settings-info.php:67 +msgid "" +"The Link field provides a simple way to select or define a link (url, title, " +"target)." +msgstr "" +"Le champ Lien permet de sélectionner ou définir un lien en toute simplicité " +"(URL, titre, cible)." + +#: includes/admin/views/settings-info.php:71 +msgid "Group Field" +msgstr "Champ Groupe" + +#: includes/admin/views/settings-info.php:72 +msgid "The Group field provides a simple way to create a group of fields." +msgstr "" +"Le champ Groupe permet de créer un groupe de champs en toute simplicité." + +#: includes/admin/views/settings-info.php:76 +msgid "oEmbed Field" +msgstr "Champ de Contenu Embarqué (oEmbed)" + +#: includes/admin/views/settings-info.php:77 +msgid "" +"The oEmbed field allows an easy way to embed videos, images, tweets, audio, " +"and other content." +msgstr "" +"Le champ oEmbed vous permet d’embarquer des vidéos, des images, des tweets, " +"de l’audio ou encore d’autres média en toute simplicité." + +#: includes/admin/views/settings-info.php:81 +msgid "Clone Field" +msgstr "Champ Clone" + +#: includes/admin/views/settings-info.php:81 +msgid "Pro" +msgstr "Pro" + +#: includes/admin/views/settings-info.php:82 +msgid "The clone field allows you to select and display existing fields." +msgstr "" +"Le champ Clone vous permet de sélectionner et afficher des champs existants." + +#: includes/admin/views/settings-info.php:86 +msgid "More AJAX" +msgstr "Plus d’AJAX" + +#: includes/admin/views/settings-info.php:87 +msgid "More fields use AJAX powered search to speed up page loading." +msgstr "" +"Plus de champs utilisent maintenant la recherche via AJAX afin d’améliorer " +"le temps de chargement des pages." + +#: includes/admin/views/settings-info.php:92 +msgid "" +"New auto export to JSON feature improves speed and allows for syncronisation." +msgstr "" +"La nouvelle fonctionnalité d’export automatique en JSON améliore la rapidité " +"et simplifie la synchronisation." + +#: includes/admin/views/settings-info.php:96 +msgid "Easy Import / Export" +msgstr "Import / Export Facile" + +#: includes/admin/views/settings-info.php:97 +msgid "Both import and export can easily be done through a new tools page." +msgstr "" +"Les imports et exports de données d’ACF sont encore plus simples à réaliser " +"via notre nouvelle page d’outils." + +#: includes/admin/views/settings-info.php:101 +msgid "New Form Locations" +msgstr "Nouveaux Emplacements de Champs" + +#: includes/admin/views/settings-info.php:102 +msgid "" +"Fields can now be mapped to menus, menu items, comments, widgets and all " +"user forms!" +msgstr "" +"Les champs peuvent désormais être intégrés dans les menus, éléments de menu, " +"commentaires, widgets et tous les formulaires utilisateurs!" + +#: includes/admin/views/settings-info.php:106 +msgid "More Customization" +msgstr "Encore plus de Personnalisation" + +#: includes/admin/views/settings-info.php:107 +msgid "" +"New PHP (and JS) actions and filters have been added to allow for more " +"customization." +msgstr "" +"De nouveaux filtres et actions PHP (et JS) ont été ajoutés afin de vous " +"permettre plus de personnalisation." + +#: includes/admin/views/settings-info.php:111 +msgid "Fresh UI" +msgstr "Interface Améliorée" + +#: includes/admin/views/settings-info.php:112 +msgid "" +"The entire plugin has had a design refresh including new field types, " +"settings and design!" +msgstr "" +"Toute l’extension a été améliorée et inclut de nouveaux types de champs, " +"réglages ainsi qu’un nouveau design!" + +#: includes/admin/views/settings-info.php:116 +msgid "New Settings" +msgstr "Nouveaux Paramètres" + +#: includes/admin/views/settings-info.php:117 +msgid "" +"Field group settings have been added for Active, Label Placement, " +"Instructions Placement and Description." +msgstr "" +"De nouveaux réglages font leur apparition pour Actif, Emplacement du Label, " +"Emplacement des Instructions et Description." + +#: includes/admin/views/settings-info.php:121 +msgid "Better Front End Forms" +msgstr "De meilleurs formulaires côté public" + +#: includes/admin/views/settings-info.php:122 +msgid "" +"acf_form() can now create a new post on submission with lots of new settings." +msgstr "" +"acf_form() peut maintenant créer un nouvel article lors de la soumission et " +"propose de nombreux réglages." + +#: includes/admin/views/settings-info.php:126 +msgid "Better Validation" +msgstr "Meilleure validation" + +#: includes/admin/views/settings-info.php:127 +msgid "Form validation is now done via PHP + AJAX in favour of only JS." +msgstr "" +"La validation des formulaires est maintenant faite via PHP + AJAX au lieu " +"d’être seulement faite en JS." + +# @ acf +#: includes/admin/views/settings-info.php:131 +msgid "Moving Fields" +msgstr "Champs amovibles" + +#: includes/admin/views/settings-info.php:132 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents." +msgstr "" +"La nouvelle fonctionnalité de Groupe de Champ vous permet de déplacer un " +"champ entre différents groupes et parents." + +#: includes/admin/views/settings-info.php:143 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Nous pensons que vous allez adorer les nouveautés de la version %s." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:34 +#: includes/ajax/class-acf-ajax-local-json-diff.php:41 +#: includes/ajax/class-acf-ajax-local-json-diff.php:51 +msgid "Error." +msgstr "Erreur." + +# @ acf +#: includes/ajax/class-acf-ajax-local-json-diff.php:57 +#, php-format +msgid "Last updated: %s" +msgstr "Dernière mise à jour : %s" + +# @ acf +#: includes/ajax/class-acf-ajax-local-json-diff.php:62 +msgid "Current field group" +msgstr "Groupe de champs actuel" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:66 +msgid "Local JSON field group (newer)" +msgstr "Groupe de champs local JSON (plus récent)" + +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Nonce invalide." + +#: includes/api/api-helpers.php:827 +msgid "Thumbnail" +msgstr "Miniature" + +#: includes/api/api-helpers.php:828 +msgid "Medium" +msgstr "Moyen" + +#: includes/api/api-helpers.php:829 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:878 +msgid "Full Size" +msgstr "Taille originale" + +# @ acf +#: includes/api/api-helpers.php:1599 includes/api/api-term.php:147 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(sans titre)" + +#: includes/api/api-helpers.php:3570 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "L’image doit mesurer au moins %dpx de largeur." + +#: includes/api/api-helpers.php:3575 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "L’image ne doit pas dépasser %dpx de largeur." + +#: includes/api/api-helpers.php:3591 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "L’image doit mesurer au moins %dpx de hauteur." + +#: includes/api/api-helpers.php:3596 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "L’image ne doit pas dépasser %dpx de hauteur." + +#: includes/api/api-helpers.php:3614 +#, php-format +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:3619 +#, php-format +msgid "File size must must not exceed %s." +msgstr "Le poids de l’image ne doit pas dépasser %s." + +# @ acf +#: includes/api/api-helpers.php:3653 +#, php-format +msgid "File type must be %s." +msgstr "Le type de fichier doit être %s." + +#: includes/assets.php:184 +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/assets.php:187 includes/fields/class-acf-field-select.php:259 +msgctxt "verb" +msgid "Select" +msgstr "Choisir" + +#: includes/assets.php:188 +msgctxt "verb" +msgid "Edit" +msgstr "Modifier" + +#: includes/assets.php:189 +msgctxt "verb" +msgid "Update" +msgstr "Mettre à jour" + +#: includes/assets.php:190 +msgid "Uploaded to this post" +msgstr "Lié(s) à cet article" + +#: includes/assets.php:191 +msgid "Expand Details" +msgstr "Afficher les détails" + +#: includes/assets.php:192 +msgid "Collapse Details" +msgstr "Masquer les détails" + +#: includes/assets.php:193 +msgid "Restricted" +msgstr "Limité" + +# @ acf +#: includes/assets.php:194 includes/fields/class-acf-field-image.php:66 +msgid "All images" +msgstr "Toutes les images" + +#: includes/assets.php:197 +msgid "Validation successful" +msgstr "Validé avec succès" + +#: includes/assets.php:198 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Échec de la validation" + +#: includes/assets.php:199 +msgid "1 field requires attention" +msgstr "1 champ requiert votre attention" + +#: includes/assets.php:200 +#, php-format +msgid "%d fields require attention" +msgstr "%d champs requièrent votre attention" + +# @ acf +#: includes/assets.php:203 +msgid "Are you sure?" +msgstr "Êtes-vous sûr(e)?" + +#: includes/assets.php:204 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Oui" + +#: includes/assets.php:205 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "Non" + +# @ acf +#: includes/assets.php:206 includes/fields/class-acf-field-file.php:154 +#: includes/fields/class-acf-field-image.php:140 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:338 +#: pro/fields/class-acf-field-gallery.php:478 +msgid "Remove" +msgstr "Enlever" + +#: includes/assets.php:207 +msgid "Cancel" +msgstr "Annuler" + +#: includes/assets.php:210 +msgid "Has any value" +msgstr "A n’importe quelle valeur" + +#: includes/assets.php:211 +msgid "Has no value" +msgstr "N’a pas de valeur" + +#: includes/assets.php:212 +msgid "Value is equal to" +msgstr "La valeur est égale à" + +#: includes/assets.php:213 +msgid "Value is not equal to" +msgstr "La valeur est différente de" + +#: includes/assets.php:214 +msgid "Value matches pattern" +msgstr "La valeur correspond au modèle" + +#: includes/assets.php:215 +msgid "Value contains" +msgstr "La valeur contient" + +#: includes/assets.php:216 +msgid "Value is greater than" +msgstr "La valeur est supérieure à" + +#: includes/assets.php:217 +msgid "Value is less than" +msgstr "La valeur est inférieure à" + +#: includes/assets.php:218 +msgid "Selection is greater than" +msgstr "La sélection est supérieure à" + +#: includes/assets.php:219 +msgid "Selection is less than" +msgstr "La sélection est inférieure à" + +# @ acf +#: includes/assets.php:222 includes/forms/form-comment.php:166 +#: pro/admin/admin-options-page.php:325 +msgid "Edit field group" +msgstr "Modifier le groupe de champs" + +# @ acf +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "Ce type de champ n‘existe pas" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "Inconnu" + +#: includes/fields.php:349 +msgid "Basic" +msgstr "Commun" + +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Contenu" + +# @ acf +#: includes/fields.php:351 +msgid "Choice" +msgstr "Choix" + +# @ acf +#: includes/fields.php:352 +msgid "Relational" +msgstr "Relationnel" + +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +# @ acf +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:553 +#: pro/fields/class-acf-field-flexible-content.php:602 +#: pro/fields/class-acf-field-repeater.php:448 +msgid "Layout" +msgstr "Mise en page" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "Accordéon" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "Ouvert" + +#: includes/fields/class-acf-field-accordion.php:100 +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:109 +msgid "Multi-expand" +msgstr "Ouverture multiple" + +#: includes/fields/class-acf-field-accordion.php:110 +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:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Extrémité" + +#: includes/fields/class-acf-field-accordion.php:120 +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-button-group.php:24 +msgid "Button Group" +msgstr "Groupe de boutons" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Choix" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Indiquez une valeur par ligne." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +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 label de cette " +"manière :" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "rouge : Rouge" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:382 +#: includes/fields/class-acf-field-taxonomy.php:781 +#: includes/fields/class-acf-field-user.php:63 +msgid "Allow Null?" +msgstr "Autoriser une valeur vide?" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:155 +#: includes/fields/class-acf-field-select.php:373 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:381 +msgid "Default Value" +msgstr "Valeur par défaut" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:156 +#: includes/fields/class-acf-field-text.php:96 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:382 +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-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "Vertical" + +# @ acf +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:826 +msgid "Return Value" +msgstr "Valeur renvoyée" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +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:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:432 +msgid "Value" +msgstr "Valeur" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:434 +msgid "Both (Array)" +msgstr "Les deux (tableau/Array)" + +# @ acf +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:768 +msgid "Checkbox" +msgstr "Case à cocher" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Tout (dé)sélectionner" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Ajouter un choix" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "Autoriser des valeurs personnalisées" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "Permettre l’ajout de valeurs personnalisées" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "Enregistrer les valeurs personnalisées" + +#: includes/fields/class-acf-field-checkbox.php:369 +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:381 +#: includes/fields/class-acf-field-select.php:374 +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-checkbox.php:403 +msgid "Toggle" +msgstr "Tout (dé)sélectionner" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" +"Ajouter une case à cocher au début pour tout sélectionner/désélectionner" + +# @ acf +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Sélecteur de couleur" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Effacer" + +# @ acf +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Valeur par défaut" + +# @ acf +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Choisir une couleur" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Couleur actuelle" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Sélecteur de date" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Valider" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Aujourd’hui" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Suiv." + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Préc." + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem." + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Format d’affichage" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +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:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "Personnalisé :" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Enregistrer le format" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "Le format enregistré" + +# @ acf +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-image.php:204 +#: includes/fields/class-acf-field-post_object.php:431 +#: includes/fields/class-acf-field-relationship.php:634 +#: includes/fields/class-acf-field-select.php:427 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:79 +#: pro/fields/class-acf-field-gallery.php:557 +msgid "Return Format" +msgstr "Format de la valeur retournée" + +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "Valeur retournée dans le code" + +#: includes/fields/class-acf-field-date_picker.php:227 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "La semaine commence le" + +#: 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-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Choisir l’heure" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Heure" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Heure" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minute" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Seconde" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milliseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microseconde" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fuseau horaire" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Maintenant" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Valider" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +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 amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Adresse courriel" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:104 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Texte indicatif" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:105 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Apparait dans le champ" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:194 +#: includes/fields/class-acf-field-text.php:113 +msgid "Prepend" +msgstr "Préfixe" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:195 +#: includes/fields/class-acf-field-text.php:114 +msgid "Appears before the input" +msgstr "Apparait avant le champ" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:203 +#: includes/fields/class-acf-field-text.php:122 +msgid "Append" +msgstr "Suffixe" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:204 +#: includes/fields/class-acf-field-text.php:123 +msgid "Appears after the input" +msgstr "Apparait après le champ" + +# @ acf +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Fichier" + +# @ acf +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "Modifier le fichier" + +# @ acf +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "Mettre à jour le fichier" + +# @ acf +#: includes/fields/class-acf-field-file.php:141 +msgid "File name" +msgstr "Nom du fichier" + +# @ acf +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-file.php:259 +#: includes/fields/class-acf-field-image.php:264 +#: includes/fields/class-acf-field-image.php:293 +#: pro/fields/class-acf-field-gallery.php:642 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "File size" +msgstr "Taille du fichier" + +# @ acf +#: includes/fields/class-acf-field-file.php:170 +msgid "Add File" +msgstr "Ajouter un fichier" + +#: includes/fields/class-acf-field-file.php:221 +msgid "File Array" +msgstr "Données du fichier (tableau/Array)" + +# @ acf +#: includes/fields/class-acf-field-file.php:222 +msgid "File URL" +msgstr "URL du fichier" + +# @ acf +#: includes/fields/class-acf-field-file.php:223 +msgid "File ID" +msgstr "ID du Fichier" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:229 +#: pro/fields/class-acf-field-gallery.php:592 +msgid "Library" +msgstr "Média" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:230 +#: pro/fields/class-acf-field-gallery.php:593 +msgid "Limit the media library choice" +msgstr "Limiter le choix dans la médiathèque" + +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:235 +#: includes/locations/class-acf-location-attachment.php:71 +#: includes/locations/class-acf-location-comment.php:59 +#: includes/locations/class-acf-location-nav-menu.php:72 +#: includes/locations/class-acf-location-taxonomy.php:61 +#: includes/locations/class-acf-location-user-form.php:64 +#: includes/locations/class-acf-location-user-role.php:76 +#: includes/locations/class-acf-location-widget.php:63 +#: pro/fields/class-acf-field-gallery.php:598 +#: pro/locations/class-acf-location-block.php:80 +msgid "All" +msgstr "Tous" + +#: includes/fields/class-acf-field-file.php:237 +#: includes/fields/class-acf-field-image.php:236 +#: pro/fields/class-acf-field-gallery.php:599 +msgid "Uploaded to post" +msgstr "Liés à cet article" + +# @ acf +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:243 +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:245 +#: includes/fields/class-acf-field-file.php:256 +msgid "Restrict which files can be uploaded" +msgstr "Restreindre l’import de fichiers" + +# @ acf +#: includes/fields/class-acf-field-file.php:255 +#: includes/fields/class-acf-field-image.php:272 +#: pro/fields/class-acf-field-gallery.php:650 +msgid "Maximum" +msgstr "Maximum" + +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:301 +#: pro/fields/class-acf-field-gallery.php:678 +msgid "Allowed file types" +msgstr "Types de fichiers autorisés" + +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-image.php:302 +#: pro/fields/class-acf-field-gallery.php:679 +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-google-map.php:25 +msgid "Google Map" +msgstr "Google Map" + +#: includes/fields/class-acf-field-google-map.php:59 +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:146 +#: includes/fields/class-acf-field-relationship.php:593 +msgid "Search" +msgstr "Rechercher" + +# @ acf +#: includes/fields/class-acf-field-google-map.php:147 +msgid "Clear location" +msgstr "Effacer la position" + +#: includes/fields/class-acf-field-google-map.php:148 +msgid "Find current location" +msgstr "Trouver l’emplacement actuel" + +#: includes/fields/class-acf-field-google-map.php:151 +msgid "Search for address..." +msgstr "Chercher une adresse…" + +#: includes/fields/class-acf-field-google-map.php:181 +#: includes/fields/class-acf-field-google-map.php:192 +msgid "Center" +msgstr "Centre" + +#: includes/fields/class-acf-field-google-map.php:182 +#: includes/fields/class-acf-field-google-map.php:193 +msgid "Center the initial map" +msgstr "Position initiale du centre de la carte" + +#: includes/fields/class-acf-field-google-map.php:204 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Set the initial zoom level" +msgstr "Niveau de zoom initial" + +#: includes/fields/class-acf-field-google-map.php:214 +#: includes/fields/class-acf-field-image.php:255 +#: includes/fields/class-acf-field-image.php:284 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:633 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Height" +msgstr "Hauteur" + +#: includes/fields/class-acf-field-google-map.php:215 +msgid "Customize the map height" +msgstr "Hauteur de la carte" + +# @ acf +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Groupe" + +# @ acf +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:384 +msgid "Sub Fields" +msgstr "Sous-champs" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "Style utilisé pour générer les champs sélectionnés" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:613 +#: pro/fields/class-acf-field-repeater.php:456 +#: pro/locations/class-acf-location-block.php:27 +msgid "Block" +msgstr "Bloc" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:612 +#: pro/fields/class-acf-field-repeater.php:455 +msgid "Table" +msgstr "Tableau" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:614 +#: pro/fields/class-acf-field-repeater.php:457 +msgid "Row" +msgstr "Rangée" + +# @ acf +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Image" + +# acf +#: includes/fields/class-acf-field-image.php:63 +msgid "Select Image" +msgstr "Sélectionner une image" + +# @ acf +#: includes/fields/class-acf-field-image.php:64 +msgid "Edit Image" +msgstr "Modifier l’image" + +# @ acf +#: includes/fields/class-acf-field-image.php:65 +msgid "Update Image" +msgstr "Mettre à jour" + +# @ acf +#: includes/fields/class-acf-field-image.php:156 +msgid "No image selected" +msgstr "Aucune image sélectionnée" + +# @ acf +#: includes/fields/class-acf-field-image.php:156 +msgid "Add Image" +msgstr "Ajouter une image" + +# @ acf +#: includes/fields/class-acf-field-image.php:210 +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Image Array" +msgstr "Données de l’image (tableau/Array)" + +# @ acf +#: includes/fields/class-acf-field-image.php:211 +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Image URL" +msgstr "URL de l‘image" + +# @ acf +#: includes/fields/class-acf-field-image.php:212 +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Image ID" +msgstr "ID de l‘image" + +# @ acf +#: includes/fields/class-acf-field-image.php:219 +#: pro/fields/class-acf-field-gallery.php:571 +msgid "Preview Size" +msgstr "Taille de prévisualisation" + +#: includes/fields/class-acf-field-image.php:244 +#: includes/fields/class-acf-field-image.php:273 +#: pro/fields/class-acf-field-gallery.php:622 +#: pro/fields/class-acf-field-gallery.php:651 +msgid "Restrict which images can be uploaded" +msgstr "Restreindre les images envoyées" + +#: includes/fields/class-acf-field-image.php:247 +#: includes/fields/class-acf-field-image.php:276 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:625 +#: pro/fields/class-acf-field-gallery.php:654 +msgid "Width" +msgstr "Largeur" + +# @ acf +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Lien" + +# @ acf +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Sélectionner un lien" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "Ouvrir dans un nouvel onglet/fenêtre" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Tableau de données (Array)" + +# @ acf +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "URL du Lien" + +# @ acf +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Message" + +# @ acf +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Nouvelles lignes" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Comment sont interprétés les sauts de lignes" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Ajouter des paragraphes automatiquement" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Ajouter <br> automatiquement" + +# @ acf +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Pas de formatage" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "Afficher le code HTML" + +#: 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-number.php:25 +msgid "Number" +msgstr "Nombre" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:164 +msgid "Minimum Value" +msgstr "Valeur minimum" + +# @ acf +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:174 +msgid "Maximum Value" +msgstr "Valeur maximum" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:184 +msgid "Step Size" +msgstr "Pas" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "La valeur doit être un nombre" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +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:245 +#, php-format +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-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "Entrez l’URL" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "Dimensions" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Lien vers page ou article" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Archives" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:267 +#: includes/fields/class-acf-field-taxonomy.php:958 +msgid "Parent" +msgstr "Parent" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:383 +#: includes/fields/class-acf-field-relationship.php:560 +msgid "Filter by Post Type" +msgstr "Filtrer par type de publication" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:391 +#: includes/fields/class-acf-field-relationship.php:568 +msgid "All post types" +msgstr "Tous les types de publication" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:397 +#: includes/fields/class-acf-field-relationship.php:574 +msgid "Filter by Taxonomy" +msgstr "Filtrer par taxonomie" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:405 +#: includes/fields/class-acf-field-relationship.php:582 +msgid "All taxonomies" +msgstr "Toutes les taxonomies" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "Afficher les pages d’archives" + +# @ acf +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-user.php:71 +msgid "Select multiple values?" +msgstr "Autoriser la sélection multiple?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Mot de passe" + +# @ acf +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:436 +#: includes/fields/class-acf-field-relationship.php:639 +msgid "Post Object" +msgstr "Objet Article" + +# @ acf +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Post ID" +msgstr "ID de l’article" + +# @ acf +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Bouton radio" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Autre" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "Ajouter un choix « Autre » pour autoriser des valeurs personnalisées" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "Enregistrer les valeurs personnalisées" + +#: includes/fields/class-acf-field-radio.php:270 +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-range.php:25 +msgid "Range" +msgstr "Plage de valeurs" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relation" + +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "Nombre maximal de valeurs atteint ({max} valeurs)" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "Chargement en cours" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "Aucun résultat" + +#: includes/fields/class-acf-field-relationship.php:411 +msgid "Select post type" +msgstr "Choisissez le type de publication" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:420 +msgid "Select taxonomy" +msgstr "Choisissez la taxonomie" + +#: includes/fields/class-acf-field-relationship.php:477 +msgid "Search..." +msgstr "Rechercher…" + +#: includes/fields/class-acf-field-relationship.php:588 +msgid "Filters" +msgstr "Filtres" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:594 +#: includes/locations/class-acf-location-post-type.php:20 +msgid "Post Type" +msgstr "Type de publication" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:595 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:751 +#: includes/locations/class-acf-location-taxonomy.php:20 +msgid "Taxonomy" +msgstr "Taxonomie" + +#: includes/fields/class-acf-field-relationship.php:602 +msgid "Elements" +msgstr "Éléments" + +#: includes/fields/class-acf-field-relationship.php:603 +msgid "Selected elements will be displayed in each result" +msgstr "Les éléments sélectionnés seront affichés dans chaque résultat" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:614 +msgid "Minimum posts" +msgstr "Minimum d’articles sélectionnables" + +# @ acf +#: includes/fields/class-acf-field-relationship.php:623 +msgid "Maximum posts" +msgstr "Maximum d’articles sélectionnables" + +#: includes/fields/class-acf-field-relationship.php:727 +#: pro/fields/class-acf-field-gallery.php:779 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s requiert au moins %s sélection" +msgstr[1] "%s requiert au moins %s sélections" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:773 +msgctxt "noun" +msgid "Select" +msgstr "Sélection" + +#: includes/fields/class-acf-field-select.php:111 +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:112 +#, php-format +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:113 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Aucun résultat trouvé" + +#: includes/fields/class-acf-field-select.php:114 +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:115 +#, php-format +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:116 +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:117 +#, php-format +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:118 +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:119 +#, php-format +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:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Chargement de résultats supplémentaires…" + +#: includes/fields/class-acf-field-select.php:121 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Recherche en cours…" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Échec du chargement" + +# @ acf +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "Interface stylisée" + +#: includes/fields/class-acf-field-select.php:412 +msgid "Use AJAX to lazy load choices?" +msgstr "Utiliser AJAX pour charger les choix dynamiquement?" + +#: includes/fields/class-acf-field-select.php:428 +msgid "Specify the value returned" +msgstr "Définit la valeur retournée" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Séparateur" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Onglet" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Emplacement" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Définit une extrémité pour fermer les précédents onglets. Cela va commencer " +"un nouveau groupe d’onglets." + +#: includes/fields/class-acf-field-taxonomy.php:711 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "Pas de %s" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:752 +msgid "Select the taxonomy to be displayed" +msgstr "Choisissez la taxonomie à afficher" + +#: includes/fields/class-acf-field-taxonomy.php:761 +msgid "Appearance" +msgstr "Apparence" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:762 +msgid "Select the appearance of this field" +msgstr "Apparence de ce champ" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:767 +msgid "Multiple Values" +msgstr "Valeurs multiples" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:769 +msgid "Multi Select" +msgstr "Sélecteur multiple" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Single Value" +msgstr "Valeur unique" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Radio Buttons" +msgstr "Boutons radio" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:796 +msgid "Create Terms" +msgstr "Créer des termes" + +#: includes/fields/class-acf-field-taxonomy.php:797 +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:806 +msgid "Save Terms" +msgstr "Enregistrer les termes" + +#: includes/fields/class-acf-field-taxonomy.php:807 +msgid "Connect selected terms to the post" +msgstr "Lier les termes sélectionnés à l’article" + +#: includes/fields/class-acf-field-taxonomy.php:816 +msgid "Load Terms" +msgstr "Charger les termes" + +#: includes/fields/class-acf-field-taxonomy.php:817 +msgid "Load value from posts terms" +msgstr "Charger une valeur depuis les termes de l’article" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:831 +msgid "Term Object" +msgstr "Objet Terme" + +#: includes/fields/class-acf-field-taxonomy.php:832 +msgid "Term ID" +msgstr "ID du terme" + +#: includes/fields/class-acf-field-taxonomy.php:882 +#, php-format +msgid "User unable to add new %s" +msgstr "Utilisateur incapable d’ajouter un nouveau %s" + +#: includes/fields/class-acf-field-taxonomy.php:892 +#, php-format +msgid "%s already exists" +msgstr "%s existe déjà" + +#: includes/fields/class-acf-field-taxonomy.php:924 +#, php-format +msgid "%s added" +msgstr "%s ajouté" + +# @ acf +#: includes/fields/class-acf-field-taxonomy.php:970 +#: includes/locations/class-acf-location-user-form.php:65 +msgid "Add" +msgstr "Ajouter" + +# @ acf +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Texte" + +#: includes/fields/class-acf-field-text.php:131 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limite de caractères" + +#: includes/fields/class-acf-field-text.php:132 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Laisser vide ne pas donner de limite" + +#: includes/fields/class-acf-field-text.php:157 +#: includes/fields/class-acf-field-textarea.php:215 +#, php-format +msgid "Value must not exceed %d characters" +msgstr "La valeur ne doit pas dépasser %d caractères" + +# @ acf +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Zone de texte" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Lignes" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Hauteur du champ" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Sélecteur d’heure" + +# @ acf +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Oui / Non" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "Affiche le texte à côté de la case à cocher" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "Texte côté « Actif »" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "Text affiché lorsque le bouton est actif" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "Texte côté « Inactif »" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "Texte affiché lorsque le bouton est désactivé" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "URL" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "La valeur doit être une URL valide" + +#: includes/fields/class-acf-field-user.php:20 includes/locations-new.php:99 +#: includes/locations.php:95 +msgid "User" +msgstr "Utilisateur" + +#: includes/fields/class-acf-field-user.php:51 +msgid "Filter by role" +msgstr "Filtrer par rôle" + +#: 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:84 +msgid "User Array" +msgstr "Tableau Utilisateur (Array)" + +#: includes/fields/class-acf-field-user.php:85 +msgid "User Object" +msgstr "Objet Utilisateur" + +#: includes/fields/class-acf-field-user.php:86 +msgid "User ID" +msgstr "ID de l’Utilisateur" + +#: includes/fields/class-acf-field-user.php:334 +msgid "Error loading field." +msgstr "Échec du chargement du champ." + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Éditeur WYSIWYG" + +#: includes/fields/class-acf-field-wysiwyg.php:330 +msgid "Visual" +msgstr "Visuel" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:331 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texte" + +#: includes/fields/class-acf-field-wysiwyg.php:337 +msgid "Click to initialize TinyMCE" +msgstr "Cliquez pour initialiser TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Tabs" +msgstr "Onglets" + +#: includes/fields/class-acf-field-wysiwyg.php:395 +msgid "Visual & Text" +msgstr "Visuel & Texte brut" + +#: includes/fields/class-acf-field-wysiwyg.php:396 +msgid "Visual Only" +msgstr "Visuel seulement" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:397 +msgid "Text Only" +msgstr "Texte brut seulement" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:404 +msgid "Toolbar" +msgstr "Barre d‘outils" + +# @ acf +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Show Media Upload Buttons?" +msgstr "Afficher le bouton d‘ajout de média?" + +#: includes/fields/class-acf-field-wysiwyg.php:429 +msgid "Delay initialization?" +msgstr "Retarder l’initialisation?" + +#: includes/fields/class-acf-field-wysiwyg.php:430 +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/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353 +msgid "Title" +msgstr "Titre" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "Valider l’adresse courriel" + +# @ acf +#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 +#: pro/options-page.php:81 +msgid "Update" +msgstr "Mise à jour" + +# @ acf +#: includes/forms/form-front.php:105 +msgid "Post updated" +msgstr "Article mis à jour" + +#: includes/forms/form-front.php:231 +msgid "Spam Detected" +msgstr "Pourriel repéré" + +#: includes/forms/form-user.php:336 +#, php-format +msgid "ERROR: %s" +msgstr "ERREUR : %s" + +# @ acf +#: includes/locations-new.php:23 +#, php-format +msgid "Class \"%s\" does not exist." +msgstr "La classe \"%s\" n’existe pas." + +#: includes/locations-new.php:34 +#, php-format +msgid "Location type \"%s\" is already registered." +msgstr "Le type d’emplacement \"%s\" est déjà enregistré." + +# @ acf +#: includes/locations-new.php:97 includes/locations.php:93 +#: includes/locations/class-acf-location-post.php:20 +msgid "Post" +msgstr "Article" + +# @ acf +#: includes/locations-new.php:98 includes/locations.php:94 +#: includes/locations/class-acf-location-page.php:20 +msgid "Page" +msgstr "Page" + +# @ acf +#: includes/locations-new.php:100 includes/locations.php:96 +msgid "Forms" +msgstr "Formulaires" + +#: includes/locations-new.php:172 includes/locations.php:243 +#: includes/locations/abstract-acf-location.php:95 +msgid "is equal to" +msgstr "est égal à" + +#: includes/locations-new.php:173 includes/locations.php:244 +#: includes/locations/abstract-acf-location.php:96 +msgid "is not equal to" +msgstr "n‘est pas égal à" + +#: includes/locations/class-acf-location-attachment.php:20 +msgid "Attachment" +msgstr "Fichier attaché" + +#: includes/locations/class-acf-location-attachment.php:82 +#, php-format +msgid "All %s formats" +msgstr "Tous les formats %s" + +#: includes/locations/class-acf-location-comment.php:20 +msgid "Comment" +msgstr "Commentaire" + +# @ acf +#: includes/locations/class-acf-location-current-user-role.php:20 +msgid "Current User Role" +msgstr "Rôle de l’utilisateur courant" + +#: includes/locations/class-acf-location-current-user-role.php:75 +msgid "Super Admin" +msgstr "Super Administrateur" + +#: includes/locations/class-acf-location-current-user.php:20 +msgid "Current User" +msgstr "Utilisateur courant" + +#: includes/locations/class-acf-location-current-user.php:69 +msgid "Logged in" +msgstr "Connecté" + +#: includes/locations/class-acf-location-current-user.php:70 +msgid "Viewing front end" +msgstr "Est dans le site" + +#: includes/locations/class-acf-location-current-user.php:71 +msgid "Viewing back end" +msgstr "Est dans l’interface d’administration" + +#: includes/locations/class-acf-location-nav-menu-item.php:20 +msgid "Menu Item" +msgstr "Élément de menu" + +#: includes/locations/class-acf-location-nav-menu.php:20 +msgid "Menu" +msgstr "Menu" + +# @ acf +#: includes/locations/class-acf-location-nav-menu.php:78 +msgid "Menu Locations" +msgstr "Emplacement de menu" + +# @ acf +#: includes/locations/class-acf-location-page-parent.php:20 +msgid "Page Parent" +msgstr "Page parente" + +#: includes/locations/class-acf-location-page-template.php:20 +msgid "Page Template" +msgstr "Modèle de page" + +# @ acf +#: includes/locations/class-acf-location-page-template.php:71 +#: includes/locations/class-acf-location-post-template.php:83 +msgid "Default Template" +msgstr "Modèle de base" + +# @ acf +#: includes/locations/class-acf-location-page-type.php:20 +msgid "Page Type" +msgstr "Type de page" + +#: includes/locations/class-acf-location-page-type.php:105 +msgid "Front Page" +msgstr "Page d’accueil" + +#: includes/locations/class-acf-location-page-type.php:106 +msgid "Posts Page" +msgstr "Page des articles" + +#: includes/locations/class-acf-location-page-type.php:107 +msgid "Top Level Page (no parent)" +msgstr "Page de haut niveau (sans parent)" + +#: includes/locations/class-acf-location-page-type.php:108 +msgid "Parent Page (has children)" +msgstr "Page parente (avec page(s) enfant)" + +#: includes/locations/class-acf-location-page-type.php:109 +msgid "Child Page (has parent)" +msgstr "Page enfant (avec parent)" + +#: includes/locations/class-acf-location-post-category.php:20 +msgid "Post Category" +msgstr "Catégorie" + +# @ acf +#: includes/locations/class-acf-location-post-format.php:20 +msgid "Post Format" +msgstr "Format d‘article" + +# @ acf +#: includes/locations/class-acf-location-post-status.php:20 +msgid "Post Status" +msgstr "Statut de l’article" + +# @ acf +#: includes/locations/class-acf-location-post-taxonomy.php:20 +msgid "Post Taxonomy" +msgstr "Taxonomie" + +#: includes/locations/class-acf-location-post-template.php:20 +msgid "Post Template" +msgstr "Modèle d’article" + +# @ acf +#: includes/locations/class-acf-location-user-form.php:20 +msgid "User Form" +msgstr "Formulaire utilisateur" + +#: includes/locations/class-acf-location-user-form.php:66 +msgid "Add / Edit" +msgstr "Ajouter / Modifier" + +#: includes/locations/class-acf-location-user-form.php:67 +msgid "Register" +msgstr "Inscription" + +# @ acf +#: includes/locations/class-acf-location-user-role.php:22 +msgid "User Role" +msgstr "Rôle utilisateur" + +#: includes/locations/class-acf-location-widget.php:20 +msgid "Widget" +msgstr "Widget" + +# @ default +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "La valeur %s est requise" + +# @ acf +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/admin/admin-options-page.php:198 +msgid "Publish" +msgstr "Publier" + +# @ default +#: pro/admin/admin-options-page.php:204 +#, php-format +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:49 +msgid "Error. Could not connect to update server" +msgstr "Erreur. Impossible de joindre le serveur" + +# @ acf +#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Mises à jour" + +#: pro/admin/admin-updates.php:191 +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/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Désactiver la licence" + +# @ acf +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Activer votre licence" + +# @ acf +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "Informations sur la licence" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +msgstr "Code de licence" + +# @ 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" + +# @ acf +#: pro/admin/views/html-settings-updates.php:92 +msgid "Update Plugin" +msgstr "Mettre à jour l’extension" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "Entrez votre clé de licence ci-dessus pour activer les mises à jour" + +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "Vérifier à nouveau" + +# @ wp3i +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "Informations de mise à niveau" + +# @ default +#: pro/blocks.php:36 +msgid "Block type name is required." +msgstr "Le nom de type de bloc est requis." + +#: pro/blocks.php:43 +#, php-format +msgid "Block type \"%s\" is already registered." +msgstr "Le type de bloc \"%s\" est déjà enregistré." + +#: pro/blocks.php:393 +msgid "Switch to Edit" +msgstr "Passer en Édition" + +#: pro/blocks.php:394 +msgid "Switch to Preview" +msgstr "Passer en Prévisualisation" + +#: pro/blocks.php:397 +#, php-format +msgid "%s settings" +msgstr "Réglages de %s" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Clone" + +#: pro/fields/class-acf-field-clone.php:812 +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:829 +msgid "Display" +msgstr "Format d’affichage" + +#: pro/fields/class-acf-field-clone.php:830 +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:835 +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:836 +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:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "Les labels seront affichés en tant que %s" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "Préfixer les labels de champs" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "Les valeurs seront enregistrées en tant que %s" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "Préfixer les noms de champs" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "Champ inconnu" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "Groupe de champ inconnu" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "Tous les champs du groupe %s" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:468 +msgid "Add Row" +msgstr "Ajouter un élément" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:924 +#: pro/fields/class-acf-field-flexible-content.php:1006 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "mise-en-forme" +msgstr[1] "mises-en-forme" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:74 +msgid "layouts" +msgstr "mises-en-forme" + +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:923 +#: pro/fields/class-acf-field-flexible-content.php:1005 +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:78 +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:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} disponible (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} requis (min {min})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:85 +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:287 +#, php-format +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:413 +msgid "Add layout" +msgstr "Ajouter une mise-en-forme" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Remove layout" +msgstr "Retirer la mise-en-forme" + +#: pro/fields/class-acf-field-flexible-content.php:415 +#: pro/fields/class-acf-field-repeater.php:301 +msgid "Click to toggle" +msgstr "Cliquer pour intervertir" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder Layout" +msgstr "Réorganiser la mise-en-forme" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder" +msgstr "Réorganiser" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete Layout" +msgstr "Supprimer la mise-en-forme" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate Layout" +msgstr "Dupliquer la mise-en-forme" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New Layout" +msgstr "Ajouter une nouvelle mise-en-forme" + +#: pro/fields/class-acf-field-flexible-content.php:629 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:642 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:669 +#: pro/fields/class-acf-field-repeater.php:464 +msgid "Button Label" +msgstr "Intitulé du bouton" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:678 +msgid "Minimum Layouts" +msgstr "Nombre minimum de mises-en-forme" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:687 +msgid "Maximum Layouts" +msgstr "Nombre maximum de mises-en-forme" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Ajouter l’image à la galerie" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Nombre de sélections maximales atteint" + +#: pro/fields/class-acf-field-gallery.php:322 +msgid "Length" +msgstr "Longueur" + +#: pro/fields/class-acf-field-gallery.php:362 +msgid "Caption" +msgstr "Légende" + +#: pro/fields/class-acf-field-gallery.php:371 +msgid "Alt Text" +msgstr "Texte alternatif" + +#: pro/fields/class-acf-field-gallery.php:487 +msgid "Add to gallery" +msgstr "Ajouter à la galerie" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Bulk actions" +msgstr "Actions de groupe" + +#: pro/fields/class-acf-field-gallery.php:492 +msgid "Sort by date uploaded" +msgstr "Ordonner par date d’import" + +#: pro/fields/class-acf-field-gallery.php:493 +msgid "Sort by date modified" +msgstr "Ranger par date de modification" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:494 +msgid "Sort by title" +msgstr "Ranger par titre" + +#: pro/fields/class-acf-field-gallery.php:495 +msgid "Reverse current order" +msgstr "Inverser l’ordre actuel" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Close" +msgstr "Fermer" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Insert" +msgstr "Insérer" + +#: pro/fields/class-acf-field-gallery.php:581 +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:585 +msgid "Append to the end" +msgstr "Ajouter à la fin" + +#: pro/fields/class-acf-field-gallery.php:586 +msgid "Prepend to the beginning" +msgstr "Insérer au début" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:605 +msgid "Minimum Selection" +msgstr "Nombre minimum" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:613 +msgid "Maximum Selection" +msgstr "Nombre maximum" + +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:661 +msgid "Minimum rows reached ({min} rows)" +msgstr "Nombre minimum d’éléments atteint ({min} éléments)" + +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "Nombre maximum d’éléments atteint ({max} éléments)" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:338 +msgid "Add row" +msgstr "Ajouter un élément" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:339 +msgid "Remove row" +msgstr "Retirer l’élément" + +#: pro/fields/class-acf-field-repeater.php:417 +msgid "Collapsed" +msgstr "Replié" + +#: pro/fields/class-acf-field-repeater.php:418 +msgid "Select a sub field to show when row is collapsed" +msgstr "Choisir un sous champ à afficher lorsque l’élément est replié" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:428 +msgid "Minimum Rows" +msgstr "Nombre minimum d’éléments" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:438 +msgid "Maximum Rows" +msgstr "Nombre maximum d’éléments" + +#: pro/locations/class-acf-location-options-page.php:80 +msgid "No options pages exist" +msgstr "Aucune page d’option n’existe" + +# @ acf +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Options mises à jours" + +#: pro/updates.php:97 +#, php-format +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." + +# @ acf +#: tests/basic/test-blocks.php:114 +msgid "Normal" +msgstr "Normal" + +#: tests/basic/test-blocks.php:115 +msgid "Fancy" +msgstr "Élaboré" + +#. Plugin URI of the plugin/theme +#. Author URI of the plugin/theme +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Description of the plugin/theme +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Personnalisez WordPress avec des champs intuitifs, puissants et " +"professionnels." + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "Elliot Condon" diff --git a/lang/pro/acf-fr_FR.po b/lang/pro/acf-fr_FR.po new file mode 100644 index 0000000..e3b61ff --- /dev/null +++ b/lang/pro/acf-fr_FR.po @@ -0,0 +1,2907 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:03+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Français\n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Loco-Version: 2.6.2; wp-6.0\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +# @ acf +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Le nom du type de bloc est obligatoire." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Le type de bloc \"%s\" est déjà déclaré." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Passer en mode Édition" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Passer en mode Aperçu" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Modifier l’alignement du contenu" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "Réglages de %s " + +#: pro/blocks.php:949 +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:955 +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:47 +msgid "Options" +msgstr "Options" + +# @ acf +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Mise à jour" + +# @ 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Vérifier à nouveau" + +#: pro/updates.php:561 +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" + +# @ acf +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Modifier le groupe de champs" + +#: pro/admin/admin-updates.php:52 +msgid "Error. Could not connect to update server" +msgstr "Erreur. Impossible de joindre le serveur" + +# @ acf +#: pro/admin/admin-updates.php:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Mises à jour" + +#: pro/admin/admin-updates.php:209 +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:196 +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:25 +msgctxt "noun" +msgid "Clone" +msgstr "Clone" + +# @ acf +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Champs" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Format d’affichage" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Remplace ce champ par les champs sélectionnés" + +# @ acf +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Disposition" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Définit le style utilisé pour générer les champs sélectionnés" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Bloc" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tableau" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Rangée" + +#: pro/fields/class-acf-field-clone.php:864 +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:869 +msgid "Prefix Field Labels" +msgstr "Préfixer les libellés de champs" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Les valeurs seront enregistrées en tant que %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Préfixer les noms de champs" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Champ inconnu" + +# @ acf +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(aucun titre)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Groupe de champ inconnu" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Tous les champs du groupe %s" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Contenu flexible" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Ajouter un élément" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "disposition" +msgstr[1] "dispositions" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "dispositions" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} disponible (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} required (min {min})" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:83 +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:276 +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" + +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Glisser pour réorganiser" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Ajouter une disposition" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Dupliquer la disposition" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Retirer la disposition" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Cliquer pour afficher/cacher" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Réorganiser la disposition" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Réorganiser" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Supprimer la disposition" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Supprimer" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliquer la disposition" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Dupliquer" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Ajouter une disposition" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Ajouter" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Intitulé" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Nom" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Intitulé du bouton" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Nombre minimum de dispositions" + +# @ acf +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Nombre maximum de dispositions" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +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:1715 +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:1731 +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." + +# @ acf +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Ajouter l’image à la galerie" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Nombre de sélections maximales atteint" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Longueur" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Modifier" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Enlever" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Titre" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Légende" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Texte alternatif" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Description" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Ajouter à la galerie" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Actions de groupe" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Ranger par date d’import" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Ranger par date de modification" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Ranger par titre" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Inverser l’ordre actuel" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Appliquer" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Format dans le modèle" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Données de l’image (tableau)" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "URL de l'image" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "ID de l'image" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Taille de prévisualisation" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Insérer" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Définir comment les images sont insérées" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Insérer à la fin" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Insérer au début" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Médias" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Limiter le choix de la médiathèque" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Tous" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Liés à cette publication" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimum d’images" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maximum d’images" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimum" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Restreindre les images téléversées" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Largeur" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Hauteur" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Poids du fichier" + +# @ acf +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maximum" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Types de fichiers autorisés" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Listez les extensions autorisées en les séparant par une virgule. Laissez " +"vide pour autoriser toutes les extensions" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "Vous devez sélectionner au moins %2$s élément pour le champ %1$s" +msgstr[1] "Vous devez sélectionner au moins %2$s éléments pour le champ %1$s" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Répéteur" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Nombre minimal d’éléments atteint ({min} éléments)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Nombre maximal d’éléments atteint ({max} éléments)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "Erreur de chargement de la page" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Sous-champs" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Replié" + +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "Choisir un sous champ à montrer lorsque la ligne est refermée" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:187 +msgid "Minimum Rows" +msgstr "Nombre minimum d’éléments" + +# @ acf +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Nombre maximum d’éléments" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "Pagination" + +#: pro/fields/class-acf-field-repeater.php:229 +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:240 +msgid "Rows Per Page" +msgstr "Lignes par Page" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "Définir le nombre de lignes à afficher sur une page." + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "Nonce invalide." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "Clé de champ invalide" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "Il y a une erreur lors de la récupération du champ." + +# @ acf +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Ajouter un élément" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Dupliquer la ligne" + +# @ acf +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Retirer l’élément" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "Page actuelle" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "Première page" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "Page précédente" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s sur %2$s" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "Page suivante" + +#: pro/fields/class-acf-repeater-table.php:469 +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" + +# @ acf +#: pro/locations/class-acf-location-options-page.php:22 +msgid "Options Page" +msgstr "Page d'options" + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Informations de mise à jour" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Version actuelle" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Dernière version" + +# @ acf +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Mise à jour disponible" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Non" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Oui" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Entrez votre clé de licence ci-dessous pour activer les mises à jour" + +# @ acf +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Mettre à jour l’extension" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "Veuillez réactiver votre licence afin de débloquer les mises à jour" + +# @ acf +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Améliorations" + +# @ wp3i +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Améliorations" + +#~ msgid "%1$s is not one of %2$s" +#~ msgstr "%1$s ne correspond pas à %2$s" + +#~ 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] "" +#~ "Le type de publication sélectionné dans le champ %1$s doit impérativement " +#~ "être %2$s." +#~ msgstr[1] "" +#~ "Le type de publication sélectionné dans le champ %1$s doit correspondre à " +#~ "l’une des valeurs suivantes : %2$s" + +#~ 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] "" +#~ "Le rôle de l’utilisateur sélectionné dans le champ %1$s doit " +#~ "impérativement être : %2$s" +#~ msgstr[1] "" +#~ "L’utilisateur sélectionné dans le champ %1$s doit avoir l’un des rôles " +#~ "suivants : %2$s" + +#~ msgid "%1$s must have a valid post ID." +#~ msgstr "%1s doit contenir un ID de publication valide." + +#~ msgid "%1$s must have a valid user ID." +#~ msgstr "%1s doit contenir un ID de compte valide." + +#~ 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 correspondre au terme %2$s." +#~ msgstr[1] "%1$s doit correspondre à l’un des termes suivants : %2$s" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d champs requièrent votre attention" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s ajouté" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s existe déjà" + +#~ msgid "%s requires a valid attachment ID." +#~ msgstr "%s nécessite un ID de média attaché valide." + +# @ default +#, php-format +#~ msgid "%s value is required" +#~ msgstr "La valeur %s est requise" + +#~ msgid "'%s' is not a valid email address" +#~ msgstr "'%s' n’est pas une adresse e-mail valide" + +#~ msgid "(no label)" +#~ msgstr "(aucun libellé)" + +#~ msgid "(this field)" +#~ msgstr "(ce champ)" + +# @ acf +#~ msgid "+ Add Field" +#~ msgstr "+ Ajouter un champ" + +#~ msgid "1 field requires attention" +#~ msgstr "1 champ requiert votre attention" + +#, php-format +#~ 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 "" +#~ "Forums. Nous avons une communauté " +#~ "active et amicale sur nos forums qui pourrait être capable de vous aider " +#~ "quant aux bonnes pratiques de l’univers ACF." + +#, php-format +#~ msgid "" +#~ "Documentation. Our extensive " +#~ "documentation contains references and guides for most situations you may " +#~ "encounter." +#~ msgstr "" +#~ "Documentation. Notre documentation " +#~ "est très complète et contient les ressources et exemples pour faire face " +#~ "à toutes les situations que vous devriez rencontrer." + +#, php-format +#~ msgid "" +#~ "Help Desk. The support professionals " +#~ "on our Help Desk will assist with your more in depth, technical " +#~ "challenges." +#~ msgstr "" +#~ "Support. Nos professionnels du " +#~ "support vous assisteront en profondeur pour vos soucis les plus " +#~ "techniques." + +# @ acf +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Sélectionnez les champs que vous souhaitez masquer sur la " +#~ "page d‘édition." + +#~ 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 tentatives de " +#~ "récupération des valeurs de champs ACF avant que ACF n’ait été " +#~ "initialisé. Vous pourriez rencontrer des problème de données manquantes " +#~ "ou erronées. Découvre comment résoudre " +#~ "ce problème." + +#, php-format +#~| msgid "ERROR: %s" +#~ msgid "Error: %s" +#~ msgstr "Erreur : %s" + +#~ msgid "A block for testing JS." +#~ msgstr "Un bloc pour tester JS." + +#~ msgid "Accordion" +#~ msgstr "Accordéon" + +#~ msgid "Active" +#~ msgstr "Actif" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Actif (%s)" +#~ msgstr[1] "Actifs (%s)" + +# @ acf +#~ msgid "Add" +#~ msgstr "Ajouter" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "Ajouter « autre » pour autoriser une valeur personnalisée" + +#~ msgid "Add / Edit" +#~ msgstr "Ajouter / Modifier" + +# @ acf +#~ msgid "Add File" +#~ msgstr "Ajouter un fichier" + +# @ acf +#~ msgid "Add Image" +#~ msgstr "Ajouter une image" + +#~ msgid "Add new choice" +#~ msgstr "Ajouter un choix" + +# @ acf +#~ msgid "Add New Field" +#~ msgstr "Ajouter un champ" + +# @ acf +#~ msgid "Add New Field Group" +#~ msgstr "Ajouter un nouveau groupe de champs" + +# @ acf +#~ msgid "Add rule group" +#~ msgstr "Ajouter une règle" + +# @ acf +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ 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 "" +#~ "Les extensions Advanced Custom Fields et Advanced Custom Fields PRO ne " +#~ "doivent pas être activés simultanément. Nous avons automatiquement " +#~ "désactivé Advanced Custom Fields PRO." + +#~ 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 "" +#~ "Les extensions Advanced Custom Fields et Advanced Custom Fields PRO ne " +#~ "doivent pas être activés simultanément. Nous avons automatiquement " +#~ "désactivé Advanced Custom Fields." + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Tous les formats %s" + +# @ acf +#~ msgid "All images" +#~ msgstr "Toutes les images" + +#~ msgid "All post types" +#~ msgstr "Tous les types de publication" + +#~ msgid "All taxonomies" +#~ msgstr "Toutes les taxonomies" + +#~ msgid "All user roles" +#~ msgstr "Tous les rôles utilisateurs" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Permet l’ajout d’une valeur personnalisée" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Afficher les pages d’archives" + +#~ msgid "Allow Custom" +#~ msgstr "Permettra une valeur personnalisée" + +#~ 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" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Autoriser la création de nouveaux termes pendant l’édition" + +# @ acf +#~ msgid "Allow Null?" +#~ msgstr "Autoriser une valeur vide ?" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Permettre à cet accordéon de s'ouvrir sans refermer les autres." + +#~ msgid "and" +#~ msgstr "et" + +#~ msgid "Appearance" +#~ msgstr "Apparence" + +#~ msgid "Appears after the input" +#~ msgstr "Apparait après le champ" + +#~ msgid "Appears before the input" +#~ msgstr "Apparait avant le champ" + +#~ msgid "Appears when creating a new post" +#~ msgstr "Valeur affichée à la création d’une publication" + +#~ msgid "Appears within the input" +#~ msgstr "Apparait dans le champ (placeholder)" + +#~ msgid "Append" +#~ msgstr "Suffixe" + +#~ msgid "Archives" +#~ msgstr "Archives" + +# @ acf +#~ msgid "Are you sure?" +#~ msgstr "Confirmez-vous cette action ?" + +#~ msgid "Attachment" +#~ msgstr "Média (photo, fichier…)" + +#~ msgid "Attachments" +#~ msgstr "Médias" + +#~ msgid "Author" +#~ msgstr "Auteur" + +#~ msgid "Automatically add <br>" +#~ msgstr "Ajouter <br> automatiquement" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Ajouter des paragraphes automatiquement" + +#~ msgid "Awaiting save" +#~ msgstr "En attente d’une sauvegarde" + +#~ msgid "Back to all tools" +#~ msgstr "Retour aux outils" + +#~ msgid "Basic" +#~ msgstr "Champs basiques" + +#, php-format +#~ 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 Champs, nous vous recommandons de " +#~ "lire notre Guide de démarrage afin " +#~ "de vous familiariser avec la philosophie et les bonnes pratiques de " +#~ "l’extension." + +# @ acf +#~ msgid "Below fields" +#~ msgstr "Sous les champs" + +# @ acf +#~ msgid "Below labels" +#~ msgstr "Sous les intitulés" + +#~ msgid "Blocks" +#~ msgstr "Blocs" + +#~ msgid "Both (Array)" +#~ msgstr "Les deux (tableau)" + +#~ msgid "Button Group" +#~ msgstr "Groupe de boutons" + +#~ msgid "Cancel" +#~ msgstr "Annuler" + +#~ msgid "Categories" +#~ msgstr "Catégories" + +#~ msgid "Center" +#~ msgstr "Centre" + +#~ msgid "Center the initial map" +#~ msgstr "Position géographique du centre de la carte" + +#~ msgid "Character Limit" +#~ msgstr "Limite de caractères" + +# @ acf +#~ msgid "Checkbox" +#~ msgstr "Case à cocher" + +#~ msgid "Checked" +#~ msgstr "Coché" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Page enfant (avec parent)" + +# @ acf +#~ msgid "Choice" +#~ msgstr "Choix" + +# @ acf +#~ msgid "Choices" +#~ msgstr "Choix" + +#~ msgid "class" +#~ msgstr "classe" + +# @ acf +#, php-format +#~ msgid "Class \"%s\" does not exist." +#~ msgstr "La classe \"%s\" n’existe pas" + +#~ msgid "Clear" +#~ msgstr "Effacer" + +#~ msgid "Clear color" +#~ msgstr "Effacer la couleur" + +# @ acf +#~ msgid "Clear location" +#~ msgstr "Effacer la position" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Cliquez pour initialiser TinyMCE" + +#~ msgid "Clone (Pro only)" +#~ msgstr "Cloner (fonctionnalité Pro)" + +# @ acf +#~ msgid "Close Field" +#~ msgstr "Fermer le champ" + +# @ acf +#~ msgid "Close Window" +#~ msgstr "Fermer la fenêtre" + +#~ msgid "Collapse Details" +#~ msgstr "Masquer les détails" + +# @ acf +#~ msgid "Color Picker" +#~ msgstr "Couleur" + +#~ msgid "Color value" +#~ msgstr "Valeur de la couleur" + +#~ msgid "Comment" +#~ msgstr "Commentaire" + +#~ msgid "Comments" +#~ msgstr "Commentaires" + +#~ msgid "Conditional Logic" +#~ msgstr "Logique conditionnelle" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Lier les termes sélectionnés à la publication" + +#~ msgid "Content" +#~ msgstr "Contenu" + +#~ msgid "Content Editor" +#~ msgstr "Éditeur de contenu" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Comment sont interprétés les sauts de lignes" + +#~ msgid "Copied" +#~ msgstr "Copié" + +#~ msgid "copy" +#~ msgstr "copie" + +#~ msgid "Copy to clipboard" +#~ msgstr "Copier dans le presse-papiers" + +# @ acf +#~ 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é" + +# @ acf +#~ msgid "Create Terms" +#~ msgstr "Créer des termes" + +#~ msgid "Current User" +#~ msgstr "Utilisateur actuel" + +# @ acf +#~ msgid "Current User Role" +#~ msgstr "Rôle utilisateur actuel" + +# @ acf +#~ msgid "Custom Fields" +#~ msgstr "ACF" + +#~ msgid "Custom:" +#~ msgstr "Personnalisé :" + +#~ msgid "Customize the map height" +#~ msgstr "Personnaliser la hauteur de la carte" + +#~ msgid "" +#~ "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "Personnalisez WordPress avec des champs intuitifs, puissants et " +#~ "professionnels." + +#, php-format +#~ 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" + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "Mise à niveau de la base de données terminée. Consulter " +#~ "les nouveautés" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Mise à jour de la base de données nécessaire" + +# @ acf +#~ msgid "Date Picker" +#~ msgstr "Date" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Valider" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Aujourd’hui" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Suivant" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Précédent" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "Sem" + +#~ msgid "Date Time Picker" +#~ msgstr "Date et Heure" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "A" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Valider" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Maintenant" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Heure" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Microseconde" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Milliseconde" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minute" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "P" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Seconde" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Valider" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Choix de l’heure" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Heure" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Fuseau horaire" + +# @ acf +#~ msgid "Default" +#~ msgstr "Valeur par défaut" + +# @ acf +#~ msgid "Default Template" +#~ msgstr "Modèle de base" + +# @ acf +#~ msgid "Default Value" +#~ msgstr "Valeur par défaut" + +#~ msgid "" +#~ "Define an endpoint for the previous accordion to stop. This accordion " +#~ "will not be visible." +#~ msgstr "" +#~ "Définir un point de terminaison pour arrêter l’accordéon. Cet accordéon " +#~ "ne sera pas visible." + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Définir un point de terminaison pour arrêter les précédents onglets. Cela " +#~ "va commencer un nouveau groupe d’onglets." + +#~ msgid "Delay initialization?" +#~ msgstr "Retarder l’initialisation ?" + +# @ acf +#~ msgid "Delete field" +#~ msgstr "Supprimer ce champ" + +#~ msgid "Delicious Brains" +#~ msgstr "Delicious Brains" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Désactivé (%s)" +#~ msgstr[1] "Désactivés (%s)" + +#~ msgid "Discussion" +#~ msgstr "Discussion" + +#~ msgid "Display a random hero image." +#~ msgstr "Affiche une bannière imagée" + +# @ acf +#~ msgid "Display Format" +#~ msgstr "Format dans l’administration" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "Ouvrir l’accordéon au chargement de la page." + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Affiche le texte à côté de la case à cocher" + +# @ acf +#~ msgid "Duplicate field" +#~ msgstr "Dupliquer ce champ" + +# @ acf +#~ msgid "Duplicate this item" +#~ msgstr "Dupliquer cet élément" + +# @ acf +#~ msgid "Edit Field" +#~ msgstr "Modifier le champ" + +# @ acf +#~ msgid "Edit field" +#~ msgstr "Modifier ce champ" + +# @ acf +#~ msgid "Edit Field Group" +#~ msgstr "Modifier le groupe de champs" + +# @ acf +#~ msgid "Edit File" +#~ msgstr "Modifier le fichier" + +# @ acf +#~ msgid "Edit Image" +#~ msgstr "Modifier l’image" + +#~ msgid "Elements" +#~ msgstr "Éléments" + +#~ msgid "Email" +#~ msgstr "E-mail" + +#~ msgid "Embed Size" +#~ msgstr "Dimensions" + +#~ msgid "Enable Transparency" +#~ msgstr "Activer la transparence" + +#~ msgid "Endpoint" +#~ msgstr "Point de terminaison" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Indiquez une valeur par ligne." + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Entrez chaque valeur par défaut sur une nouvelle ligne" + +#~ msgid "Enter URL" +#~ msgstr "Entrez l’URL" + +#~ msgid "Error loading field." +#~ msgstr "Erreur pendant le chargement du champ." + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Échec de l'import du fichier. Merci de réessayer" + +#~ msgid "Escape HTML" +#~ msgstr "Autoriser le code HTML" + +#~ msgid "Excerpt" +#~ msgstr "Extrait" + +#~ msgid "Expand Details" +#~ msgstr "Afficher les détails" + +# @ acf +#~ msgid "Export Field Groups" +#~ msgstr "Exporter les groupes de champs" + +#~ msgid "Export File" +#~ msgstr "Exporter le fichier" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "1 groupe de champ a été exporté." +#~ msgstr[1] "%s groupes de champs ont été exportés." + +# @ acf +#~ msgid "Featured Image" +#~ msgstr "Image à la Une" + +# @ acf +#~ msgid "Field" +#~ msgstr "Champ" + +# @ acf +#~ msgid "Field Group" +#~ msgstr "Groupe de champs" + +# @ default +#~ msgid "Field group deleted." +#~ msgstr "Groupe de champs supprimé." + +#~ msgid "Field group draft updated." +#~ msgstr "Brouillon du groupe de champs mis à jour." + +#, php-format +#~ msgid "Field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "Groupe de champs dupliqué." +#~ msgstr[1] "%s groupes de champs dupliqués." + +# @ default +#~ msgid "Field group published." +#~ msgstr "Groupe de champ publié." + +# @ default +#~ msgid "Field group saved." +#~ msgstr "Groupe de champ enregistré." + +#~ msgid "Field group scheduled for." +#~ msgstr "Groupe de champs programmé pour." + +# @ default +#~ msgid "Field group submitted." +#~ msgstr "Groupe de champ enregistré." + +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Groupe de champs synchronisé." +#~ msgstr[1] "%s groupes de champs synchronisés." + +# @ default +#~ msgid "Field group title is required" +#~ msgstr "Veuillez indiquer un titre pour le groupe de champs" + +# @ default +#~ msgid "Field group updated." +#~ msgstr "Groupe de champs mis à jour." + +# @ acf +#~ msgid "Field Groups" +#~ msgstr "Groupes de champs" + +#~ 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" + +#~ msgid "Field Keys" +#~ msgstr "Identifiants des champs" + +# @ acf +#~ msgid "Field Label" +#~ msgstr "Titre du champ" + +# @ acf +#~ msgid "Field Name" +#~ msgstr "Nom du champ" + +# @ acf +#~ msgid "Field Type" +#~ msgstr "Type de champ" + +# @ acf +#~ msgid "Field type does not exist" +#~ msgstr "Ce type de champ n‘existe pas" + +# @ acf +#~ msgid "File" +#~ msgstr "Fichier" + +#~ msgid "File Array" +#~ msgstr "Données du fichier (tableau)" + +# @ acf +#~ msgid "File ID" +#~ msgstr "ID du Fichier" + +# @ acf +#~ msgid "File name" +#~ msgstr "Nom du fichier" + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Le poids de l’image doit être d’au moins %s." + +#, php-format +#~ msgid "File size must not exceed %s." +#~ msgstr "Le poids du fichier ne doit pas dépasser %s." + +# @ acf +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Le type de fichier doit être %s." + +# @ acf +#~ msgid "File URL" +#~ msgstr "URL du fichier" + +#~ msgid "Filter by Post Type" +#~ msgstr "Filtrer par type de publication" + +#~ msgid "Filter by role" +#~ msgstr "Filtrer par rôle" + +# @ acf +#~ msgid "Filter by Taxonomy" +#~ msgstr "Filtrer par taxonomie" + +#~ msgid "Filters" +#~ msgstr "Filtres" + +#~ msgid "Find current location" +#~ msgstr "Trouver l’emplacement actuel" + +#~ msgid "Flexible Content (Pro only)" +#~ msgstr "Contenu flexible (fonctionnalité Pro)" + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "" +#~ "Pour un contrôle plus poussé, vous pouvez spécifier la valeur et le " +#~ "libellé de cette manière :" + +# @ acf +#~ msgid "Format" +#~ msgstr "Format" + +# @ acf +#~ msgid "Forms" +#~ msgstr "Formulaires" + +#~ msgid "Front Page" +#~ msgstr "Page d’accueil" + +#~ msgid "Full Size" +#~ msgstr "Taille originale" + +#~ msgid "Gallery (Pro only)" +#~ msgstr "Galerie (fonctionnalité Pro)" + +#~ msgid "Generate PHP" +#~ msgstr "Générer le PHP" + +#~ msgid "Google Map" +#~ msgstr "Google Map" + +# @ acf +#~ msgid "Group" +#~ msgstr "Groupe" + +#~ msgid "Has any value" +#~ msgstr "A n'importe quelle valeur" + +#~ msgid "Has no value" +#~ msgstr "N'a pas de valeur" + +#~ msgid "Help & Support" +#~ msgstr "Aide & Support" + +#~ msgid "Hero" +#~ msgstr "Bannière" + +#~ msgid "Hex String" +#~ msgstr "Chaîne hexadécimale" + +#~ msgid "Hide on screen" +#~ msgstr "Masquer" + +#~ msgid "High (after title)" +#~ msgstr "Haute (après le titre)" + +#~ msgid "Horizontal" +#~ msgstr "Horizontal" + +#~ msgid "https://www.advancedcustomfields.com" +#~ msgstr "https://www.advancedcustomfields.com" + +#~ msgid "id" +#~ msgstr "id" + +# @ acf +#~ 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." + +# @ acf +#~ msgid "Image" +#~ msgstr "Image" + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "L’image doit mesurer au moins %dpx de hauteur." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "L’image ne doit pas dépasser %dpx de hauteur." + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "L'image doit mesurer au moins %dpx de largeur." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "L'image ne doit pas dépasser %dpx de largeur." + +#~ msgid "Import" +#~ msgstr "Importer" + +# @ acf +#~ msgid "Import Field Groups" +#~ msgstr "Importer les groupes de champs" + +#~ msgid "Import File" +#~ msgstr "Importer le fichier" + +#~ msgid "Import file empty" +#~ msgstr "Le fichier à importer est vide" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "1 groupe de champs importé" +#~ msgstr[1] "%s groupes de champs importés" + +#~ msgid "Incorrect file type" +#~ msgstr "Type de fichier incorrect" + +# @ acf +#~ msgid "Information" +#~ msgstr "Informations" + +# @ acf +#~ msgid "Instruction placement" +#~ msgstr "Emplacement des instructions" + +# @ acf +#~ msgid "Instructions" +#~ msgstr "Instructions" + +# @ acf +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Instructions pour les auteurs. Affichées lors de la saisie du contenu" + +# @ acf +#~ msgid "Invalid field group ID." +#~ msgstr "ID du groupe de champs invalide." + +# @ default +#~ msgid "Invalid field group parameter(s)." +#~ msgstr "Paramètre(s) du groupe de champs invalide." + +#~ msgid "Invalid request." +#~ msgstr "Requête invalide." + +#~ msgid "is equal to" +#~ msgstr "est égal à" + +#~ msgid "is not equal to" +#~ msgstr "n‘est pas égal à" + +#~ 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 ?" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +# @ acf +#~ msgid "JSON field group (newer)" +#~ msgstr "Groupe de champ JSON (plus récent)" + +#~ msgid "Key" +#~ msgstr "Identifiant" + +#~ msgid "Label placement" +#~ msgstr "Emplacement de l'intitulé" + +#~ msgid "Large" +#~ msgstr "Grande" + +# @ acf +#, php-format +#~ msgid "Last updated: %s" +#~ msgstr "Dernière mise à jour : %s" + +#~ msgid "Leave blank for no limit" +#~ msgstr "Laisser vide pour illimité" + +#~ msgid "Left aligned" +#~ msgstr "Aligné à gauche" + +# @ acf +#~ msgid "Link" +#~ msgstr "Lien" + +#~ msgid "Link Array" +#~ msgstr "Données de lien (tableau)" + +# @ acf +#~ msgid "Link URL" +#~ msgstr "URL du Lien" + +#~ msgid "Load Terms" +#~ msgstr "Charger les termes" + +#~ msgid "Load value from posts terms" +#~ msgstr "Charger une valeur depuis les termes" + +#~ msgid "Loading" +#~ msgstr "Chargement" + +#~ msgid "Loading diff" +#~ msgstr "Chargement du différentiel" + +#~ msgid "Local JSON" +#~ msgstr "JSON Local" + +#, php-format +#~ msgid "Located in plugin: %s" +#~ msgstr "Situé dans l’extension : %s" + +#, php-format +#~ msgid "Located in theme: %s" +#~ msgstr "Situé dans le thème : %s" + +# @ acf +#, php-format +#~ msgid "Located in: %s" +#~ msgstr "Situé dans : %s" + +# @ acf +#~ msgid "Location" +#~ msgstr "Emplacement" + +#, php-format +#~ msgid "Location type \"%s\" is already registered." +#~ msgstr "Le type d’emplacement \"%s\" est déjà déclaré." + +#~ msgid "Logged in" +#~ msgstr "Connecté" + +# @ acf +#~ msgid "Maximum posts" +#~ msgstr "Maximum de publications" + +# @ acf +#~ msgid "Maximum Value" +#~ msgstr "Valeur maximale" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Nombre maximal de valeurs atteint ({max} valeurs)" + +#~ msgid "Medium" +#~ msgstr "Moyen" + +#~ msgid "Menu" +#~ msgstr "Menu" + +#~ msgid "Menu Item" +#~ msgstr "Élément de menu" + +#~ msgid "Menu items" +#~ msgstr "Éléments de menu" + +# @ acf +#~ msgid "Menu Locations" +#~ msgstr "Emplacement de menu" + +#~ msgid "Menus" +#~ msgstr "Menus" + +# @ acf +#~ msgid "Message" +#~ msgstr "Message" + +# @ acf +#~ msgid "Minimum posts" +#~ msgstr "Minimum de publications" + +#~ msgid "Minimum Value" +#~ msgstr "Valeur minimale" + +#~ msgid "Move" +#~ msgstr "Déplacer" + +#~ msgid "Move Complete." +#~ msgstr "Déplacement effectué." + +# @ acf +#~ msgid "Move Custom Field" +#~ msgstr "Déplacer le champ personnalisé" + +# @ acf +#~ msgid "Move Field" +#~ msgstr "Déplacer le champ" + +#~ msgid "Move field to another group" +#~ msgstr "Déplacer le champ dans un autre groupe" + +# @ acf +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Mettre à la corbeille. Êtes-vous sûr ?" + +# @ acf +#~ msgid "Multi Select" +#~ msgstr "Sélecteur multiple" + +#~ msgid "Multi-expand" +#~ msgstr "Ouverture multiple" + +# @ acf +#~ msgid "Multiple Values" +#~ msgstr "Valeurs multiples" + +# @ acf +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Texte" + +# @ acf +#~ msgid "New Field" +#~ msgstr "Nouveau champ" + +# @ acf +#~ msgid "New Field Group" +#~ msgstr "Nouveau groupe de champs" + +# @ acf +#~ msgid "New Lines" +#~ msgstr "Nouvelles lignes" + +# @ default +#~ msgid "No Field Groups found" +#~ msgstr "Aucun groupe de champs trouvé" + +# @ default +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Aucun groupe de champs trouvé dans la corbeille" + +# @ acf +#~ msgid "No field groups selected" +#~ msgstr "Aucun groupe de champs n'est sélectionné" + +# @ default +#~ msgid "No Fields found" +#~ msgstr "Aucun champ trouvé" + +# @ default +#~ msgid "No Fields found in Trash" +#~ msgstr "Aucun champ trouvé dans la corbeille" + +# @ acf +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Aucun champ. Cliquez sur le bouton + Ajouter un champ " +#~ "pour créer votre premier champ." + +# @ acf +#~ msgid "No file selected" +#~ msgstr "Aucun fichier sélectionné" + +# @ acf +#~ msgid "No Formatting" +#~ msgstr "Pas de formatage" + +# @ acf +#~ msgid "No image selected" +#~ msgstr "Aucune image sélectionnée" + +#~ msgid "No matches found" +#~ msgstr "Aucun résultat" + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Pas de %s" + +#~ msgid "No toggle fields available" +#~ msgstr "Ajoutez d’abord une case à cocher ou un champ sélection" + +# @ acf +#~ msgid "No updates available." +#~ msgstr "Aucune mise à jour disponible." + +#~ msgid "Normal (after content)" +#~ msgstr "Normal (après le contenu)" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Liste déroulante" + +#~ msgid "Null" +#~ msgstr "Vide" + +#~ msgid "Number" +#~ msgstr "Nombre" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Off Text" +#~ msgstr "Texte côté « Inactif »" + +#~ msgid "On Text" +#~ msgstr "Texte côté « Actif »" + +#~ msgid "Open" +#~ msgstr "Ouvert" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "Ouvrir dans un nouvel onglet" + +#~ msgid "or" +#~ msgstr "ou" + +# @ acf +#~ msgid "Order" +#~ msgstr "Ordre" + +# @ acf +#~ msgid "Order No." +#~ msgstr "Numéro d’ordre" + +# @ acf +#~ msgid "Original field group" +#~ msgstr "Groupe de champ original" + +#~ msgid "Other" +#~ msgstr "Autre" + +#~ msgid "Overview" +#~ msgstr "Aperçu" + +# @ acf +#~ msgid "Page" +#~ msgstr "Page" + +#~ msgid "Page Attributes" +#~ msgstr "Attributs de la page" + +# @ acf +#~ msgid "Page Link" +#~ msgstr "Lien vers la publication" + +# @ acf +#~ msgid "Page Parent" +#~ msgstr "Page parente" + +#~ msgid "Page Template" +#~ msgstr "Modèle de page" + +# @ acf +#~ msgid "Page Type" +#~ msgstr "Type de page" + +#~ msgid "Parent" +#~ msgstr "Parent" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Page parente (avec page enfant)" + +#~ msgid "Password" +#~ msgstr "Mot de passe" + +#~ msgid "Permalink" +#~ msgstr "Permalien" + +#~ msgid "Placeholder Text" +#~ msgstr "Texte d’exemple" + +#~ msgid "Placement" +#~ msgstr "Emplacement" + +#, php-format +#~ msgid "" +#~ "Please also check all premium add-ons (%s) are updated to the latest " +#~ "version." +#~ msgstr "" +#~ "Veuillez également vérifier que tous les add-ons premium (%s) sont à jour " +#~ "avec la dernière version disponible." + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "Merci de sélectionner au moins un site à mettre à niveau." + +# @ acf +#~ msgid "Please select the destination for this field" +#~ msgstr "Choisissez la destination de ce champ" + +#~ msgid "" +#~ "Please use the Help & Support tab to get in touch should you find " +#~ "yourself requiring assistance." +#~ msgstr "" +#~ "Utilisez l’onglet Aide & Support afin de nous contacter dans le cas où " +#~ "vous auriez besoin d’assistance." + +# @ acf +#~ msgid "Position" +#~ msgstr "Position" + +# @ acf +#~ msgid "Post" +#~ msgstr "Publication" + +#~ msgid "Post Category" +#~ msgstr "Catégorie" + +# @ acf +#~ msgid "Post Format" +#~ msgstr "Format d‘article" + +# @ acf +#~ msgid "Post ID" +#~ msgstr "ID de la publication" + +# @ acf +#~ msgid "Post Object" +#~ msgstr "Objet Publication" + +# @ acf +#~ msgid "Post Status" +#~ msgstr "Statut de l’article" + +#~ msgctxt "post status" +#~ msgid "Active" +#~ msgstr "Actif" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Désactivé" + +# @ acf +#~ msgid "Post Taxonomy" +#~ msgstr "Taxonomie" + +#~ msgid "Post Template" +#~ msgstr "Modèle d’article" + +# @ acf +#~ msgid "Post Type" +#~ msgstr "Type de publication" + +# @ acf +#~ msgid "Post updated" +#~ msgstr "Publication mise à jour" + +# @ acf +#~ msgid "Posts" +#~ msgstr "Publications" + +#~ msgid "Posts Page" +#~ msgstr "Page des articles" + +#~ msgid "Prepend" +#~ msgstr "Préfixe" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "Ajouter une case à cocher au début pour intervertir tous les choix" + +# @ acf +#~ msgid "Radio Button" +#~ msgstr "Bouton radio" + +# @ acf +#~ msgid "Radio Buttons" +#~ msgstr "Boutons radio" + +#~ msgid "Range" +#~ msgstr "Curseur numérique" + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Lecture des instructions de mise à niveau…" + +#~ msgid "red : Red" +#~ msgstr "rouge : Rouge" + +#~ msgid "Register" +#~ msgstr "Inscription" + +# @ acf +#~ msgid "Relational" +#~ msgstr "Relationnel" + +# @ acf +#~ msgid "Relationship" +#~ msgstr "Relation" + +#~ msgid "Repeater (Pro only)" +#~ msgstr "Répéteur (fonctionnalité Pro)" + +# @ acf +#~ msgid "Required?" +#~ msgstr "Requis ?" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Restreindre l’import de fichiers" + +#~ msgid "Restricted" +#~ msgstr "Limité" + +# @ acf +#~ msgid "Return Value" +#~ msgstr "Valeur affichée dans le template" + +#~ msgid "Review changes" +#~ msgstr "Voir les changements" + +#~ msgid "Review local JSON changes" +#~ msgstr "Voir les modifications du JSON local" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Examiner les sites et mettre à niveau" + +#~ msgid "Revisions" +#~ msgstr "Révisions" + +#~ msgid "RGBA Array" +#~ msgstr "Tableau RGBA" + +#~ msgid "RGBA String" +#~ msgstr "Chaîne RGBA" + +#~ msgid "Rows" +#~ msgstr "Lignes" + +# @ acf +#~ msgid "Rules" +#~ msgstr "Règles" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "Enregistre la valeur personnalisée dans les choix du champs" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Enregistrer « autre » en tant que choix" + +#~ msgid "Save Custom" +#~ msgstr "Enregistrer la valeur personnalisée" + +#~ msgid "Save Format" +#~ msgstr "Enregistrer le format" + +#~ msgid "Save Other" +#~ msgstr "Enregistrer" + +#~ msgid "Save Terms" +#~ msgstr "Enregistrer les termes" + +#~ msgid "Saved" +#~ msgstr "Enregistré" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Sans contour (directement dans la page)" + +#~ msgid "Search" +#~ msgstr "Rechercher" + +# @ default +#~ msgid "Search Field Groups" +#~ msgstr "Rechercher un groupe de champs" + +# @ default +#~ msgid "Search Fields" +#~ msgstr "Rechercher des champs" + +#~ msgid "Search for address..." +#~ msgstr "Rechercher une adresse…" + +#~ msgid "Search..." +#~ msgstr "Rechercher…" + +# @ acf +#, php-format +#~ msgid "Select %s" +#~ msgstr "Choisir %s" + +# @ acf +#~ msgid "Select Color" +#~ msgstr "Couleur" + +#~ msgid "Select default color" +#~ msgstr "Sélectionner la couleur par défaut" + +# @ default +#~ msgid "Select Field Groups" +#~ msgstr "Sélectionnez les groupes de champs" + +# @ acf +#~ msgid "Select File" +#~ msgstr "Sélectionner un fichier" + +# acf +#~ msgid "Select Image" +#~ msgstr "Sélectionner l‘image" + +# @ acf +#~ msgid "Select Link" +#~ msgstr "Sélectionner un lien" + +# @ acf +#~ msgid "Select multiple values?" +#~ msgstr "Plusieurs valeurs possibles ?" + +#~ msgid "Select post type" +#~ msgstr "Choisissez le type de publication" + +# @ acf +#~ msgid "Select taxonomy" +#~ msgstr "Choisissez la taxonomie" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Sélectionnez le fichier JSON que vous souhaitez importer et cliquez sur " +#~ "« Importer ». ACF s'occupe du reste." + +# @ acf +#~ msgid "Select the appearance of this field" +#~ msgstr "Personnaliser l’apparence de champ" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Sélectionnez les groupes de champs que vous souhaitez exporter puis " +#~ "choisissez ensuite la méthode d'export : le bouton télécharger vous " +#~ "permettra d’exporter un fichier JSON que vous pourrez importer dans une " +#~ "autre installation ACF alors que le bouton « générer » exportera le code " +#~ "PHP que vous pourrez ajouter dans votre thème." + +# @ acf +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Choisissez la taxonomie à afficher" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Veuillez retirer 1 caractère" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Veuillez retirer %d caractères" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Veuillez saisir au minimum 1 caractère" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Veuillez saisir au minimum %d caractères" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Échec du chargement" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Chargement de résultats supplémentaires…" + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Aucun résultat trouvé" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "Un résultat disponible, appuyez sur Entrée pour le sélectionner." + +#, php-format +#~ 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." + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Recherche en cours…" + +#~ 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" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Vous ne pouvez sélectionner que %d éléments" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Les éléments sélectionnés seront affichés dans chaque résultat" + +#~ msgid "Selection is greater than" +#~ msgstr "La sélection est supérieure à" + +#~ msgid "Selection is less than" +#~ msgstr "La sélection est inférieure à" + +#~ msgid "Send Trackbacks" +#~ msgstr "Envoyer des rétroliens" + +#~ msgid "Separator" +#~ msgstr "Séparateur" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Définir le niveau de zoom (0 : monde ; 14 : ville ; 21 : rue)" + +#~ msgid "Sets the textarea height" +#~ msgstr "Hauteur du champ" + +#~ msgid "Settings" +#~ msgstr "Réglages" + +#~ msgid "Show in REST API" +#~ msgstr "Afficher dans l’API REST" + +# @ acf +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Afficher les boutons d‘ajout de médias ?" + +#~ msgid "Show this field group if" +#~ msgstr "Montrer ce groupe quand" + +#~ msgid "Show this field if" +#~ msgstr "Montrer ce champ si" + +#~ msgid "Shown in field group list" +#~ msgstr "Affiché dans la liste des groupes de champs" + +#~ msgid "Side" +#~ msgstr "Sur le côté" + +#~ msgid "Single Value" +#~ msgstr "Valeur unique" + +# @ acf +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "Un seul mot, sans espace.
                              Les « _ » et « - » sont autorisés" + +#~ msgid "Site" +#~ msgstr "Site" + +#~ msgid "Site is up to date" +#~ msgstr "Le site est à jour" + +#, php-format +#~| msgid "Site requires database upgrade from %s to %s" +#~ msgid "Site requires database upgrade from %1$s to %2$s" +#~ msgstr "" +#~ "Le site requiert une mise à niveau de la base de données de %1$s vers %2$s" + +#~ msgid "Slug" +#~ msgstr "Identifiant (slug)" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation" + +#~ msgid "Sorry, this field group is unavailable for diff comparison." +#~ msgstr "" +#~ "Désolé, ce groupe de champs n’est pas disponible pour une comparaison." + +#~ msgid "Spam Detected" +#~ msgstr "Spam repéré" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Spécifier la valeur retournée sur le site" + +#~ msgid "Specify the value returned" +#~ msgstr "Définit la valeur retournée" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Dans un bloc" + +#~ msgid "Step Size" +#~ msgstr "Pas" + +# @ acf +#~ msgid "Style" +#~ msgstr "Style" + +# @ acf +#~ msgid "Stylised UI" +#~ msgstr "Interface avancée" + +#~ msgid "Super Admin" +#~ msgstr "Super Administrateur" + +#~ msgid "Sync" +#~ msgstr "Synchronisation" + +# @ acf +#~ msgid "Sync available" +#~ msgstr "Synchronisation disponible" + +#~ msgid "Sync changes" +#~ msgstr "Synchroniser" + +#~ msgid "Tab" +#~ msgstr "Onglet" + +#~ msgid "Tabs" +#~ msgstr "Onglets" + +#~ msgid "Tags" +#~ msgstr "Mots-clés" + +# @ acf +#~ msgid "Taxonomies" +#~ msgstr "Taxonomies" + +# @ acf +#~ msgid "Taxonomy" +#~ msgstr "Taxonomie" + +#~ msgid "Term ID" +#~ msgstr "ID du terme" + +# @ acf +#~ msgid "Term Object" +#~ msgstr "Objet Terme" + +#~ msgid "Test JS" +#~ msgstr "Test JS" + +# @ acf +#~ msgid "Text" +#~ msgstr "Texte" + +# @ acf +#~ msgid "Text Area" +#~ msgstr "Zone de texte" + +# @ acf +#~ msgid "Text Only" +#~ msgstr "Texte brut seulement" + +#~ msgid "Text shown when active" +#~ msgstr "Text affiché lorsqu’il est actif" + +#~ msgid "Text shown when inactive" +#~ msgstr "Texte affiché lorsqu’il est désactivé" + +#, php-format +#~| msgid "Thank you for updating to %s v%s!" +#~ msgid "Thank you for updating to %1$s v%2$s!" +#~ msgstr "Merci d’avoir mis à jour %1$s v%2$s !" + +#, php-format +#~| msgid "The %s field can now be found in the %s field group" +#~ msgid "The %1$s field can now be found in the %2$s field group" +#~ msgstr "Le champ %1$s a été déplacé dans le groupe %2$s" + +#~ 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 fournit un constructeur visuel vous permettant de " +#~ "personnaliser les écrans de WordPress en ajoutant des champs " +#~ "additionnels, ainsi qu’une API intuitive pour afficher ces valeurs dans " +#~ "tous les modèles de votre thème." + +#~ 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" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Le code suivant peut être utilisé pour enregistrer une version locale du " +#~ "ou des groupes de champs sélectionnés. Un groupe de champ local apporte " +#~ "pas mal de bénéfices tels qu'un temps de chargement plus rapide, la " +#~ "gestion des versions et les champs/paramètres dynamiques. Copiez/collez " +#~ "simplement le code suivant dans le fichier functions.php de votre thème " +#~ "ou incluez-le depuis un autre fichier." + +#, php-format +#~ 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." + +#~ msgid "The format displayed when editing a post" +#~ msgstr "" +#~ "Format affiché lors de l’édition d’une publication depuis l’interface " +#~ "d’administration" + +#~ msgid "The format returned via template functions" +#~ msgstr "Valeur retournée dans le modèle sur le site" + +#~ msgid "The format used when saving a value" +#~ msgstr "Le format enregistré" + +#~ 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_\"" + +#~ 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" + +# @ acf +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "Ce nom apparaîtra sur la page d‘édition" + +#~ 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." + +#~ msgid "Thumbnail" +#~ msgstr "Miniature" + +#~ msgid "Time Picker" +#~ msgstr "Heure" + +#~ msgid "TinyMCE will not be initialized until field is clicked" +#~ msgstr "TinyMCE ne sera pas initialisé tant que le champ n’est pas cliqué" + +#~ msgid "Toggle" +#~ msgstr "Masquer/afficher" + +#~ msgid "Toggle All" +#~ msgstr "Tout masquer/afficher" + +# @ acf +#~ msgid "Toolbar" +#~ msgstr "Barre d‘outils" + +#~ msgid "Tools" +#~ msgstr "Outils" + +#~ msgid "Top aligned" +#~ msgstr "Aligné en haut" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Page de haut niveau (sans descendant)" + +# @ acf +#~ msgid "True / False" +#~ msgstr "Vrai / Faux" + +# @ acf +#~ msgid "Type" +#~ msgstr "Type" + +#~ msgid "Unknown" +#~ msgstr "Inconnu" + +# @ acf +#~ msgid "Update File" +#~ msgstr "Mettre à jour le fichier" + +# @ acf +#~ msgid "Update Image" +#~ msgstr "Mettre à jour" + +#~ msgid "Upgrade complete." +#~ msgstr "Mise à niveau terminée." + +# @ acf +#~ msgid "Upgrade Database" +#~ msgstr "Mise à niveau de la base de données" + +#~ msgid "Upgrade failed." +#~ msgstr "Mise à niveau échouée." + +#~ msgid "Upgrade Sites" +#~ msgstr "Mettre à niveau les sites" + +#~ msgid "Upgrade to Pro" +#~ msgstr "Mettre à niveau vers la version Pro" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Migration des données vers la version %s" + +#~ msgid "Uploaded to this post" +#~ msgstr "Liés à cette publication" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "Utiliser AJAX pour charger les choix dynamiquement (lazy load) ?" + +#~ msgid "User" +#~ msgstr "Utilisateur" + +#~ msgid "User Array" +#~ msgstr "Données de l’Utilisateur (tableau)" + +# @ acf +#~ msgid "User Form" +#~ msgstr "Formulaire utilisateur" + +#~ msgid "User ID" +#~ msgstr "ID de l’utilisateur" + +#~ msgid "User Object" +#~ msgstr "Objet Utilisateur" + +# @ acf +#~ msgid "User Role" +#~ msgstr "Rôle utilisateur" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Utilisateur incapable d’ajouter un nouveau %s" + +#~ msgid "Users" +#~ msgstr "Utilisateurs" + +#~ msgid "Validate Email" +#~ msgstr "Valider l’e-mail" + +#~ msgid "Validation failed" +#~ msgstr "Échec de la validation" + +#~ msgid "Validation successful" +#~ msgstr "Validé avec succès" + +#~ msgid "Value" +#~ msgstr "Valeur" + +#~ msgid "Value contains" +#~ msgstr "La valeur contient" + +#~ msgid "Value is equal to" +#~ msgstr "La valeur est égale à" + +#~ msgid "Value is greater than" +#~ msgstr "La valeur est supérieure à" + +#~ msgid "Value is less than" +#~ msgstr "La valeur est inférieure à" + +#~ msgid "Value is not equal to" +#~ msgstr "La valeur est différente de" + +#~ msgid "Value matches pattern" +#~ msgstr "La valeur correspond au modèle" + +#~ msgid "Value must be a number" +#~ msgstr "La valeur doit être un nombre" + +#~ msgid "Value must be a valid URL" +#~ msgstr "La valeur doit être une URL valide" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "La valeur doit être être supérieure ou égale à %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "La valeur doit être inférieure ou égale à %d" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "La valeur ne doit pas dépasser %d caractères." + +#~ msgid "Various" +#~ msgstr "Divers" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Modifier" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Choisir" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Mettre à jour" + +#, php-format +#~ msgid "Version %s" +#~ msgstr "Version %s" + +#~ msgid "Vertical" +#~ msgstr "Vertical" + +# @ acf +#~ msgid "View details" +#~ msgstr "Voir les détails" + +# @ acf +#~ msgid "View Field" +#~ msgstr "Voir le champ" + +# @ default +#~ msgid "View Field Group" +#~ msgstr "Voir le groupe de champs" + +#~ msgid "Viewing back end" +#~ msgstr "Depuis l’interface d’administration" + +#~ msgid "Viewing front end" +#~ msgstr "Depuis le site" + +#~ msgid "Visit website" +#~ msgstr "Visiter le site" + +#~ msgid "Visual" +#~ msgstr "Visuel" + +#~ msgid "Visual & Text" +#~ msgstr "Visuel & Texte brut" + +#~ msgid "Visual Only" +#~ msgstr "Éditeur visuel seulement" + +#~ 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 des fanatiques du support et nous souhaitons que vous ayez la " +#~ "meilleure expérience avec ACF. Si vous avez des difficultés, voici " +#~ "plusieurs solutions pour obtenir de l’aide :" + +#~ msgid "Week Starts On" +#~ msgstr "Les semaines commencent le" + +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgid "Widgets" +#~ msgstr "Widgets" + +#~ msgid "width" +#~ msgstr "largeur" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Attributs du conteneur" + +# @ acf +#~ msgid "Wysiwyg Editor" +#~ msgstr "Éditeur de contenu" + +#~ msgid "Zoom" +#~ msgstr "Zoom" diff --git a/lang/pro/acf-he_IL.po b/lang/pro/acf-he_IL.po new file mode 100644 index 0000000..334f3c4 --- /dev/null +++ b/lang/pro/acf-he_IL.po @@ -0,0 +1,3403 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2017-10-23 11:00+0300\n" +"PO-Revision-Date: \n" +"Last-Translator: Elliot Condon \n" +"Language-Team: Ahrale | Atar4U.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: Poedit 1.8.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:67 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:369 includes/admin/admin.php:117 +msgid "Field Groups" +msgstr "קבוצות שדות" + +#: acf.php:370 +msgid "Field Group" +msgstr "קבוצת שדות" + +#: acf.php:371 acf.php:403 includes/admin/admin.php:118 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Add New" +msgstr "הוספת חדש" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "הוספת קבוצת שדות חדשה" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "עריכת קבוצת שדות" + +#: acf.php:374 +msgid "New Field Group" +msgstr "קבוצת שדות חדשה" + +#: acf.php:375 +msgid "View Field Group" +msgstr "הצג את קבוצת השדות" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "חיפוש קבוצת שדות" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "אף קבוצת שדות לא נמצאה" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "אף קבוצת שדות לא נמצאה בפח" + +#: acf.php:401 includes/admin/admin-field-group.php:182 +#: includes/admin/admin-field-group.php:275 +#: includes/admin/admin-field-groups.php:510 +#: pro/fields/class-acf-field-clone.php:807 +msgid "Fields" +msgstr "שדות" + +#: acf.php:402 +msgid "Field" +msgstr "שדה" + +#: acf.php:404 +msgid "Add New Field" +msgstr "הוספת שדה חדש" + +#: acf.php:405 +msgid "Edit Field" +msgstr "עריכת השדה" + +#: acf.php:406 includes/admin/views/field-group-fields.php:41 +#: includes/admin/views/settings-info.php:105 +msgid "New Field" +msgstr "שדה חדש" + +#: acf.php:407 +msgid "View Field" +msgstr "הצג את השדה" + +#: acf.php:408 +msgid "Search Fields" +msgstr "חיפוש שדות" + +#: acf.php:409 +msgid "No Fields found" +msgstr "לא נמצאו שדות" + +#: acf.php:410 +msgid "No Fields found in Trash" +msgstr "לא נמצאו שדות בפח" + +#: acf.php:449 includes/admin/admin-field-group.php:390 +#: includes/admin/admin-field-groups.php:567 +msgid "Inactive" +msgstr "לא פעיל" + +#: acf.php:454 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "לא פעיל (%s)" +msgstr[1] "לא פעילים (%s)" + +#: includes/admin/admin-field-group.php:68 +#: includes/admin/admin-field-group.php:69 +#: includes/admin/admin-field-group.php:71 +msgid "Field group updated." +msgstr "קבוצת השדות עודכנה" + +#: includes/admin/admin-field-group.php:70 +msgid "Field group deleted." +msgstr "קבוצת השדות נמחקה." + +#: includes/admin/admin-field-group.php:73 +msgid "Field group published." +msgstr "קבוצת השדות פורסמה." + +#: includes/admin/admin-field-group.php:74 +msgid "Field group saved." +msgstr "קבוצת השדות נשמרה." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group submitted." +msgstr "קבוצת השדות נשלחה." + +#: includes/admin/admin-field-group.php:76 +msgid "Field group scheduled for." +msgstr "קבוצת השדות מתוכננת ל" + +#: includes/admin/admin-field-group.php:77 +msgid "Field group draft updated." +msgstr "טיוטת קבוצת שדות עודכנה." + +#: includes/admin/admin-field-group.php:183 +msgid "Location" +msgstr "מיקום" + +#: includes/admin/admin-field-group.php:184 +msgid "Settings" +msgstr "הגדרות" + +#: includes/admin/admin-field-group.php:269 +msgid "Move to trash. Are you sure?" +msgstr "מועבר לפח. האם אתה בטוח?" + +#: includes/admin/admin-field-group.php:270 +msgid "checked" +msgstr "מסומן" + +#: includes/admin/admin-field-group.php:271 +msgid "No toggle fields available" +msgstr "אין שדות תיבות סימון זמינים" + +#: includes/admin/admin-field-group.php:272 +msgid "Field group title is required" +msgstr "כותרת קבוצת שדות - חובה" + +#: includes/admin/admin-field-group.php:273 +#: includes/api/api-field-group.php:751 +msgid "copy" +msgstr "העתק" + +#: includes/admin/admin-field-group.php:274 +#: includes/admin/views/field-group-field-conditional-logic.php:54 +#: includes/admin/views/field-group-field-conditional-logic.php:154 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3964 +msgid "or" +msgstr "או" + +#: includes/admin/admin-field-group.php:276 +msgid "Parent fields" +msgstr "שדות אב" + +#: includes/admin/admin-field-group.php:277 +msgid "Sibling fields" +msgstr "שדות אחים" + +#: includes/admin/admin-field-group.php:278 +msgid "Move Custom Field" +msgstr "הזזת שדות מיוחדים" + +#: includes/admin/admin-field-group.php:279 +msgid "This field cannot be moved until its changes have been saved" +msgstr "אי אפשר להזיז את השדה עד לשמירת השינויים שנעשו בו" + +#: includes/admin/admin-field-group.php:280 +msgid "Null" +msgstr "ריק" + +#: includes/admin/admin-field-group.php:281 includes/input.php:258 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "השינויים שעשית יאבדו אם תעבור לדף אחר" + +#: includes/admin/admin-field-group.php:282 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "לא ניתן להשתמש במחרוזת \"field_\" בתחילת שם השדה" + +#: includes/admin/admin-field-group.php:360 +msgid "Field Keys" +msgstr "מפתחות שדה" + +#: includes/admin/admin-field-group.php:390 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "פעיל" + +#: includes/admin/admin-field-group.php:801 +msgid "Move Complete." +msgstr "ההעברה הושלמה." + +#: includes/admin/admin-field-group.php:802 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "אפשר עכשיו למצוא את שדה %s בתוך קבוצת השדות %s" + +#: includes/admin/admin-field-group.php:803 +msgid "Close Window" +msgstr "סגור חלון" + +#: includes/admin/admin-field-group.php:844 +msgid "Please select the destination for this field" +msgstr "בבקשה בחר במיקום החדש עבור שדה זה" + +#: includes/admin/admin-field-group.php:851 +msgid "Move Field" +msgstr "הזזת שדה" + +#: includes/admin/admin-field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "פעיל (%s)" +msgstr[1] "פעילים (%s)" + +#: includes/admin/admin-field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "קבוצת השדות שוכפלה. %s" + +#: includes/admin/admin-field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s קבוצת השדה שוכפלה." +msgstr[1] "%s קבוצות השדות שוכפלו." + +#: includes/admin/admin-field-groups.php:227 +#, php-format +msgid "Field group synchronised. %s" +msgstr "קבוצת השדות סונכרנה. %s" + +#: includes/admin/admin-field-groups.php:231 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s קבוצת השדות סונכרנה." +msgstr[1] "%s קבוצות השדות סונכרנו." + +#: includes/admin/admin-field-groups.php:394 +#: includes/admin/admin-field-groups.php:557 +msgid "Sync available" +msgstr "סנכרון זמין" + +#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:355 +msgid "Title" +msgstr "כותרת" + +#: includes/admin/admin-field-groups.php:508 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/install-network.php:21 +#: includes/admin/views/install-network.php:29 +#: pro/fields/class-acf-field-gallery.php:382 +msgid "Description" +msgstr "תיאור" + +#: includes/admin/admin-field-groups.php:509 +msgid "Status" +msgstr "מצב" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:607 +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "שדרגו את וורדפרס עם שדות מיוחדים באופן מקצועי, יעל ומהיר." + +#: includes/admin/admin-field-groups.php:609 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "גרסאות" + +#: includes/admin/admin-field-groups.php:614 +#, php-format +msgid "See what's new in version %s." +msgstr "מה חדש בגרסה %s." + +#: includes/admin/admin-field-groups.php:617 +msgid "Resources" +msgstr "עזרה" + +#: includes/admin/admin-field-groups.php:619 +msgid "Website" +msgstr "אתר" + +#: includes/admin/admin-field-groups.php:620 +msgid "Documentation" +msgstr "הוראות הפעלה" + +#: includes/admin/admin-field-groups.php:621 +msgid "Support" +msgstr "תמיכה" + +#: includes/admin/admin-field-groups.php:623 +msgid "Pro" +msgstr "פרו" + +#: includes/admin/admin-field-groups.php:628 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "תודה שיצרת עם ACF" + +#: includes/admin/admin-field-groups.php:668 +msgid "Duplicate this item" +msgstr "שכפל את הפריט הזה" + +#: includes/admin/admin-field-groups.php:668 +#: includes/admin/admin-field-groups.php:684 +#: includes/admin/views/field-group-field.php:49 +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Duplicate" +msgstr "שיכפול" + +#: includes/admin/admin-field-groups.php:701 +#: includes/fields/class-acf-field-google-map.php:112 +#: includes/fields/class-acf-field-relationship.php:656 +msgid "Search" +msgstr "חיפוש" + +#: includes/admin/admin-field-groups.php:760 +#, php-format +msgid "Select %s" +msgstr "בחירה %s" + +#: includes/admin/admin-field-groups.php:768 +msgid "Synchronise field group" +msgstr "סנכרון קבוצת שדות" + +#: includes/admin/admin-field-groups.php:768 +#: includes/admin/admin-field-groups.php:798 +msgid "Sync" +msgstr "סינכרון" + +#: includes/admin/admin-field-groups.php:780 +msgid "Apply" +msgstr "החל" + +#: includes/admin/admin-field-groups.php:798 +msgid "Bulk Actions" +msgstr "עריכה קבוצתית" + +#: includes/admin/admin.php:113 +#: includes/admin/views/field-group-options.php:118 +msgid "Custom Fields" +msgstr "שדות מיוחדים" + +#: includes/admin/install-network.php:88 includes/admin/install.php:70 +#: includes/admin/install.php:121 +msgid "Upgrade Database" +msgstr "שדרוג מסד נתונים" + +#: includes/admin/install-network.php:140 +msgid "Review sites & upgrade" +msgstr "סקירת אתרים ושדרוגים" + +#: includes/admin/install.php:187 +msgid "Error validating request" +msgstr "שגיאה בבקשת האימות" + +#: includes/admin/install.php:210 includes/admin/views/install.php:105 +msgid "No updates available." +msgstr "אין עזכונים זמינים." + +#: includes/admin/settings-addons.php:51 +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "תוספים" + +#: includes/admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "‏שגיאה. טעינת רשימת ההרחבות נכשלה" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "מידע" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "מה חדש" + +#: includes/admin/settings-tools.php:50 +#: includes/admin/views/settings-tools-export.php:19 +#: includes/admin/views/settings-tools.php:31 +msgid "Tools" +msgstr "כלים" + +#: includes/admin/settings-tools.php:147 includes/admin/settings-tools.php:380 +msgid "No field groups selected" +msgstr "אף קבוצת שדות לא נבחרה" + +#: includes/admin/settings-tools.php:184 +#: includes/fields/class-acf-field-file.php:155 +msgid "No file selected" +msgstr "לא נבחר קובץ" + +#: includes/admin/settings-tools.php:197 +msgid "Error uploading file. Please try again" +msgstr "שגיאה בהעלאת הקובץ. בבקשה נסה שנית" + +#: includes/admin/settings-tools.php:206 +msgid "Incorrect file type" +msgstr "סוג קובץ לא תקין" + +#: includes/admin/settings-tools.php:223 +msgid "Import file empty" +msgstr "קובץ הייבוא ריק" + +#: includes/admin/settings-tools.php:331 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "קבוצת שדות 1 יובאה" +msgstr[1] "%s קבוצות שדות יובאו" + +#: includes/admin/views/field-group-field-conditional-logic.php:28 +msgid "Conditional Logic" +msgstr "תנאי לוגי" + +#: includes/admin/views/field-group-field-conditional-logic.php:54 +msgid "Show this field if" +msgstr "הצגת השדה בתנאי ש" + +#: includes/admin/views/field-group-field-conditional-logic.php:103 +#: includes/locations.php:247 +msgid "is equal to" +msgstr "שווה ל" + +#: includes/admin/views/field-group-field-conditional-logic.php:104 +#: includes/locations.php:248 +msgid "is not equal to" +msgstr "לא שווה ל" + +#: includes/admin/views/field-group-field-conditional-logic.php:141 +#: includes/admin/views/html-location-rule.php:80 +msgid "and" +msgstr "וגם" + +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "הוספת קבוצת כללים" + +#: includes/admin/views/field-group-field.php:41 +#: pro/fields/class-acf-field-flexible-content.php:403 +#: pro/fields/class-acf-field-repeater.php:296 +msgid "Drag to reorder" +msgstr "גרור ושחרר לסידור מחדש" + +#: includes/admin/views/field-group-field.php:45 +#: includes/admin/views/field-group-field.php:48 +msgid "Edit field" +msgstr "עריכת שדה" + +#: includes/admin/views/field-group-field.php:48 +#: includes/fields/class-acf-field-file.php:137 +#: includes/fields/class-acf-field-image.php:122 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:342 +msgid "Edit" +msgstr "עריכה" + +#: includes/admin/views/field-group-field.php:49 +msgid "Duplicate field" +msgstr "שכפול שדה" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move field to another group" +msgstr "העברת שדה לקבוצה אחרת" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move" +msgstr "שינוי מיקום" + +#: includes/admin/views/field-group-field.php:51 +msgid "Delete field" +msgstr "מחיקת שדה" + +#: includes/admin/views/field-group-field.php:51 +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Delete" +msgstr "מחיקה" + +#: includes/admin/views/field-group-field.php:67 +msgid "Field Label" +msgstr "תווית השדה" + +#: includes/admin/views/field-group-field.php:68 +msgid "This is the name which will appear on the EDIT page" +msgstr "השם שיופיע בדף העריכה" + +#: includes/admin/views/field-group-field.php:77 +msgid "Field Name" +msgstr "שם השדה" + +#: includes/admin/views/field-group-field.php:78 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "מילה אחת, ללא רווחים. אפשר להשתמש במקף תחתי ובמקף אמצעי" + +#: includes/admin/views/field-group-field.php:87 +msgid "Field Type" +msgstr "סוג שדה" + +#: includes/admin/views/field-group-field.php:98 +#: includes/fields/class-acf-field-tab.php:88 +msgid "Instructions" +msgstr "הוראות" + +#: includes/admin/views/field-group-field.php:99 +msgid "Instructions for authors. Shown when submitting data" +msgstr "הוראות למחברים. מוצג למעדכני התכנים באתר" + +#: includes/admin/views/field-group-field.php:108 +msgid "Required?" +msgstr "חובה?" + +#: includes/admin/views/field-group-field.php:131 +msgid "Wrapper Attributes" +msgstr "מאפייני עוטף" + +#: includes/admin/views/field-group-field.php:137 +msgid "width" +msgstr "רוחב" + +#: includes/admin/views/field-group-field.php:152 +msgid "class" +msgstr "מחלקה" + +#: includes/admin/views/field-group-field.php:165 +msgid "id" +msgstr "מזהה" + +#: includes/admin/views/field-group-field.php:177 +msgid "Close Field" +msgstr "סגור שדה" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "סדר" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:415 +#: includes/fields/class-acf-field-radio.php:306 +#: includes/fields/class-acf-field-select.php:432 +#: pro/fields/class-acf-field-flexible-content.php:582 +msgid "Label" +msgstr "תווית" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:964 +#: pro/fields/class-acf-field-flexible-content.php:595 +msgid "Name" +msgstr "שם" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "מפתח" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "סוג" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"אין שדות. לחצו על כפתור + הוספת שדה כדי ליצור את השדה " +"הראשון שלכם." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ הוספת שדה" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "כללים" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "סגנון" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "רגיל (תיבת תיאור של וורדפרס)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "חלק (ללא תיבת תיאור)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "מיקום" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "גבוה (אחרי הכותרת)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "רגיל (אחרי התוכן)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "צד" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "מיקום תווית" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:102 +msgid "Top aligned" +msgstr "מיושר למעלה" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:103 +msgid "Left aligned" +msgstr "מיושר לשמאל" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "מיקום הוראות" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "מתחת לתוויות" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "מתחת לשדות" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "מיקום (order)" + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "קבוצות שדות עם מיקום נמוך יופיעו ראשונות" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "מוצג ברשימת קבוצת השדות" + +#: includes/admin/views/field-group-options.php:107 +msgid "Hide on screen" +msgstr "הסתרה במסך" + +#: includes/admin/views/field-group-options.php:108 +msgid "Select items to hide them from the edit screen." +msgstr "בחרו פריטים שיהיו נסתרים במסך העריכה." + +#: includes/admin/views/field-group-options.php:108 +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/field-group-options.php:115 +msgid "Permalink" +msgstr "קישור" + +#: includes/admin/views/field-group-options.php:116 +msgid "Content Editor" +msgstr "עורך תוכן" + +#: includes/admin/views/field-group-options.php:117 +msgid "Excerpt" +msgstr "מובאה" + +#: includes/admin/views/field-group-options.php:119 +msgid "Discussion" +msgstr "דיון" + +#: includes/admin/views/field-group-options.php:120 +msgid "Comments" +msgstr "הערות" + +#: includes/admin/views/field-group-options.php:121 +msgid "Revisions" +msgstr "גרסאות עריכה" + +#: includes/admin/views/field-group-options.php:122 +msgid "Slug" +msgstr "מזהה הפוסט" + +#: includes/admin/views/field-group-options.php:123 +msgid "Author" +msgstr "מחבר" + +#: includes/admin/views/field-group-options.php:124 +msgid "Format" +msgstr "פורמט" + +#: includes/admin/views/field-group-options.php:125 +msgid "Page Attributes" +msgstr "מאפייני עמוד" + +#: includes/admin/views/field-group-options.php:126 +#: includes/fields/class-acf-field-relationship.php:670 +msgid "Featured Image" +msgstr "תמונה ראשית" + +#: includes/admin/views/field-group-options.php:127 +msgid "Categories" +msgstr "קטגוריות" + +#: includes/admin/views/field-group-options.php:128 +msgid "Tags" +msgstr "תגיות" + +#: includes/admin/views/field-group-options.php:129 +msgid "Send Trackbacks" +msgstr "שלח טראקבקים" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "הצגת קבוצת השדות הזו בתנאי ש" + +#: includes/admin/views/install-network.php:4 +msgid "Upgrade Sites" +msgstr "" + +#: includes/admin/views/install-network.php:9 +#: includes/admin/views/install.php:3 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "" + +#: includes/admin/views/install-network.php:11 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" + +#: includes/admin/views/install-network.php:20 +#: includes/admin/views/install-network.php:28 +msgid "Site" +msgstr "" + +#: includes/admin/views/install-network.php:48 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "" + +#: includes/admin/views/install-network.php:50 +msgid "Site is up to date" +msgstr "" + +#: includes/admin/views/install-network.php:63 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" + +#: includes/admin/views/install-network.php:102 +#: includes/admin/views/install-notice.php:42 +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/install-network.php:158 +msgid "Upgrade complete" +msgstr "" + +#: includes/admin/views/install-network.php:162 +#: includes/admin/views/install.php:9 +#, php-format +msgid "Upgrading data to version %s" +msgstr "שדרוג נתונים לגרסה %s" + +#: includes/admin/views/install-notice.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "שדה חזרה" + +#: includes/admin/views/install-notice.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "תוכן גמיש" + +#: includes/admin/views/install-notice.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "גלריה" + +#: includes/admin/views/install-notice.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "עמוד אפשרויות" + +#: includes/admin/views/install-notice.php:26 +msgid "Database Upgrade Required" +msgstr "חובה לשדרג את מסד הנתונים" + +#: includes/admin/views/install-notice.php:28 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "תודה שעדכנתם ל-%s גרסה %s!" + +#: includes/admin/views/install-notice.php:28 +msgid "" +"Before you start using the new awesome features, please update your database " +"to the newest version." +msgstr "" +"לפני שאתם מתחילים להשתמש בתכונות המדהימות החדשות, בבקשה עדכנו את מאגר " +"הנתונים שלכם לגרסה העדכנית." + +#: includes/admin/views/install-notice.php:31 +#, php-format +msgid "" +"Please also ensure any premium add-ons (%s) have first been updated to the " +"latest version." +msgstr "" + +#: includes/admin/views/install.php:7 +msgid "Reading upgrade tasks..." +msgstr "קורא משימות שדרוג..." + +#: includes/admin/views/install.php:11 +#, php-format +msgid "Database Upgrade complete. See what's new" +msgstr "" + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "הורדה והתקנה" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "מותקן" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "ברוכים הבאים לשדות מיוחדים מתקדמים" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"תודה שעידכנתם! ACF %s הוא גדול יותר וטוב יותר מאי פעם. מקווים שתאהבו אותו." + +#: includes/admin/views/settings-info.php:17 +msgid "A smoother custom field experience" +msgstr "חווית שדות מיוחדים חלקה יותר" + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Usability" +msgstr "שימושיות משופרת" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"הוספה של הספרייה הפופולרית Select2 שיפרה גם את השימושיות ואת המהירות בכמה " +"סוגי שדות, כולל: אובייקט פוסט, קישור דף, טקסונומיה ובחירה." + +#: includes/admin/views/settings-info.php:27 +msgid "Improved Design" +msgstr "עיצוב משופר" + +#: includes/admin/views/settings-info.php:28 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"הרבה שדות עברו רענון ויזואלי כדי לגרום ל-ACF להיראות טוב מאי פעם! ניתן לראות " +"שינויים בולטים בשדה הגלריה, שדה היחסים, ובשדה ההטמעה (החדש)!" + +#: includes/admin/views/settings-info.php:32 +msgid "Improved Data" +msgstr "נתונים משופרים" + +#: includes/admin/views/settings-info.php:33 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"עיצוב מחדש של ארכיטקטורת המידע איפשר לשדות משנה להיות נפרדים מההורים שלהם. " +"דבר זה מאפשר לכם לגרור ולשחרר שדות לתוך ומחוץ לשדות אב." + +#: includes/admin/views/settings-info.php:39 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "להתראות הרחבות. שלום PRO" + +#: includes/admin/views/settings-info.php:44 +msgid "Introducing ACF PRO" +msgstr "הכירו את ACF PRO" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"כל ארבעת הרחבות הפרימיום אוחדו לתוך גרסת הפרו החדשה של ACF. עם הרשיונות הזמינים לשימוש אישי ולמפתחים, יכולות הפרימיום זולות יותר " +"ונגישות יותר מאי פעם." + +#: includes/admin/views/settings-info.php:50 +msgid "Powerful Features" +msgstr "תכונות עצמתיות" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"‏ACF PRO כולל תכונות עצמתיות כמו מידע שחוזר על עצמו, פריסות תוכן גמישות, שדה " +"גלריה יפה ואת היכולת ליצור דפי אפשרויות נוספים בממשק הניהול!" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "קרא עוד על הפיצ׳רים של ACF PRO" + +#: includes/admin/views/settings-info.php:56 +msgid "Easy Upgrading" +msgstr "שדרוג קל" + +#: includes/admin/views/settings-info.php:57 +#, php-format +msgid "" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" +msgstr "" +"כדי להקל על השידרוג, התחברו לחשבון שלכם וקבלו חינם עותק " +"של ACF PRO!" + +#: includes/admin/views/settings-info.php:58 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" +msgstr "" +"כתבנו גם מדריך שידרוג כדי לענות על כל השאלות, אך אם עדיין " +"יש לכם שאלה, בבקשה צרו קשר עם צוות התמיכה שלנו דרך מוקד " +"התמיכה" + +#: includes/admin/views/settings-info.php:66 +msgid "Under the Hood" +msgstr "מתחת למכסה המנוע" + +#: includes/admin/views/settings-info.php:71 +msgid "Smarter field settings" +msgstr "הגדרות חכמות יותר לשדות" + +#: includes/admin/views/settings-info.php:72 +msgid "ACF now saves its field settings as individual post objects" +msgstr "‏ACF עכשיו שומר את הגדרות השדות שלו כאובייקטי פוסט בודדים" + +#: includes/admin/views/settings-info.php:76 +msgid "More AJAX" +msgstr "עוד AJAX" + +#: includes/admin/views/settings-info.php:77 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "יותר שדות משתמשים בחיפוש מבוסס AJAX כדי לשפר את מהירות טעינת הדף" + +#: includes/admin/views/settings-info.php:81 +msgid "Local JSON" +msgstr "‏JSON מקומי" + +#: includes/admin/views/settings-info.php:82 +msgid "New auto export to JSON feature improves speed" +msgstr "תכונת ייצוא אוטומטי חדש ל-JSON משפר את המהירות" + +#: includes/admin/views/settings-info.php:88 +msgid "Better version control" +msgstr "בקרת גרסאות טובה יותר" + +#: includes/admin/views/settings-info.php:89 +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" +msgstr "תכונת חדש לייצוא אוטומטי ל-JSON מאפשר להגדרות השדות להיות מבוקרי גרסה" + +#: includes/admin/views/settings-info.php:93 +msgid "Swapped XML for JSON" +msgstr "‏JSON במקום XML" + +#: includes/admin/views/settings-info.php:94 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "ייבוא / ייצוא משתמש עכשיו ב-JSON במקום ב-XML" + +#: includes/admin/views/settings-info.php:98 +msgid "New Forms" +msgstr "טפסים חדשים" + +#: includes/admin/views/settings-info.php:99 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "ניתן כעת למפות שדות לתגובות, ווידג׳טים וכל טפסי המשתמש!" + +#: includes/admin/views/settings-info.php:106 +msgid "A new field for embedding content has been added" +msgstr "נוסף שדה חדש להטמעת תוכן" + +#: includes/admin/views/settings-info.php:110 +msgid "New Gallery" +msgstr "גלריה חדשה" + +#: includes/admin/views/settings-info.php:111 +msgid "The gallery field has undergone a much needed facelift" +msgstr "שדה הגלריה עבר מתיחת פנים חיונית ביותר" + +#: includes/admin/views/settings-info.php:115 +msgid "New Settings" +msgstr "הגדרות חדשות" + +#: includes/admin/views/settings-info.php:116 +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "הגדרות קבוצות שדות נוספה למיקום התוויות ולמיקום ההוראות" + +#: includes/admin/views/settings-info.php:122 +msgid "Better Front End Forms" +msgstr "טפסי צד קדמי משופרים" + +#: includes/admin/views/settings-info.php:123 +msgid "acf_form() can now create a new post on submission" +msgstr "‏acf_form() יכול עכשיו ליצור פוסט חדש בעת השליחה" + +#: includes/admin/views/settings-info.php:127 +msgid "Better Validation" +msgstr "אימות נתונים משופר" + +#: includes/admin/views/settings-info.php:128 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "אימות טפסים נעשה עכשיו עם PHP ו-AJAX במקום להשתמש רק ב-JS" + +#: includes/admin/views/settings-info.php:132 +msgid "Relationship Field" +msgstr "שדה יחסים" + +#: includes/admin/views/settings-info.php:133 +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "הגדרת שדה יחסים חדשה בשביל ׳סינונים׳ (חיפוש, סוג פוסט, טקסונומיה)" + +#: includes/admin/views/settings-info.php:139 +msgid "Moving Fields" +msgstr "שינוי מיקום שדות" + +#: includes/admin/views/settings-info.php:140 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" +msgstr "פונקציונליות קבוצות שדות חדשה מאפשרת לכם להעביר שדה בין קבוצות והורים" + +#: includes/admin/views/settings-info.php:144 +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "קישור לעמוד" + +#: includes/admin/views/settings-info.php:145 +msgid "New archives group in page_link field selection" +msgstr "קבוצת ארכיון חדשה בשדה הבחירה של page_link" + +#: includes/admin/views/settings-info.php:149 +msgid "Better Options Pages" +msgstr "דף אפשרויות משופר" + +#: includes/admin/views/settings-info.php:150 +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" +msgstr "פונקציות חדשות לדף האפשרויות נותנות לכם ליצור דפי תפריט ראשיים ומשניים" + +#: includes/admin/views/settings-info.php:159 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "אנחנו חושבים שתאהבו את השינויים ב%s." + +#: includes/admin/views/settings-tools-export.php:23 +msgid "Export Field Groups to PHP" +msgstr "יצוא קבוצות שדות לphp" + +#: includes/admin/views/settings-tools-export.php:27 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"ניתן להשתמש בקוד הבא כדי לרשום גרסה מקומית של קבוצות השדה הנבחרות. קבוצת " +"שדות מקומית יכולה להביא לתועלות רבות כמו זמני טעינה מהירים יותר, בקרת גרסאות " +"ושדות/הגדרות דינמיות. פשוט העתיקו והדביקו את הקוד הבא לקובץ functions‪.‬php " +"שבערכת העיצוב שלכם או הוסיפו אותו דרך קובץ חיצוני." + +#: includes/admin/views/settings-tools.php:5 +msgid "Select Field Groups" +msgstr "בחירת קבוצת שדות" + +#: includes/admin/views/settings-tools.php:35 +msgid "Export Field Groups" +msgstr "יצוא קבוצות שדות" + +#: includes/admin/views/settings-tools.php:38 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"בחרו בקבוצות השדות שברצונכם לייצא ואז בחרו במתודת הייצוא. השתמש בכפתור " +"ההורדה כדי לייצא קובץ json אותו תוכלו לייבא להתקנת ACF אחרת. השתמשו בכפתור " +"היצירה כדי לייצא קוד php אותו תוכלו להכניס לתוך ערכת העיצוב שלכם." + +#: includes/admin/views/settings-tools.php:50 +msgid "Download export file" +msgstr "הורדת קובץ ייצוא" + +#: includes/admin/views/settings-tools.php:51 +msgid "Generate export code" +msgstr "יצירת קוד ייצוא" + +#: includes/admin/views/settings-tools.php:64 +msgid "Import Field Groups" +msgstr "ייבוא קבוצות שדות" + +#: includes/admin/views/settings-tools.php:67 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"בחרו בקובץ השדות המיוחדים מסוג JSON שברצונכם לייבא. כשתלחצו על כפתור הייבוא " +"שמתחת, ACF ייבא את קבוצות השדות." + +#: includes/admin/views/settings-tools.php:77 +#: includes/fields/class-acf-field-file.php:35 +msgid "Select File" +msgstr "בחר קובץ" + +#: includes/admin/views/settings-tools.php:86 +msgid "Import" +msgstr "ייבוא" + +#: includes/api/api-helpers.php:856 +msgid "Thumbnail" +msgstr "תמונה ממוזערת" + +#: includes/api/api-helpers.php:857 +msgid "Medium" +msgstr "בינוני" + +#: includes/api/api-helpers.php:858 +msgid "Large" +msgstr "גדול" + +#: includes/api/api-helpers.php:907 +msgid "Full Size" +msgstr "גודל מלא" + +#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831 +#: pro/fields/class-acf-field-clone.php:992 +msgid "(no title)" +msgstr "(אין כותרת)" + +#: includes/api/api-helpers.php:1868 +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:268 +#: includes/fields/class-acf-field-taxonomy.php:986 +msgid "Parent" +msgstr "" + +#: includes/api/api-helpers.php:3885 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3890 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3906 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3911 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3929 +#, php-format +msgid "File size must be at least %s." +msgstr "" + +#: includes/api/api-helpers.php:3934 +#, php-format +msgid "File size must must not exceed %s." +msgstr "" + +#: includes/api/api-helpers.php:3968 +#, php-format +msgid "File type must be %s." +msgstr "" + +#: includes/fields.php:144 +msgid "Basic" +msgstr "בסיסי" + +#: includes/fields.php:145 includes/forms/form-front.php:47 +msgid "Content" +msgstr "תוכן" + +#: includes/fields.php:146 +msgid "Choice" +msgstr "בחירה" + +#: includes/fields.php:147 +msgid "Relational" +msgstr "יחסי" + +#: includes/fields.php:148 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:149 +#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:384 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:285 +#: pro/fields/class-acf-field-clone.php:839 +#: pro/fields/class-acf-field-flexible-content.php:552 +#: pro/fields/class-acf-field-flexible-content.php:601 +#: pro/fields/class-acf-field-repeater.php:450 +msgid "Layout" +msgstr "פריסת תוכן" + +#: includes/fields.php:326 +msgid "Field type does not exist" +msgstr "סוג השדה לא נמצא" + +#: includes/fields.php:326 +msgid "Unknown" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:368 +msgid "Choices" +msgstr "בחירות" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "Enter each choice on a new line." +msgstr "יש להקליד כל בחירה בשורה חדשה." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "For more control, you may specify both a value and label like this:" +msgstr "לשליטה רבה יותר, אפשר לציין את הערך ואת התווית כך:" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "red : Red" +msgstr "red : אדום " + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:412 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-taxonomy.php:793 +#: includes/fields/class-acf-field-user.php:408 +msgid "Allow Null?" +msgstr "לאפשר שדה ריק?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:276 +#: includes/fields/class-acf-field-range.php:148 +#: includes/fields/class-acf-field-select.php:377 +#: includes/fields/class-acf-field-text.php:119 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:410 +msgid "Default Value" +msgstr "ערך ברירת המחדל" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:277 +#: includes/fields/class-acf-field-range.php:149 +#: includes/fields/class-acf-field-text.php:120 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:411 +msgid "Appears when creating a new post" +msgstr "מופיע כאשר יוצרים פוסט חדש" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:391 +#: includes/fields/class-acf-field-radio.php:292 +msgid "Horizontal" +msgstr "אופקי" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:390 +#: includes/fields/class-acf-field-radio.php:291 +msgid "Vertical" +msgstr "אנכי" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:408 +#: includes/fields/class-acf-field-file.php:200 +#: includes/fields/class-acf-field-image.php:188 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:299 +#: includes/fields/class-acf-field-taxonomy.php:833 +msgid "Return Value" +msgstr "ערך חוזר" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:409 +#: includes/fields/class-acf-field-file.php:201 +#: includes/fields/class-acf-field-image.php:189 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:300 +msgid "Specify the returned value on front end" +msgstr "הגדרת הערך המוחזר בצד הקדמי" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-radio.php:305 +#: includes/fields/class-acf-field-select.php:431 +msgid "Value" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:416 +#: includes/fields/class-acf-field-radio.php:307 +#: includes/fields/class-acf-field-select.php:433 +msgid "Both (Array)" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:780 +msgid "Checkbox" +msgstr "תיבת סימון" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "החלפת מצב הבחירה של כל הקבוצות" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:376 +#: includes/fields/class-acf-field-select.php:378 +msgid "Enter each default value on a new line" +msgstr "יש להקליד כל ערך ברירת מחדל בשורה חדשה" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Toggle" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:399 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "דוגם צבע" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "נקה" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "ברירת המחדל" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "בחירת צבע" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "בחירת תאריך" + +#: includes/fields/class-acf-field-date_picker.php:33 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:34 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:35 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:36 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:37 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:207 +#: includes/fields/class-acf-field-date_time_picker.php:181 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "פורמט תצוגה" + +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:182 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "הפורמט המוצג בעריכתםה פוסט" + +#: includes/fields/class-acf-field-date_picker.php:216 +#: includes/fields/class-acf-field-date_picker.php:247 +#: includes/fields/class-acf-field-date_time_picker.php:191 +#: includes/fields/class-acf-field-date_time_picker.php:208 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:226 +msgid "Save Format" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:227 +msgid "The format used when saving a value" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:237 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-post_object.php:432 +#: includes/fields/class-acf-field-relationship.php:697 +#: includes/fields/class-acf-field-select.php:426 +#: includes/fields/class-acf-field-time_picker.php:124 +msgid "Return Format" +msgstr "פורמט חוזר" + +#: includes/fields/class-acf-field-date_picker.php:238 +#: includes/fields/class-acf-field-date_time_picker.php:199 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "הפורמט המוחזר דרך פונקציות התבנית" + +#: includes/fields/class-acf-field-date_picker.php:256 +#: includes/fields/class-acf-field-date_time_picker.php:215 +msgid "Week Starts On" +msgstr "השבוע מתחיל ביום" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:33 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:34 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:35 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:36 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:37 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:38 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:39 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:40 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:41 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:42 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:43 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:45 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:46 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:49 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:50 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "אימייל" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:128 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "מציין טקסט" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:129 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "מופיע בתוך השדה" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:187 +#: includes/fields/class-acf-field-text.php:137 +msgid "Prepend" +msgstr "לפני" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:188 +#: includes/fields/class-acf-field-text.php:138 +msgid "Appears before the input" +msgstr "מופיע לפני השדה" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:196 +#: includes/fields/class-acf-field-text.php:146 +msgid "Append" +msgstr "אחרי" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:197 +#: includes/fields/class-acf-field-text.php:147 +msgid "Appears after the input" +msgstr "מופיע לאחר השדה" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "קובץ" + +#: includes/fields/class-acf-field-file.php:36 +msgid "Edit File" +msgstr "עריכת קובץ" + +#: includes/fields/class-acf-field-file.php:37 +msgid "Update File" +msgstr "עדכן קובץ" + +#: includes/fields/class-acf-field-file.php:38 +#: includes/fields/class-acf-field-image.php:43 includes/media.php:57 +#: pro/fields/class-acf-field-gallery.php:44 +msgid "Uploaded to this post" +msgstr "משוייך לפוסט" + +#: includes/fields/class-acf-field-file.php:126 +msgid "File name" +msgstr "" + +#: includes/fields/class-acf-field-file.php:130 +#: includes/fields/class-acf-field-file.php:233 +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:248 +#: includes/fields/class-acf-field-image.php:277 +#: pro/fields/class-acf-field-gallery.php:690 +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "" + +#: includes/fields/class-acf-field-file.php:139 +#: includes/fields/class-acf-field-image.php:124 +#: includes/fields/class-acf-field-link.php:140 includes/input.php:269 +#: pro/fields/class-acf-field-gallery.php:343 +#: pro/fields/class-acf-field-gallery.php:531 +msgid "Remove" +msgstr "הסר" + +#: includes/fields/class-acf-field-file.php:155 +msgid "Add File" +msgstr "הוספת קובץ" + +#: includes/fields/class-acf-field-file.php:206 +msgid "File Array" +msgstr "מערך קבצים" + +#: includes/fields/class-acf-field-file.php:207 +msgid "File URL" +msgstr "כתובת אינטרנט של הקובץ" + +#: includes/fields/class-acf-field-file.php:208 +msgid "File ID" +msgstr "מזהה הקובץ" + +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-image.php:213 +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Library" +msgstr "ספריה" + +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-image.php:214 +#: pro/fields/class-acf-field-gallery.php:656 +msgid "Limit the media library choice" +msgstr "הגבלת אפשרויות ספריית המדיה" + +#: includes/fields/class-acf-field-file.php:221 +#: includes/fields/class-acf-field-image.php:219 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:87 +#: includes/locations/class-acf-location-user-role.php:111 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:661 +msgid "All" +msgstr "הכל" + +#: includes/fields/class-acf-field-file.php:222 +#: includes/fields/class-acf-field-image.php:220 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Uploaded to post" +msgstr "הועלה לפוסט" + +#: includes/fields/class-acf-field-file.php:229 +#: includes/fields/class-acf-field-image.php:227 +#: pro/fields/class-acf-field-gallery.php:669 +msgid "Minimum" +msgstr "" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-file.php:241 +msgid "Restrict which files can be uploaded" +msgstr "" + +#: includes/fields/class-acf-field-file.php:240 +#: includes/fields/class-acf-field-image.php:256 +#: pro/fields/class-acf-field-gallery.php:698 +msgid "Maximum" +msgstr "" + +#: includes/fields/class-acf-field-file.php:251 +#: includes/fields/class-acf-field-image.php:285 +#: pro/fields/class-acf-field-gallery.php:727 +msgid "Allowed file types" +msgstr "" + +#: includes/fields/class-acf-field-file.php:252 +#: includes/fields/class-acf-field-image.php:286 +#: pro/fields/class-acf-field-gallery.php:728 +msgid "Comma separated list. Leave blank for all types" +msgstr "" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "מפת גוגל" + +#: includes/fields/class-acf-field-google-map.php:40 +msgid "Locating" +msgstr "מאתר" + +#: includes/fields/class-acf-field-google-map.php:41 +msgid "Sorry, this browser does not support geolocation" +msgstr "מצטערים, דפדפן זה אינו תומך בזיהוי מיקום גיאוגרפי" + +#: includes/fields/class-acf-field-google-map.php:113 +msgid "Clear location" +msgstr "ניקוי מיקום" + +#: includes/fields/class-acf-field-google-map.php:114 +msgid "Find current location" +msgstr "מציאת המיקום הנוכחי" + +#: includes/fields/class-acf-field-google-map.php:117 +msgid "Search for address..." +msgstr "חיפוש כתובת..." + +#: includes/fields/class-acf-field-google-map.php:147 +#: includes/fields/class-acf-field-google-map.php:158 +msgid "Center" +msgstr "מרכוז" + +#: includes/fields/class-acf-field-google-map.php:148 +#: includes/fields/class-acf-field-google-map.php:159 +msgid "Center the initial map" +msgstr "מירכוז המפה הראשונית" + +#: includes/fields/class-acf-field-google-map.php:170 +msgid "Zoom" +msgstr "זום" + +#: includes/fields/class-acf-field-google-map.php:171 +msgid "Set the initial zoom level" +msgstr "הגדרת רמת הזום הראשונית" + +#: includes/fields/class-acf-field-google-map.php:180 +#: includes/fields/class-acf-field-image.php:239 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-oembed.php:281 +#: pro/fields/class-acf-field-gallery.php:681 +#: pro/fields/class-acf-field-gallery.php:710 +msgid "Height" +msgstr "גובה" + +#: includes/fields/class-acf-field-google-map.php:181 +msgid "Customise the map height" +msgstr "התאמת גובה המפה" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:389 +msgid "Sub Fields" +msgstr "שדות משנה" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:840 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:845 +#: pro/fields/class-acf-field-flexible-content.php:612 +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Block" +msgstr "בלוק" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:846 +#: pro/fields/class-acf-field-flexible-content.php:611 +#: pro/fields/class-acf-field-repeater.php:457 +msgid "Table" +msgstr "טבלה" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:847 +#: pro/fields/class-acf-field-flexible-content.php:613 +#: pro/fields/class-acf-field-repeater.php:459 +msgid "Row" +msgstr "שורה" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "תמונה" + +#: includes/fields/class-acf-field-image.php:40 +msgid "Select Image" +msgstr "בחירת תמונה" + +#: includes/fields/class-acf-field-image.php:41 +#: pro/fields/class-acf-field-gallery.php:42 +msgid "Edit Image" +msgstr "עריכת תמונה" + +#: includes/fields/class-acf-field-image.php:42 +#: pro/fields/class-acf-field-gallery.php:43 +msgid "Update Image" +msgstr "עדכון תמונה" + +#: includes/fields/class-acf-field-image.php:44 +msgid "All images" +msgstr "כל פריטי המדיה" + +#: includes/fields/class-acf-field-image.php:140 +msgid "No image selected" +msgstr "לא נבחרה תמונה" + +#: includes/fields/class-acf-field-image.php:140 +msgid "Add Image" +msgstr "הוספת תמונה" + +#: includes/fields/class-acf-field-image.php:194 +msgid "Image Array" +msgstr "מערך תמונות" + +#: includes/fields/class-acf-field-image.php:195 +msgid "Image URL" +msgstr "כתובת אינטרנט של התמונה" + +#: includes/fields/class-acf-field-image.php:196 +msgid "Image ID" +msgstr "מזהה ייחודי של תמונה" + +#: includes/fields/class-acf-field-image.php:203 +msgid "Preview Size" +msgstr "גודל תצוגה" + +#: includes/fields/class-acf-field-image.php:204 +msgid "Shown when entering data" +msgstr "מוצג בעת הזנת נתונים" + +#: includes/fields/class-acf-field-image.php:228 +#: includes/fields/class-acf-field-image.php:257 +#: pro/fields/class-acf-field-gallery.php:670 +#: pro/fields/class-acf-field-gallery.php:699 +msgid "Restrict which images can be uploaded" +msgstr "" + +#: includes/fields/class-acf-field-image.php:231 +#: includes/fields/class-acf-field-image.php:260 +#: includes/fields/class-acf-field-oembed.php:270 +#: pro/fields/class-acf-field-gallery.php:673 +#: pro/fields/class-acf-field-gallery.php:702 +msgid "Width" +msgstr "" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "הודעה" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "שורות חדשות" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "שליטה על אופן ההצגה של שורות חדשות " + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "הוספה אוטומטית של פסקאות" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "הוספה אוטומטית של <br>" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "ללא עיצוב" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +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-number.php:25 +msgid "Number" +msgstr "מספר" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:157 +msgid "Minimum Value" +msgstr "ערך מינימום" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:167 +msgid "Maximum Value" +msgstr "ערך מקסימום" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:177 +msgid "Step Size" +msgstr "גודל הצעד" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "הערך חייב להיות מספר" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "הערך חייב להיות שווה או גדול יותר מ-%d" + +#: includes/fields/class-acf-field-number.php:245 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "הערך חייב להיות שווה או קטן יותר מ-%d" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "‏שדה הטמעה" + +#: includes/fields/class-acf-field-oembed.php:219 +msgid "Enter URL" +msgstr "הקלד כתובת URL" + +#: includes/fields/class-acf-field-oembed.php:234 +#: includes/fields/class-acf-field-taxonomy.php:898 +msgid "Error." +msgstr "שגיאה." + +#: includes/fields/class-acf-field-oembed.php:234 +msgid "No embed found for the given URL." +msgstr "לא נמצא קוד הטמעה לכתובת ה-URL הנתונה." + +#: includes/fields/class-acf-field-oembed.php:267 +#: includes/fields/class-acf-field-oembed.php:278 +msgid "Embed Size" +msgstr "גודל ההטמעה " + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "ארכיונים" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:384 +#: includes/fields/class-acf-field-relationship.php:623 +msgid "Filter by Post Type" +msgstr "סינון על פי סוג פוסט" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:392 +#: includes/fields/class-acf-field-relationship.php:631 +msgid "All post types" +msgstr "כל סוגי הפוסטים" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:398 +#: includes/fields/class-acf-field-relationship.php:637 +msgid "Filter by Taxonomy" +msgstr "סינון לפי טקסונומיה" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:406 +#: includes/fields/class-acf-field-relationship.php:645 +msgid "All taxonomies" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:422 +#: includes/fields/class-acf-field-select.php:396 +#: includes/fields/class-acf-field-user.php:418 +msgid "Select multiple values?" +msgstr "בחירת ערכים מרובים?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "ססמה" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:702 +msgid "Post Object" +msgstr "אובייקט פוסט" + +#: includes/fields/class-acf-field-post_object.php:438 +#: includes/fields/class-acf-field-relationship.php:703 +msgid "Post ID" +msgstr "מזהה ייחודי לפוסט" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "כפתור רדיו" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "אחר" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "הוספת האפשרות 'אחר' כדי לאפשר ערכים מותאמים אישית" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "שמירת אחר" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "שמירת ערכי 'אחר' לאפשרויות השדה" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "יחסים" + +#: includes/fields/class-acf-field-relationship.php:37 +msgid "Minimum values reached ( {min} values )" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:38 +msgid "Maximum values reached ( {max} values )" +msgstr "הגעתם לערך המקסימלי האפשרי ( ערכי {max} )" + +#: includes/fields/class-acf-field-relationship.php:39 +msgid "Loading" +msgstr "טוען" + +#: includes/fields/class-acf-field-relationship.php:40 +msgid "No matches found" +msgstr "לא נמצאו התאמות" + +#: includes/fields/class-acf-field-relationship.php:423 +msgid "Select post type" +msgstr "בחירת סוג פוסט" + +#: includes/fields/class-acf-field-relationship.php:449 +msgid "Select taxonomy" +msgstr "בחירת טקסונומיה" + +#: includes/fields/class-acf-field-relationship.php:539 +msgid "Search..." +msgstr "חיפוש..." + +#: includes/fields/class-acf-field-relationship.php:651 +msgid "Filters" +msgstr "מסננים (Filters)" + +#: includes/fields/class-acf-field-relationship.php:657 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "סוג פוסט" + +#: includes/fields/class-acf-field-relationship.php:658 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:763 +msgid "Taxonomy" +msgstr "טקסונמיה" + +#: includes/fields/class-acf-field-relationship.php:665 +msgid "Elements" +msgstr "אלמנטים" + +#: includes/fields/class-acf-field-relationship.php:666 +msgid "Selected elements will be displayed in each result" +msgstr "האלמנטים הנבחרים יוצגו בכל תוצאה" + +#: includes/fields/class-acf-field-relationship.php:677 +msgid "Minimum posts" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:686 +msgid "Maximum posts" +msgstr "מספר פוסטים מרבי" + +#: includes/fields/class-acf-field-relationship.php:790 +#: pro/fields/class-acf-field-gallery.php:800 +#, fuzzy, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s מחייב לפחות בחירה %s" +msgstr[1] "%s מחייב לפחות בחירה %s" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:785 +msgctxt "noun" +msgid "Select" +msgstr "" + +#: includes/fields/class-acf-field-select.php:38 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "" + +#: includes/fields/class-acf-field-select.php:39 +#, php-format +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:40 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "" + +#: includes/fields/class-acf-field-select.php:41 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:42 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:43 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "" + +#: includes/fields/class-acf-field-select.php:44 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:45 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "" + +#: includes/fields/class-acf-field-select.php:46 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "" + +#: includes/fields/class-acf-field-select.php:47 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "" + +#: includes/fields/class-acf-field-select.php:48 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "" + +#: includes/fields/class-acf-field-select.php:49 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:54 +msgctxt "verb" +msgid "Select" +msgstr "" + +#: includes/fields/class-acf-field-select.php:406 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "ממשק משתמש מסוגנן" + +#: includes/fields/class-acf-field-select.php:416 +msgid "Use AJAX to lazy load choices?" +msgstr "להשתמש ב-AJAX כדי לטעון את האפשרויות לאחר שהדף עולה" + +#: includes/fields/class-acf-field-select.php:427 +msgid "Specify the value returned" +msgstr "" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "לשונית" + +#: includes/fields/class-acf-field-tab.php:82 +msgid "" +"The tab field will display incorrectly when added to a Table style repeater " +"field or flexible content field layout" +msgstr "" +"שדה הלשונית יוצג באופן שגוי כשמוסיפים אותו לשדה חזרה שמוצג כטבלה או לשדה " +"פריסת תוכן גמישה" + +#: includes/fields/class-acf-field-tab.php:83 +msgid "" +"Use \"Tab Fields\" to better organize your edit screen by grouping fields " +"together." +msgstr "" +"השתמשו בלשוניות כדי לארגן את ממשק העריכה טוב יותר באמצעות קיבוץ השדות יחד." + +#: includes/fields/class-acf-field-tab.php:84 +msgid "" +"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." +msgstr "" +"כל השדות שאחרי \"שדה הלשונית\" הזה (או עד להגדרת שדה לשונית נוסף) יהיו " +"מקובצים יחד, כשהתווית של שדה זה תופיע ככותרת הלשונית." + +#: includes/fields/class-acf-field-tab.php:98 +msgid "Placement" +msgstr "מיקום" + +#: includes/fields/class-acf-field-tab.php:110 +msgid "End-point" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:111 +msgid "Use this field as an end-point and start a new group of tabs" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:713 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "None" +msgstr "ללא" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Select the taxonomy to be displayed" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Appearance" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Select the appearance of this field" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:779 +msgid "Multiple Values" +msgstr "ערכים מרובים" + +#: includes/fields/class-acf-field-taxonomy.php:781 +msgid "Multi Select" +msgstr "בחירה מרובה" + +#: includes/fields/class-acf-field-taxonomy.php:783 +msgid "Single Value" +msgstr "ערך יחיד" + +#: includes/fields/class-acf-field-taxonomy.php:784 +msgid "Radio Buttons" +msgstr "כפתורי רדיו" + +#: includes/fields/class-acf-field-taxonomy.php:803 +msgid "Create Terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:804 +msgid "Allow new terms to be created whilst editing" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:813 +msgid "Save Terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:814 +msgid "Connect selected terms to the post" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:823 +msgid "Load Terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:824 +msgid "Load value from posts terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:838 +msgid "Term Object" +msgstr "אוביקט ביטוי" + +#: includes/fields/class-acf-field-taxonomy.php:839 +msgid "Term ID" +msgstr "מזהה הביטוי" + +#: includes/fields/class-acf-field-taxonomy.php:898 +#, php-format +msgid "User unable to add new %s" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:911 +#, php-format +msgid "%s already exists" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:952 +#, php-format +msgid "%s added" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:997 +msgid "Add" +msgstr "" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "טקסט" + +#: includes/fields/class-acf-field-text.php:155 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "הגבלת מספר תווים" + +#: includes/fields/class-acf-field-text.php:156 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "השאירו את השדה ריק אם אין מגבלת תווים" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "אזור טקסט" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "שורות" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "קובע את גובה אזור הטקסט" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "אמת / שקר" + +#: includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "כן" + +#: includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "לא" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Off Text" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:166 +msgid "Text shown when inactive" +msgstr "" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "כתובת ‏Url" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "הערך חייב להיות כתובת URL תקנית" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "משתמש" + +#: includes/fields/class-acf-field-user.php:393 +msgid "Filter by role" +msgstr "סינון על פי תפקיד" + +#: includes/fields/class-acf-field-user.php:401 +msgid "All user roles" +msgstr "כל תפקידי המשתמשים" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "עורך ויזואלי" + +#: includes/fields/class-acf-field-wysiwyg.php:359 +msgid "Visual" +msgstr "ויזואלי" + +#: includes/fields/class-acf-field-wysiwyg.php:360 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:366 +msgid "Click to initialize TinyMCE" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Tabs" +msgstr "לשוניות" + +#: includes/fields/class-acf-field-wysiwyg.php:424 +msgid "Visual & Text" +msgstr "עורך ויזואלי ועורך טקסט" + +#: includes/fields/class-acf-field-wysiwyg.php:425 +msgid "Visual Only" +msgstr "עורך ויזואלי בלבד" + +#: includes/fields/class-acf-field-wysiwyg.php:426 +msgid "Text Only" +msgstr "טקסט בלבד" + +#: includes/fields/class-acf-field-wysiwyg.php:433 +msgid "Toolbar" +msgstr "סרגל כלים" + +#: includes/fields/class-acf-field-wysiwyg.php:443 +msgid "Show Media Upload Buttons?" +msgstr "להציג כפתורי העלאת מדיה?" + +#: includes/fields/class-acf-field-wysiwyg.php:453 +msgid "Delay initialization?" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:454 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "" + +#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 +#: pro/admin/admin-options-page.php:308 +msgid "Edit field group" +msgstr "" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "" + +#: includes/forms/form-front.php:103 +#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 +msgid "Update" +msgstr "עדכון" + +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "הפוסט עודכן" + +#: includes/forms/form-front.php:229 +msgid "Spam Detected" +msgstr "" + +#: includes/input.php:259 +msgid "Expand Details" +msgstr "פרטים נוספים" + +#: includes/input.php:260 +msgid "Collapse Details" +msgstr "להסתיר פרטים" + +#: includes/input.php:261 +msgid "Validation successful" +msgstr "האימות עבר בהצלחה" + +#: includes/input.php:262 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "האימות נכשל" + +#: includes/input.php:263 +msgid "1 field requires attention" +msgstr "" + +#: includes/input.php:264 +#, php-format +msgid "%d fields require attention" +msgstr "" + +#: includes/input.php:265 +msgid "Restricted" +msgstr "" + +#: includes/input.php:266 +msgid "Are you sure?" +msgstr "" + +#: includes/input.php:270 +msgid "Cancel" +msgstr "" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "פוסט" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "עמוד" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "שדות" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "קובץ מצורף" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "תגובה" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "מנהל על" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "עמוד אב" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "תבנית עמוד" + +#: includes/locations/class-acf-location-page-template.php:98 +#: includes/locations/class-acf-location-post-template.php:151 +msgid "Default Template" +msgstr "תבנית ברירת המחדל" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "סוג עמוד" + +#: includes/locations/class-acf-location-page-type.php:145 +msgid "Front Page" +msgstr "עמוד ראשי" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Posts Page" +msgstr "עמוד פוסטים" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Top Level Page (no parent)" +msgstr "" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Parent Page (has children)" +msgstr "עמוד אב (יש לו עמודים ילדים)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Child Page (has parent)" +msgstr "עמוד בן (יש לו עמוד אב)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "קטגורית פוסטים" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "פורמט פוסט" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "סטטוס פוסט" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "טקסונומית פוסט" + +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "" + +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy Term" +msgstr "מונח טקסונומיה" + +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "טופס משתמש" + +#: includes/locations/class-acf-location-user-form.php:88 +msgid "Add / Edit" +msgstr "הוספה / עריכה" + +#: includes/locations/class-acf-location-user-form.php:89 +msgid "Register" +msgstr "הרשמה" + +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "תפקיד משתמש" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "ווידג׳ט" + +#: includes/media.php:55 +msgctxt "verb" +msgid "Edit" +msgstr "" + +#: includes/media.php:56 +msgctxt "verb" +msgid "Update" +msgstr "" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "ערך %s נדרש" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "שדות מיוחדים מתקדמים פרו" + +#: pro/admin/admin-options-page.php:200 +msgid "Publish" +msgstr "פורסם" + +#: pro/admin/admin-options-page.php:206 +#, php-format +msgid "" +"No Custom Field Groups found for this options page. Create a " +"Custom Field Group" +msgstr "" +"אף קבוצת שדות לא נמצאה בפח. יצירת קבוצת שדות מיוחדים" + +#: pro/admin/admin-settings-updates.php:78 +msgid "Error. Could not connect to update server" +msgstr "‏שגיאה. החיבור לשרת העדכון נכשל" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "עדכונים" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "ביטול הפעלת רשיון" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "הפעל את הרשיון" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +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:92 +msgid "Update Plugin" +msgstr "עדכון התוסף" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "הקלד בבקשה את מפתח הרשיון שלך לעיל כדי לשחרר את נעילת העדכונים" + +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "בדיקה חוזרת" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "הודעת שדרוג" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:808 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:825 +msgid "Display" +msgstr "תצוגה" + +#: pro/fields/class-acf-field-clone.php:826 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:831 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:832 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:853 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:856 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:867 +#, php-format +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:870 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:988 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1027 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1031 +#, php-format +msgid "All fields from %s field group" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:174 +#: pro/fields/class-acf-field-repeater.php:470 +msgid "Add Row" +msgstr "הוספת שורה חדשה" + +#: pro/fields/class-acf-field-flexible-content.php:34 +msgid "layout" +msgstr "פריסה" + +#: pro/fields/class-acf-field-flexible-content.php:35 +msgid "layouts" +msgstr "פריסות" + +#: pro/fields/class-acf-field-flexible-content.php:36 +msgid "remove {layout}?" +msgstr "מחיקת {פריסה}?" + +#: pro/fields/class-acf-field-flexible-content.php:37 +msgid "This field requires at least {min} {identifier}" +msgstr "לשדה זה דרושים לפחות {min} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:38 +msgid "This field has a limit of {max} {identifier}" +msgstr "לשדה זה יש מגבלה של {max} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:39 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "שדה זה דורש לפחות {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:40 +msgid "Maximum {label} limit reached ({max} {identifier})" +msgstr "הגעתם לערך המקסימלי של {label} האפשרי ({max} {identifier})" + +#: pro/fields/class-acf-field-flexible-content.php:41 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "‏{available} {label} {identifier} זמינים (מקסימום {max})" + +#: pro/fields/class-acf-field-flexible-content.php:42 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "‏{required} {label} {identifier} נדרש (מינימום {min})" + +#: pro/fields/class-acf-field-flexible-content.php:43 +msgid "Flexible Content requires at least 1 layout" +msgstr "דרושה לפחות פריסה אחת לתוכן הגמיש" + +#: pro/fields/class-acf-field-flexible-content.php:273 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "לחצו על כפתור \"%s\" שלמטה כדי להתחיל ביצירת הפריסה" + +#: pro/fields/class-acf-field-flexible-content.php:406 +msgid "Add layout" +msgstr "הוספת פריסה" + +#: pro/fields/class-acf-field-flexible-content.php:407 +msgid "Remove layout" +msgstr "הסרת פריסה" + +#: pro/fields/class-acf-field-flexible-content.php:408 +#: pro/fields/class-acf-field-repeater.php:298 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Reorder Layout" +msgstr "שינוי סדר פריסה" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Reorder" +msgstr "סידור מחדש" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Delete Layout" +msgstr "מחיקת פריסת תוכן" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Duplicate Layout" +msgstr "שכפול פריסת תוכן" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Add New Layout" +msgstr "הוספת פריסת תוכן חדשה" + +#: pro/fields/class-acf-field-flexible-content.php:628 +msgid "Min" +msgstr "מינימום" + +#: pro/fields/class-acf-field-flexible-content.php:641 +msgid "Max" +msgstr "מקסימום" + +#: pro/fields/class-acf-field-flexible-content.php:668 +#: pro/fields/class-acf-field-repeater.php:466 +msgid "Button Label" +msgstr "תווית כפתור" + +#: pro/fields/class-acf-field-flexible-content.php:677 +msgid "Minimum Layouts" +msgstr "מינימום פריסות" + +#: pro/fields/class-acf-field-flexible-content.php:686 +msgid "Maximum Layouts" +msgstr "מקסימום פריסות" + +#: pro/fields/class-acf-field-gallery.php:41 +msgid "Add Image to Gallery" +msgstr "הוספת תמונה לגלריה" + +#: pro/fields/class-acf-field-gallery.php:45 +msgid "Maximum selection reached" +msgstr "הגעתם למקסימום בחירה" + +#: pro/fields/class-acf-field-gallery.php:321 +msgid "Length" +msgstr "אורך" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:373 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:544 +msgid "Add to gallery" +msgstr "הוספה לגלריה" + +#: pro/fields/class-acf-field-gallery.php:548 +msgid "Bulk actions" +msgstr "עריכה קבוצתית" + +#: pro/fields/class-acf-field-gallery.php:549 +msgid "Sort by date uploaded" +msgstr "מיון לפי תאריך העלאה" + +#: pro/fields/class-acf-field-gallery.php:550 +msgid "Sort by date modified" +msgstr "מיון לפי תאריך שינוי" + +#: pro/fields/class-acf-field-gallery.php:551 +msgid "Sort by title" +msgstr "מיון לפי כותרת" + +#: pro/fields/class-acf-field-gallery.php:552 +msgid "Reverse current order" +msgstr "הפוך סדר נוכחי" + +#: pro/fields/class-acf-field-gallery.php:570 +msgid "Close" +msgstr "סגור" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Minimum Selection" +msgstr "מינימום בחירה" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Maximum Selection" +msgstr "מקסימום בחירה" + +#: pro/fields/class-acf-field-gallery.php:642 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:643 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:647 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:648 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:36 +msgid "Minimum rows reached ({min} rows)" +msgstr "הגעתם למינימום שורות האפשרי ({min} שורות)" + +#: pro/fields/class-acf-field-repeater.php:37 +msgid "Maximum rows reached ({max} rows)" +msgstr "הגעתם למקסימום שורות האפשרי ({max} שורות)" + +#: pro/fields/class-acf-field-repeater.php:343 +msgid "Add row" +msgstr "הוספת שורה" + +#: pro/fields/class-acf-field-repeater.php:344 +msgid "Remove row" +msgstr "הסרת שורה" + +#: pro/fields/class-acf-field-repeater.php:419 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:420 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:430 +msgid "Minimum Rows" +msgstr "מינימום שורות" + +#: pro/fields/class-acf-field-repeater.php:440 +msgid "Maximum Rows" +msgstr "מקסימום שורות" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "לא קיים דף אפשרויות" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "אפשרויות" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "האפשרויות עודכנו" + +#: pro/updates.php:97 +#, php-format +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 "" + +#. Plugin URI of the plugin/theme +msgid "https://www.advancedcustomfields.com/" +msgstr "" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "" + +#~ msgid "See what's new in" +#~ msgstr "מה חדש ב" + +#~ msgid "version" +#~ msgstr "גרסה" + +#~ msgid "Getting Started" +#~ msgstr "תחילת עבודה" + +#~ msgid "Field Types" +#~ msgstr "סוגי שדות" + +#~ msgid "Functions" +#~ msgstr "פונקציות" + +#~ msgid "Actions" +#~ msgstr "פעולות (Actions)" + +#~ msgid "'How to' guides" +#~ msgstr "מדריכי ׳איך לעשות׳" + +#~ msgid "Tutorials" +#~ msgstr "הדרכות" + +#~ msgid "Created by" +#~ msgstr "נוצר בידי" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "‏הצלחה. כלי הייבוא הוסיף %s קבוצות שדה: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "‏אזהרה. כלי הייבוא זיהה %s קבוצות שדה שכבר קיימות, ולפיכך הן לא " +#~ "יובאו: %s" + +#~ msgid "Upgrade" +#~ msgstr "שדרוג" + +#~ msgid "Error" +#~ msgstr "שגיאה" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "גררו ושחררו כדי לשנות את הסדר" + +#~ msgid "See what's new" +#~ msgstr "בואו לראות מה חדש" + +#~ msgid "Done" +#~ msgstr "בוצע" + +#~ msgid "Today" +#~ msgstr "היום" + +#~ msgid "Show a different month" +#~ msgstr "הצגת חודש אחר" + +#~ msgid "Return format" +#~ msgstr "פורמט חוזר" + +#~ msgid "uploaded to this post" +#~ msgstr "העלה לפוסט הזה" + +#~ msgid "File Name" +#~ msgstr "שם קובץ" + +#~ msgid "File Size" +#~ msgstr "גודל קובץ" + +#~ msgid "No File selected" +#~ msgstr "לא נבחר קובץ" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "שימו לב שכל הטקסט יועבר קודם דרך פונקציית וורדפרס " + +#~ msgid "Select" +#~ msgstr "בחירה" + +#~ msgid "Warning" +#~ msgstr "זהירות" + +#~ msgid "eg. Show extra content" +#~ msgstr "למשל: הצגת תוכן נוסף" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "‏שגיאת התחברות. מצטערים, בבקשה נסה שנית" + +#~ msgid "Save Options" +#~ msgstr "שמירת אפשרויות" + +#~ msgid "License" +#~ msgstr "רשיון" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "כדי לאפשר קבלת עדכונים, נא להקליד את מפתח הרשיון שלך להלן. אם אין לכך " +#~ "מפתח רשיון, בבקשה בקר בדף " + +#~ msgid "details & pricing" +#~ msgstr "פרטים ומחירים" + +#~ 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 "" +#~ "כדי לאפשר עדכונים, בבקשה הקלד את מפתח הרשיון שלך בדף העדכונים. אם אין לך מפתח רשיון, בבקשה עבור לדף פרטים ומחירים" + +#~ msgid "Field Groups" +#~ msgstr "שדות וקבוצות" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "טעינת ערך המבוסס על המונחים של הפוסט ועדכון המונחים של הפוסט בשמירה" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "טעינה ושמירה של תנאים לפוסט" + +#~ msgid "No taxonomy filter" +#~ msgstr "ללא סינון טקסונומיה" + +#~ msgid "%s required fields below are empty" +#~ msgstr "%s שדות החובה שלהלן ריקים" + +#~ msgid "1 required field below is empty" +#~ msgstr "שדה חובה אחד שלהלן ריק" + +#~ msgid "%s requires at least %s selections" +#~ msgstr "%s מחייב לפחות %s בחירות" + +#~ msgid "Data is at the latest version." +#~ msgstr "הנתונים הם בגרסה העדכנית ביותר." + +#~ msgid "Data upgraded successfully." +#~ msgstr "שדרוג הנתונים הסתיים בהצלחה." + +#~ msgid "Data Upgrade" +#~ msgstr "שדרוג נתונים" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exiting " +#~ "way!" +#~ msgstr "אנחנו משנים את אופן ההפצה של יכולות הפרימיום בצורה מלהיבה!" + +#~ msgid "Update Database" +#~ msgstr "עדכון מאגר נתונים" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "למדו מדוע ACF PRO נחוץ לאתר שלכם" + +#~ msgid "ACF PRO Required" +#~ msgstr "‏ACF PRO נדרש" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "שינמוך ל-ACF גרסה %s" + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "אל תלחצו, אתם יכולים פשוט לשנמך את גרסת התוסיף ולהמשיך להשתמש ב-ACF שאתם " +#~ "מכירים!" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "זיהינו בעיה שמחייבת את תשומת הלב שלכם: האתר הזה משתמש בהרחבות פרימיום " +#~ "(%s) שאינן תואמות עם ACF יותר." + +#~ 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 "" +#~ "אם קבוצות שדות רבות מופיעות במסך העריכה של העמוד, הסדר ייקבע לפי ההגדרות " +#~ "בקבוצת השדות הראשונה. (זאת עם מספר הסדר הנמוך ביותר)" + +#~ msgid "Select items to hide them from the edit screen" +#~ msgstr "בחרו פריטים שיוסתרו במסך העריכה" + +#~ msgid "Field groups are created in order
                              from lowest to highest" +#~ msgstr "קבוצות שדות יסודרו
                              מהנמוך ביותר לגבוה ביותר" + +#~ msgid "Logged in User Type" +#~ msgstr "סוג משתמש מחובר" + +#~ msgid "Top Level Page (parent of 0)" +#~ msgstr "עמוד ברמה הגבוהה ביותר (ללא הורה)" + +#~ msgid "Trash" +#~ msgstr "פח" + +#~ msgid "Revision" +#~ msgstr "גרסת עריכה" + +#~ msgid "Private" +#~ msgstr "פרטי" + +#~ msgid "Future" +#~ msgstr "עתידי" + +#~ msgid "Draft" +#~ msgstr "טיוטה" + +#~ msgid "Pending Review" +#~ msgstr "ממתין לסקירה" + +#~ msgid "Show Field Keys" +#~ msgstr "הצגת מפתחות שדה:" + +#~ msgid "Hide / Show All" +#~ msgstr "הצגה/הסתרת הכל" + +#~ msgid "Import / Export" +#~ msgstr "ייבוא / ייצוא" diff --git a/lang/pro/acf-hr.po b/lang/pro/acf-hr.po new file mode 100644 index 0000000..92ad34f --- /dev/null +++ b/lang/pro/acf-hr.po @@ -0,0 +1,3849 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2022-02-10 13:29+0000\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Elliot Condon \n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 3.0.1\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:3, pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: acf.php:4, acf.php:8 +#, fuzzy +#| msgid "https://www.advancedcustomfields.com/" +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com/" + +#: acf.php:5 +#, fuzzy +#| msgid "" +#| "Customise WordPress with powerful, professional and intuitive fields." +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Prilagodite WordPress sa moćnim, profesionalnim i intuitivnim dodatnim " +"poljima." + +#: acf.php:7 +msgid "Delicious Brains" +msgstr "" + +#: acf.php:70 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:359, includes/admin/admin.php:50, includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "Grupe polja" + +#: acf.php:360 +msgid "Field Group" +msgstr "Grupa polja" + +#: acf.php:361, acf.php:395, includes/admin/admin.php:51, +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Dodaj" + +#: acf.php:362 +msgid "Add New Field Group" +msgstr "Dodaj novo polje" + +#: acf.php:363 +msgid "Edit Field Group" +msgstr "Uredi polje" + +#: acf.php:364 +msgid "New Field Group" +msgstr "Novo polje" + +#: acf.php:365 +msgid "View Field Group" +msgstr "Pregledaj polje" + +#: acf.php:366 +msgid "Search Field Groups" +msgstr "Pretraži polja" + +#: acf.php:367 +msgid "No Field Groups found" +msgstr "Niste dodali nijedno polje" + +#: acf.php:368 +msgid "No Field Groups found in Trash" +msgstr "Nije pronađena nijedna stranica" + +#: acf.php:393, includes/admin/admin-field-group.php:233, +#: includes/admin/admin-field-groups.php:266, +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Polja" + +#: acf.php:394 +msgid "Field" +msgstr "Polje" + +#: acf.php:396 +msgid "Add New Field" +msgstr "Dodaj polje" + +#: acf.php:397 +msgid "Edit Field" +msgstr "Uredi polje" + +#: acf.php:398, includes/admin/views/field-group-fields.php:56 +msgid "New Field" +msgstr "Dodaj polje" + +#: acf.php:399 +msgid "View Field" +msgstr "Pregledaj polje" + +#: acf.php:400 +msgid "Search Fields" +msgstr "Pretraži polja" + +#: acf.php:401 +msgid "No Fields found" +msgstr "Nije pronađeno nijedno polje" + +#: acf.php:402 +msgid "No Fields found in Trash" +msgstr "Nije pronađeno nijedno polje u smeću" + +#: acf.php:440, includes/admin/admin-field-group.php:385, +#: includes/admin/admin-field-groups.php:230 +#, fuzzy +#| msgid "Table" +msgctxt "post status" +msgid "Disabled" +msgstr "Tablica" + +#: acf.php:445 +#, fuzzy +#| msgid "Active (%s)" +#| msgid_plural "Active (%s)" +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Aktivno (%s)" +msgstr[1] "Aktivno (%s)" +msgstr[2] "Aktivno (%s)" + +#: acf.php:495 +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 "" + +#: acf.php:497 +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 "" + +#: includes/acf-field-functions.php:841, +#: includes/admin/admin-field-group.php:171 +#, fuzzy +#| msgid "(no title)" +msgid "(no label)" +msgstr "(bez naziva)" + +#: includes/acf-field-group-functions.php:846, +#: includes/admin/admin-field-group.php:173 +msgid "copy" +msgstr "kopiraj" + +#: includes/acf-value-functions.php:353 +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/acf-wp-functions.php:41 +#, fuzzy +#| msgid "Post" +msgid "Posts" +msgstr "Objava" + +#: includes/acf-wp-functions.php:54 +#, fuzzy +#| msgid "Taxonomy" +msgid "Taxonomies" +msgstr "Taksonomija" + +#: includes/acf-wp-functions.php:59 +#, fuzzy +#| msgid "Attachment" +msgid "Attachments" +msgstr "Prilog" + +#: includes/acf-wp-functions.php:63, +#: includes/admin/views/field-group-options.php:144 +msgid "Comments" +msgstr "Komentari" + +#: includes/acf-wp-functions.php:67 +#, fuzzy +#| msgid "Widget" +msgid "Widgets" +msgstr "Widget" + +#: includes/acf-wp-functions.php:71, +#: includes/locations/class-acf-location-nav-menu.php:89 +msgid "Menus" +msgstr "Izbornici" + +#: includes/acf-wp-functions.php:75 +#, fuzzy +#| msgid "Menu Item" +msgid "Menu items" +msgstr "Stavka izbornika" + +#: includes/acf-wp-functions.php:79 +#, fuzzy +#| msgid "User" +msgid "Users" +msgstr "Korisnik" + +#: includes/acf-wp-functions.php:83, pro/options-page.php:47 +msgid "Options" +msgstr "Postavke" + +#: includes/acf-wp-functions.php:87 +#, fuzzy +#| msgid "Block" +msgid "Blocks" +msgstr "Blok" + +#: includes/assets.php:348 +msgid "Are you sure?" +msgstr "Jeste li sigurni?" + +#: includes/assets.php:349, includes/fields/class-acf-field-true_false.php:80, +#: includes/fields/class-acf-field-true_false.php:176, +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Da" + +#: includes/assets.php:350, includes/fields/class-acf-field-true_false.php:83, +#: includes/fields/class-acf-field-true_false.php:193, +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Ne" + +#: includes/assets.php:351, includes/fields/class-acf-field-file.php:159, +#: includes/fields/class-acf-field-image.php:139, +#: includes/fields/class-acf-field-link.php:142, +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Ukloni" + +#: includes/assets.php:352 +msgid "Cancel" +msgstr "Otkaži" + +#: includes/assets.php:362 +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/assets.php:365 +msgid "Validation successful" +msgstr "Uspješna verifikacija" + +#: includes/assets.php:366, includes/validation.php:286, +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Verifikacija nije uspjela" + +#: includes/assets.php:367 +msgid "1 field requires attention" +msgstr "1 polje treba vašu pažnju" + +#: includes/assets.php:368 +msgid "%d fields require attention" +msgstr "Nekoliko polja treba vašu pažnje: %d" + +#: includes/assets.php:371, includes/forms/form-comment.php:160, +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Uredi skup polja" + +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Tip polja ne postoji" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Nepoznato polje" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Osnovno" + +#: includes/fields.php:355, includes/forms/form-front.php:49 +msgid "Content" +msgstr "Sadržaj" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Odabir" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relacijski" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:359, +#: includes/fields/class-acf-field-button-group.php:181, +#: includes/fields/class-acf-field-checkbox.php:377, +#: includes/fields/class-acf-field-group.php:462, +#: includes/fields/class-acf-field-radio.php:256, +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:451 +msgid "Layout" +msgstr "Format" + +#: includes/locations.php:25 +#, fuzzy +#| msgid "Field type does not exist" +msgid "Class \"%s\" does not exist." +msgstr "Tip polja ne postoji" + +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "" + +#: includes/locations.php:99, includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Objava" + +#: includes/locations.php:100, +#: includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Stranice" + +#: includes/locations.php:101, includes/fields/class-acf-field-user.php:20 +msgid "User" +msgstr "Korisnik" + +#: includes/locations.php:102 +msgid "Forms" +msgstr "Forme" + +#: includes/media.php:48, includes/fields/class-acf-field-select.php:255 +msgctxt "verb" +msgid "Select" +msgstr "Odaberi" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Uredi" + +#: includes/media.php:50 +msgctxt "verb" +msgid "Update" +msgstr "Ažuriraj" + +#: includes/media.php:51 +msgid "Uploaded to this post" +msgstr "Postavljeno uz ovu objavu" + +#: includes/media.php:52 +msgid "Expand Details" +msgstr "Prošireni prikaz" + +#: includes/media.php:53 +msgid "Collapse Details" +msgstr "Sakrij detalje" + +#: includes/media.php:54 +msgid "Restricted" +msgstr "Ograničen pristup" + +#: includes/media.php:55, includes/fields/class-acf-field-image.php:67 +msgid "All images" +msgstr "Sve slike" + +#: includes/validation.php:364 +msgid "%s value is required" +msgstr "%s je obavezno" + +#: pro/blocks.php:37 +#, fuzzy +#| msgid "%s value is required" +msgid "Block type name is required." +msgstr "%s je obavezno" + +#: pro/blocks.php:44 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:495 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:496 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:497 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:500 +#, fuzzy +#| msgid "Settings" +msgid "%s settings" +msgstr "Postavke" + +#: pro/options-page.php:77, includes/forms/form-front.php:106, +#: pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Ažuriraj" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Provjeri ponovno" + +#: pro/updates.php:561 +#, 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" + +#: includes/admin/admin-field-group.php:84, +#: includes/admin/admin-field-group.php:85, +#: includes/admin/admin-field-group.php:87 +msgid "Field group updated." +msgstr "Skup polja ažuriran." + +#: includes/admin/admin-field-group.php:86 +msgid "Field group deleted." +msgstr "Skup polja izbrisan." + +#: includes/admin/admin-field-group.php:89 +msgid "Field group published." +msgstr "Skup polja objavljen." + +#: includes/admin/admin-field-group.php:90 +msgid "Field group saved." +msgstr "Skup polja spremljen." + +#: includes/admin/admin-field-group.php:91 +msgid "Field group submitted." +msgstr "Skup polja je spremljen." + +#: includes/admin/admin-field-group.php:92 +msgid "Field group scheduled for." +msgstr "Skup polja je označen za." + +#: includes/admin/admin-field-group.php:93 +msgid "Field group draft updated." +msgstr "Skica ažurirana." + +#: includes/admin/admin-field-group.php:164 +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/admin-field-group.php:165 +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/admin-field-group.php:166 +msgid "Field group title is required" +msgstr "Naziv polja je obavezna" + +#: includes/admin/admin-field-group.php:167 +msgid "Move to trash. Are you sure?" +msgstr "Premjesti u smeće?" + +#: includes/admin/admin-field-group.php:168 +msgid "No toggle fields available" +msgstr "Nema polja koji omoguću korisniku odabir" + +#: includes/admin/admin-field-group.php:169 +msgid "Move Custom Field" +msgstr "Premjesti polje" + +#: includes/admin/admin-field-group.php:170 +#, fuzzy +#| msgid "checked" +msgid "Checked" +msgstr "odabrano" + +#: includes/admin/admin-field-group.php:172 +#, fuzzy +#| msgid "Show this field if" +msgid "(this field)" +msgstr "Prikaži polje ako" + +#: includes/admin/admin-field-group.php:174, includes/api/api-helpers.php:3419, +#: includes/admin/views/field-group-field-conditional-logic.php:60, +#: includes/admin/views/field-group-field-conditional-logic.php:170, +#: includes/admin/views/field-group-locations.php:36, +#: includes/admin/views/html-location-group.php:3 +msgid "or" +msgstr "ili" + +#: includes/admin/admin-field-group.php:175, +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Prikaži ovaj skup polja ako" + +#: includes/admin/admin-field-group.php:176 +msgid "Null" +msgstr "Null" + +#: includes/admin/admin-field-group.php:179 +msgid "Has any value" +msgstr "" + +#: includes/admin/admin-field-group.php:180 +msgid "Has no value" +msgstr "" + +#: includes/admin/admin-field-group.php:181 +#, fuzzy +#| msgid "is equal to" +msgid "Value is equal to" +msgstr "je jednako" + +#: includes/admin/admin-field-group.php:182 +#, fuzzy +#| msgid "is not equal to" +msgid "Value is not equal to" +msgstr "je drukčije" + +#: includes/admin/admin-field-group.php:183 +#, fuzzy +#| msgid "Value must be a number" +msgid "Value matches pattern" +msgstr "Vrijednost mora biti broj" + +#: includes/admin/admin-field-group.php:184 +msgid "Value contains" +msgstr "" + +#: includes/admin/admin-field-group.php:185 +#, fuzzy +#| msgid "Value must be equal to or lower than %d" +msgid "Value is greater than" +msgstr "Unešena vrijednost mora biti jednaka ili niža od %d" + +#: includes/admin/admin-field-group.php:186 +#, fuzzy +#| msgid "Value must be a number" +msgid "Value is less than" +msgstr "Vrijednost mora biti broj" + +#: includes/admin/admin-field-group.php:187 +msgid "Selection is greater than" +msgstr "" + +#: includes/admin/admin-field-group.php:188 +#, fuzzy +#| msgid "Select File" +msgid "Selection is less than" +msgstr "Odaberite datoteku" + +#: includes/admin/admin-field-group.php:191 +msgid "Repeater (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:192 +#, fuzzy +#| msgid "Flexible Content" +msgid "Flexible Content (Pro only)" +msgstr "Fleksibilno polje" + +#: includes/admin/admin-field-group.php:193 +msgid "Clone (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:194 +msgid "Gallery (Pro only)" +msgstr "" + +#: includes/admin/admin-field-group.php:234, +#: includes/admin/admin-field-groups.php:265 +msgid "Location" +msgstr "Lokacija" + +#: includes/admin/admin-field-group.php:235, +#: includes/admin/tools/class-acf-admin-tool-export.php:288 +msgid "Settings" +msgstr "Postavke" + +#: includes/admin/admin-field-group.php:361 +msgid "Field Keys" +msgstr "Oznaka polja" + +#: includes/admin/admin-field-group.php:385 +#, fuzzy +#| msgid "Active" +msgctxt "post status" +msgid "Active" +msgstr "Aktivan" + +#: includes/admin/admin-field-group.php:752 +msgid "Move Complete." +msgstr "Premještanje dovršeno." + +#: includes/admin/admin-field-group.php:754 +#, fuzzy +#| msgid "The %s field can now be found in the %s field group" +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "" +"Polje %s od sada možete naći na drugoj lokacaiji, kao dio %s skupa polja" + +#: includes/admin/admin-field-group.php:758 +msgid "Close Window" +msgstr "Zatvori prozor" + +#: includes/admin/admin-field-group.php:797 +msgid "Please select the destination for this field" +msgstr "Odaberite lokaciju za ovo polje" + +#: includes/admin/admin-field-group.php:804 +msgid "Move Field" +msgstr "Premjesti polje" + +#: includes/admin/admin-field-groups.php:116 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktivno (%s)" +msgstr[1] "Aktivno (%s)" +msgstr[2] "Aktivno (%s)" + +#: includes/admin/admin-field-groups.php:196 +msgid "Review local JSON changes" +msgstr "" + +#: includes/admin/admin-field-groups.php:197 +#, fuzzy +#| msgid "Loading" +msgid "Loading diff" +msgstr "Učitavanje" + +#: includes/admin/admin-field-groups.php:198, +#: includes/admin/admin-field-groups.php:533 +msgid "Sync changes" +msgstr "" + +#: includes/admin/admin-field-groups.php:263, +#: pro/fields/class-acf-field-gallery.php:388, +#: includes/admin/views/field-group-options.php:127, +#: includes/admin/views/html-admin-page-upgrade-network.php:38, +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Opis" + +#: includes/admin/admin-field-groups.php:264, +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Ključ" + +#: includes/admin/admin-field-groups.php:269 +msgid "Local JSON" +msgstr "Učitavanje polja iz JSON datoteke" + +#: includes/admin/admin-field-groups.php:419 +msgid "Various" +msgstr "" + +#: includes/admin/admin-field-groups.php:449 +#, fuzzy +#| msgid "Location" +msgid "Located in: %s" +msgstr "Lokacija" + +#: includes/admin/admin-field-groups.php:445 +msgid "Located in plugin: %s" +msgstr "" + +#: includes/admin/admin-field-groups.php:441 +msgid "Located in theme: %s" +msgstr "" + +#: includes/admin/admin-field-groups.php:484 +msgid "Awaiting save" +msgstr "" + +#: includes/admin/admin-field-groups.php:481 +msgid "Saved" +msgstr "" + +#: includes/admin/admin-field-groups.php:469, +#: includes/admin/admin-field-groups.php:687 +msgid "Sync available" +msgstr "Sinkronizacija dostupna" + +#: includes/admin/admin-field-groups.php:477 +msgid "Import" +msgstr "Uvoz" + +#: includes/admin/admin-field-groups.php:472 +msgid "Sync" +msgstr "Sinkroniziraj" + +#: includes/admin/admin-field-groups.php:473 +msgid "Review changes" +msgstr "" + +#: includes/admin/admin-field-groups.php:505 +msgid "Duplicate this item" +msgstr "Dupliciraj" + +#: includes/admin/admin-field-groups.php:505, +#: includes/admin/admin-field-groups.php:525, +#: pro/fields/class-acf-field-flexible-content.php:553, +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate" +msgstr "Dupliciraj" + +#: includes/admin/admin-field-groups.php:555 +#, fuzzy +#| msgid "Field group duplicated. %s" +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Skup polja %s dupliciran" +msgstr[1] "Skup polja %s dupliciran" +msgstr[2] "Skup polja %s dupliciran" + +#: includes/admin/admin-field-groups.php:612 +#, fuzzy +#| msgid "Field group synchronised. %s" +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "Skup polja sinkroniziran. %s" +msgstr[1] "Skup polja sinkroniziran. %s" +msgstr[2] "Skup polja sinkroniziran. %s" + +#: includes/admin/admin-field-groups.php:800 +msgid "Select %s" +msgstr "Odaberi %s" + +#: includes/admin/admin-tools.php:119, +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Alati" + +#: includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:113, +#: includes/admin/admin-upgrade.php:114, includes/admin/admin-upgrade.php:177, +#: includes/admin/views/html-admin-page-upgrade-network.php:24, +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Nadogradi bazu podataka" + +#: includes/admin/admin-upgrade.php:201 +msgid "Review sites & upgrade" +msgstr "Pregledaj stranice i nadogradi" + +#: includes/admin/admin.php:49, +#: includes/admin/views/field-group-options.php:142 +msgid "Custom Fields" +msgstr "Dodatna polja" + +#: includes/admin/admin.php:129, includes/admin/admin.php:131 +msgid "Overview" +msgstr "" + +#: includes/admin/admin.php:132 +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:134 +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:137 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" + +#: includes/admin/admin.php:146, includes/admin/admin.php:148 +#, fuzzy +#| msgid "Support" +msgid "Help & Support" +msgstr "Podrška" + +#: includes/admin/admin.php:149 +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:152 +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" + +#: includes/admin/admin.php:156 +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:160 +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" + +#: includes/admin/admin.php:169 +#, fuzzy +#| msgid "Update Information" +msgid "Information" +msgstr "Ažuriraj informacije" + +#: includes/admin/admin.php:170 +#, fuzzy +#| msgid "Revisions" +msgid "Version %s" +msgstr "Revizija" + +#: includes/admin/admin.php:171 +#, fuzzy +#| msgid "View Field" +msgid "View details" +msgstr "Pregledaj polje" + +#: includes/admin/admin.php:172 +#, fuzzy +#| msgid "Website" +msgid "Visit website" +msgstr "Web mjesto" + +#: includes/admin/admin.php:201, +#: includes/admin/views/field-group-field-conditional-logic.php:157, +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "i" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +#, fuzzy +#| msgid "%s field group duplicated." +#| msgid_plural "%s field groups duplicated." +msgid "Invalid field group parameter(s)." +msgstr "Polja duplicirana (%s)." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +#, fuzzy +#| msgid "Edit field group" +msgid "Invalid field group ID." +msgstr "Uredi skup polja" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +#, fuzzy +#| msgid "Post updated" +msgid "Last updated: %s" +msgstr "Objava ažurirana" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +#, fuzzy +#| msgid "Edit field group" +msgid "Original field group" +msgstr "Uredi skup polja" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +#, fuzzy +#| msgid "No field groups selected" +msgid "JSON field group (newer)" +msgstr "Niste odabrali polje" + +#: includes/ajax/class-acf-ajax-upgrade.php:34, +#: includes/admin/views/html-admin-page-upgrade.php:94 +msgid "No updates available." +msgstr "Nema novih nadogradnji." + +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "" + +#: includes/api/api-helpers.php:821 +msgid "Thumbnail" +msgstr "Sličica" + +#: includes/api/api-helpers.php:822 +msgid "Medium" +msgstr "Srednja" + +#: includes/api/api-helpers.php:823 +msgid "Large" +msgstr "Velika" + +#: includes/api/api-helpers.php:864 +msgid "Full Size" +msgstr "Puna veličina" + +#: includes/api/api-helpers.php:1569, includes/api/api-term.php:147, +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(bez naziva)" + +#: includes/api/api-helpers.php:3353 +msgid "Image width must not exceed %dpx." +msgstr "Širina slike ne smije biti veća od %dpx." + +#: includes/api/api-helpers.php:3348 +msgid "Image width must be at least %dpx." +msgstr "Širina slike mora biti najmanje %dpx." + +#: includes/api/api-helpers.php:3372 +msgid "Image height must not exceed %dpx." +msgstr "Visina slike ne smije biti veća od %dpx." + +#: includes/api/api-helpers.php:3367 +msgid "Image height must be at least %dpx." +msgstr "Visina slike mora biti najmanje %dpx." + +#: includes/api/api-helpers.php:3392 +#, fuzzy +#| msgid "File size must must not exceed %s." +msgid "File size must not exceed %s." +msgstr "Datoteke ne smije biti veća od %s." + +#: includes/api/api-helpers.php:3387 +msgid "File size must be at least %s." +msgstr "Veličina datoteke mora biti najmanje %s." + +#: includes/api/api-helpers.php:3423 +msgid "File type must be %s." +msgstr "Tip datoteke mora biti %s." + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Multi prošireno" + +#: includes/fields/class-acf-field-accordion.php:102 +msgid "Open" +msgstr "Otvori" + +#: includes/fields/class-acf-field-accordion.php:103 +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:114 +msgid "Multi-expand" +msgstr "Mulit-proširenje" + +#: includes/fields/class-acf-field-accordion.php:115 +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:126, +#: includes/fields/class-acf-field-tab.php:117 +msgid "Endpoint" +msgstr "Prijelomna točka" + +#: includes/fields/class-acf-field-accordion.php:127 +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-button-group.php:24 +msgid "Button Group" +msgstr "Skup dugmadi" + +#: includes/fields/class-acf-field-button-group.php:147, +#: includes/fields/class-acf-field-checkbox.php:324, +#: includes/fields/class-acf-field-radio.php:191, +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Mogući odabiri" + +#: includes/fields/class-acf-field-button-group.php:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +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:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +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:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "crvena : Crvena" + +#: includes/fields/class-acf-field-button-group.php:158, +#: includes/fields/class-acf-field-page_link.php:482, +#: includes/fields/class-acf-field-post_object.php:394, +#: includes/fields/class-acf-field-radio.php:202, +#: includes/fields/class-acf-field-select.php:386, +#: includes/fields/class-acf-field-taxonomy.php:748, +#: includes/fields/class-acf-field-user.php:68 +msgid "Allow Null?" +msgstr "Dozvoli null vrijednost?" + +#: includes/fields/class-acf-field-button-group.php:170, +#: includes/fields/class-acf-field-checkbox.php:366, +#: includes/fields/class-acf-field-color_picker.php:155, +#: includes/fields/class-acf-field-email.php:117, +#: includes/fields/class-acf-field-number.php:125, +#: includes/fields/class-acf-field-radio.php:245, +#: includes/fields/class-acf-field-range.php:163, +#: includes/fields/class-acf-field-select.php:375, +#: includes/fields/class-acf-field-text.php:97, +#: includes/fields/class-acf-field-textarea.php:103, +#: includes/fields/class-acf-field-true_false.php:148, +#: includes/fields/class-acf-field-url.php:101, +#: includes/fields/class-acf-field-wysiwyg.php:334 +msgid "Default Value" +msgstr "Zadana vrijednost" + +#: includes/fields/class-acf-field-button-group.php:171, +#: includes/fields/class-acf-field-email.php:118, +#: includes/fields/class-acf-field-number.php:126, +#: includes/fields/class-acf-field-radio.php:246, +#: includes/fields/class-acf-field-range.php:164, +#: includes/fields/class-acf-field-text.php:98, +#: includes/fields/class-acf-field-textarea.php:104, +#: includes/fields/class-acf-field-url.php:102, +#: includes/fields/class-acf-field-wysiwyg.php:335 +msgid "Appears when creating a new post" +msgstr "Prikazuje se prilikom kreiranje nove objave" + +#: includes/fields/class-acf-field-button-group.php:187, +#: includes/fields/class-acf-field-checkbox.php:384, +#: includes/fields/class-acf-field-radio.php:263 +msgid "Horizontal" +msgstr "Horizontalno" + +#: includes/fields/class-acf-field-button-group.php:188, +#: includes/fields/class-acf-field-checkbox.php:383, +#: includes/fields/class-acf-field-radio.php:262 +msgid "Vertical" +msgstr "Vertikalno" + +#: includes/fields/class-acf-field-button-group.php:197, +#: includes/fields/class-acf-field-checkbox.php:405, +#: includes/fields/class-acf-field-file.php:227, +#: includes/fields/class-acf-field-link.php:170, +#: includes/fields/class-acf-field-radio.php:272, +#: includes/fields/class-acf-field-taxonomy.php:801 +msgid "Return Value" +msgstr "Vrati vrijednost" + +#: includes/fields/class-acf-field-button-group.php:198, +#: includes/fields/class-acf-field-checkbox.php:406, +#: includes/fields/class-acf-field-file.php:228, +#: includes/fields/class-acf-field-link.php:171, +#: includes/fields/class-acf-field-radio.php:273 +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:203, +#: includes/fields/class-acf-field-checkbox.php:411, +#: includes/fields/class-acf-field-radio.php:278, +#: includes/fields/class-acf-field-select.php:444 +msgid "Value" +msgstr "Vrijednost" + +#: includes/fields/class-acf-field-button-group.php:204, +#: includes/fields/class-acf-field-checkbox.php:412, +#: includes/fields/class-acf-field-radio.php:279, +#: includes/fields/class-acf-field-select.php:445, +#: pro/fields/class-acf-field-flexible-content.php:581, +#: includes/admin/views/field-group-fields.php:5 +msgid "Label" +msgstr "Oznaka" + +#: includes/fields/class-acf-field-button-group.php:205, +#: includes/fields/class-acf-field-checkbox.php:413, +#: includes/fields/class-acf-field-radio.php:280, +#: includes/fields/class-acf-field-select.php:446 +msgid "Both (Array)" +msgstr "Oboje (podatkovni niz)" + +#: includes/fields/class-acf-field-checkbox.php:25, +#: includes/fields/class-acf-field-taxonomy.php:733 +msgid "Checkbox" +msgstr "Skup dugmadi" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Toggle All" +msgstr "Sakrij sve" + +#: includes/fields/class-acf-field-checkbox.php:207 +msgid "Add new choice" +msgstr "Dodaj odabir" + +#: includes/fields/class-acf-field-checkbox.php:335 +msgid "Allow Custom" +msgstr "Obogući dodatne" + +#: includes/fields/class-acf-field-checkbox.php:340 +msgid "Allow 'custom' values to be added" +msgstr "Omogući ‘dodatne’ vrijednosti" + +#: includes/fields/class-acf-field-checkbox.php:348 +msgid "Save Custom" +msgstr "Spremi" + +#: includes/fields/class-acf-field-checkbox.php:353 +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:367, +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Unesite svaku novu vrijednost u zasebnu liniju" + +#: includes/fields/class-acf-field-checkbox.php:393 +msgid "Toggle" +msgstr "Prikaži/Sakrij" + +#: includes/fields/class-acf-field-checkbox.php:394 +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-color_picker.php:25 +msgid "Color Picker" +msgstr "Odabir boje" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Ukloni" + +#: includes/fields/class-acf-field-color_picker.php:70 +#, fuzzy +#| msgid "Clear location" +msgid "Clear color" +msgstr "Ukloni lokaciju" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Zadano" + +#: includes/fields/class-acf-field-color_picker.php:72 +#, fuzzy +#| msgid "Select Color" +msgid "Select default color" +msgstr "Odaberite boju" + +#: includes/fields/class-acf-field-color_picker.php:73 +msgid "Select Color" +msgstr "Odaberite boju" + +#: includes/fields/class-acf-field-color_picker.php:74 +#, fuzzy +#| msgid "Color Picker" +msgid "Color value" +msgstr "Odabir boje" + +#: includes/fields/class-acf-field-color_picker.php:95, +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:179, +#: includes/fields/class-acf-field-date_picker.php:216, +#: includes/fields/class-acf-field-date_time_picker.php:201, +#: includes/fields/class-acf-field-image.php:204, +#: includes/fields/class-acf-field-post_object.php:418, +#: includes/fields/class-acf-field-relationship.php:662, +#: includes/fields/class-acf-field-select.php:439, +#: includes/fields/class-acf-field-time_picker.php:131, +#: includes/fields/class-acf-field-user.php:90, +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Format za prikaz na web stranici" + +#: includes/fields/class-acf-field-color_picker.php:186 +#, fuzzy +#| msgid "Both (Array)" +msgid "RGBA Array" +msgstr "Oboje (podatkovni niz)" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Odabir datuma" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Završeno" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Danas" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Slijedeći" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Prethodni" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Tjedan" + +#: 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:114 +msgid "Display Format" +msgstr "Format prikaza" + +#: 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:115 +msgid "The format displayed when editing a post" +msgstr "Format za prikaz prilikom administracije" + +#: includes/fields/class-acf-field-date_picker.php:190, +#: includes/fields/class-acf-field-date_picker.php:226, +#: includes/fields/class-acf-field-date_time_picker.php:192, +#: includes/fields/class-acf-field-date_time_picker.php:211, +#: includes/fields/class-acf-field-time_picker.php:122, +#: includes/fields/class-acf-field-time_picker.php:139 +msgid "Custom:" +msgstr "Prilagođeno:" + +#: includes/fields/class-acf-field-date_picker.php:217, +#: includes/fields/class-acf-field-date_time_picker.php:202, +#: 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-date_picker.php:202 +msgid "Save Format" +msgstr "Spremi format" + +#: includes/fields/class-acf-field-date_picker.php:203 +msgid "The format used when saving a value" +msgstr "Format koji će biti spremljen" + +#: includes/fields/class-acf-field-date_picker.php:237, +#: includes/fields/class-acf-field-date_time_picker.php:220 +msgid "Week Starts On" +msgstr "Tjedan počinje" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Odabir datuma i sata" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Odaberi vrijeme" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Vrijeme" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Sat" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuta" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Sekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Vremenska zona" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Trenutno vrijeme" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Završeno" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +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 amText" +msgid "AM" +msgstr "Prije podne" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "Prije podne" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "Poslije podne" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "Poslije podne" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Email" + +#: includes/fields/class-acf-field-email.php:128, +#: includes/fields/class-acf-field-number.php:136, +#: includes/fields/class-acf-field-password.php:73, +#: includes/fields/class-acf-field-text.php:108, +#: includes/fields/class-acf-field-textarea.php:114, +#: includes/fields/class-acf-field-url.php:112 +msgid "Placeholder Text" +msgstr "Zadana vrijednost" + +#: includes/fields/class-acf-field-email.php:129, +#: includes/fields/class-acf-field-number.php:137, +#: includes/fields/class-acf-field-password.php:74, +#: includes/fields/class-acf-field-text.php:109, +#: includes/fields/class-acf-field-textarea.php:115, +#: includes/fields/class-acf-field-url.php:113 +msgid "Appears within the input" +msgstr "Prikazuje se unutar polja" + +#: includes/fields/class-acf-field-email.php:139, +#: includes/fields/class-acf-field-number.php:147, +#: includes/fields/class-acf-field-password.php:84, +#: includes/fields/class-acf-field-range.php:210, +#: includes/fields/class-acf-field-text.php:119 +msgid "Prepend" +msgstr "Umetni ispred" + +#: includes/fields/class-acf-field-email.php:140, +#: includes/fields/class-acf-field-number.php:148, +#: includes/fields/class-acf-field-password.php:85, +#: includes/fields/class-acf-field-range.php:211, +#: includes/fields/class-acf-field-text.php:120 +msgid "Appears before the input" +msgstr "Prijazuje se ispred polja" + +#: includes/fields/class-acf-field-email.php:150, +#: includes/fields/class-acf-field-number.php:158, +#: includes/fields/class-acf-field-password.php:95, +#: includes/fields/class-acf-field-range.php:221, +#: includes/fields/class-acf-field-text.php:130 +msgid "Append" +msgstr "Umetni na kraj" + +#: includes/fields/class-acf-field-email.php:151, +#: includes/fields/class-acf-field-number.php:159, +#: includes/fields/class-acf-field-password.php:96, +#: includes/fields/class-acf-field-range.php:222, +#: includes/fields/class-acf-field-text.php:131 +msgid "Appears after the input" +msgstr "Prikazuje se iza polja" + +#: includes/fields/class-acf-field-email.php:175 +msgid "'%s' is not a valid email address" +msgstr "" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Datoteka" + +#: includes/fields/class-acf-field-file.php:58, +#: includes/admin/tools/class-acf-admin-tool-import.php:55 +msgid "Select File" +msgstr "Odaberite datoteku" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Edit File" +msgstr "Uredi datoteku" + +#: includes/fields/class-acf-field-file.php:60 +msgid "Update File" +msgstr "Ažuriraj datoteku" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Naziv datoteke" + +#: includes/fields/class-acf-field-file.php:151, +#: includes/fields/class-acf-field-file.php:264, +#: includes/fields/class-acf-field-file.php:277, +#: includes/fields/class-acf-field-image.php:276, +#: includes/fields/class-acf-field-image.php:313, +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Veličina datoteke" + +#: includes/fields/class-acf-field-file.php:157, +#: includes/fields/class-acf-field-image.php:137, +#: includes/fields/class-acf-field-link.php:142, +#: pro/fields/class-acf-field-gallery.php:335, +#: includes/admin/views/field-group-field.php:56 +msgid "Edit" +msgstr "Uredi" + +#: includes/fields/class-acf-field-file.php:182, +#: includes/admin/tools/class-acf-admin-tool-import.php:89 +msgid "No file selected" +msgstr "Niste odabrali datoteku" + +#: includes/fields/class-acf-field-file.php:182 +msgid "Add File" +msgstr "Dodaj datoteku" + +#: includes/fields/class-acf-field-file.php:233 +msgid "File Array" +msgstr "Vrijednost kao niz" + +#: includes/fields/class-acf-field-file.php:234 +msgid "File URL" +msgstr "Putanja datoteke" + +#: includes/fields/class-acf-field-file.php:235 +msgid "File ID" +msgstr "Vrijednost kao ID" + +#: includes/fields/class-acf-field-file.php:244, +#: includes/fields/class-acf-field-image.php:233, +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Zbirka" + +#: includes/fields/class-acf-field-file.php:245, +#: includes/fields/class-acf-field-image.php:234, +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Ograniči odabir iz zbirke" + +#: includes/fields/class-acf-field-file.php:250, +#: includes/fields/class-acf-field-image.php:239, +#: 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, +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Sve" + +#: includes/fields/class-acf-field-file.php:251, +#: includes/fields/class-acf-field-image.php:240, +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Dodani uz trenutnu objavu" + +#: includes/fields/class-acf-field-file.php:260, +#: includes/fields/class-acf-field-image.php:249, +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:261, +#: includes/fields/class-acf-field-file.php:274 +msgid "Restrict which files can be uploaded" +msgstr "Ograniči tip datoteka koji se smije uvesti" + +#: includes/fields/class-acf-field-file.php:273, +#: includes/fields/class-acf-field-image.php:286, +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maksimum" + +#: includes/fields/class-acf-field-file.php:286, +#: includes/fields/class-acf-field-image.php:323, +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Dozvoljeni tipovi datoteka" + +#: includes/fields/class-acf-field-file.php:287, +#: includes/fields/class-acf-field-image.php:324, +#: pro/fields/class-acf-field-gallery.php:730 +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:469 +msgid "%s requires a valid attachment ID." +msgstr "" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Google mapa" + +#: includes/fields/class-acf-field-google-map.php:60 +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:155, +#: includes/fields/class-acf-field-relationship.php:615 +msgid "Search" +msgstr "Pretraži" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Ukloni lokaciju" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Pronađi trenutnu lokaciju" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Pretraži po adresi..." + +#: includes/fields/class-acf-field-google-map.php:192, +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Centriraj" + +#: includes/fields/class-acf-field-google-map.php:193, +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Centriraj prilikom učitavanja" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Uvećaj" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Postavi zadanu vrijednost uvećanja" + +#: includes/fields/class-acf-field-google-map.php:231, +#: includes/fields/class-acf-field-image.php:264, +#: includes/fields/class-acf-field-image.php:301, +#: includes/fields/class-acf-field-oembed.php:292, +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Visina" + +#: includes/fields/class-acf-field-google-map.php:232 +#, fuzzy +#| msgid "Customise the map height" +msgid "Customize the map height" +msgstr "Uredi visinu mape" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Skup polja" + +#: includes/fields/class-acf-field-group.php:446, +#: pro/fields/class-acf-field-repeater.php:381 +msgid "Sub Fields" +msgstr "Pod polja" + +#: includes/fields/class-acf-field-group.php:463, +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Odaberite način prikaza odabranih polja" + +#: includes/fields/class-acf-field-group.php:468, +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:459, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Blok" + +#: includes/fields/class-acf-field-group.php:469, +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Table" +msgstr "Tablica" + +#: includes/fields/class-acf-field-group.php:470, +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:460 +msgid "Row" +msgstr "Red" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Slika" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Select Image" +msgstr "Odaberi sliku" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Edit Image" +msgstr "Uredi sliku" + +#: includes/fields/class-acf-field-image.php:66 +msgid "Update Image" +msgstr "Ažuriraj sliku" + +#: includes/fields/class-acf-field-image.php:158 +msgid "No image selected" +msgstr "Nema odabranih slika" + +#: includes/fields/class-acf-field-image.php:158 +msgid "Add Image" +msgstr "Dodaj sliku" + +#: includes/fields/class-acf-field-image.php:210, +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Podaci kao niz" + +#: includes/fields/class-acf-field-image.php:211, +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Putanja slike" + +#: includes/fields/class-acf-field-image.php:212, +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "ID slike" + +#: includes/fields/class-acf-field-image.php:221, +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Veličina prikaza prilikom uređivanja stranice" + +#: includes/fields/class-acf-field-image.php:250, +#: includes/fields/class-acf-field-image.php:287, +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Ograniči koje slike mogu biti dodane" + +#: includes/fields/class-acf-field-image.php:253, +#: includes/fields/class-acf-field-image.php:290, +#: includes/fields/class-acf-field-oembed.php:279, +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Širina" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Poveznica" + +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Odaberite poveznicu" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Otvori u novom prozoru/kartici" + +#: includes/fields/class-acf-field-link.php:176 +msgid "Link Array" +msgstr "Vrijednost kao niz" + +#: includes/fields/class-acf-field-link.php:177 +msgid "Link URL" +msgstr "Putanja poveznice" + +#: includes/fields/class-acf-field-message.php:26, +#: includes/fields/class-acf-field-message.php:100, +#: includes/fields/class-acf-field-true_false.php:137 +msgid "Message" +msgstr "Poruka" + +#: includes/fields/class-acf-field-message.php:111, +#: includes/fields/class-acf-field-textarea.php:148 +msgid "New Lines" +msgstr "Broj linija" + +#: includes/fields/class-acf-field-message.php:112, +#: includes/fields/class-acf-field-textarea.php:149 +msgid "Controls how new lines are rendered" +msgstr "Određuje način prikaza novih linija" + +#: includes/fields/class-acf-field-message.php:116, +#: includes/fields/class-acf-field-textarea.php:153 +msgid "Automatically add paragraphs" +msgstr "Dodaj paragraf" + +#: includes/fields/class-acf-field-message.php:117, +#: includes/fields/class-acf-field-textarea.php:154 +msgid "Automatically add <br>" +msgstr "Dodaj novi red - <br>" + +#: includes/fields/class-acf-field-message.php:118, +#: includes/fields/class-acf-field-textarea.php:155 +msgid "No Formatting" +msgstr "Bez obrade" + +#: includes/fields/class-acf-field-message.php:127 +msgid "Escape HTML" +msgstr "Onemogući HTML" + +#: includes/fields/class-acf-field-message.php:128 +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-number.php:25 +msgid "Number" +msgstr "Broj" + +#: includes/fields/class-acf-field-number.php:169, +#: includes/fields/class-acf-field-range.php:174 +msgid "Minimum Value" +msgstr "Minimum" + +#: includes/fields/class-acf-field-number.php:180, +#: includes/fields/class-acf-field-range.php:186 +msgid "Maximum Value" +msgstr "Maksimum" + +#: includes/fields/class-acf-field-number.php:191, +#: includes/fields/class-acf-field-range.php:198 +msgid "Step Size" +msgstr "Korak" + +#: includes/fields/class-acf-field-number.php:229 +msgid "Value must be a number" +msgstr "Vrijednost mora biti broj" + +#: includes/fields/class-acf-field-number.php:244 +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:251 +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-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:230 +msgid "Enter URL" +msgstr "Poveznica" + +#: includes/fields/class-acf-field-oembed.php:276, +#: includes/fields/class-acf-field-oembed.php:289 +msgid "Embed Size" +msgstr "Dimenzija umetka" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "URL stranice" + +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Arhiva" + +#: includes/fields/class-acf-field-page_link.php:249, +#: includes/fields/class-acf-field-post_object.php:250, +#: includes/fields/class-acf-field-taxonomy.php:948 +msgid "Parent" +msgstr "Matični" + +#: includes/fields/class-acf-field-page_link.php:450, +#: includes/fields/class-acf-field-post_object.php:362, +#: includes/fields/class-acf-field-relationship.php:578 +msgid "Filter by Post Type" +msgstr "Filtriraj po tipu posta" + +#: includes/fields/class-acf-field-page_link.php:458, +#: includes/fields/class-acf-field-post_object.php:370, +#: includes/fields/class-acf-field-relationship.php:586 +msgid "All post types" +msgstr "Svi tipovi" + +#: includes/fields/class-acf-field-page_link.php:466, +#: includes/fields/class-acf-field-post_object.php:378, +#: includes/fields/class-acf-field-relationship.php:594 +msgid "Filter by Taxonomy" +msgstr "Filtriraj prema taksonomiji" + +#: includes/fields/class-acf-field-page_link.php:474, +#: includes/fields/class-acf-field-post_object.php:386, +#: includes/fields/class-acf-field-relationship.php:602 +msgid "All taxonomies" +msgstr "Sve taksonomije" + +#: includes/fields/class-acf-field-page_link.php:494 +msgid "Allow Archives URLs" +msgstr "Omogući odabir arhive tipova" + +#: includes/fields/class-acf-field-page_link.php:506, +#: includes/fields/class-acf-field-post_object.php:406, +#: includes/fields/class-acf-field-select.php:398, +#: includes/fields/class-acf-field-user.php:79 +msgid "Select multiple values?" +msgstr "Dozvoli odabir više vrijednosti?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Lozinka" + +#: includes/fields/class-acf-field-post_object.php:25, +#: includes/fields/class-acf-field-post_object.php:423, +#: includes/fields/class-acf-field-relationship.php:667 +msgid "Post Object" +msgstr "Objekt" + +#: includes/fields/class-acf-field-post_object.php:424, +#: includes/fields/class-acf-field-relationship.php:668 +msgid "Post ID" +msgstr "ID objave" + +#: includes/fields/class-acf-field-post_object.php:642 +msgid "%1$s must have a valid post ID." +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:651 +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:667 +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-radio.php:25 +msgid "Radio Button" +msgstr "Radiogumb" + +#: includes/fields/class-acf-field-radio.php:214 +msgid "Other" +msgstr "Drugo" + +#: includes/fields/class-acf-field-radio.php:219 +msgid "Add 'other' choice to allow for custom values" +msgstr "Dodaj odabir ’ostalo’ za slobodan unost" + +#: includes/fields/class-acf-field-radio.php:227 +msgid "Save Other" +msgstr "Spremi ostale" + +#: includes/fields/class-acf-field-radio.php:232 +msgid "Save 'other' values to the field's choices" +msgstr "Spremi ostale vrijednosti i omogući njihov odabir" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Raspon" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Veza" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Maximum values reached ( {max} values )" +msgstr "Već ste dodali najviše dozvoljenih vrijednosti (najviše: {max})" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "Loading" +msgstr "Učitavanje" + +#: includes/fields/class-acf-field-relationship.php:65 +msgid "No matches found" +msgstr "Nema rezultata" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Odaberi tip posta" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Odebarite taksonomiju" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Pretraga…" + +#: includes/fields/class-acf-field-relationship.php:610 +msgid "Filters" +msgstr "Filteri" + +#: includes/fields/class-acf-field-relationship.php:616, +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Tip objave" + +#: includes/fields/class-acf-field-relationship.php:617, +#: includes/fields/class-acf-field-taxonomy.php:28, +#: includes/fields/class-acf-field-taxonomy.php:714, +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taksonomija" + +#: includes/fields/class-acf-field-relationship.php:626 +msgid "Elements" +msgstr "Elementi" + +#: includes/fields/class-acf-field-relationship.php:627 +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:631, +#: includes/admin/views/field-group-options.php:150 +msgid "Featured Image" +msgstr "Istaknuta slika" + +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Minimum posts" +msgstr "Minimalno" + +#: includes/fields/class-acf-field-relationship.php:651 +msgid "Maximum posts" +msgstr "Maksimalno" + +#: includes/fields/class-acf-field-relationship.php:752, +#: pro/fields/class-acf-field-gallery.php:832 +#, fuzzy +#| msgid "1 field requires attention" +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "1 polje treba vašu pažnju" +msgstr[1] "1 polje treba vašu pažnju" +msgstr[2] "1 polje treba vašu pažnju" + +#: includes/fields/class-acf-field-select.php:25, +#: includes/fields/class-acf-field-taxonomy.php:738 +msgctxt "noun" +msgid "Select" +msgstr "Odaberi" + +#: includes/fields/class-acf-field-select.php:107 +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:108 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nema rezultata" + +#: includes/fields/class-acf-field-select.php:110 +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:111 +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:112 +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:113 +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:114 +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:115 +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:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Učitavam rezultate…" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Pretražujem…" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Neuspješno učitavanje" + +#: includes/fields/class-acf-field-select.php:410, +#: includes/fields/class-acf-field-true_false.php:159 +msgid "Stylised UI" +msgstr "Stilizirano sučelje" + +#: includes/fields/class-acf-field-select.php:422 +msgid "Use AJAX to lazy load choices?" +msgstr "Asinkrono učitaj dostupne odabire?" + +#: includes/fields/class-acf-field-select.php:440 +msgid "Specify the value returned" +msgstr "Preciziraj vrijednost za povrat" + +#: includes/fields/class-acf-field-select.php:663 +msgid "%1$s is not one of %2$s" +msgstr "" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Razdjelnik" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Kartica" + +#: includes/fields/class-acf-field-tab.php:103 +msgid "Placement" +msgstr "Pozicija" + +#: includes/fields/class-acf-field-tab.php:107, +#: includes/admin/views/field-group-options.php:87 +msgid "Top aligned" +msgstr "Poravnato sa vrhom" + +#: includes/fields/class-acf-field-tab.php:108, +#: includes/admin/views/field-group-options.php:88 +msgid "Left aligned" +msgstr "Lijevo poravnato" + +#: includes/fields/class-acf-field-tab.php:118 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Preciziraj prijelomnu točku za prethodne kartice. Ovo će omogućiti novi skup " +"kartica nakon prijelomne točke." + +#: includes/fields/class-acf-field-taxonomy.php:673 +msgctxt "No terms" +msgid "No %s" +msgstr "Nema %s" + +#: includes/fields/class-acf-field-taxonomy.php:715 +msgid "Select the taxonomy to be displayed" +msgstr "Odaberite taksonomiju za prikaz" + +#: includes/fields/class-acf-field-taxonomy.php:726 +msgid "Appearance" +msgstr "Prikaz" + +#: includes/fields/class-acf-field-taxonomy.php:727 +msgid "Select the appearance of this field" +msgstr "Odaberite izgled polja" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "Multiple Values" +msgstr "Omogući odabir više vrijednosti" + +#: includes/fields/class-acf-field-taxonomy.php:734 +msgid "Multi Select" +msgstr "Više odabira" + +#: includes/fields/class-acf-field-taxonomy.php:736 +msgid "Single Value" +msgstr "Jedan odabir" + +#: includes/fields/class-acf-field-taxonomy.php:737 +msgid "Radio Buttons" +msgstr "Radiogumbi" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Create Terms" +msgstr "Kreiraj pojmove" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Allow new terms to be created whilst editing" +msgstr "Omogući kreiranje pojmova prilikom uređivanja" + +#: includes/fields/class-acf-field-taxonomy.php:777 +msgid "Save Terms" +msgstr "Spremi pojmove" + +#: includes/fields/class-acf-field-taxonomy.php:778 +msgid "Connect selected terms to the post" +msgstr "Spoji odabrane pojmove sa objavom" + +#: includes/fields/class-acf-field-taxonomy.php:789 +msgid "Load Terms" +msgstr "Učitaj pojmove" + +#: includes/fields/class-acf-field-taxonomy.php:790 +msgid "Load value from posts terms" +msgstr "Učitaj pojmove iz objave" + +#: includes/fields/class-acf-field-taxonomy.php:806 +msgid "Term Object" +msgstr "Vrijednost pojma kao objekt" + +#: includes/fields/class-acf-field-taxonomy.php:807 +msgid "Term ID" +msgstr "Vrijednost kao: ID pojma" + +#: includes/fields/class-acf-field-taxonomy.php:862 +msgid "User unable to add new %s" +msgstr "Korisnik nije u mogućnosti dodati %s" + +#: includes/fields/class-acf-field-taxonomy.php:874 +msgid "%s already exists" +msgstr "%s već postoji" + +#: includes/fields/class-acf-field-taxonomy.php:910 +msgid "%s added" +msgstr "Dodano: %s" + +#: includes/fields/class-acf-field-taxonomy.php:926, +#: pro/fields/class-acf-field-flexible-content.php:597, +#: includes/admin/views/field-group-fields.php:6 +msgid "Name" +msgstr "Naziv" + +#: includes/fields/class-acf-field-taxonomy.php:961, +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Dodaj" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Tekst" + +#: includes/fields/class-acf-field-text.php:141, +#: includes/fields/class-acf-field-textarea.php:125 +msgid "Character Limit" +msgstr "Ograniči broj znakova" + +#: includes/fields/class-acf-field-text.php:142, +#: includes/fields/class-acf-field-textarea.php:126 +msgid "Leave blank for no limit" +msgstr "Ostavite prazno za neograničeno" + +#: includes/fields/class-acf-field-text.php:168, +#: includes/fields/class-acf-field-textarea.php:221 +#, fuzzy +#| msgctxt "Select2 JS input_too_long_n" +#| msgid "Please delete %d characters" +msgid "Value must not exceed %d characters" +msgstr "Molimo obrišite višak znakova - %d znak(ova) je višak" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Tekst polje" + +#: includes/fields/class-acf-field-textarea.php:136 +msgid "Rows" +msgstr "Broj redova" + +#: includes/fields/class-acf-field-textarea.php:137 +msgid "Sets the textarea height" +msgstr "Podesi visinu tekstualnog polja" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Odabri vremena (sat i minute)" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "True / False" + +#: 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-true_false.php:172 +msgid "On Text" +msgstr "Tekst za aktivno stanje" + +#: includes/fields/class-acf-field-true_false.php:173 +msgid "Text shown when active" +msgstr "Tekst prikazan dok je polje aktivno" + +#: includes/fields/class-acf-field-true_false.php:189 +msgid "Off Text" +msgstr "Tekst za neaktivno stanje" + +#: includes/fields/class-acf-field-true_false.php:190 +msgid "Text shown when inactive" +msgstr "Tekst prikazan dok je polje neaktivno" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Poveznica" + +#: includes/fields/class-acf-field-url.php:154 +msgid "Value must be a valid URL" +msgstr "Vrijednost molja biti valjana" + +#: includes/fields/class-acf-field-user.php:53 +msgid "Filter by role" +msgstr "Filtar prema ulozi" + +#: includes/fields/class-acf-field-user.php:61 +msgid "All user roles" +msgstr "Sve uloge" + +#: includes/fields/class-acf-field-user.php:95 +#, fuzzy +#| msgid "File Array" +msgid "User Array" +msgstr "Vrijednost kao niz" + +#: includes/fields/class-acf-field-user.php:96 +#, fuzzy +#| msgid "Term Object" +msgid "User Object" +msgstr "Vrijednost pojma kao objekt" + +#: includes/fields/class-acf-field-user.php:97 +#, fuzzy +#| msgid "User" +msgid "User ID" +msgstr "Korisnik" + +#: includes/fields/class-acf-field-user.php:350 +#, fuzzy +#| msgctxt "Select2 JS load_fail" +#| msgid "Loading failed" +msgid "Error loading field." +msgstr "Neuspješno učitavanje" + +#: includes/fields/class-acf-field-user.php:355 +#, fuzzy +#| msgid "Error validating request" +msgid "Invalid request." +msgstr "Greška prilikom verifikacije" + +#: includes/fields/class-acf-field-user.php:517 +msgid "%1$s must have a valid user ID." +msgstr "" + +#: includes/fields/class-acf-field-user.php:526 +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-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Vizualno uređivanje" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Vizualno" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Tekst polje" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Aktiviraj vizualno uređivanje na klik" + +#: includes/fields/class-acf-field-wysiwyg.php:345 +msgid "Tabs" +msgstr "Kartice" + +#: includes/fields/class-acf-field-wysiwyg.php:350 +msgid "Visual & Text" +msgstr "Vizualno i tekstualno" + +#: includes/fields/class-acf-field-wysiwyg.php:351 +msgid "Visual Only" +msgstr "Samo vizualni" + +#: includes/fields/class-acf-field-wysiwyg.php:352 +msgid "Text Only" +msgstr "Samo tekstualno" + +#: includes/fields/class-acf-field-wysiwyg.php:361 +msgid "Toolbar" +msgstr "Alatna traka" + +#: 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:390 +msgid "Delay initialization?" +msgstr "Odgodi učitavanje?" + +#: includes/fields/class-acf-field-wysiwyg.php:391 +#, fuzzy +#| msgid "TinyMCE will not be initalized until field is clicked" +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "TinyMCE neće biti učitan dok korisnik ne klikne na polje" + +#: includes/forms/form-front.php:40, pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Naziv" + +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "Verificiraj email" + +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Objava ažurirana" + +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Spam" + +#: includes/forms/form-user.php:353 +msgid "Error: %s" +msgstr "" + +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "je jednako" + +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "je drukčije" + +#: includes/locations/class-acf-location-attachment.php:22 +msgid "Attachment" +msgstr "Prilog" + +#: includes/locations/class-acf-location-attachment.php:84 +msgid "All %s formats" +msgstr "Svi oblici %s" + +#: includes/locations/class-acf-location-comment.php:22 +msgid "Comment" +msgstr "Komentar" + +#: includes/locations/class-acf-location-current-user-role.php:22 +msgid "Current User Role" +msgstr "Trenutni tip korisnika" + +#: includes/locations/class-acf-location-current-user-role.php:77 +msgid "Super Admin" +msgstr "Super Admin" + +#: includes/locations/class-acf-location-current-user.php:22 +msgid "Current User" +msgstr "Trenutni korisnik" + +#: includes/locations/class-acf-location-current-user.php:71 +msgid "Logged in" +msgstr "Prijavljen" + +#: 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:73 +msgid "Viewing back end" +msgstr "Prikazuje administracijki dio" + +#: includes/locations/class-acf-location-nav-menu-item.php:22 +msgid "Menu Item" +msgstr "Stavka izbornika" + +#: includes/locations/class-acf-location-nav-menu.php:22 +msgid "Menu" +msgstr "Izbornik" + +#: includes/locations/class-acf-location-nav-menu.php:80 +msgid "Menu Locations" +msgstr "Lokacije izbornika" + +#: includes/locations/class-acf-location-page-parent.php:22 +msgid "Page Parent" +msgstr "Matična stranica" + +#: includes/locations/class-acf-location-page-template.php:22 +msgid "Page Template" +msgstr "Predložak stranice" + +#: 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-page-type.php:22 +msgid "Page Type" +msgstr "Tip stranice" + +#: includes/locations/class-acf-location-page-type.php:110 +msgid "Front Page" +msgstr "Početna stranica" + +#: includes/locations/class-acf-location-page-type.php:111 +msgid "Posts Page" +msgstr "Stranica za objave" + +#: 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:113 +msgid "Parent Page (has children)" +msgstr "Matičan stranica (Ima podstranice)" + +#: 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-post-category.php:22 +msgid "Post Category" +msgstr "Kategorija objave" + +#: includes/locations/class-acf-location-post-format.php:22 +msgid "Post Format" +msgstr "Format objave" + +#: includes/locations/class-acf-location-post-status.php:22 +msgid "Post Status" +msgstr "Status objave" + +#: includes/locations/class-acf-location-post-taxonomy.php:22 +msgid "Post Taxonomy" +msgstr "Taksonomija objave" + +#: includes/locations/class-acf-location-post-template.php:22 +msgid "Post Template" +msgstr "Predložak stranice" + +#: includes/locations/class-acf-location-user-form.php:22 +msgid "User Form" +msgstr "Korisnički obrazac" + +#: includes/locations/class-acf-location-user-form.php:73 +msgid "Add / Edit" +msgstr "Dodaj / Uredi" + +#: includes/locations/class-acf-location-user-form.php:74 +msgid "Register" +msgstr "Registriraj" + +#: includes/locations/class-acf-location-user-role.php:24 +msgid "User Role" +msgstr "Tip korisnika" + +#: includes/locations/class-acf-location-widget.php:22 +msgid "Widget" +msgstr "Widget" + +#: 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Ažuriranja" + +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 "Kloniraj" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Prikaz" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "Odaberite način prikaza kloniranog polja" + +#: pro/fields/class-acf-field-clone.php:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Zamjena (Prikazuje odabrana polja umjesto trenutnog polja)" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Oznake će biti prikazane kao %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Dodaj prefiks ispred oznake" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Vrijednosti će biti spremljene kao %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Dodaj prefiks ispred naziva polja" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Nepoznato polje" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Nepoznat skup polja" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Sva polje iz %s skupa polja" + +#: pro/fields/class-acf-field-flexible-content.php:25, +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Fleksibilno polje" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:182, +#: pro/fields/class-acf-field-repeater.php:473 +msgid "Add Row" +msgstr "Dodaj red" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, 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:72 +msgid "layouts" +msgstr "rasporedi" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +#, 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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} preostalo (najviše {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} obavezno (najmanje {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Potrebno je unijeti najmanje jedno fleksibilni polje" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:410, +#: pro/fields/class-acf-field-repeater.php:295, +#: includes/admin/views/field-group-field.php:49 +msgid "Drag to reorder" +msgstr "Presloži polja povlačenjem" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Dodaj razmještaj" + +#: pro/fields/class-acf-field-flexible-content.php:414 +#, fuzzy +#| msgid "Duplicate Layout" +msgid "Duplicate layout" +msgstr "Dupliciraj razmještaj" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Ukloni razmještaj" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-field-repeater.php:297 +msgid "Click to toggle" +msgstr "Klikni za uključivanje/isključivanje" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Presloži polja povlačenjem" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Presloži" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Obriši" + +#: pro/fields/class-acf-field-flexible-content.php:552, +#: includes/admin/views/field-group-field.php:59 +msgid "Delete" +msgstr "Obriši" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliciraj razmještaj" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Dodaj novi razmještaj" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Minimum" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Maksimum" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:469 +msgid "Button Label" +msgstr "Tekst gumba" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Najmanje" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Najviše" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:1108 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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, +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galerija" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Dodaj sliku u galeriju" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Već ste dodali najviše dozovoljenih polja" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Dužina" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Potpis" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alternativni tekst" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Dodaj u galeriju" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Grupne akcije" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Razvrstaj po datumu dodavanja" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Razvrstaj po datumu zadnje promjene" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Razvrstaj po naslovu" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Obrnuti redosljed" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Zatvori" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Umetni" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Precizirajte gdje se dodaju novi prilozi" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Umetni na kraj" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Umetni na početak" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimalni odabri" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maksimalni odabir" + +#: pro/fields/class-acf-field-repeater.php:25, +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Ponavljajuće polje" + +#: pro/fields/class-acf-field-repeater.php:64, +#: pro/fields/class-acf-field-repeater.php:659 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimalni broj redova je već odabran ({min})" + +#: pro/fields/class-acf-field-repeater.php:65 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maksimalni broj redova je već odabran ({max})" + +#: pro/fields/class-acf-field-repeater.php:334 +msgid "Add row" +msgstr "Dodaj red" + +#: pro/fields/class-acf-field-repeater.php:335 +#, fuzzy +#| msgid "Duplicate" +msgid "Duplicate row" +msgstr "Dupliciraj" + +#: pro/fields/class-acf-field-repeater.php:336 +msgid "Remove row" +msgstr "Ukloni red" + +#: pro/fields/class-acf-field-repeater.php:414 +msgid "Collapsed" +msgstr "Sklopljeno" + +#: pro/fields/class-acf-field-repeater.php:415 +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:427 +msgid "Minimum Rows" +msgstr "Minimalno redova" + +#: pro/fields/class-acf-field-repeater.php:439 +msgid "Maximum Rows" +msgstr "Maksimalno redova" + +#: 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:22, +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Postavke" + +#: pro/locations/class-acf-location-options-page.php:70 +msgid "No options pages exist" +msgstr "Ne postoji stranica sa postavkama" + +#: tests/basic/test-blocks.php:456 +msgid "Hero" +msgstr "" + +#: tests/basic/test-blocks.php:457 +msgid "Display a random hero image." +msgstr "" + +#: tests/basic/test-blocks.php:630 +msgid "Test JS" +msgstr "" + +#: tests/basic/test-blocks.php:631 +msgid "A block for testing JS." +msgstr "" + +#: 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-export.php:39, +#: includes/admin/tools/class-acf-admin-tool-export.php:335, +#: includes/admin/tools/class-acf-admin-tool-export.php:364 +msgid "Generate PHP" +msgstr "Generiraj PHP kod" + +#: 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:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:233, +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Odaberite skup polja" + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Odaberite polja koja želite izvesti i zatim odaberite željeni format. Klikom " +"na gumb “preuzimanje”, preuzmite .json datoteku sa poljima koju zatim možete " +"uvesti u drugu ACF instalaciju.\n" +"Klikom na “generiraj” gumb, izvezite PHP kod koji možete uključiti u " +"WordPress temu." + +#: includes/admin/tools/class-acf-admin-tool-export.php:334 +msgid "Export File" +msgstr "Datoteka za izvoz" + +#: includes/admin/tools/class-acf-admin-tool-export.php:405 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Navedeni kod možete koristiti kako bi registrirali lokalnu verziju odabranih " +"polja ili skupine polja. Lokalna polje pružaju dodatne mogućnosti kao što je " +"brže očitavanje, verzioniranje i dinamičke postavke polja. Jednostavno " +"kopirajte navedeni kod u functions.php datoteku u vašoj temi ili uključite " +"ih kao vanjsku datoteku." + +#: includes/admin/tools/class-acf-admin-tool-export.php:435 +msgid "Copy to clipboard" +msgstr "Kopiraj u međuspremnik" + +#: includes/admin/tools/class-acf-admin-tool-export.php:472 +msgid "Copied" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +msgid "Import Field Groups" +msgstr "Uvoz skupa polja" + +#: 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 field groups." +msgstr "" +"Odaberite ACF JSON datoteku koju želite uvesti. Nakon što kliknete ‘Uvezi’ " +"gumb, ACF će uvesti sva polja iz odabrane datoteke." + +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +msgid "Import File" +msgstr "Datoteka za uvoz" + +#: includes/admin/tools/class-acf-admin-tool-import.php:97 +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:102 +msgid "Incorrect file type" +msgstr "Nedozvoljeni format datoteke" + +#: includes/admin/tools/class-acf-admin-tool-import.php:111 +msgid "Import file empty" +msgstr "Odabrana datoteka za uvoz ne sadrži" + +#: includes/admin/tools/class-acf-admin-tool-import.php:142 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Uvjet za prikaz" + +#: includes/admin/views/field-group-field-conditional-logic.php:60 +msgid "Show this field if" +msgstr "Prikaži polje ako" + +#: includes/admin/views/field-group-field-conditional-logic.php:172, +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Dodaj skup pravila" + +#: includes/admin/views/field-group-field.php:53, +#: includes/admin/views/field-group-field.php:56 +msgid "Edit field" +msgstr "Uredi polje" + +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate field" +msgstr "Dupliciraj polje" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move field to another group" +msgstr "Premjeti polje u drugu skupinu" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move" +msgstr "Premjesti" + +#: includes/admin/views/field-group-field.php:59 +msgid "Delete field" +msgstr "Obriši polje" + +#: includes/admin/views/field-group-field.php:78 +msgid "Field Label" +msgstr "Naziv polja" + +#: includes/admin/views/field-group-field.php:79 +msgid "This is the name which will appear on the EDIT page" +msgstr "Naziv koji se prikazuje prilikom uređivanja stranice" + +#: includes/admin/views/field-group-field.php:92 +msgid "Field Name" +msgstr "Naziv polja" + +#: includes/admin/views/field-group-field.php:93 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Jedna riječ, bez razmaka. Povlaka i donja crta su dozvoljeni" + +#: includes/admin/views/field-group-field.php:106 +msgid "Field Type" +msgstr "Tip polja" + +#: includes/admin/views/field-group-field.php:121 +msgid "Instructions" +msgstr "Upute" + +#: includes/admin/views/field-group-field.php:122 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Upute priliko uređivanja. Vidljivo prilikom spremanja podataka" + +#: includes/admin/views/field-group-field.php:135 +msgid "Required?" +msgstr "Obavezno?" + +#: includes/admin/views/field-group-field.php:161 +msgid "Wrapper Attributes" +msgstr "Značajke prethodnog elementa" + +#: includes/admin/views/field-group-field.php:167 +msgid "width" +msgstr "širina" + +#: includes/admin/views/field-group-field.php:185 +msgid "class" +msgstr "klasa" + +#: includes/admin/views/field-group-field.php:201 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:215, +#: includes/admin/views/field-group-field.php:215 +msgid "Close Field" +msgstr "Zatvori polje" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Redni broj" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Tip" + +#: includes/admin/views/field-group-fields.php:19 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Nema polja. Kliknite gumb + Dodaj polje da bi kreirali " +"polje." + +#: includes/admin/views/field-group-fields.php:44 +msgid "+ Add Field" +msgstr "Dodaj polje" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Pravila" + +#: includes/admin/views/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/field-group-options.php:10 +msgid "Active" +msgstr "Aktivan" + +#: includes/admin/views/field-group-options.php:27 +msgid "Show in REST API" +msgstr "" + +#: includes/admin/views/field-group-options.php:44 +msgid "Style" +msgstr "Stil" + +#: includes/admin/views/field-group-options.php:51 +msgid "Standard (WP metabox)" +msgstr "Zadano (WP metabox)" + +#: includes/admin/views/field-group-options.php:52 +msgid "Seamless (no metabox)" +msgstr "Bez" + +#: includes/admin/views/field-group-options.php:61 +msgid "Position" +msgstr "Pozicija" + +#: includes/admin/views/field-group-options.php:68 +msgid "High (after title)" +msgstr "Visoko (nakon naslova)" + +#: includes/admin/views/field-group-options.php:69 +msgid "Normal (after content)" +msgstr "Normalno (nakon saržaja)" + +#: includes/admin/views/field-group-options.php:70 +msgid "Side" +msgstr "Desni stupac" + +#: includes/admin/views/field-group-options.php:80 +msgid "Label placement" +msgstr "Pozicija oznake" + +#: includes/admin/views/field-group-options.php:97 +msgid "Instruction placement" +msgstr "Pozicija uputa" + +#: includes/admin/views/field-group-options.php:104 +msgid "Below labels" +msgstr "Ispod oznake" + +#: includes/admin/views/field-group-options.php:105 +msgid "Below fields" +msgstr "Iznad oznake" + +#: includes/admin/views/field-group-options.php:114 +msgid "Order No." +msgstr "Redni broj." + +#: includes/admin/views/field-group-options.php:115 +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/field-group-options.php:128 +msgid "Shown in field group list" +msgstr "Vidljivo u popisu" + +#: includes/admin/views/field-group-options.php:139 +msgid "Permalink" +msgstr "Stalna veza" + +#: includes/admin/views/field-group-options.php:140 +msgid "Content Editor" +msgstr "Uređivač sadržaja" + +#: includes/admin/views/field-group-options.php:141 +msgid "Excerpt" +msgstr "Izvadak" + +#: includes/admin/views/field-group-options.php:143 +msgid "Discussion" +msgstr "Rasprava" + +#: includes/admin/views/field-group-options.php:145 +msgid "Revisions" +msgstr "Revizija" + +#: includes/admin/views/field-group-options.php:146 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:147 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:148 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:149 +msgid "Page Attributes" +msgstr "Atributi stranice" + +#: includes/admin/views/field-group-options.php:151 +msgid "Categories" +msgstr "Kategorije" + +#: includes/admin/views/field-group-options.php:152 +msgid "Tags" +msgstr "Oznake" + +#: includes/admin/views/field-group-options.php:153 +msgid "Send Trackbacks" +msgstr "Pošalji povratnu vezu" + +#: includes/admin/views/field-group-options.php:161 +msgid "Hide on screen" +msgstr "Sakrij" + +#: includes/admin/views/field-group-options.php:162 +msgid "Select items to hide them from the edit screen." +msgstr "Odaberite koje grupe želite sakriti prilikom uređivanja." + +#: includes/admin/views/field-group-options.php:162 +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/html-admin-navigation.php:89 +#, fuzzy +#| msgid "Upgrade Sites" +msgid "Upgrade to Pro" +msgstr "Ažuriraj stranice" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:26, +#: includes/admin/views/html-admin-page-upgrade-network.php:27, +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Ažuriraj stranice" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36, +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Web stranica" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Nema novih ažuriranja za web stranica" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +#, fuzzy +#| msgid "Site requires database upgrade from %s to %s" +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "" +"Za web stranicu je potrebna nadogradnja baze podataka iz %s na verziju %s" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:117 +msgid "Please select at least one site to upgrade." +msgstr "" + +#: includes/admin/views/html-admin-page-upgrade-network.php:121, +#: includes/admin/views/html-notice-upgrade.php:45 +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/html-admin-page-upgrade-network.php:148, +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Nadogradnja na verziju %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +#, fuzzy +#| msgid "Upgrade complete" +msgid "Upgrade complete." +msgstr "Nadogradnja završena" + +#: includes/admin/views/html-admin-page-upgrade-network.php:165, +#: includes/admin/views/html-admin-page-upgrade.php:65 +#, fuzzy +#| msgid "Upgrade Sites" +msgid "Upgrade failed." +msgstr "Ažuriraj stranice" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Učitavam podatke za nadogradnju…" + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, fuzzy +#| msgid "Database Upgrade complete. See what's new" +msgid "Database upgrade complete. See what's new" +msgstr "" +"Nadogradnja baze je dovršena. Pogledajte što je novo" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Potrebno je nadograditi bazu podataka" + +#: includes/admin/views/html-notice-upgrade.php:29 +#, fuzzy +#| msgid "Thank you for updating to %s v%s!" +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Hvala što ste nadogradili %s na v%s!" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "" + +#: includes/admin/views/html-notice-upgrade.php:31 +#, fuzzy +#| msgid "" +#| "Please also ensure any premium add-ons (%s) have first been updated to " +#| "the latest version." +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "" +"Molimo provjerite da su svi premium dodaci (%s) ažurirani na najnoviju " +"verziju." + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Ažuriraj informacije" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Trenutna vezija" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Posljednja dostupna verzija" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Dostupna nadogradnja" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Unesite licencu kako bi mogli izvršiti nadogradnju" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Nadogradi dodatak" + +#: pro/admin/views/html-settings-updates.php:107 +#, 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" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Popis izmjena" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Obavijest od nadogradnjama" + +#~ msgid "Inactive" +#~ msgstr "Neaktivno" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Neaktivno (%s)" +#~ msgstr[1] "Neaktivnih: (%s)" +#~ msgstr[2] "Neaktivnih: (%s)" + +#~ msgid "Parent fields" +#~ msgstr "Matično polje" + +#~ msgid "Sibling fields" +#~ msgstr "Slična polja" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Polja sinkronizirana (%s)." +#~ msgstr[1] "Polja sinkronizirana (%s)." +#~ msgstr[2] "Polja sinkronizirana (%s)." + +#~ msgid "Status" +#~ msgstr "Status" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Pogledaj što je novo u %s verziji." + +#~ msgid "Resources" +#~ msgstr "Materijali" + +#~ msgid "Documentation" +#~ msgstr "Dokumentacija" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Hvala što koristite ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "Sinkroniziraj skup polja" + +#~ msgid "Apply" +#~ msgstr "Prijavi" + +#~ msgid "Bulk Actions" +#~ msgstr "Skupne akcije" + +#~ msgid "Add-ons" +#~ msgstr "Dodaci" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Greška. Greška prilikom učitavanja dodataka" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "What's New" +#~ msgstr "Što je novo" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Nadogradnja baze ACF" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Prije nego što počnete koristiti nove mogućnosti, molimo ažurirajte bazu " +#~ "podataka na posljednju verziju." + +#~ msgid "Download & Install" +#~ msgstr "Preuzimam datoteke" + +#~ msgid "Installed" +#~ msgstr "Instalirano" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields vam želi dobrodošlicu" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Ažuriranje dovršeno, hvala! ACF %s je veći i bolji nego ikad prije. " +#~ "Nadamo se da će vam se svidjet." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Bolje korisničko iskustvo korištenja prilagođenih polja" + +#~ msgid "Improved Usability" +#~ msgstr "Poboljšana uporabljivost" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Uključivanje popularne biblioteke Select2 poboljšano je korisničko " +#~ "iskustvo i brzina na velikom broju polja." + +#~ msgid "Improved Design" +#~ msgstr "Unaprijeđen dizajn" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Mnoga polja su vizualno osvježena te time ACF sada izgleda bolje nego " +#~ "ikad prije!" + +#~ msgid "Improved Data" +#~ msgstr "Unaprijeđeno upravljanje podacima" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Nova arhitektura polja omogućuje pod poljima da budu korištena zasebno " +#~ "bez obzira kojem skupu polja pripadaju. Ovo vam omogućuje premještanje " +#~ "polja iz jednog skupa u drugi!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Doviđenja dodaci, upoznajte PRO verziju" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Predstavljamo ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Mijanjamo način funkcioniranja premium dodataka, od sada mnogo " +#~ "jednostavnije!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Sva 4 premium dodakta od sada su ukomponiranu u novu Pro " +#~ "verziju ACF. Sa novim osobnom i razvojnom opcijom licenciranja, " +#~ "premium funkcionalnost je dosupnija i povoljnija nego prije!" + +#~ msgid "Powerful Features" +#~ msgstr "Super mogućnosti" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO uključuje napredne funkcionalnosti kao ponavljajuća polja, " +#~ "modularni raspored, galerija slika i mogućnost dodavanja novih stranica u " +#~ "postavkama administracije!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Pročitajte više o mogućnostima ACF PRO." + +#~ msgid "Easy Upgrading" +#~ msgstr "Jednostavno ažuriranje" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Kako bi pojednostavili ažuriranje, prijavite se s vašim " +#~ "računom i osigurajte besplatnu verziju ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Provjeriti upute za ažuriranje ako imate dodatnih " +#~ "pitanja, ili kontaktirajte našu tim za podršku" + +#~ msgid "Under the Hood" +#~ msgstr "Ispod haube" + +#~ msgid "Smarter field settings" +#~ msgstr "Pametnije postavke" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF od sada sprema postavke polja kao objekt" + +#~ msgid "More AJAX" +#~ msgstr "Više AJAX-a" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Više polja koristi asinkrono pretraživanje kako bi učitavanje stranice " +#~ "bilo brže" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Nova mogućnost automatskog izvoza u JSON obliku" + +#~ msgid "Better version control" +#~ msgstr "Bolje upravljanje verzijama" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "Nova opcija izvoza u JSON omogućuje verziranje" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "JSON umjesto XML" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Uvoz / Izvoz sada koristi JSON umjesto XML" + +#~ msgid "New Forms" +#~ msgstr "Nove forme" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Od sada je moguće dodati polja na sve stranice, uključujući komentare, " +#~ "stranice za uređivanje korisnika i widgete!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Novo polje za ugnježdeni sadržaj" + +#~ msgid "New Gallery" +#~ msgstr "Nova galerija" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Polje Galerija je dobilo novi izgled" + +#~ msgid "New Settings" +#~ msgstr "Nove postavke" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Postavke svakog polja uključuju dodatna polja, polje za opis i polje za " +#~ "upute namjenjene korisniku" + +#~ msgid "Better Front End Forms" +#~ msgstr "Bolji prikaz formi na web stranici" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "" +#~ "acf_form() funkcija od sada omogućuje dodavanje nove objave prilikom " +#~ "spremanja" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Verifikacija polja se sada obavlja asinkrono (PHP + AJAX) umjesto " +#~ "dosadašnjeg načina (Javascript)" + +#~ msgid "Relationship Field" +#~ msgstr "Polje za povezivanje objekta" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Novo postavke polja Veza za filter (pretraga, tip objekta, taksonomija)" + +#~ msgid "Moving Fields" +#~ msgstr "Premještanje polja" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Nova funkcionalnost polja omogućuje premještanje polja i skupa polja" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nova skupina ‘arhiva’ prilikom odabira polja page_link" + +#~ msgid "Better Options Pages" +#~ msgstr "Bolja upravljanje stranica sa postavkama" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nova funkcionalnost kod dodavanja stranica za postavke omogućuju " +#~ "dodavanje izvornih i pod stranica izbornika" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Mislimo da će vam se svidjeti promjene u %s." + +#~ msgid "Current Color" +#~ msgstr "Trenutna boja" + +#~ msgid "Locating" +#~ msgstr "Lociranje u tijeku" + +#~ msgid "Shown when entering data" +#~ msgstr "Prikazuje se prilikom unosa podataka" + +#~ msgid "Error." +#~ msgstr "Greška." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Nije pronađen nijedan umetak za unesenu adresu." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimalna vrijednost je {min}" + +#~ msgid "None" +#~ msgstr "Bez odabira" + +#~ msgid "Taxonomy Term" +#~ msgstr "Pojam takosnomije" + +#~ msgid "remove {layout}?" +#~ msgstr "ukloni {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Polje mora sadržavati najmanje {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Polje {label} smije sadržavati najviše {max} {identifier}" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Getting Started" +#~ msgstr "Kako početi" + +#~ msgid "Field Types" +#~ msgstr "Tipovi polja" + +#~ msgid "Functions" +#~ msgstr "Funkcije" + +#~ msgid "Actions" +#~ msgstr "Akcije" + +#~ msgid "Features" +#~ msgstr "Mogućnosti" + +#~ msgid "How to" +#~ msgstr "Pomoć" + +#~ msgid "Tutorials" +#~ msgstr "Tutorijali" + +#~ msgid "FAQ" +#~ msgstr "Česta pitanja" + +#~ msgid "Error" +#~ msgstr "Greška" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Izvoz polja u PHP obliku" + +#~ msgid "Download export file" +#~ msgstr "Preuzmi datoteku" + +#~ msgid "Generate export code" +#~ msgstr "Stvori kod za izvoz" + +#~ msgid "Term meta upgrade not possible (termmeta table does not exist)" +#~ msgstr "" +#~ "Nije moguće dovrišti nadogradnju tablice 'termmeta', tablica ne postoji u " +#~ "bazi" diff --git a/lang/pro/acf-hu_HU.po b/lang/pro/acf-hu_HU.po new file mode 100644 index 0000000..12f55f7 --- /dev/null +++ b/lang/pro/acf-hu_HU.po @@ -0,0 +1,2715 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2015-08-11 23:26+0200\n" +"PO-Revision-Date: 2018-02-06 10:06+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: Elliot Condon \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.8.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;" +"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:63 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:205 admin/admin.php:61 +msgid "Field Groups" +msgstr "" + +#: acf.php:206 +msgid "Field Group" +msgstr "Mezőcsoport" + +#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517 +msgid "Add New" +msgstr "Új hozzáadása" + +#: acf.php:208 +msgid "Add New Field Group" +msgstr "Új mezőcsoport hozzáadása" + +#: acf.php:209 +msgid "Edit Field Group" +msgstr "Mezőcsoport szerkesztése" + +#: acf.php:210 +msgid "New Field Group" +msgstr "Új mezőcsoport" + +#: acf.php:211 +msgid "View Field Group" +msgstr "Mezőcsoport megtekintése" + +#: acf.php:212 +msgid "Search Field Groups" +msgstr "Mezőcsoportok keresése" + +#: acf.php:213 +msgid "No Field Groups found" +msgstr "Nincsenek mezőcsoportok" + +#: acf.php:214 +msgid "No Field Groups found in Trash" +msgstr "Nem található mezőcsoport a lomtárban." + +#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519 +msgid "Fields" +msgstr "Mezők" + +#: acf.php:238 +msgid "Field" +msgstr "Mező" + +#: acf.php:240 +msgid "Add New Field" +msgstr "Mező hozzáadása" + +#: acf.php:241 +msgid "Edit Field" +msgstr "Mező szerkesztése" + +#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111 +msgid "New Field" +msgstr "Új mező" + +#: acf.php:243 +msgid "View Field" +msgstr "Mező megtekintése" + +#: acf.php:244 +msgid "Search Fields" +msgstr "Mezők keresése" + +#: acf.php:245 +msgid "No Fields found" +msgstr "Mezők nem találhatók" + +#: acf.php:246 +msgid "No Fields found in Trash" +msgstr "Nem található mezőcsoport a lomtárban." + +#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 +#: admin/views/field-group-options.php:18 +msgid "Disabled" +msgstr "" + +#: acf.php:273 +#, php-format +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "" +msgstr[1] "" + +#: admin/admin.php:57 admin/views/field-group-options.php:120 +msgid "Custom Fields" +msgstr "Egyéni mezők" + +#: admin/field-group.php:68 admin/field-group.php:69 admin/field-group.php:71 +msgid "Field group updated." +msgstr "Mezőcsoport frissítve." + +#: admin/field-group.php:70 +msgid "Field group deleted." +msgstr "" + +#: admin/field-group.php:73 +msgid "Field group published." +msgstr "Mezőcsoport közzétéve." + +#: admin/field-group.php:74 +msgid "Field group saved." +msgstr "Mezőcsoport elmentve." + +#: admin/field-group.php:75 +msgid "Field group submitted." +msgstr "Mezőcsoport elküldve." + +#: admin/field-group.php:76 +msgid "Field group scheduled for." +msgstr "Bejegyzéscsoport előjegyezve." + +#: admin/field-group.php:77 +msgid "Field group draft updated." +msgstr "Mezőcsoport vázlata frissítve." + +#: admin/field-group.php:176 +msgid "Move to trash. Are you sure?" +msgstr "Áthelyezés a lomtárba. Biztosak vagyunk benne?" + +#: admin/field-group.php:177 +msgid "checked" +msgstr "bejelölve" + +#: admin/field-group.php:178 +msgid "No toggle fields available" +msgstr "Váltómezők nem elérhetők" + +#: admin/field-group.php:179 +msgid "Field group title is required" +msgstr "A mezőcsoport címét kötelező megadni" + +#: admin/field-group.php:180 api/api-field-group.php:607 +msgid "copy" +msgstr "másolat" + +#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67 +#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23 +#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262 +msgid "or" +msgstr "vagy" + +#: admin/field-group.php:183 +msgid "Parent fields" +msgstr "Fölérendelt mezők" + +#: admin/field-group.php:184 +msgid "Sibling fields" +msgstr "Egyenrangú mezők" + +#: admin/field-group.php:185 +msgid "Move Custom Field" +msgstr "Egyéni mező áthelyezése" + +#: admin/field-group.php:186 +msgid "This field cannot be moved until its changes have been saved" +msgstr "A mező nem helyezhető át, amíg a változtatások nincsenek elmentve" + +#: admin/field-group.php:187 +msgid "Null" +msgstr "Null" + +#: admin/field-group.php:188 core/input.php:128 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "" + +#: admin/field-group.php:189 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "" + +#: admin/field-group.php:214 +msgid "Location" +msgstr "Megjelenítés helye" + +#: admin/field-group.php:215 +msgid "Settings" +msgstr "" + +#: admin/field-group.php:253 +msgid "Field Keys" +msgstr "" + +#: admin/field-group.php:283 admin/views/field-group-options.php:17 +msgid "Active" +msgstr "" + +#: admin/field-group.php:744 +msgid "Front Page" +msgstr "Kezdőoldal" + +#: admin/field-group.php:745 +msgid "Posts Page" +msgstr "Bejegyzések oldala" + +#: admin/field-group.php:746 +msgid "Top Level Page (no parent)" +msgstr "" + +#: admin/field-group.php:747 +msgid "Parent Page (has children)" +msgstr "Szülőoldal (vannak gyermekei)" + +#: admin/field-group.php:748 +msgid "Child Page (has parent)" +msgstr "Gyermekoldal (van szülőoldala)" + +#: admin/field-group.php:764 +msgid "Default Template" +msgstr "Alapértelmezett sablonminta" + +#: admin/field-group.php:786 +msgid "Logged in" +msgstr "" + +#: admin/field-group.php:787 +msgid "Viewing front end" +msgstr "" + +#: admin/field-group.php:788 +msgid "Viewing back end" +msgstr "" + +#: admin/field-group.php:807 +msgid "Super Admin" +msgstr "Szuper admin" + +#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840 +#: admin/field-group.php:847 admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 +#: fields/image.php:226 pro/fields/gallery.php:653 +msgid "All" +msgstr "Összes" + +#: admin/field-group.php:827 +msgid "Add / Edit" +msgstr "Hozzáadás / Szerkesztés" + +#: admin/field-group.php:828 +msgid "Register" +msgstr "Regisztrálás" + +#: admin/field-group.php:1059 +msgid "Move Complete." +msgstr "Áthelyezés befejeződött." + +#: admin/field-group.php:1060 +#, fuzzy, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "A(z) %s mező mostantól a %s mezőcsoportban található." + +#: admin/field-group.php:1062 +msgid "Close Window" +msgstr "Ablak bezárása" + +#: admin/field-group.php:1097 +#, fuzzy +msgid "Please select the destination for this field" +msgstr "Válasszuk ki a mező áthelyezésének célját" + +#: admin/field-group.php:1104 +msgid "Move Field" +msgstr "Mező áthelyezése" + +#: admin/field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "" +msgstr[1] "" + +#: admin/field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "" + +#: admin/field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "" +msgstr[1] "" + +#: admin/field-groups.php:228 +#, php-format +msgid "Field group synchronised. %s" +msgstr "" + +#: admin/field-groups.php:232 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "" +msgstr[1] "" + +#: admin/field-groups.php:403 admin/field-groups.php:573 +msgid "Sync available" +msgstr "" + +#: admin/field-groups.php:516 +msgid "Title" +msgstr "Cím" + +#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20 +#: admin/views/update-network.php:28 +msgid "Description" +msgstr "" + +#: admin/field-groups.php:518 admin/views/field-group-options.php:10 +msgid "Status" +msgstr "" + +#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111 +msgid "Changelog" +msgstr "Változások (changelog)" + +#: admin/field-groups.php:617 +msgid "See what's new in" +msgstr "Újdonságok áttekintése:" + +#: admin/field-groups.php:617 +msgid "version" +msgstr "verzió" + +#: admin/field-groups.php:619 +msgid "Resources" +msgstr "Források" + +#: admin/field-groups.php:621 +msgid "Getting Started" +msgstr "Kezdjük el" + +#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17 +msgid "Updates" +msgstr "Frissítések" + +#: admin/field-groups.php:623 +msgid "Field Types" +msgstr "Mezőtípusok" + +#: admin/field-groups.php:624 +msgid "Functions" +msgstr "Funkciók (functions)" + +#: admin/field-groups.php:625 +msgid "Actions" +msgstr "Műveletek (actions)" + +#: admin/field-groups.php:626 fields/relationship.php:718 +msgid "Filters" +msgstr "Szűrők" + +#: admin/field-groups.php:627 +msgid "'How to' guides" +msgstr "'Hogyan?' útmutatók" + +#: admin/field-groups.php:628 +msgid "Tutorials" +msgstr "Oktatóanyagok" + +#: admin/field-groups.php:633 +msgid "Created by" +msgstr "Szerző" + +#: admin/field-groups.php:673 +msgid "Duplicate this item" +msgstr "" + +#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58 +#: pro/fields/flexible-content.php:516 +msgid "Duplicate" +msgstr "Duplikálás" + +#: admin/field-groups.php:724 +#, php-format +msgid "Select %s" +msgstr "" + +#: admin/field-groups.php:730 +msgid "Synchronise field group" +msgstr "" + +#: admin/field-groups.php:730 admin/field-groups.php:750 +msgid "Sync" +msgstr "" + +#: admin/settings-addons.php:51 admin/views/settings-addons.php:9 +msgid "Add-ons" +msgstr "Kiegészítő bővítmények" + +#: admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "Hiba. A bővítmények listáját nem lehet betölteni." + +#: admin/settings-info.php:50 +msgid "Info" +msgstr "Információ" + +#: admin/settings-info.php:75 +msgid "What's New" +msgstr "Újdonságok" + +#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31 +msgid "Tools" +msgstr "" + +#: admin/settings-tools.php:151 admin/settings-tools.php:365 +msgid "No field groups selected" +msgstr "Nincsenek mezőcsoportok kiválasztva." + +#: admin/settings-tools.php:188 +msgid "No file selected" +msgstr "Nincs fájl kiválasztva" + +#: admin/settings-tools.php:201 +msgid "Error uploading file. Please try again" +msgstr "Hiba a fájl feltöltése során. Próbáljuk meg újra." + +#: admin/settings-tools.php:210 +msgid "Incorrect file type" +msgstr "Érvénytelen fájltípus." + +#: admin/settings-tools.php:227 +msgid "Import file empty" +msgstr "Az importfájl üres." + +#: admin/settings-tools.php:323 +#, php-format +msgid "Success. Import tool added %s field groups: %s" +msgstr "Sikeres. Az importáló eszköz %s mezőcsoportot adott hozzá: %s" + +#: admin/settings-tools.php:332 +#, php-format +msgid "Warning. Import tool detected %s field groups already exist and have been ignored: %s" +msgstr "" +"Figyelmeztetés. Az importáló eszköz észlelte, hogy %s mezőcsoport már létezik, így ezeket " +"figyelmen kívül hagyta: %s" + +#: admin/update.php:113 +msgid "Upgrade ACF" +msgstr "" + +#: admin/update.php:143 +msgid "Review sites & upgrade" +msgstr "" + +#: admin/update.php:298 +msgid "Upgrade" +msgstr "Frissítés" + +#: admin/update.php:328 +msgid "Upgrade Database" +msgstr "" + +#: admin/views/field-group-field-conditional-logic.php:29 +msgid "Conditional Logic" +msgstr "Logikai feltételek" + +#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137 +#: fields/checkbox.php:246 fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 +#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 fields/select.php:425 +#: fields/select.php:439 fields/select.php:453 fields/tab.php:172 fields/taxonomy.php:770 +#: fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457 +#: fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93 +msgid "Yes" +msgstr "Igen" + +#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138 +#: fields/checkbox.php:247 fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 +#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 fields/select.php:426 +#: fields/select.php:440 fields/select.php:454 fields/tab.php:173 fields/taxonomy.php:685 +#: fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813 +#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385 +#: pro/admin/views/settings-updates.php:103 +msgid "No" +msgstr "Nem" + +#: admin/views/field-group-field-conditional-logic.php:65 +msgid "Show this field if" +msgstr "Mező megjelenítése, ha" + +#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88 +msgid "is equal to" +msgstr "egyenlő" + +#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89 +msgid "is not equal to" +msgstr "nem egyenlő" + +#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118 +msgid "and" +msgstr "és" + +#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133 +msgid "Add rule group" +msgstr "Szabálycsoport hozzáadása" + +#: admin/views/field-group-field.php:54 admin/views/field-group-field.php:57 +msgid "Edit field" +msgstr "Mező szerkesztése" + +#: admin/views/field-group-field.php:57 pro/fields/gallery.php:355 +msgid "Edit" +msgstr "Szerkesztés" + +#: admin/views/field-group-field.php:58 +msgid "Duplicate field" +msgstr "Mező duplikálása" + +#: admin/views/field-group-field.php:59 +msgid "Move field to another group" +msgstr "Mező áthelyezése másik csoportba" + +#: admin/views/field-group-field.php:59 +msgid "Move" +msgstr "Áthelyezés" + +#: admin/views/field-group-field.php:60 +msgid "Delete field" +msgstr "Mező törlése" + +#: admin/views/field-group-field.php:60 pro/fields/flexible-content.php:515 +msgid "Delete" +msgstr "Törlés" + +#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886 +msgid "Error" +msgstr "Hiba" + +#: fields/oembed.php:220 fields/taxonomy.php:900 +msgid "Error." +msgstr "Hiba." + +#: admin/views/field-group-field.php:68 +msgid "Field type does not exist" +msgstr "Mezőtípus nem létezik" + +#: admin/views/field-group-field.php:81 +msgid "Field Label" +msgstr "Mezőfelirat" + +#: admin/views/field-group-field.php:82 +msgid "This is the name which will appear on the EDIT page" +msgstr "Ez a felirat jelenik meg a szerkesztőoldalon" + +#: admin/views/field-group-field.php:93 +msgid "Field Name" +msgstr "Mezőnév" + +#: admin/views/field-group-field.php:94 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Egyetlen szó, szóközök és ékezetek nélkül, alulvonás és kötőjel használata megengedett" + +#: admin/views/field-group-field.php:105 +msgid "Field Type" +msgstr "Mezőtípus" + +#: admin/views/field-group-field.php:118 fields/tab.php:143 +msgid "Instructions" +msgstr "Útmutató" + +#: admin/views/field-group-field.php:119 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Útmutató a szerzők számára, az adatok bevitelénél jelenik meg" + +#: admin/views/field-group-field.php:130 +msgid "Required?" +msgstr "Kötelező" + +#: admin/views/field-group-field.php:158 +msgid "Wrapper Attributes" +msgstr "" + +#: admin/views/field-group-field.php:164 +msgid "width" +msgstr "" + +#: admin/views/field-group-field.php:178 +msgid "class" +msgstr "" + +#: admin/views/field-group-field.php:191 +msgid "id" +msgstr "" + +#: admin/views/field-group-field.php:203 +msgid "Close Field" +msgstr "Mező bezárása" + +#: admin/views/field-group-fields.php:29 +msgid "Order" +msgstr "Sorrend" + +#: admin/views/field-group-fields.php:30 pro/fields/flexible-content.php:541 +msgid "Label" +msgstr "Felirat" + +#: admin/views/field-group-fields.php:31 pro/fields/flexible-content.php:554 +msgid "Name" +msgstr "Név" + +#: admin/views/field-group-fields.php:32 +msgid "Type" +msgstr "Típus" + +#: admin/views/field-group-fields.php:44 +msgid "No fields. Click the + Add Field button to create your first field." +msgstr "" +"Nincsenek mezők. Kattintsunk a +Mező hozzáadása gombra az első mező létrehozásához." + +#: admin/views/field-group-fields.php:51 +msgid "Drag and drop to reorder" +msgstr "Rendezéshez fogjuk meg és húzzuk a mezőt a megfelelő helyre" + +#: admin/views/field-group-fields.php:54 +msgid "+ Add Field" +msgstr "+ Mező hozzáadása" + +#: admin/views/field-group-locations.php:5 +msgid "Rules" +msgstr "Szabályok" + +#: admin/views/field-group-locations.php:6 +msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" +msgstr "Hozzunk létre szabályokat, hogy melyik szerkesztőképernyők használják a mezőcsoportot" + +#: admin/views/field-group-locations.php:21 +msgid "Show this field group if" +msgstr "Mezőcsoport megjelenítése, ha" + +#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47 +msgid "Post" +msgstr "Bejegyzés" + +#: admin/views/field-group-locations.php:42 fields/relationship.php:724 +msgid "Post Type" +msgstr "Bejegyzés típusa" + +#: admin/views/field-group-locations.php:43 +msgid "Post Status" +msgstr "Bejegyzés-állapot" + +#: admin/views/field-group-locations.php:44 +msgid "Post Format" +msgstr "Bejegyzés-formátum" + +#: admin/views/field-group-locations.php:45 +msgid "Post Category" +msgstr "Bejegyzés-kategória" + +#: admin/views/field-group-locations.php:46 +msgid "Post Taxonomy" +msgstr "Bejegyzés-osztályozás (taxonómia)" + +#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53 +msgid "Page" +msgstr "Oldal" + +#: admin/views/field-group-locations.php:50 +msgid "Page Template" +msgstr "Oldal-sablonminta" + +#: admin/views/field-group-locations.php:51 +msgid "Page Type" +msgstr "Oldaltípus" + +#: admin/views/field-group-locations.php:52 +msgid "Page Parent" +msgstr "Oldal szülő" + +#: admin/views/field-group-locations.php:55 fields/user.php:36 +msgid "User" +msgstr "Felhasználó (user)" + +#: admin/views/field-group-locations.php:56 +msgid "Current User" +msgstr "" + +#: admin/views/field-group-locations.php:57 +msgid "Current User Role" +msgstr "" + +#: admin/views/field-group-locations.php:58 +msgid "User Form" +msgstr "Felhasználói adatlap" + +#: admin/views/field-group-locations.php:59 +msgid "User Role" +msgstr "Felhasználói szerepkör" + +#: admin/views/field-group-locations.php:61 pro/admin/options-page.php:48 +msgid "Forms" +msgstr "Adatlapok" + +#: admin/views/field-group-locations.php:62 +msgid "Attachment" +msgstr "Csatolmány" + +#: admin/views/field-group-locations.php:63 +msgid "Taxonomy Term" +msgstr "Osztályozási kifejezés (term)" + +#: admin/views/field-group-locations.php:64 +msgid "Comment" +msgstr "Hozzászólás" + +#: admin/views/field-group-locations.php:65 +msgid "Widget" +msgstr "Widget" + +#: admin/views/field-group-options.php:25 +msgid "Style" +msgstr "Stílus" + +#: admin/views/field-group-options.php:32 +msgid "Standard (WP metabox)" +msgstr "Hagyományos (WP doboz)" + +#: admin/views/field-group-options.php:33 +msgid "Seamless (no metabox)" +msgstr "Átmenet nélkül (nincs doboz)" + +#: admin/views/field-group-options.php:40 +msgid "Position" +msgstr "Pozíció" + +#: admin/views/field-group-options.php:47 +msgid "High (after title)" +msgstr "Magasan (cím után)" + +#: admin/views/field-group-options.php:48 +msgid "Normal (after content)" +msgstr "Normál (tartalom után)" + +#: admin/views/field-group-options.php:49 +msgid "Side" +msgstr "Oldalsáv" + +#: admin/views/field-group-options.php:57 +msgid "Label placement" +msgstr "Mezőfelirat elhelyezése" + +#: admin/views/field-group-options.php:64 fields/tab.php:159 +msgid "Top aligned" +msgstr "Fent" + +#: admin/views/field-group-options.php:65 fields/tab.php:160 +msgid "Left aligned" +msgstr "Balra" + +#: admin/views/field-group-options.php:72 +msgid "Instruction placement" +msgstr "Útmutató elhelyezése" + +#: admin/views/field-group-options.php:79 +msgid "Below labels" +msgstr "Mezőfeliratok alatt" + +#: admin/views/field-group-options.php:80 +msgid "Below fields" +msgstr "Mezők alatt" + +#: admin/views/field-group-options.php:87 +msgid "Order No." +msgstr "Sorrend" + +#: admin/views/field-group-options.php:88 +msgid "Field groups with a lower order will appear first" +msgstr "" + +#: admin/views/field-group-options.php:99 +msgid "Shown in field group list" +msgstr "" + +#: admin/views/field-group-options.php:109 +msgid "Hide on screen" +msgstr "Ne legyen látható" + +#: admin/views/field-group-options.php:110 +msgid "Select items to hide them from the edit screen." +msgstr "" + +#: admin/views/field-group-options.php:110 +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 "" + +#: admin/views/field-group-options.php:117 +msgid "Permalink" +msgstr "Közvetlen hivatkozás" + +#: admin/views/field-group-options.php:118 +msgid "Content Editor" +msgstr "Tartalomszerkesztő" + +#: admin/views/field-group-options.php:119 +msgid "Excerpt" +msgstr "Kivonat" + +#: admin/views/field-group-options.php:121 +msgid "Discussion" +msgstr "Interakció" + +#: admin/views/field-group-options.php:122 +msgid "Comments" +msgstr "Hozzászólások" + +#: admin/views/field-group-options.php:123 +msgid "Revisions" +msgstr "Változatok" + +#: admin/views/field-group-options.php:124 +msgid "Slug" +msgstr "Keresőbarát név (slug)" + +#: admin/views/field-group-options.php:125 +msgid "Author" +msgstr "Szerző" + +#: admin/views/field-group-options.php:126 +msgid "Format" +msgstr "Formátum" + +#: admin/views/field-group-options.php:127 +msgid "Page Attributes" +msgstr "Oldal tulajdonságai" + +#: admin/views/field-group-options.php:128 fields/relationship.php:737 +msgid "Featured Image" +msgstr "Kiemelt kép" + +#: admin/views/field-group-options.php:129 +msgid "Categories" +msgstr "Kategória" + +#: admin/views/field-group-options.php:130 +msgid "Tags" +msgstr "Címke" + +#: admin/views/field-group-options.php:131 +msgid "Send Trackbacks" +msgstr "Visszakövetés (trackback) küldése" + +#: admin/views/settings-addons.php:23 +msgid "Download & Install" +msgstr "Letöltés és telepítés" + +#: admin/views/settings-addons.php:42 +msgid "Installed" +msgstr "Telepítve" + +#: admin/views/settings-info.php:9 +msgid "Welcome to Advanced Custom Fields" +msgstr "Üdvözlet! Itt az Advanced Custom Fields" + +#: admin/views/settings-info.php:10 +#, php-format +msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it." +msgstr "Köszönjük a frissítést! Az ACF %s nagyobb és jobb, mint valaha. Reméljük, tetszeni fog!" + +#: admin/views/settings-info.php:23 +msgid "A smoother custom field experience" +msgstr "Az egyéni mezők használatának élménye" + +#: admin/views/settings-info.php:28 +msgid "Improved Usability" +msgstr "Továbbfejlesztett használhatóság" + +#: admin/views/settings-info.php:29 +msgid "" +"Including the popular Select2 library has improved both usability and speed across a number of field " +"types including post object, page link, taxonomy and select." +msgstr "" +"A népszerű Select2 könyvtár bevonása számos mezőtípusnál (például bejegyzés objektumok, " +"oldalhivatkozások, osztályozások és kiválasztás) javítja a használhatóságot és a sebességet." + +#: admin/views/settings-info.php:33 +msgid "Improved Design" +msgstr "Továbbfejlesztett megjelenés" + +#: admin/views/settings-info.php:34 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are " +"seen on the gallery, relationship and oEmbed (new) fields!" +msgstr "" +"Számos mező vizuálisan megújult, hogy az ACF jobban nézzen ki, mint valaha. Észrevehető változások " +"történtek a galéria, kapcsolat és oEmbed (új) mezők esetében." + +#: admin/views/settings-info.php:38 +msgid "Improved Data" +msgstr "Továbbfejlesztett adatszerkezet" + +#: admin/views/settings-info.php:39 +msgid "" +"Redesigning the data architecture has allowed sub fields to live independently from their parents. This " +"allows you to drag and drop fields in and out of parent fields!" +msgstr "" +"Az adatszerkezet újratervezésének köszönhetően az almezők függetlenek lettek a szülőmezőktől. Mindez " +"lehetővé teszi, hogy a mezőket fogd-és-vidd módon más mezőkbe, vagy azokon kívülre helyezzük át." + +#: admin/views/settings-info.php:45 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Viszlát kiegészítők, helló PRO" + +#: admin/views/settings-info.php:50 +msgid "Introducing ACF PRO" +msgstr "Az ACF PRO bemutatása" + +#: admin/views/settings-info.php:51 +msgid "We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" + +#: admin/views/settings-info.php:52 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro version of ACF. With both " +"personal and developer licenses available, premium functionality is more affordable and accessible than " +"ever before!" +msgstr "" +"Az új ACF PRO változat tartalmazza mind a négy korábbi prémium kiegészítőt. A " +"személyes és fejlesztői licenceknek köszönhetően a prémium funkcionalitás így sokkal megfizethetőbb, " +"mint korábban." + +#: admin/views/settings-info.php:56 +msgid "Powerful Features" +msgstr "Hatékony szolgáltatások" + +#: admin/views/settings-info.php:57 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful " +"gallery field and the ability to create extra admin options pages!" +msgstr "" +"Az ACF PRO változat olyan fantasztikus szolgáltatásokat kínál, mint ismételhető adatok, rugalmas " +"tartalomelrendezések, gyönyörű galériamező, és segítségével egyéni beállítás-oldalak is létrehozhatók!" + +#: admin/views/settings-info.php:58 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "További információk az ACF PRO változatról." + +#: admin/views/settings-info.php:62 +msgid "Easy Upgrading" +msgstr "Egyszerű frissítés" + +#: admin/views/settings-info.php:63 +#, php-format +msgid "" +"To help make upgrading easy, login to your store account and claim a free copy of " +"ACF PRO!" +msgstr "" +"A még könnyebb frissítés érdekében csak jelenkezzünk be a felhasználói fiókunkba és " +"igényeljünk egy ingyenes ACF PRO változatot!" + +#: admin/views/settings-info.php:64 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, but if you do have one, " +"please contact our support team via the help desk" +msgstr "" +"A felmerülő kérdések megválaszolására egy frissítési útmutató is rendelkezésre áll. " +"Amennyiben az útmutató nem ad választ a kérdésre, vegyük fel a kapcsolatot a támogató " +"csapattal." + +#: admin/views/settings-info.php:72 +msgid "Under the Hood" +msgstr "A motorháztető alatt" + +#: admin/views/settings-info.php:77 +msgid "Smarter field settings" +msgstr "Okosabb mezőbeállítások" + +#: admin/views/settings-info.php:78 +msgid "ACF now saves its field settings as individual post objects" +msgstr "Az ACF a mezőbeállításokat már külön bejegyzésobjektumokba menti" + +#: admin/views/settings-info.php:82 +msgid "More AJAX" +msgstr "Több AJAX" + +#: admin/views/settings-info.php:83 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "Több mező használ AJAX-alapú keresést az oldal gyorsabb betöltésének érdekében." + +#: admin/views/settings-info.php:87 +msgid "Local JSON" +msgstr "Helyi JSON" + +#: admin/views/settings-info.php:88 +msgid "New auto export to JSON feature improves speed" +msgstr "Az új JSON autoexport szolgáltatás javítja a sebességet." + +#: admin/views/settings-info.php:94 +msgid "Better version control" +msgstr "Jobb verziókezelés" + +#: admin/views/settings-info.php:95 +msgid "New auto export to JSON feature allows field settings to be version controlled" +msgstr "Az új JSON autoexport szolgáltatás lehetővé teszi a mezőbeállítások verziókezelését." + +#: admin/views/settings-info.php:99 +msgid "Swapped XML for JSON" +msgstr "XML helyett JSON" + +#: admin/views/settings-info.php:100 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "Az importálás és exportálás JSON formátumban történik a korábbi XML megoldás helyett." + +#: admin/views/settings-info.php:104 +msgid "New Forms" +msgstr "Új űrlapok" + +#: admin/views/settings-info.php:105 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "A mezők már hozzászólásokhoz, widgetekhez és felhasználói adatlapokhoz is hozzárendelhetők." + +#: admin/views/settings-info.php:112 +msgid "A new field for embedding content has been added" +msgstr "Új mezőtípus áll rendelkezésre beágyazott tartalmak számára." + +#: admin/views/settings-info.php:116 +msgid "New Gallery" +msgstr "Új galéria" + +#: admin/views/settings-info.php:117 +msgid "The gallery field has undergone a much needed facelift" +msgstr "A galéria mezőtípus jelentős és esedékes felfrissítésen esett át." + +#: admin/views/settings-info.php:121 +msgid "New Settings" +msgstr "Új beállítások" + +#: admin/views/settings-info.php:122 +msgid "Field group settings have been added for label placement and instruction placement" +msgstr "A mezőcsoport beállításai kiegészültek a mezőfeliratok és útmutatók elhelyezési lehetőségeivel." + +#: admin/views/settings-info.php:128 +msgid "Better Front End Forms" +msgstr "Jobb felhasználó oldali űrlapok" + +#: admin/views/settings-info.php:129 +msgid "acf_form() can now create a new post on submission" +msgstr "" +"Az acf_form() már képes új bejegyzést létrehozni egy felhasználó oldali (front end) űrlap elküldésekor." + +#: admin/views/settings-info.php:133 +msgid "Better Validation" +msgstr "Jobb ellenőrzés és érvényesítés" + +#: admin/views/settings-info.php:134 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "Az űrlapok érvényesítése már nem kizárólag JS által, hanem PHP + AJAX megoldással történik." + +#: admin/views/settings-info.php:138 +msgid "Relationship Field" +msgstr "Kapcsolat mezőtípus" + +#: admin/views/settings-info.php:139 +msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "Új mezőbeállítás szűrők számára (keresés, bejegyzéstípus, osztályozás) a kapcsolat mezőtípusnál." + +#: admin/views/settings-info.php:145 +msgid "Moving Fields" +msgstr "Mezők áthelyezése" + +#: admin/views/settings-info.php:146 +msgid "New field group functionality allows you to move a field between groups & parents" +msgstr "" +"A mezőcsoportok új szolgáltatásaival az egyes mezők csoportok és szülőmezők között is mozgathatók." + +#: admin/views/settings-info.php:150 fields/page_link.php:36 +msgid "Page Link" +msgstr "Oldalhivatkozás" + +#: admin/views/settings-info.php:151 +msgid "New archives group in page_link field selection" +msgstr "Új 'Archívumok' csoport az oldalhivatkozás mezőtípus választási lehetőségeinél." + +#: admin/views/settings-info.php:155 +msgid "Better Options Pages" +msgstr "Jobb beállítás oldalak" + +#: admin/views/settings-info.php:156 +msgid "New functions for options page allow creation of both parent and child menu pages" +msgstr "" +"A beállítás oldalakhoz kapcsolódó új funkciók segítségével szülő- és gyermekoldalak is létrehozhatók." + +#: admin/views/settings-info.php:165 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Úgy gondoljuk, tetszeni fognak a változások a(z) %s verzióban." + +#: admin/views/settings-tools-export.php:13 +msgid "Export Field Groups to PHP" +msgstr "Mezőcsoport exportálása PHP kódba" + +#: admin/views/settings-tools-export.php:17 +#, fuzzy +msgid "" +"The following code can be used to register a local version of the selected field group(s). A local " +"field group 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." +msgstr "" +"A következő kód segítségével regisztrálható a kiválasztott mezőcsoportok helyi változata. A helyi " +"mezőcsoportok számos előnnyel rendelkeznek: rövidebb betöltési idő, verziókezelés és dinamikus mezők/" +"beállítások lehetősége. Alkalmazásához egyszerűen másoljuk be a kódot a sablonhoz tartozó functions.php " +"fájlba." + +#: admin/views/settings-tools.php:5 +msgid "Select Field Groups" +msgstr "Mezőcsoportok kiválasztása" + +#: admin/views/settings-tools.php:35 +msgid "Export Field Groups" +msgstr "Mezőcsoportok exportálása" + +#: admin/views/settings-tools.php:38 +msgid "" +"Select the field groups you would like to export and then select your export method. Use the download " +"button to export to a .json file which you can then import to another ACF installation. Use the " +"generate button to export to PHP code which you can place in your theme." +msgstr "" +"Válasszuk ki az exportálni kívánt mezőcsoportokat, majd az exportálás módszerét. A letöltés gombbal egy " +"JSON fájl készíthető, amelyet egy másik ACF telepítésbe importálhatunk. A kódgenerálás gombbal PHP kód " +"hozható létre, amelyet beilleszthetünk a sablonunkba." + +#: admin/views/settings-tools.php:50 +msgid "Download export file" +msgstr "Exportfájl letöltése" + +#: admin/views/settings-tools.php:51 +msgid "Generate export code" +msgstr "Kód generálása" + +#: admin/views/settings-tools.php:64 +msgid "Import Field Groups" +msgstr "Mezőcsoportok importálása" + +#: admin/views/settings-tools.php:67 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button " +"below, ACF will import the field groups." +msgstr "" +"Válasszuk ki az importálni kívánt Advanced Custom Fields JSON fájlt. A gombra kattintva az ACF " +"bővítmény importálja a fájlban definiált mezőcsoportokat." + +#: admin/views/settings-tools.php:77 fields/file.php:46 +msgid "Select File" +msgstr "Fájl kiválasztása" + +#: admin/views/settings-tools.php:86 +msgid "Import" +msgstr "Importálás" + +#: admin/views/update-network.php:8 admin/views/update.php:8 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "" + +#: admin/views/update-network.php:10 +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade " +"Database”." +msgstr "" + +#: admin/views/update-network.php:19 admin/views/update-network.php:27 +msgid "Site" +msgstr "" + +#: admin/views/update-network.php:47 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "" + +#: admin/views/update-network.php:49 +msgid "Site is up to date" +msgstr "" + +#: admin/views/update-network.php:62 admin/views/update.php:16 +msgid "Database Upgrade complete. Return to network dashboard" +msgstr "" + +#: admin/views/update-network.php:101 admin/views/update-notice.php:35 +msgid "" +"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to " +"run the updater now?" +msgstr "" +"A folytatás előtt ajánlatos biztonsági mentést készíteni az adatbázisról. Biztosan futtatni akarjuk a " +"frissítést?" + +#: admin/views/update-network.php:157 +msgid "Upgrade complete" +msgstr "" + +#: admin/views/update-network.php:161 +msgid "Upgrading data to" +msgstr "" + +#: admin/views/update-notice.php:23 +#, fuzzy +msgid "Database Upgrade Required" +msgstr "Adatbázis frissítése szükséges" + +#: admin/views/update-notice.php:25 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Köszönjük a frissítést az %s %s verzióra!" + +#: admin/views/update-notice.php:25 +msgid "" +"Before you start using the new awesome features, please update your database to the newest version." +msgstr "" +"Mielőtt használni kezdenénk az elképesztő új szolgáltatásokat, frissítsük az adatbázist a legújabb " +"verzióra." + +#: admin/views/update.php:12 +msgid "Reading upgrade tasks..." +msgstr "Frissítési feladatok beolvasása..." + +#: admin/views/update.php:14 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Adatok frissítése %s verzióra" + +#: admin/views/update.php:16 +msgid "See what's new" +msgstr "Újdonságok áttekintése" + +#: admin/views/update.php:110 +msgid "No updates available." +msgstr "" + +#: api/api-helpers.php:821 +msgid "Thumbnail" +msgstr "Bélyegkép" + +#: api/api-helpers.php:822 +msgid "Medium" +msgstr "Közepes méret" + +#: api/api-helpers.php:823 +msgid "Large" +msgstr "Nagy méret" + +#: api/api-helpers.php:871 +#, fuzzy +msgid "Full Size" +msgstr "Fájlméret" + +#: api/api-helpers.php:1581 +#, fuzzy +msgid "(no title)" +msgstr "Rendezés cím szerint" + +#: api/api-helpers.php:3183 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "" + +#: api/api-helpers.php:3188 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "" + +#: api/api-helpers.php:3204 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "" + +#: api/api-helpers.php:3209 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "" + +#: api/api-helpers.php:3227 +#, php-format +msgid "File size must be at least %s." +msgstr "" + +#: api/api-helpers.php:3232 +#, php-format +msgid "File size must must not exceed %s." +msgstr "" + +#: api/api-helpers.php:3266 +#, php-format +msgid "File type must be %s." +msgstr "" + +#: api/api-template.php:1289 pro/fields/gallery.php:564 +msgid "Update" +msgstr "Frissítés" + +#: api/api-template.php:1290 +msgid "Post updated" +msgstr "Bejegyzés frissítve" + +#: core/field.php:131 +msgid "Basic" +msgstr "Alapvető" + +#: core/field.php:132 +msgid "Content" +msgstr "Tartalom" + +#: core/field.php:133 +msgid "Choice" +msgstr "Választás" + +#: core/field.php:134 +msgid "Relational" +msgstr "Relációs" + +#: core/field.php:135 +msgid "jQuery" +msgstr "jQuery" + +#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512 +#: pro/fields/repeater.php:392 +msgid "Layout" +msgstr "Tartalom elrendezés" + +#: core/input.php:129 +msgid "Expand Details" +msgstr "Részletek kibontása" + +#: core/input.php:130 +msgid "Collapse Details" +msgstr "Részletek bezárása" + +#: core/input.php:131 +msgid "Validation successful" +msgstr "Érvényesítés sikeres" + +#: core/input.php:132 +msgid "Validation failed" +msgstr "Érvényesítés sikertelen" + +#: core/input.php:133 +msgid "1 field requires attention" +msgstr "" + +#: core/input.php:134 +#, php-format +msgid "%d fields require attention" +msgstr "" + +#: core/input.php:135 +msgid "Restricted" +msgstr "" + +#: core/input.php:533 +#, php-format +msgid "%s value is required" +msgstr "%s kitöltése kötelező" + +#: fields/checkbox.php:36 fields/taxonomy.php:752 +msgid "Checkbox" +msgstr "Jelölődoboz (checkbox)" + +#: fields/checkbox.php:144 +msgid "Toggle All" +msgstr "" + +#: fields/checkbox.php:208 fields/radio.php:193 fields/select.php:388 +msgid "Choices" +msgstr "Választási lehetőségek" + +#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 +msgid "Enter each choice on a new line." +msgstr "Minden választási lehetőséget új sorba kell írni" + +#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 +msgid "For more control, you may specify both a value and label like this:" +msgstr "A testreszabhatóság érdekében az érték és a felirat is meghatározható a következő módon:" + +#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 +msgid "red : Red" +msgstr "voros : Vörös" + +#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150 +#: fields/radio.php:222 fields/select.php:397 fields/text.php:148 fields/textarea.php:145 +#: fields/true_false.php:115 fields/url.php:117 fields/wysiwyg.php:345 +msgid "Default Value" +msgstr "Alapértelmezett érték" + +#: fields/checkbox.php:218 fields/select.php:398 +msgid "Enter each default value on a new line" +msgstr "Minden alapértelmezett értéket új sorba kell írni" + +#: fields/checkbox.php:232 fields/radio.php:237 +msgid "Vertical" +msgstr "Függőleges" + +#: fields/checkbox.php:233 fields/radio.php:238 +msgid "Horizontal" +msgstr "Vízszintes" + +#: fields/checkbox.php:240 +msgid "Toggle" +msgstr "" + +#: fields/checkbox.php:241 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" + +#: fields/color_picker.php:36 +msgid "Color Picker" +msgstr "Színválasztó" + +#: fields/color_picker.php:94 +msgid "Clear" +msgstr "Törlés" + +#: fields/color_picker.php:95 +msgid "Default" +msgstr "Alapértelmezett" + +#: fields/color_picker.php:96 +msgid "Select Color" +msgstr "Szín kiválasztása" + +#: fields/date_picker.php:36 +msgid "Date Picker" +msgstr "Dátumválasztó" + +#: fields/date_picker.php:72 +msgid "Done" +msgstr "Kész" + +#: fields/date_picker.php:73 +msgid "Today" +msgstr "Ma" + +#: fields/date_picker.php:76 +msgid "Show a different month" +msgstr "Másik hónap megjelenítése" + +#: fields/date_picker.php:149 +msgid "Display Format" +msgstr "Megjelenítési formátum" + +#: fields/date_picker.php:150 +msgid "The format displayed when editing a post" +msgstr "Megjelenítési formátum a bejegyzés szerkesztése során" + +#: fields/date_picker.php:164 +msgid "Return format" +msgstr "Visszaadott formátum" + +#: fields/date_picker.php:165 +msgid "The format returned via template functions" +msgstr "A sablonfunkciók által visszaadott formátum" + +#: fields/date_picker.php:180 +msgid "Week Starts On" +msgstr "Hét kezdőnapja" + +#: fields/email.php:36 +msgid "Email" +msgstr "Email (email)" + +#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 +#: fields/textarea.php:146 fields/url.php:118 fields/wysiwyg.php:346 +msgid "Appears when creating a new post" +msgstr "Új bejegyzés létrehozásánál" + +#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 +#: fields/textarea.php:154 fields/url.php:126 +msgid "Placeholder Text" +msgstr "Helyőrző szöveg" + +#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 +#: fields/textarea.php:155 fields/url.php:127 +msgid "Appears within the input" +msgstr "Beviteli mezőben jelenik meg" + +#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166 +msgid "Prepend" +msgstr "Előtag" + +#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167 +msgid "Appears before the input" +msgstr "Beviteli mező előtt jelenik meg" + +#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175 +msgid "Append" +msgstr "Utótag" + +#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176 +msgid "Appears after the input" +msgstr "Beviteli mező után jelenik meg" + +#: fields/file.php:36 +msgid "File" +msgstr "Fájl" + +#: fields/file.php:47 +msgid "Edit File" +msgstr "Fájl szerkesztése" + +#: fields/file.php:48 +msgid "Update File" +msgstr "Fájl frissítése" + +#: fields/file.php:49 pro/fields/gallery.php:55 +msgid "uploaded to this post" +msgstr "feltöltve ehhez a bejegyzéshez" + +#: fields/file.php:142 +msgid "File Name" +msgstr "Fájlnév" + +#: fields/file.php:146 +msgid "File Size" +msgstr "Fájlméret" + +#: fields/file.php:169 +msgid "No File selected" +msgstr "Nincs fájl kiválasztva" + +#: fields/file.php:169 +msgid "Add File" +msgstr "Fájl hozzáadása" + +#: fields/file.php:214 fields/image.php:195 fields/taxonomy.php:821 +msgid "Return Value" +msgstr "Visszaadott érték" + +#: fields/file.php:215 fields/image.php:196 +msgid "Specify the returned value on front end" +msgstr "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét" + +#: fields/file.php:220 +msgid "File Array" +msgstr "Fájl adattömb (array)" + +#: fields/file.php:221 +msgid "File URL" +msgstr "Fájl URL" + +#: fields/file.php:222 +msgid "File ID" +msgstr "Fájl azonosító" + +#: fields/file.php:229 fields/image.php:220 pro/fields/gallery.php:647 +msgid "Library" +msgstr "Médiatár" + +#: fields/file.php:230 fields/image.php:221 pro/fields/gallery.php:648 +msgid "Limit the media library choice" +msgstr "Kiválasztható médiatár elemek korlátozása" + +#: fields/file.php:236 fields/image.php:227 pro/fields/gallery.php:654 +msgid "Uploaded to post" +msgstr "Feltöltve a bejegyzéshez" + +#: fields/file.php:243 fields/image.php:234 pro/fields/gallery.php:661 +msgid "Minimum" +msgstr "" + +#: fields/file.php:244 fields/file.php:255 +msgid "Restrict which files can be uploaded" +msgstr "" + +#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 +#: pro/fields/gallery.php:684 pro/fields/gallery.php:717 +msgid "File size" +msgstr "" + +#: fields/file.php:254 fields/image.php:267 pro/fields/gallery.php:694 +msgid "Maximum" +msgstr "" + +#: fields/file.php:265 fields/image.php:300 pro/fields/gallery.php:727 +msgid "Allowed file types" +msgstr "" + +#: fields/file.php:266 fields/image.php:301 pro/fields/gallery.php:728 +msgid "Comma separated list. Leave blank for all types" +msgstr "" + +#: fields/google-map.php:36 +msgid "Google Map" +msgstr "Google Térkép" + +#: fields/google-map.php:51 +msgid "Locating" +msgstr "Helymeghatározás" + +#: fields/google-map.php:52 +msgid "Sorry, this browser does not support geolocation" +msgstr "Ez a böngésző nem támogatja a helymeghatározást" + +#: fields/google-map.php:135 +msgid "Clear location" +msgstr "Hely törlése" + +#: fields/google-map.php:140 +msgid "Find current location" +msgstr "Jelenlegi hely meghatározása" + +#: fields/google-map.php:141 +msgid "Search for address..." +msgstr "Cím keresése..." + +#: fields/google-map.php:173 fields/google-map.php:184 +msgid "Center" +msgstr "Középpont" + +#: fields/google-map.php:174 fields/google-map.php:185 +msgid "Center the initial map" +msgstr "Térkép kezdő középpontja" + +#: fields/google-map.php:198 +msgid "Zoom" +msgstr "Nagyítás" + +#: fields/google-map.php:199 +msgid "Set the initial zoom level" +msgstr "Kezdeti nagyítási szint" + +#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262 +#: pro/fields/gallery.php:673 pro/fields/gallery.php:706 +msgid "Height" +msgstr "Magasság" + +#: fields/google-map.php:209 +msgid "Customise the map height" +msgstr "Térkép magassága" + +#: fields/image.php:36 +msgid "Image" +msgstr "Kép" + +#: fields/image.php:51 +msgid "Select Image" +msgstr "Kép kiválasztása" + +#: fields/image.php:52 pro/fields/gallery.php:53 +msgid "Edit Image" +msgstr "Kép szerkesztése" + +#: fields/image.php:53 pro/fields/gallery.php:54 +msgid "Update Image" +msgstr "Kép frissítése" + +#: fields/image.php:54 +msgid "Uploaded to this post" +msgstr "" + +#: fields/image.php:55 +msgid "All images" +msgstr "" + +#: fields/image.php:147 +msgid "No image selected" +msgstr "Kép nincs kiválasztva" + +#: fields/image.php:147 +msgid "Add Image" +msgstr "Kép hozzáadása" + +#: fields/image.php:201 +msgid "Image Array" +msgstr "Kép adattömb (array)" + +#: fields/image.php:202 +msgid "Image URL" +msgstr "Kép URL" + +#: fields/image.php:203 +msgid "Image ID" +msgstr "Kép azonosító" + +#: fields/image.php:210 pro/fields/gallery.php:637 +msgid "Preview Size" +msgstr "Előnézeti méret" + +#: fields/image.php:211 pro/fields/gallery.php:638 +msgid "Shown when entering data" +msgstr "Adatok bevitelénél jelenik meg" + +#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695 +msgid "Restrict which images can be uploaded" +msgstr "" + +#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665 +#: pro/fields/gallery.php:698 +msgid "Width" +msgstr "" + +#: fields/message.php:36 fields/message.php:103 fields/true_false.php:106 +msgid "Message" +msgstr "Üzenet" + +#: fields/message.php:104 +msgid "Please note that all text will first be passed through the wp function " +msgstr "Minden szöveg elsőként áthalad a következő beépített WP funkción: " + +#: fields/message.php:112 +msgid "Escape HTML" +msgstr "" + +#: fields/message.php:113 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" + +#: fields/number.php:36 +msgid "Number" +msgstr "Szám (number)" + +#: fields/number.php:186 +msgid "Minimum Value" +msgstr "Minimum érték" + +#: fields/number.php:195 +msgid "Maximum Value" +msgstr "Maximum érték" + +#: fields/number.php:204 +msgid "Step Size" +msgstr "Lépésköz" + +#: fields/number.php:242 +msgid "Value must be a number" +msgstr "Az érték nem szám" + +#: fields/number.php:260 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "Az értéknek nagyobbnak vagy egyenlőnek kell lennie, mint %d" + +#: fields/number.php:268 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "Az értéknek kisebbnek vagy egyenlőnek kell lennie, mint %d" + +#: fields/oembed.php:36 +msgid "oEmbed" +msgstr "Beágyazott objektum (oEmbed)" + +#: fields/oembed.php:199 +msgid "Enter URL" +msgstr "URL megadása" + +#: fields/oembed.php:212 +msgid "No embed found for the given URL." +msgstr "Nem található beágyazható elem a megadott URL-en." + +#: fields/oembed.php:248 fields/oembed.php:259 +msgid "Embed Size" +msgstr "Beágyazási méret" + +#: fields/page_link.php:206 +msgid "Archives" +msgstr "Archívumok" + +#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690 +msgid "Filter by Post Type" +msgstr "Szűrés bejegyzéstípusra" + +#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698 +msgid "All post types" +msgstr "Minden bejegyzéstípus" + +#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704 +msgid "Filter by Taxonomy" +msgstr "Szűrés osztályozásra" + +#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712 +msgid "All taxonomies" +msgstr "" + +#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765 +#: fields/user.php:452 +msgid "Allow Null?" +msgstr "Üres mező engedélyezése" + +#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466 +msgid "Select multiple values?" +msgstr "Többszörös választás" + +#: fields/password.php:36 +msgid "Password" +msgstr "Jelszó (password)" + +#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769 +msgid "Post Object" +msgstr "Bejegyzés objektum (post object)" + +#: fields/post_object.php:457 fields/relationship.php:764 +msgid "Return Format" +msgstr "Visszaadott formátum" + +#: fields/post_object.php:463 fields/relationship.php:770 +msgid "Post ID" +msgstr "Bejegyzés azonosító" + +#: fields/radio.php:36 +msgid "Radio Button" +msgstr "Választógomb (radio button)" + +#: fields/radio.php:202 +msgid "Other" +msgstr "Egyéb" + +#: fields/radio.php:206 +msgid "Add 'other' choice to allow for custom values" +msgstr "'Egyéb' választási lehetőség hozzáadása egyéni érték megadásához" + +#: fields/radio.php:212 +msgid "Save Other" +msgstr "Sorrend mentése" + +#: fields/radio.php:216 +msgid "Save 'other' values to the field's choices" +msgstr "Egyéni értékek mentése a mező választási lehetőségeihez" + +#: fields/relationship.php:36 +msgid "Relationship" +msgstr "Kapcsolat (relationship)" + +#: fields/relationship.php:48 +msgid "Minimum values reached ( {min} values )" +msgstr "" + +#: fields/relationship.php:49 +msgid "Maximum values reached ( {max} values )" +msgstr "Elértük a mező maximális értékét (legfeljebb {max})" + +#: fields/relationship.php:50 +msgid "Loading" +msgstr "Betöltés" + +#: fields/relationship.php:51 +msgid "No matches found" +msgstr "Nincs egyezés" + +#: fields/relationship.php:571 +msgid "Search..." +msgstr "Keresés..." + +#: fields/relationship.php:580 +msgid "Select post type" +msgstr "Bejegyzéstípus kiválasztása" + +#: fields/relationship.php:593 +msgid "Select taxonomy" +msgstr "Osztályozás kiválasztása" + +#: fields/relationship.php:723 +msgid "Search" +msgstr "Keresés" + +#: fields/relationship.php:725 fields/taxonomy.php:36 fields/taxonomy.php:735 +msgid "Taxonomy" +msgstr "Osztályozás (taxonomy)" + +#: fields/relationship.php:732 +msgid "Elements" +msgstr "Elemek" + +#: fields/relationship.php:733 +msgid "Selected elements will be displayed in each result" +msgstr "A kiválasztott elemek jelennek meg az eredményekben" + +#: fields/relationship.php:744 +msgid "Minimum posts" +msgstr "" + +#: fields/relationship.php:753 +msgid "Maximum posts" +msgstr "Bejegyzések maximális száma" + +#: fields/select.php:36 fields/select.php:174 fields/taxonomy.php:757 +msgid "Select" +msgstr "Választólista (select)" + +#: fields/select.php:434 +msgid "Stylised UI" +msgstr "Stílusformázott kezelőfelület" + +#: fields/select.php:448 +msgid "Use AJAX to lazy load choices?" +msgstr "AJAX használata a lehetőségek halasztott betöltéséhez" + +#: fields/tab.php:36 +msgid "Tab" +msgstr "Lap (tab)" + +#: fields/tab.php:128 +msgid "Warning" +msgstr "Figyelmeztetés" + +#: fields/tab.php:133 +msgid "" +"The tab field will display incorrectly when added to a Table style repeater field or flexible content " +"field layout" +msgstr "" +"Táblázat stílusú ismétlő csoportmezőhöz vagy rugalmas tartalomhoz rendelve a lapok helytelenül jelennek " +"meg." + +#: fields/tab.php:146 +msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together." +msgstr "Használjunk lapokat a szerkesztőképernyők tartalmának rendezéséhez és a mezők csoportosításához." + +#: fields/tab.php:148 +msgid "" +"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." +msgstr "" +"A lap típusú mezőt követő összes mező egy csoportba kerül (egy újabb lap beillesztéséig), a lap címsora " +"pedig a mező felirata lesz." + +#: fields/tab.php:155 +msgid "Placement" +msgstr "" + +#: fields/tab.php:167 +msgid "End-point" +msgstr "" + +#: fields/tab.php:168 +msgid "Use this field as an end-point and start a new group of tabs" +msgstr "" + +#: fields/taxonomy.php:565 +#, php-format +msgid "Add new %s " +msgstr "" + +#: fields/taxonomy.php:704 +msgid "None" +msgstr "Nincs" + +#: fields/taxonomy.php:736 +msgid "Select the taxonomy to be displayed" +msgstr "" + +#: fields/taxonomy.php:745 +msgid "Appearance" +msgstr "" + +#: fields/taxonomy.php:746 +msgid "Select the appearance of this field" +msgstr "" + +#: fields/taxonomy.php:751 +msgid "Multiple Values" +msgstr "Több érték" + +#: fields/taxonomy.php:753 +msgid "Multi Select" +msgstr "Többszörös választó (multi select)" + +#: fields/taxonomy.php:755 +msgid "Single Value" +msgstr "Egyetlen érték" + +#: fields/taxonomy.php:756 +msgid "Radio Buttons" +msgstr "Választógombok (radio buttons)" + +#: fields/taxonomy.php:779 +msgid "Create Terms" +msgstr "" + +#: fields/taxonomy.php:780 +msgid "Allow new terms to be created whilst editing" +msgstr "" + +#: fields/taxonomy.php:793 +msgid "Save Terms" +msgstr "" + +#: fields/taxonomy.php:794 +msgid "Connect selected terms to the post" +msgstr "" + +#: fields/taxonomy.php:807 +msgid "Load Terms" +msgstr "" + +#: fields/taxonomy.php:808 +msgid "Load value from posts terms" +msgstr "" + +#: fields/taxonomy.php:826 +msgid "Term Object" +msgstr "Kifejezés objektum" + +#: fields/taxonomy.php:827 +msgid "Term ID" +msgstr "Kifejezés azonosító" + +#: fields/taxonomy.php:886 +#, php-format +msgid "User unable to add new %s" +msgstr "" + +#: fields/taxonomy.php:899 +#, php-format +msgid "%s already exists" +msgstr "" + +#: fields/taxonomy.php:940 +#, php-format +msgid "%s added" +msgstr "" + +#: fields/taxonomy.php:985 +msgid "Add" +msgstr "" + +#: fields/text.php:36 +msgid "Text" +msgstr "Szöveg (text)" + +#: fields/text.php:184 fields/textarea.php:163 +msgid "Character Limit" +msgstr "Karakterkorlát" + +#: fields/text.php:185 fields/textarea.php:164 +msgid "Leave blank for no limit" +msgstr "Mellőzéséhez hagyjuk üresen " + +#: fields/textarea.php:36 +msgid "Text Area" +msgstr "Szövegterület (text area)" + +#: fields/textarea.php:172 +msgid "Rows" +msgstr "Sorok" + +#: fields/textarea.php:173 +msgid "Sets the textarea height" +msgstr "Szövegterület magassága (sorok)" + +#: fields/textarea.php:182 +msgid "New Lines" +msgstr "Új sorok" + +#: fields/textarea.php:183 +msgid "Controls how new lines are rendered" +msgstr "Az új sorok megjelenítésének szabályozása" + +#: fields/textarea.php:187 +msgid "Automatically add paragraphs" +msgstr "Bekezdések automatikus hozzáadása" + +#: fields/textarea.php:188 +msgid "Automatically add <br>" +msgstr "<br> címke automatikus hozzáadása" + +#: fields/textarea.php:189 +#, fuzzy +msgid "No Formatting" +msgstr "Formázás nélkül" + +#: fields/true_false.php:36 +msgid "True / False" +msgstr "Igaz / Hamis (true/false)" + +#: fields/true_false.php:107 +msgid "eg. Show extra content" +msgstr "pl. Extra tartalom megjelenítése" + +#: fields/url.php:36 +msgid "Url" +msgstr "" + +#: fields/url.php:160 +#, fuzzy +msgid "Value must be a valid URL" +msgstr "Az érték nem szám" + +#: fields/user.php:437 +msgid "Filter by role" +msgstr "Szűrés szerepkörre" + +#: fields/user.php:445 +msgid "All user roles" +msgstr "Minden felhasználói szerepkör" + +#: fields/wysiwyg.php:37 +msgid "Wysiwyg Editor" +msgstr "Wysiwyg szerkesztő" + +#: fields/wysiwyg.php:297 +msgid "Visual" +msgstr "" + +#: fields/wysiwyg.php:298 +#, fuzzy +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Szöveg (text)" + +#: fields/wysiwyg.php:354 +msgid "Tabs" +msgstr "" + +#: fields/wysiwyg.php:359 +msgid "Visual & Text" +msgstr "" + +#: fields/wysiwyg.php:360 +msgid "Visual Only" +msgstr "" + +#: fields/wysiwyg.php:361 +#, fuzzy +msgid "Text Only" +msgstr "Szöveg (text)" + +#: fields/wysiwyg.php:368 +msgid "Toolbar" +msgstr "Eszközsáv" + +#: fields/wysiwyg.php:378 +msgid "Show Media Upload Buttons?" +msgstr "'Média hozzáadása' gomb megjelenítése" + +#: forms/post.php:297 pro/admin/options-page.php:373 +msgid "Edit field group" +msgstr "" + +#: pro/acf-pro.php:24 +#, fuzzy +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/acf-pro.php:175 +msgid "Flexible Content requires at least 1 layout" +msgstr "Rugalmas tartalomnál legalább egy elrendezést definiálni kell." + +#: pro/admin/options-page.php:48 +msgid "Options Page" +msgstr "Beállítások oldal" + +#: pro/admin/options-page.php:83 +msgid "No options pages exist" +msgstr "Nincsenek beállítás oldalak" + +#: pro/admin/options-page.php:298 +msgid "Options Updated" +msgstr "Beállítások elmentve" + +#: pro/admin/options-page.php:304 +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/settings-updates.php:137 +msgid "Error. Could not connect to update server" +msgstr "Hiba. Nem hozható létre kapcsolat a frissítési szerverrel." + +#: pro/admin/settings-updates.php:267 pro/admin/settings-updates.php:338 +msgid "Connection Error. Sorry, please try again" +msgstr "Kapcsolódási hiba. Elnézést, próbáljuk meg újra." + +#: pro/admin/views/options-page.php:48 +msgid "Publish" +msgstr "Közzététel" + +#: pro/admin/views/options-page.php:54 +msgid "Save Options" +msgstr "Beállítások mentése" + +#: pro/admin/views/settings-updates.php:11 +msgid "Deactivate License" +msgstr "Licenc deaktiválása" + +#: pro/admin/views/settings-updates.php:11 +msgid "Activate License" +msgstr "Licenc aktiválása" + +#: pro/admin/views/settings-updates.php:21 +msgid "License" +msgstr "Licenc" + +#: pro/admin/views/settings-updates.php:24 +msgid "" +"To unlock updates, please enter your license key below. If you don't have a licence key, please see" +msgstr "" +"A frissítések engedélyezéséhez adjuk meg a licenckulcsot az alábbi beviteli mezőben. Ha még nem " +"rendelkezünk licenckulccsal, tájékozódáshoz:" + +#: pro/admin/views/settings-updates.php:24 +msgid "details & pricing" +msgstr "részletek és árak" + +#: pro/admin/views/settings-updates.php:33 +msgid "License Key" +msgstr "Licenckulcs" + +#: pro/admin/views/settings-updates.php:65 +msgid "Update Information" +msgstr "Frissítési információ" + +#: pro/admin/views/settings-updates.php:72 +msgid "Current Version" +msgstr "Jelenlegi verzió" + +#: pro/admin/views/settings-updates.php:80 +msgid "Latest Version" +msgstr "Legújabb verzió" + +#: pro/admin/views/settings-updates.php:88 +msgid "Update Available" +msgstr "Frissítés elérhető" + +#: pro/admin/views/settings-updates.php:96 +msgid "Update Plugin" +msgstr "Bővítmény frissítése" + +#: pro/admin/views/settings-updates.php:98 +msgid "Please enter your license key above to unlock updates" +msgstr "Adjuk meg a licenckulcsot a frissítések engedélyezéséhez" + +#: pro/admin/views/settings-updates.php:104 +msgid "Check Again" +msgstr "Ismételt ellenőrzés" + +#: pro/admin/views/settings-updates.php:121 +msgid "Upgrade Notice" +msgstr "Frissítési figyelmeztetés" + +#: pro/api/api-options-page.php:22 pro/api/api-options-page.php:23 +msgid "Options" +msgstr "Beállítások" + +#: pro/core/updates.php:186 +#, php-format +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/fields/flexible-content.php:36 +msgid "Flexible Content" +msgstr "Rugalmas tartalom (flexible content)" + +#: pro/fields/flexible-content.php:42 pro/fields/repeater.php:43 +msgid "Add Row" +msgstr "Sor hozzáadása" + +# Revision suggested +#: pro/fields/flexible-content.php:45 +msgid "layout" +msgstr "elrendezés" + +# Revision suggested +#: pro/fields/flexible-content.php:46 +msgid "layouts" +msgstr "elrendezés" + +# Revision suggested +#: pro/fields/flexible-content.php:47 +msgid "remove {layout}?" +msgstr "biztosan eltávolítsuk?" + +# Revision suggested +#: pro/fields/flexible-content.php:48 +msgid "This field requires at least {min} {identifier}" +msgstr "Ennél a mezőnél legalább {min} {identifier} hozzáadása kötelező." + +# Revision suggested +#: pro/fields/flexible-content.php:49 +msgid "This field has a limit of {max} {identifier}" +msgstr "Ennél a mezőnél legfeljebb {max} {identifier} adható hozzá." + +# Revision suggested +#: pro/fields/flexible-content.php:50 +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/flexible-content.php:51 +msgid "Maximum {label} limit reached ({max} {identifier})" +msgstr "{label} elrendezésből több nem adható hozzá (maximum {max})" + +# Revision suggested +#: pro/fields/flexible-content.php:52 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} adható még hozzá (maximum {max})" + +# Revision suggested +#: pro/fields/flexible-content.php:53 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} hozzáadása szükséges (minimum {min})" + +# Revision suggested +#: pro/fields/flexible-content.php:211 +#, php-format +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/flexible-content.php:369 +msgid "Add layout" +msgstr "Elrendezés hozzáadása" + +#: pro/fields/flexible-content.php:372 +msgid "Remove layout" +msgstr "Elrendezés eltávolítása" + +#: pro/fields/flexible-content.php:514 +msgid "Reorder Layout" +msgstr "Elrendezés sorrendjének módosítása" + +#: pro/fields/flexible-content.php:514 +msgid "Reorder" +msgstr "Átrendezés" + +#: pro/fields/flexible-content.php:515 +msgid "Delete Layout" +msgstr "Elrendezés törlése" + +#: pro/fields/flexible-content.php:516 +msgid "Duplicate Layout" +msgstr "Elrendezés duplikálása" + +#: pro/fields/flexible-content.php:517 +msgid "Add New Layout" +msgstr "Új elrendezés hozzáadása" + +#: pro/fields/flexible-content.php:561 +msgid "Display" +msgstr "Megjelenítés" + +#: pro/fields/flexible-content.php:572 pro/fields/repeater.php:399 +msgid "Table" +msgstr "Táblázat" + +#: pro/fields/flexible-content.php:573 pro/fields/repeater.php:400 +msgid "Block" +msgstr "Blokk" + +#: pro/fields/flexible-content.php:574 pro/fields/repeater.php:401 +#, fuzzy +msgid "Row" +msgstr "Sorok" + +#: pro/fields/flexible-content.php:589 +msgid "Min" +msgstr "Minimum" + +#: pro/fields/flexible-content.php:602 +msgid "Max" +msgstr "Maximum" + +#: pro/fields/flexible-content.php:630 pro/fields/repeater.php:408 +msgid "Button Label" +msgstr "Gomb felirata" + +#: pro/fields/flexible-content.php:639 +msgid "Minimum Layouts" +msgstr "Tartalmak minimális száma" + +#: pro/fields/flexible-content.php:648 +msgid "Maximum Layouts" +msgstr "Tartalmak maximális száma" + +#: pro/fields/gallery.php:36 +msgid "Gallery" +msgstr "Galéria" + +#: pro/fields/gallery.php:52 +msgid "Add Image to Gallery" +msgstr "Kép hozzáadása a galériához" + +#: pro/fields/gallery.php:56 +msgid "Maximum selection reached" +msgstr "Elértük a kiválasztható elemek maximális számát" + +#: pro/fields/gallery.php:335 +msgid "Length" +msgstr "" + +#: pro/fields/gallery.php:355 +msgid "Remove" +msgstr "" + +#: pro/fields/gallery.php:535 +msgid "Add to gallery" +msgstr "Hozzáadás galériához" + +#: pro/fields/gallery.php:539 +msgid "Bulk actions" +msgstr "Csoportművelet" + +#: pro/fields/gallery.php:540 +msgid "Sort by date uploaded" +msgstr "Rendezés feltöltési dátum szerint" + +#: pro/fields/gallery.php:541 +msgid "Sort by date modified" +msgstr "Rendezés módosítási dátum szerint" + +#: pro/fields/gallery.php:542 +msgid "Sort by title" +msgstr "Rendezés cím szerint" + +#: pro/fields/gallery.php:543 +msgid "Reverse current order" +msgstr "Fordított sorrend" + +#: pro/fields/gallery.php:561 +msgid "Close" +msgstr "Bezárás" + +#: pro/fields/gallery.php:619 +msgid "Minimum Selection" +msgstr "Minimális választás" + +#: pro/fields/gallery.php:628 +msgid "Maximum Selection" +msgstr "Maximális választás" + +#: pro/fields/gallery.php:809 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %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/repeater.php:36 +msgid "Repeater" +msgstr "Ismétlő csoportmező (repeater)" + +#: pro/fields/repeater.php:46 +msgid "Minimum rows reached ({min} rows)" +msgstr "Nem érjük el a sorok minimális számát (legalább {min} sort hozzá kell adni)" + +#: pro/fields/repeater.php:47 +msgid "Maximum rows reached ({max} rows)" +msgstr "Elértük a sorok maximális számát (legfeljebb {max} sor adható hozzá)" + +#: pro/fields/repeater.php:259 +msgid "Drag to reorder" +msgstr "Átrendezéshez húzzuk a megfelelő helyre" + +#: pro/fields/repeater.php:301 +msgid "Add row" +msgstr "Sor hozzáadása" + +#: pro/fields/repeater.php:302 +msgid "Remove row" +msgstr "Sor eltávolítása" + +#: pro/fields/repeater.php:350 +msgid "Sub Fields" +msgstr "Almezők" + +#: pro/fields/repeater.php:372 +msgid "Minimum Rows" +msgstr "Sorok minimális száma" + +#: pro/fields/repeater.php:382 +msgid "Maximum Rows" +msgstr "Sorok maximális száma" + +#. Plugin Name of the plugin/theme +msgid "Advanced Custom Fields Pro" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "http://www.advancedcustomfields.com/" +msgstr "" + +#. Description of the plugin/theme +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "" + +#. Author of the plugin/theme +msgid "elliot condon" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "" + +#, fuzzy +#~ msgid "Field Groups" +#~ msgstr "Mezőcsoportok" + +#~ msgid "Custom field updated." +#~ msgstr "Egyéni mező frissítve." + +#~ msgid "Custom field deleted." +#~ msgstr "Egyéni mező törölve." + +#~ msgid "Hide / Show All" +#~ msgstr "Minden elrejtése / megjelenítése" + +#~ msgid "Show Field Keys" +#~ msgstr "Mezőkulcsok megjelenítése" + +#~ msgid "Pending Review" +#~ msgstr "Függőben lévő" + +#~ msgid "Draft" +#~ msgstr "Vázlat" + +#~ msgid "Future" +#~ msgstr "Ütemezve" + +#~ msgid "Private" +#~ msgstr "Magánjellegű" + +#~ msgid "Revision" +#~ msgstr "Változat" + +#~ msgid "Trash" +#~ msgstr "Lomtár" + +#~ msgid "Top Level Page (parent of 0)" +#~ msgstr "Felső szintű oldal (0 szülője)" + +#~ msgid "Field group duplicated! Edit the new \"%s\" field group." +#~ msgstr "Mezőcsoport duplikálva. Az új \"%s\" mezőcsoport szerkesztése." + +#~ msgid "Import / Export" +#~ msgstr "Importálás / Exportálás" + +#~ msgid "Import/Export" +#~ msgstr "Import/export" + +#~ msgid "Logged in User Type" +#~ msgstr "Bejelentkezett felhasználó szerepköre" + +#~ msgid "Field groups are created in order
                              from lowest to highest" +#~ msgstr "Az egyes mezőcsoportok az alacsonyabbtól a magasabb érték felé haladva jönnek létre" + +#~ msgid "Select items to hide them from the edit screen" +#~ msgstr "Válasszuk ki a szerkesztőképernyőn elrejteni kívánt elemeket" + +#~ 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 "" +#~ "Ha a szerkesztőképernyőn több mezőcsoport is megjelenik, úgy a legelső csoport (legalacsonyabb " +#~ "sorszám) beállításai érvényesülnek." + +#~ msgid "We're changing the way premium functionality is delivered in an exiting way!" +#~ msgstr "A prémium szolgáltatások immár egy izgalmas, új módon érhetők el! " + +#~ msgid "ACF PRO Required" +#~ msgstr "ACF PRO változat szükséges" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons " +#~ "(%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "Egy figyelmet igénylő problémát észleltünk: A honlap olyan prémium kiegészítőket használ (%s), " +#~ "amelyek már nem kompatibilisek az új ACF verzióval." + +#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!" +#~ msgstr "Aggodalomra nincs ok, könnyedén visszatérhetünk a bővítmény korábbi, már ismert verziójához!" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Visszatérés az ACF %s verzióhoz" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Ismerjük meg, miért van szükség az ACF PRO változatra a honlapon" + +#~ msgid "Update Database" +#~ msgstr "Adatbázis frissítése" + +#~ msgid "Data Upgrade" +#~ msgstr "Adatfrissítés" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Adatok sikeresen frissítve." + +#~ msgid "Data is at the latest version." +#~ msgstr "Az adatok megfelelnek a legújabb verziónak." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "1 kötelező mező nincs kitöltve" +#~ msgstr[1] "%s kötelező mező nincs kitöltve" + +#~ msgid "No taxonomy filter" +#~ msgstr "Nincs szűrés osztályozásra" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Kifejezések a bejegyzéshez kapcsolva (betöltés és mentés)" + +#~ msgid "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Az érték betöltése a bejegyzéshez rendelt kifejezések alapján és a kifejezések frissítése mentéskor" + +#~ msgid "Column Width" +#~ msgstr "Oszlopszélesség" + +#~ msgid "Attachment Details" +#~ msgstr "Csatolmány részletei" + +#, fuzzy +#~ msgid "title_is_required" +#~ msgstr "A mezőcsoport címét kötelező megadni" + +#, fuzzy +#~ msgid "move_field" +#~ msgstr "Mező áthelyezése" + +#, fuzzy +#~ msgid "image" +#~ msgstr "Kép" + +#, fuzzy +#~ msgid "expand_details" +#~ msgstr "Részletek kibontása" + +#, fuzzy +#~ msgid "collapse_details" +#~ msgstr "Részletek bezárása" + +#, fuzzy +#~ msgid "relationship" +#~ msgstr "Kapcsolat (relationship)" + +#, fuzzy +#~ msgid "flexible_content" +#~ msgstr "Rugalmas tartalom (flexible content)" + +#, fuzzy +#~ msgid "repeater" +#~ msgstr "Ismétlő csoportmező (repeater)" + +#, fuzzy +#~ msgid "gallery" +#~ msgstr "Galéria" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "Érvényesítés sikertelen. Az alábbi mező(k) kitöltése kötelező." + +#~ msgid "Apply" +#~ msgstr "Alkalmaz" + +#, fuzzy +#~ msgid "Run the updater" +#~ msgstr "Ismétlő csoportmező (repeater)" + +#, fuzzy +#~ msgid "Full" +#~ msgstr "Teljes méret" + +#, fuzzy +#~ msgid "Size" +#~ msgstr "Teljes méret" + +#, fuzzy +#~ msgid "Formatting" +#~ msgstr "Formázás nélkül" + +#, fuzzy +#~ msgid "Effects value on front end" +#~ msgstr "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét" + +#, fuzzy +#~ msgid "No images selected" +#~ msgstr "Kép nincs kiválasztva" + +#, fuzzy +#~ msgid "1 image selected" +#~ msgstr "Kép nincs kiválasztva" + +#, fuzzy +#~ msgid "%d images selected" +#~ msgstr "Kép nincs kiválasztva" + +#~ msgid "" +#~ "Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a " +#~ "powerful API, it’s a must have for any web developer working with WordPress. Field types include: " +#~ "Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color " +#~ "picker, repeater, flexible content, gallery and more!" +#~ msgstr "" +#~ "A WordPress teljes körű testreszabása egyéni mezők segítségével. A professzionális kezelőfelületet " +#~ "és hatékony API-t kínáló bővítmény minden WordPress-fejlesztő számára nélkülözhetetlen eszköz. " +#~ "Elérhető mezőtípusok: Wysiwyg, szöveg, szövegterület, kép, fájl, választó, jelölődoboz, " +#~ "oldalhivatkozás, bejegyzés objektum, dátumválasztó, színválasztó, ismétlő csoportmező, rugalmas " +#~ "tartalom, galéria és még több más." diff --git a/lang/pro/acf-id_ID.po b/lang/pro/acf-id_ID.po new file mode 100644 index 0000000..71e6b69 --- /dev/null +++ b/lang/pro/acf-id_ID.po @@ -0,0 +1,3623 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2020-08-20 08:47+0700\n" +"PO-Revision-Date: 2020-08-20 11:13+0700\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: Elliot Condon \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: Poedit 2.4.1\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:68 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:348 includes/admin/admin.php:49 +msgid "Field Groups" +msgstr "Grup Bidang" + +#: acf.php:349 +msgid "Field Group" +msgstr "Grup Bidang" + +#: acf.php:350 acf.php:382 includes/admin/admin.php:50 +#: pro/fields/class-acf-field-flexible-content.php:559 +msgid "Add New" +msgstr "Tambah Baru" + +#: acf.php:351 +msgid "Add New Field Group" +msgstr "Tambah Grup Bidang Baru" + +#: acf.php:352 +msgid "Edit Field Group" +msgstr "Sunting Grup Bidang" + +#: acf.php:353 +msgid "New Field Group" +msgstr "Grup Bidang Baru" + +#: acf.php:354 +msgid "View Field Group" +msgstr "Lihat Grup Bidang" + +#: acf.php:355 +msgid "Search Field Groups" +msgstr "Cari Grup Bidang" + +#: acf.php:356 +msgid "No Field Groups found" +msgstr "Tidak Ada Grup Bidang Ditemukan" + +#: acf.php:357 +msgid "No Field Groups found in Trash" +msgstr "Tidak Ditemukan Grup Bidang di Tong Sampah" + +#: acf.php:380 includes/admin/admin-field-group.php:232 +#: includes/admin/admin-field-groups.php:262 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "Bidang" + +#: acf.php:381 +msgid "Field" +msgstr "Bidang" + +#: acf.php:383 +msgid "Add New Field" +msgstr "Tambah bidang baru" + +#: acf.php:384 +msgid "Edit Field" +msgstr "Sunting Bidang" + +#: acf.php:385 includes/admin/views/field-group-fields.php:41 +msgid "New Field" +msgstr "Bidang Baru" + +#: acf.php:386 +msgid "View Field" +msgstr "Lihat Bidang" + +#: acf.php:387 +msgid "Search Fields" +msgstr "Bidang Pencarian" + +#: acf.php:388 +msgid "No Fields found" +msgstr "Tidak ada bidang yang ditemukan" + +#: acf.php:389 +msgid "No Fields found in Trash" +msgstr "Tidak ada bidang yang ditemukan di tempat sampah" + +#: acf.php:424 includes/admin/admin-field-groups.php:226 +msgctxt "post status" +msgid "Disabled" +msgstr "Dimatikan" + +#: acf.php:429 +#, php-format +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Dimatikan (%s)" + +#: includes/acf-field-functions.php:831 +#: includes/admin/admin-field-group.php:178 +msgid "(no label)" +msgstr "(tanpa label)" + +#: includes/acf-field-group-functions.php:820 +#: includes/admin/admin-field-group.php:180 +msgid "copy" +msgstr "salin" + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Pos" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taksonomi" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Lampiran" + +#: includes/acf-wp-functions.php:63 +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "Komentar" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widget" + +#: includes/acf-wp-functions.php:71 +#: includes/locations/class-acf-location-nav-menu.php:87 +msgid "Menus" +msgstr "Menu" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Menu item" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Pengguna" + +#: includes/acf-wp-functions.php:83 pro/options-page.php:51 +msgid "Options" +msgstr "Pengaturan" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Blok" + +#: includes/admin/admin-field-group.php:86 +#: includes/admin/admin-field-group.php:87 +#: includes/admin/admin-field-group.php:89 +msgid "Field group updated." +msgstr "Grup bidang diperbarui." + +#: includes/admin/admin-field-group.php:88 +msgid "Field group deleted." +msgstr "Grup bidang dihapus." + +#: includes/admin/admin-field-group.php:91 +msgid "Field group published." +msgstr "Grup bidang diterbitkan." + +#: includes/admin/admin-field-group.php:92 +msgid "Field group saved." +msgstr "Grup bidang disimpan." + +#: includes/admin/admin-field-group.php:93 +msgid "Field group submitted." +msgstr "Grup bidang dikirim." + +#: includes/admin/admin-field-group.php:94 +msgid "Field group scheduled for." +msgstr "Grup bidang dijadwalkan untuk." + +#: includes/admin/admin-field-group.php:95 +msgid "Field group draft updated." +msgstr "Draft grup bidang diperbarui." + +#: includes/admin/admin-field-group.php:171 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "String \"field_\" tidak dapat digunakan pada awal nama field" + +#: includes/admin/admin-field-group.php:172 +msgid "This field cannot be moved until its changes have been saved" +msgstr "Bidang ini tidak dapat dipindahkan sampai perubahan sudah disimpan" + +#: includes/admin/admin-field-group.php:173 +msgid "Field group title is required" +msgstr "Judul grup bidang diperlukan" + +#: includes/admin/admin-field-group.php:174 +msgid "Move to trash. Are you sure?" +msgstr "Pindahkan ke tong sampah. Yakin?" + +#: includes/admin/admin-field-group.php:175 +msgid "No toggle fields available" +msgstr "Tidak ada bidang toggle yang tersedia" + +#: includes/admin/admin-field-group.php:176 +msgid "Move Custom Field" +msgstr "Pindahkan Bidang Kustom" + +#: includes/admin/admin-field-group.php:177 +msgid "Checked" +msgstr "Diperiksa" + +#: includes/admin/admin-field-group.php:179 +msgid "(this field)" +msgstr "(bidang ini)" + +#: includes/admin/admin-field-group.php:181 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3675 +msgid "or" +msgstr "atau" + +#: includes/admin/admin-field-group.php:182 +msgid "Null" +msgstr "Nol" + +#: includes/admin/admin-field-group.php:185 +msgid "Has any value" +msgstr "Memiliki banyak nilai" + +#: includes/admin/admin-field-group.php:186 +msgid "Has no value" +msgstr "Tidak memiliki nilai" + +#: includes/admin/admin-field-group.php:187 +msgid "Value is equal to" +msgstr "Nilai sama dengan" + +#: includes/admin/admin-field-group.php:188 +msgid "Value is not equal to" +msgstr "Nilai tidak sama dengan" + +#: includes/admin/admin-field-group.php:189 +msgid "Value matches pattern" +msgstr "Nilai cocok dengan pola" + +#: includes/admin/admin-field-group.php:190 +msgid "Value contains" +msgstr "Nilai mengandung" + +#: includes/admin/admin-field-group.php:191 +msgid "Value is greater than" +msgstr "Nilai lebih besar dari" + +#: includes/admin/admin-field-group.php:192 +msgid "Value is less than" +msgstr "Nilai lebih kurang dari" + +#: includes/admin/admin-field-group.php:193 +msgid "Selection is greater than" +msgstr "Seleksi lebih besar dari" + +#: includes/admin/admin-field-group.php:194 +msgid "Selection is less than" +msgstr "Seleksi kurang dari" + +#: includes/admin/admin-field-group.php:233 +#: includes/admin/admin-field-groups.php:261 +msgid "Location" +msgstr "Lokasi" + +#: includes/admin/admin-field-group.php:234 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Pengaturan" + +#: includes/admin/admin-field-group.php:384 +msgid "Field Keys" +msgstr "Kunci Bidang" + +#: includes/admin/admin-field-group.php:414 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Aktif" + +#: includes/admin/admin-field-group.php:414 +msgid "Inactive" +msgstr "Tidak Aktif" + +#: includes/admin/admin-field-group.php:775 +msgid "Move Complete." +msgstr "Pindah yang Lengkap." + +#: includes/admin/admin-field-group.php:776 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Bidang %s sekarang dapat ditemukan di bidang grup %s" + +#: includes/admin/admin-field-group.php:777 +msgid "Close Window" +msgstr "Tutup window" + +#: includes/admin/admin-field-group.php:818 +msgid "Please select the destination for this field" +msgstr "Silakan pilih tujuan untuk bidang ini" + +#: includes/admin/admin-field-group.php:825 +msgid "Move Field" +msgstr "Pindahkan Bidang" + +#: includes/admin/admin-field-groups.php:114 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktif (%s)" + +#: includes/admin/admin-field-groups.php:193 +msgid "Review local JSON changes" +msgstr "Tinjau perubahan JSON lokal" + +#: includes/admin/admin-field-groups.php:194 +msgid "Loading diff" +msgstr "Memuat perbedaan" + +#: includes/admin/admin-field-groups.php:195 +#: includes/admin/admin-field-groups.php:529 +msgid "Sync changes" +msgstr "Sinkronkan perubahan" + +#: includes/admin/admin-field-groups.php:259 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +#: pro/fields/class-acf-field-gallery.php:380 +msgid "Description" +msgstr "Deskripsi" + +#: includes/admin/admin-field-groups.php:260 +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Kunci" + +#: includes/admin/admin-field-groups.php:265 +msgid "Local JSON" +msgstr "JSON Lokal" + +#: includes/admin/admin-field-groups.php:415 +msgid "Various" +msgstr "Berbagai" + +#: includes/admin/admin-field-groups.php:437 +#, php-format +msgid "Located in theme: %s" +msgstr "Terletak di tema: %s" + +#: includes/admin/admin-field-groups.php:441 +#, php-format +msgid "Located in plugin: %s" +msgstr "Terletak di plugin: %s" + +#: includes/admin/admin-field-groups.php:445 +#, php-format +msgid "Located in: %s" +msgstr "Terletak di: %s" + +#: includes/admin/admin-field-groups.php:465 +#: includes/admin/admin-field-groups.php:683 +msgid "Sync available" +msgstr "Sinkronisasi tersedia" + +#: includes/admin/admin-field-groups.php:468 +msgid "Sync" +msgstr "Sinkronkan" + +#: includes/admin/admin-field-groups.php:469 +msgid "Review changes" +msgstr "Tinjau perubahan" + +#: includes/admin/admin-field-groups.php:473 +msgid "Import" +msgstr "Impor" + +#: includes/admin/admin-field-groups.php:477 +msgid "Saved" +msgstr "Disimpan" + +#: includes/admin/admin-field-groups.php:480 +msgid "Awaiting save" +msgstr "Awaiting disimpan" + +#: includes/admin/admin-field-groups.php:501 +msgid "Duplicate this item" +msgstr "Gandakan item ini" + +#: includes/admin/admin-field-groups.php:501 +#: includes/admin/admin-field-groups.php:521 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Duplicate" +msgstr "Gandakan" + +#: includes/admin/admin-field-groups.php:551 +#, php-format +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s grup bidang diduplikasi." + +#: includes/admin/admin-field-groups.php:608 +#, php-format +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s grup lapangan disinkronkan." + +#: includes/admin/admin-field-groups.php:794 +#, php-format +msgid "Select %s" +msgstr "Pilih %s" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Perkakas" + +#: includes/admin/admin-upgrade.php:49 includes/admin/admin-upgrade.php:111 +#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Tingkatkan Database" + +#: includes/admin/admin-upgrade.php:199 +msgid "Review sites & upgrade" +msgstr "Meninjau situs & tingkatkan" + +#: includes/admin/admin.php:48 includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "Bidang Kustom" + +#: includes/admin/admin.php:128 includes/admin/admin.php:130 +msgid "Overview" +msgstr "Gambaran" + +#: includes/admin/admin.php:131 +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 menyediakan pembuat formulir visual untuk " +"menyesuaikan layar sunting WordPress dengan bidang ekstra, dan API intuitif " +"untuk menampilkan nilai bidang khusus dalam file template tema apa pun." + +#: includes/admin/admin.php:133 +#, php-format +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 "" +"Sebelum membuat Grup Bidang pertama Anda, sebaiknya baca panduan Memulai kami terlebih dahulu untuk " +"membiasakan diri Anda dengan filosofi dan praktik terbaik plugin." + +#: includes/admin/admin.php:136 +msgid "" +"Please use the Help & Support tab to get in touch should you find yourself " +"requiring assistance." +msgstr "" +"Silakan gunakan tab Bantuan & Dukungan untuk menghubungi jika Anda merasa " +"membutuhkan bantuan." + +#: includes/admin/admin.php:145 includes/admin/admin.php:147 +msgid "Help & Support" +msgstr "Bantuan & Dukungan" + +#: includes/admin/admin.php:148 +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 "" +"Kami sangat fanatik tentang dukungan, dan ingin Anda mendapatkan yang " +"terbaik dari situs web Anda dengan ACF. Jika Anda mengalami kesulitan, ada " +"beberapa tempat untuk mendapatkan bantuan:" + +#: includes/admin/admin.php:151 +#, php-format +msgid "" +"Documentation. Our extensive " +"documentation contains references and guides for most situations you may " +"encounter." +msgstr "" +"Dokumentasi. Dokumentasi ekstensif kami " +"berisi referensi dan panduan untuk sebagian besar situasi yang mungkin Anda " +"temui." + +#: includes/admin/admin.php:155 +#, php-format +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 "" +"Diskusi. Kami memiliki komunitas yang aktif " +"dan ramah di Forum Komunitas kami yang mungkin dapat membantu Anda " +"mengetahui ‘cara’ dari dunia ACF." + +#: includes/admin/admin.php:159 +#, php-format +msgid "" +"Help Desk. The support professionals on " +"our Help Desk will assist with your more in depth, technical challenges." +msgstr "" +"Help Desk. Profesional dukungan di Help " +"Desk kami akan membantu Anda mengatasi tantangan teknis yang lebih mendalam." + +#: includes/admin/admin.php:168 +msgid "Information" +msgstr "Informasi" + +#: includes/admin/admin.php:169 +#, php-format +msgid "Version %s" +msgstr "Versi %s" + +#: includes/admin/admin.php:170 +msgid "View details" +msgstr "Lihat Rincian" + +#: includes/admin/admin.php:171 +msgid "Visit website" +msgstr "Kunjungi Website" + +#: includes/admin/admin.php:200 +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:86 +msgid "and" +msgstr "dan" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Ekspor Grup Bidang" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Hasilkan PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "Tidak ada grup bidang yang dipilih" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Mengekspor %s grup bidang." + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Pilih Grup Bidang" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Pilih grup bidang yang Anda ingin ekspor dan pilih metode ekspor. Gunakan " +"tombol unduh untuk ekspor ke file .json yang nantinya bisa Anda impor ke " +"instalasi ACF yang lain. Gunakan tombol hasilkan untuk ekspor ke kode PHP " +"yang bisa Anda simpan di tema Anda." + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "Ekspor Berkas" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Kode berikut dapat digunakan untuk mendaftarkan versi lokal dari grup bidang " +"yang dipilih. Grup bidang lokal dapat memberikan banyak manfaat seperti " +"waktu muat yang lebih cepat, kontrol versi & bidang / setelan dinamis. Cukup " +"salin dan tempel kode berikut ke file functions.php tema Anda atau sertakan " +"di dalam file eksternal." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "Menyalin ke clipboard" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "Tersalin" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Impor grup bidang" + +#: includes/admin/tools/class-acf-admin-tool-import.php:47 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Pilih berkas JSON Advanced Custom Fields yang ingin Anda impor. Ketika anda " +"mengklik tombol impor, ACF akan impor grup bidang." + +#: includes/admin/tools/class-acf-admin-tool-import.php:52 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "Pilih Berkas" + +#: includes/admin/tools/class-acf-admin-tool-import.php:62 +msgid "Import File" +msgstr "Impor Berkas" + +#: includes/admin/tools/class-acf-admin-tool-import.php:85 +#: includes/fields/class-acf-field-file.php:169 +msgid "No file selected" +msgstr "Tak ada file yang dipilih" + +#: includes/admin/tools/class-acf-admin-tool-import.php:93 +msgid "Error uploading file. Please try again" +msgstr "Kesalahan mengunggah file. Silakan coba lagi" + +#: includes/admin/tools/class-acf-admin-tool-import.php:98 +msgid "Incorrect file type" +msgstr "Jenis file salah" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Import file empty" +msgstr "File yang diimpor kosong" + +#: includes/admin/tools/class-acf-admin-tool-import.php:138 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Mengimpor %s grup bidang" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Logika Kondisional" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "Tampilkan bidang ini jika" + +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Tambahkan peraturan grup" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:410 +#: pro/fields/class-acf-field-repeater.php:299 +msgid "Drag to reorder" +msgstr "Seret untuk menyusun ulang" + +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "Sunting Bidang" + +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:151 +#: includes/fields/class-acf-field-image.php:131 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:337 +msgid "Edit" +msgstr "Sunting" + +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "Duplikat Bidang" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "Pindahkan Bidang ke grup lain" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "Pindahkan" + +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "Hapus bidang" + +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Delete" +msgstr "Hapus" + +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "Label Bidang" + +#: includes/admin/views/field-group-field.php:66 +msgid "This is the name which will appear on the EDIT page" +msgstr "Ini nama yang akan muncul pada laman PENYUNTINGAN" + +#: includes/admin/views/field-group-field.php:75 +msgid "Field Name" +msgstr "Nama Bidang" + +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Satu kata, tanpa spasi. Garis bawah dan strip dibolehkan" + +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "Jenis Bidang" + +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "Instruksi" + +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instruksi untuk author. Terlihat ketika mengirim data" + +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "Diperlukan?" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Atribut Wrapper" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "lebar" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "Tutup Bidang" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Suruh" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:433 +#: pro/fields/class-acf-field-flexible-content.php:583 +msgid "Label" +msgstr "Label" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:936 +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Nama" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Tipe" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Tidak ada bidang. Klik tombol + Tambah Bidang untuk membuat " +"bidang pertama Anda." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Tambah Bidang" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Peraturan" + +#: includes/admin/views/field-group-locations.php:10 +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Buat sekumpulan aturan untuk menentukan layar sunting mana yang akan " +"menggunakan bidang kustom lanjutan ini" + +#: includes/admin/views/field-group-options.php:23 +msgid "Style" +msgstr "Gaya" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Standar (WP metabox)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Mulus (tanpa metabox)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Posisi" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Tinggi (setelah judul)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Normal (setelah konten)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Samping" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Penempatan Label" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Selaras atas" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Selaras kiri" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Penempatan instruksi" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Di bawah label" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Di bawah bidang" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Urutan No." + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "" +"Bidang kelompok dengan urutan yang lebih rendah akan muncul pertama kali" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Ditampilkan dalam daftar Grup bidang" + +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "Permalink" + +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "Konten Edior" + +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "Kutipan" + +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "Diskusi" + +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "Revisi" + +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "Penulis" + +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "Atribut Laman" + +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:601 +msgid "Featured Image" +msgstr "Gambar Fitur" + +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "Kategori" + +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "Tag" + +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "Kirim Pelacakan" + +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "Sembunyikan pada layar" + +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Pilih item untuk menyembunyikan mereka dari layar penyuntingan." + +#: includes/admin/views/field-group-options.php:129 +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 "" +"Jika beberapa kelompok bidang ditampilkan pada layar penyuntingan, pilihan " +"bidang kelompok yang pertama akan digunakan (yang memiliki nomor urutan " +"terendah)" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"Situs-situs berikut memerlukan upgrade DB. Centang yang ingin Anda perbarui " +"dan kemudian klik %s." + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "Perbarui Situs" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Situs" + +#: includes/admin/views/html-admin-page-upgrade-network.php:74 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Situs memerlukan pembaruan database dari %s ke %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:76 +msgid "Site is up to date" +msgstr "Situs ini dalam versi terbaru" + +#: includes/admin/views/html-admin-page-upgrade-network.php:93 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Pembaruan database selesai. Kembali ke dasbor jaringan" + +#: includes/admin/views/html-admin-page-upgrade-network.php:113 +msgid "Please select at least one site to upgrade." +msgstr "Pilih setidaknya satu situs untuk ditingkatkan." + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +#: includes/admin/views/html-notice-upgrade.php:38 +msgid "" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "" +"Sangat direkomendasikan untuk mencadangkan database situs anda sebelum " +"memproses. Apakah Anda yakin menjalankan pembaruan sekarang?" + +#: includes/admin/views/html-admin-page-upgrade-network.php:144 +#: includes/admin/views/html-admin-page-upgrade.php:31 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Meningkatkan data ke versi %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:158 +msgid "Upgrade complete." +msgstr "Pembaruan selesai." + +#: includes/admin/views/html-admin-page-upgrade-network.php:161 +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Pembaruan gagal." + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Membaca tugas upgrade..." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, php-format +msgid "Database upgrade complete. See what's new" +msgstr "Pembaruan database selesai. Lihat apa yang baru" + +#: includes/admin/views/html-admin-page-upgrade.php:94 +#: includes/ajax/class-acf-ajax-upgrade.php:32 +msgid "No updates available." +msgstr "Pembaruan tidak tersedia ." + +#: includes/admin/views/html-admin-tools.php:21 +msgid "Back to all tools" +msgstr "Kembali ke semua alat" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Tampilkan grup bidang jika" + +#: includes/admin/views/html-notice-upgrade.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Pengulang" + +#: includes/admin/views/html-notice-upgrade.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Konten Fleksibel" + +#: includes/admin/views/html-notice-upgrade.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galeri" + +#: includes/admin/views/html-notice-upgrade.php:11 +#: pro/locations/class-acf-location-options-page.php:20 +msgid "Options Page" +msgstr "Opsi Laman" + +#: includes/admin/views/html-notice-upgrade.php:21 +msgid "Database Upgrade Required" +msgstr "Diperlukan Peningkatan Database" + +#: includes/admin/views/html-notice-upgrade.php:22 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Terimakasih sudah memperbarui ke %s v%s!" + +#: includes/admin/views/html-notice-upgrade.php:22 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "" +"Versi ini berisi perbaikan pada database Anda dan membutuhkan peningkatan." + +#: includes/admin/views/html-notice-upgrade.php:24 +#, php-format +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "" +"Harap periksa juga semua pengaya premium (%s) diperbarui ke versi terbaru." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:34 +msgid "Invalid field group parameter(s)." +msgstr "Parameter grup bidang tidak valid." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:41 +msgid "Invalid field group ID." +msgstr "ID grup bidang tidak valid." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:51 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Maaf, grup bidang ini tidak tersedia untuk perbandingan perbedaan." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:57 +#, php-format +msgid "Last updated: %s" +msgstr "Terakhir diperbarui: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:62 +msgid "Original field group" +msgstr "Grup bidang asli" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:66 +msgid "JSON field group (newer)" +msgstr "Grup bidang JSON (lebih baru)" + +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Nonce tidak valid." + +#: includes/api/api-helpers.php:844 +msgid "Thumbnail" +msgstr "Thumbnail" + +#: includes/api/api-helpers.php:845 +msgid "Medium" +msgstr "Sedang" + +#: includes/api/api-helpers.php:846 +msgid "Large" +msgstr "Besar" + +#: includes/api/api-helpers.php:895 +msgid "Full Size" +msgstr "Ukuran Penuh" + +#: includes/api/api-helpers.php:1632 includes/api/api-term.php:147 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(tanpa judul)" + +#: includes/api/api-helpers.php:3596 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "Lebar gambar setidaknya harus %dpx." + +#: includes/api/api-helpers.php:3601 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "Lebar gambar tidak boleh melebihi %dpx." + +#: includes/api/api-helpers.php:3617 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "Tinggi gambar setidaknya harus %dpx." + +#: includes/api/api-helpers.php:3622 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "Tinggi gambar tidak boleh melebihi %dpx." + +#: includes/api/api-helpers.php:3640 +#, php-format +msgid "File size must be at least %s." +msgstr "Ukuran file setidaknya harus %s." + +#: includes/api/api-helpers.php:3645 +#, php-format +msgid "File size must not exceed %s." +msgstr "Ukuran file harus tidak boleh melebihi %s." + +#: includes/api/api-helpers.php:3679 +#, php-format +msgid "File type must be %s." +msgstr "Jenis file harus %s." + +#: includes/assets.php:343 +msgid "Are you sure?" +msgstr "Anda Yakin?" + +#: includes/assets.php:344 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:88 +msgid "Yes" +msgstr "Ya" + +#: includes/assets.php:345 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:98 +msgid "No" +msgstr "Tidak" + +#: includes/assets.php:346 includes/fields/class-acf-field-file.php:153 +#: includes/fields/class-acf-field-image.php:133 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:338 +#: pro/fields/class-acf-field-gallery.php:478 +msgid "Remove" +msgstr "Singkirkan" + +#: includes/assets.php:347 +msgid "Cancel" +msgstr "Batalkan" + +#: includes/assets.php:355 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "" +"Perubahan yang Anda buat akan hilang jika Anda menavigasi keluar dari laman " +"ini" + +#: includes/assets.php:358 +msgid "Validation successful" +msgstr "Validasi Sukses" + +#: includes/assets.php:359 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Validasi Gagal" + +#: includes/assets.php:360 +msgid "1 field requires attention" +msgstr "1 Bidang memerlukan perhatian" + +#: includes/assets.php:361 +#, php-format +msgid "%d fields require attention" +msgstr "Bidang %d memerlukan perhatian" + +#: includes/assets.php:364 includes/forms/form-comment.php:166 +#: pro/admin/admin-options-page.php:325 +msgid "Edit field group" +msgstr "Sunting Grup Bidang" + +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "Jenis bidang tidak ada" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "Tidak diketahui" + +#: includes/fields.php:349 +msgid "Basic" +msgstr "Dasar" + +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Konten" + +#: includes/fields.php:351 +msgid "Choice" +msgstr "Pilihan" + +#: includes/fields.php:352 +msgid "Relational" +msgstr "Relasional" + +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:554 +#: pro/fields/class-acf-field-flexible-content.php:603 +#: pro/fields/class-acf-field-repeater.php:449 +msgid "Layout" +msgstr "Layout" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "Accordion" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "Buka" + +#: includes/fields/class-acf-field-accordion.php:100 +msgid "Display this accordion as open on page load." +msgstr "Tampilkan accordion ini sebagai terbuka pada pemuatan halaman." + +#: includes/fields/class-acf-field-accordion.php:109 +msgid "Multi-expand" +msgstr "Multi-perluasan" + +#: includes/fields/class-acf-field-accordion.php:110 +msgid "Allow this accordion to open without closing others." +msgstr "Biarkan accordion ini terbuka tanpa menutup yang lain." + +#: includes/fields/class-acf-field-accordion.php:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Titik akhir" + +#: includes/fields/class-acf-field-accordion.php:120 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"Tentukan titik akhir untuk Accordion sebelumnya untuk berhenti. Accordion " +"ini tidak akan terlihat." + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Grup Tombol" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Pilihan" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "Masukkan setiap pilihan pada baris baru." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"Untuk kontrol lebih, Anda dapat menentukan keduanya antara nilai dan bidang " +"seperti ini:" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "merah : Merah" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:506 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:382 +#: includes/fields/class-acf-field-taxonomy.php:781 +#: includes/fields/class-acf-field-user.php:63 +msgid "Allow Null?" +msgstr "Izinkan Null?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:155 +#: includes/fields/class-acf-field-select.php:373 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:371 +msgid "Default Value" +msgstr "Nilai Default" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:156 +#: includes/fields/class-acf-field-text.php:96 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:372 +msgid "Appears when creating a new post" +msgstr "Muncul ketika membuat sebuah post baru" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "Vertikal" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:214 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:826 +msgid "Return Value" +msgstr "Nilai Kembali" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +msgid "Specify the returned value on front end" +msgstr "Tentukan nilai yang dikembalikan di front-end" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:432 +msgid "Value" +msgstr "Nilai" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:434 +msgid "Both (Array)" +msgstr "Keduanya (Array)" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:768 +msgid "Checkbox" +msgstr "Kotak centang" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Centang Semua" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Tambah pilihan baru" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "Izinkan Kustom" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "Izinkan ‘kustom’ nilai untuk ditambahkan" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "Simpan Kustom" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "Simpan nilai ‘kustom’ ke bidang pilihan" + +#: includes/fields/class-acf-field-checkbox.php:381 +#: includes/fields/class-acf-field-select.php:374 +msgid "Enter each default value on a new line" +msgstr "Masukkan setiap nilai default pada baris baru" + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "Toggle" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Tambahkan sebuah kotak centang untuk centang semua pilihan" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Pengambil Warna" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Bersihkan" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Default" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Pilih Warna" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Warna Saat Ini" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Pengambil Tanggal" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Selesai" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hari ini" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Selanjutnya" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Sebelumnya" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Mg" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Format tampilan" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "Format tampilan ketika menyunting post" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "Kustom:" + +#: includes/fields/class-acf-field-date_picker.php:197 +msgid "Save Format" +msgstr "Simpan Format" + +#: includes/fields/class-acf-field-date_picker.php:198 +msgid "The format used when saving a value" +msgstr "Format yang digunakan ketika menyimpan sebuah nilai" + +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-image.php:194 +#: includes/fields/class-acf-field-post_object.php:431 +#: includes/fields/class-acf-field-relationship.php:628 +#: includes/fields/class-acf-field-select.php:427 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:79 +#: pro/fields/class-acf-field-gallery.php:557 +msgid "Return Format" +msgstr "Kembalikan format" + +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "Format dikembalikan via template function" + +#: includes/fields/class-acf-field-date_picker.php:227 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Minggu Dimulai Pada" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Pengambil Tanggal dan Jam" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Pilih Waktu" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Time" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Jam" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Menit" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Detik" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Mili detik" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrodetik" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Zona Waktu" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Sekarang" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Selesai" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Pilih" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +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 amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Email" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:104 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Teks Placeholder" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:105 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Muncul didalam input" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:194 +#: includes/fields/class-acf-field-text.php:113 +msgid "Prepend" +msgstr "Prepend" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:195 +#: includes/fields/class-acf-field-text.php:114 +msgid "Appears before the input" +msgstr "Muncul sebelum input" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:203 +#: includes/fields/class-acf-field-text.php:122 +msgid "Append" +msgstr "Append" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:204 +#: includes/fields/class-acf-field-text.php:123 +msgid "Appears after the input" +msgstr "Muncul setelah input" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Berkas" + +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "Sunting Berkas" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "Perbarui Berkas" + +#: includes/fields/class-acf-field-file.php:141 +msgid "File name" +msgstr "Nama Berkas" + +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:247 +#: includes/fields/class-acf-field-file.php:258 +#: includes/fields/class-acf-field-image.php:254 +#: includes/fields/class-acf-field-image.php:283 +#: pro/fields/class-acf-field-gallery.php:642 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "File size" +msgstr "Ukuran Berkas" + +#: includes/fields/class-acf-field-file.php:169 +msgid "Add File" +msgstr "Tambah Berkas" + +#: includes/fields/class-acf-field-file.php:220 +msgid "File Array" +msgstr "Berkas Array" + +#: includes/fields/class-acf-field-file.php:221 +msgid "File URL" +msgstr "URL Berkas" + +#: includes/fields/class-acf-field-file.php:222 +msgid "File ID" +msgstr "ID Berkas" + +#: includes/fields/class-acf-field-file.php:229 +#: includes/fields/class-acf-field-image.php:219 +#: pro/fields/class-acf-field-gallery.php:592 +msgid "Library" +msgstr "Perpustakaan" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:220 +#: pro/fields/class-acf-field-gallery.php:593 +msgid "Limit the media library choice" +msgstr "Batasi pilihan pustaka media" + +#: includes/fields/class-acf-field-file.php:235 +#: includes/fields/class-acf-field-image.php:225 +#: includes/locations/class-acf-location-attachment.php:71 +#: includes/locations/class-acf-location-comment.php:59 +#: includes/locations/class-acf-location-nav-menu.php:72 +#: includes/locations/class-acf-location-taxonomy.php:61 +#: includes/locations/class-acf-location-user-form.php:65 +#: includes/locations/class-acf-location-user-role.php:76 +#: includes/locations/class-acf-location-widget.php:63 +#: pro/fields/class-acf-field-gallery.php:598 +#: pro/locations/class-acf-location-block.php:64 +msgid "All" +msgstr "Semua" + +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:226 +#: pro/fields/class-acf-field-gallery.php:599 +msgid "Uploaded to post" +msgstr "Diunggah ke post" + +#: includes/fields/class-acf-field-file.php:243 +#: includes/fields/class-acf-field-image.php:233 +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-file.php:255 +msgid "Restrict which files can be uploaded" +msgstr "Batasi file mana yang dapat diunggah" + +#: includes/fields/class-acf-field-file.php:254 +#: includes/fields/class-acf-field-image.php:262 +#: pro/fields/class-acf-field-gallery.php:650 +msgid "Maximum" +msgstr "Maksimum" + +#: includes/fields/class-acf-field-file.php:265 +#: includes/fields/class-acf-field-image.php:291 +#: pro/fields/class-acf-field-gallery.php:678 +msgid "Allowed file types" +msgstr "Jenis berkas yang diperbolehkan" + +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:292 +#: pro/fields/class-acf-field-gallery.php:679 +msgid "Comma separated list. Leave blank for all types" +msgstr "Daftar dipisahkan koma. Kosongkan untuk semua jenis" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Peta Google" + +#: includes/fields/class-acf-field-google-map.php:59 +msgid "Sorry, this browser does not support geolocation" +msgstr "Maaf, browser ini tidak support geolocation" + +#: includes/fields/class-acf-field-google-map.php:146 +#: includes/fields/class-acf-field-relationship.php:587 +msgid "Search" +msgstr "Cari" + +#: includes/fields/class-acf-field-google-map.php:147 +msgid "Clear location" +msgstr "Bersihkan lokasi" + +#: includes/fields/class-acf-field-google-map.php:148 +msgid "Find current location" +msgstr "Temukan lokasi saat ini" + +#: includes/fields/class-acf-field-google-map.php:151 +msgid "Search for address..." +msgstr "Cari alamat..." + +#: includes/fields/class-acf-field-google-map.php:181 +#: includes/fields/class-acf-field-google-map.php:192 +msgid "Center" +msgstr "Tengah" + +#: includes/fields/class-acf-field-google-map.php:182 +#: includes/fields/class-acf-field-google-map.php:193 +msgid "Center the initial map" +msgstr "Pusat peta awal" + +#: includes/fields/class-acf-field-google-map.php:204 +msgid "Zoom" +msgstr "Perbesar" + +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Set the initial zoom level" +msgstr "Mengatur tingkat awal zoom" + +#: includes/fields/class-acf-field-google-map.php:214 +#: includes/fields/class-acf-field-image.php:245 +#: includes/fields/class-acf-field-image.php:274 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:633 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Height" +msgstr "Tinggi" + +#: includes/fields/class-acf-field-google-map.php:215 +msgid "Customize the map height" +msgstr "Sesuaikan ketinggian peta" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Grup" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:385 +msgid "Sub Fields" +msgstr "Sub Bidang" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "Tentukan gaya yang digunakan untuk merender bidang yang dipilih" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:615 +#: pro/fields/class-acf-field-repeater.php:457 +#: pro/locations/class-acf-location-block.php:20 +msgid "Block" +msgstr "Blok" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:614 +#: pro/fields/class-acf-field-repeater.php:456 +msgid "Table" +msgstr "Tabel" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:616 +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Row" +msgstr "Baris" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Gambar" + +#: includes/fields/class-acf-field-image.php:63 +msgid "Select Image" +msgstr "Pilih Gambar" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Edit Image" +msgstr "Sunting Gambar" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Update Image" +msgstr "Perbarui Gambar" + +#: includes/fields/class-acf-field-image.php:66 includes/media.php:61 +msgid "All images" +msgstr "Semua gambar" + +#: includes/fields/class-acf-field-image.php:148 +msgid "No image selected" +msgstr "Tak ada gambar yang dipilih" + +#: includes/fields/class-acf-field-image.php:148 +msgid "Add Image" +msgstr "Tambahkan Gambar" + +#: includes/fields/class-acf-field-image.php:200 +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Image Array" +msgstr "Gambar Array" + +#: includes/fields/class-acf-field-image.php:201 +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Image URL" +msgstr "URL Gambar" + +#: includes/fields/class-acf-field-image.php:202 +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Image ID" +msgstr "ID Gambar" + +#: includes/fields/class-acf-field-image.php:209 +#: pro/fields/class-acf-field-gallery.php:571 +msgid "Preview Size" +msgstr "Ukuran Tinjauan" + +#: includes/fields/class-acf-field-image.php:234 +#: includes/fields/class-acf-field-image.php:263 +#: pro/fields/class-acf-field-gallery.php:622 +#: pro/fields/class-acf-field-gallery.php:651 +msgid "Restrict which images can be uploaded" +msgstr "Batasi gambar mana yang dapat diunggah" + +#: includes/fields/class-acf-field-image.php:237 +#: includes/fields/class-acf-field-image.php:266 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:625 +#: pro/fields/class-acf-field-gallery.php:654 +msgid "Width" +msgstr "Lebar" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Tautan" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Pilih Tautan" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "Buka di halaman/tab baru" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Tautan Array" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "URL Tautan" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Pesan" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Garis baru" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Kontrol bagaimana baris baru diberikan" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Tambah paragraf secara otomatis" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Otomatis Tambah <br>" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Jangan format" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "Keluar HTML" + +#: includes/fields/class-acf-field-message.php:125 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" +"Memungkinkan HTML markup untuk menampilkan teks terlihat sebagai render" + +#: includes/fields/class-acf-field-number.php:25 +msgid "Number" +msgstr "Nomor" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:164 +msgid "Minimum Value" +msgstr "Nilai Minimum" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:174 +msgid "Maximum Value" +msgstr "Nilai Maksimum" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:184 +msgid "Step Size" +msgstr "Ukuran Langkah" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "Nilai harus berupa angka" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "Nilai harus sama dengan atau lebih tinggi dari %d" + +#: includes/fields/class-acf-field-number.php:245 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "Nilai harus sama dengan atau lebih rendah dari %d" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "Masukkan URL" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "Ukuran Embed (Semat)" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Link Halaman" + +#: includes/fields/class-acf-field-page_link.php:170 +msgid "Archives" +msgstr "Arsip" + +#: includes/fields/class-acf-field-page_link.php:262 +#: includes/fields/class-acf-field-post_object.php:267 +#: includes/fields/class-acf-field-taxonomy.php:958 +msgid "Parent" +msgstr "Induk" + +#: includes/fields/class-acf-field-page_link.php:478 +#: includes/fields/class-acf-field-post_object.php:383 +#: includes/fields/class-acf-field-relationship.php:554 +msgid "Filter by Post Type" +msgstr "Saring dengan jenis post" + +#: includes/fields/class-acf-field-page_link.php:486 +#: includes/fields/class-acf-field-post_object.php:391 +#: includes/fields/class-acf-field-relationship.php:562 +msgid "All post types" +msgstr "Semua Tipe Post" + +#: includes/fields/class-acf-field-page_link.php:492 +#: includes/fields/class-acf-field-post_object.php:397 +#: includes/fields/class-acf-field-relationship.php:568 +msgid "Filter by Taxonomy" +msgstr "Filter dengan Taksonomi" + +#: includes/fields/class-acf-field-page_link.php:500 +#: includes/fields/class-acf-field-post_object.php:405 +#: includes/fields/class-acf-field-relationship.php:576 +msgid "All taxonomies" +msgstr "Semua Taksonomi" + +#: includes/fields/class-acf-field-page_link.php:516 +msgid "Allow Archives URLs" +msgstr "Izinkan mengarsipkan tautan-tautan" + +#: includes/fields/class-acf-field-page_link.php:526 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-user.php:71 +msgid "Select multiple values?" +msgstr "Pilih beberapa nilai?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Kata Sandi" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:436 +#: includes/fields/class-acf-field-relationship.php:633 +msgid "Post Object" +msgstr "Objek Post" + +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:634 +msgid "Post ID" +msgstr "ID Post" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Tombol Radio" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Lainnya" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "Tambah pilihan 'lainnya' untuk mengizinkan nilai kustom" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "Simpan Lainnya" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "Simpan nilai 'lainnya' ke bidang pilihan" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Rentang" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Hubungan" + +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "Nilai maksimum mencapai ( nilai {maks} )" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "Silahkan Tunggu" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "Tidak ada yang cocok" + +#: includes/fields/class-acf-field-relationship.php:411 +msgid "Select post type" +msgstr "Pilih jenis posting" + +#: includes/fields/class-acf-field-relationship.php:420 +msgid "Select taxonomy" +msgstr "Pilih taksonomi" + +#: includes/fields/class-acf-field-relationship.php:476 +msgid "Search..." +msgstr "Cari ..." + +#: includes/fields/class-acf-field-relationship.php:582 +msgid "Filters" +msgstr "Saringan" + +#: includes/fields/class-acf-field-relationship.php:588 +#: includes/locations/class-acf-location-post-type.php:20 +msgid "Post Type" +msgstr "Jenis Post" + +#: includes/fields/class-acf-field-relationship.php:589 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:751 +#: includes/locations/class-acf-location-taxonomy.php:20 +msgid "Taxonomy" +msgstr "Taksonomi" + +#: includes/fields/class-acf-field-relationship.php:596 +msgid "Elements" +msgstr "Elemen" + +#: includes/fields/class-acf-field-relationship.php:597 +msgid "Selected elements will be displayed in each result" +msgstr "Elemen terpilih akan ditampilkan disetiap hasil" + +#: includes/fields/class-acf-field-relationship.php:608 +msgid "Minimum posts" +msgstr "Posting minimal" + +#: includes/fields/class-acf-field-relationship.php:617 +msgid "Maximum posts" +msgstr "Posting maksimum" + +#: includes/fields/class-acf-field-relationship.php:721 +#: pro/fields/class-acf-field-gallery.php:779 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s diperlukan setidaknya %s pilihan" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:773 +msgctxt "noun" +msgid "Select" +msgstr "Pilih" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Satu hasil tersedia, tekan enter untuk memilihnya." + +#: includes/fields/class-acf-field-select.php:112 +#, php-format +msgctxt "Select2 JS matches_n" +msgid "%d results are available, use up and down arrow keys to navigate." +msgstr "" +"%d hasil tersedia, gunakan tombol panah atas dan bawah untuk menavigasi." + +#: includes/fields/class-acf-field-select.php:113 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Tidak ada yang cocok" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "Harap masukkan 1 karakter atau lebih" + +#: includes/fields/class-acf-field-select.php:115 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "Harap masukkan %d karakter atau lebih" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Harap hapus 1 karakter" + +#: includes/fields/class-acf-field-select.php:117 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Please delete %d character" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Anda hanya dapat memilih 1 item" + +#: includes/fields/class-acf-field-select.php:119 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Anda hanya dapat memilih %d item" + +#: includes/fields/class-acf-field-select.php:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Memuat lebih banyak hasil…" + +#: includes/fields/class-acf-field-select.php:121 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Pencarian…" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Gagal Memuat" + +#: includes/fields/class-acf-field-select.php:259 includes/media.php:54 +msgctxt "verb" +msgid "Select" +msgstr "Pilih" + +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "UI bergaya" + +#: includes/fields/class-acf-field-select.php:412 +msgid "Use AJAX to lazy load choices?" +msgstr "Gunakan AJAX untuk pilihan lazy load?" + +#: includes/fields/class-acf-field-select.php:428 +msgid "Specify the value returned" +msgstr "Tentukan nilai yang dikembalikan" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Pemisah" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Tab" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Penempatan" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Tentukan titik akhir untuk tab sebelumnya berhenti. Ini akan memulai grup " +"tab baru." + +#: includes/fields/class-acf-field-taxonomy.php:711 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "No %s" + +#: includes/fields/class-acf-field-taxonomy.php:752 +msgid "Select the taxonomy to be displayed" +msgstr "Pilih taksonomi yang akan ditampilkan" + +#: includes/fields/class-acf-field-taxonomy.php:761 +msgid "Appearance" +msgstr "Tampilan" + +#: includes/fields/class-acf-field-taxonomy.php:762 +msgid "Select the appearance of this field" +msgstr "Pilih penampilan bidang ini" + +#: includes/fields/class-acf-field-taxonomy.php:767 +msgid "Multiple Values" +msgstr "Beberapa Nilai" + +#: includes/fields/class-acf-field-taxonomy.php:769 +msgid "Multi Select" +msgstr "Pilihan Multi" + +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Single Value" +msgstr "Nilai Tunggal" + +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Radio Buttons" +msgstr "Tombol Radio" + +#: includes/fields/class-acf-field-taxonomy.php:796 +msgid "Create Terms" +msgstr "Buat Ketentuan" + +#: includes/fields/class-acf-field-taxonomy.php:797 +msgid "Allow new terms to be created whilst editing" +msgstr "Izinkan istilah baru dibuat saat menyunting" + +#: includes/fields/class-acf-field-taxonomy.php:806 +msgid "Save Terms" +msgstr "Simpan Ketentuan" + +#: includes/fields/class-acf-field-taxonomy.php:807 +msgid "Connect selected terms to the post" +msgstr "Hubungkan ketentuan yang dipilih ke post" + +#: includes/fields/class-acf-field-taxonomy.php:816 +msgid "Load Terms" +msgstr "Load Ketentuan" + +#: includes/fields/class-acf-field-taxonomy.php:817 +msgid "Load value from posts terms" +msgstr "Muat nilai dari ketentuan post" + +#: includes/fields/class-acf-field-taxonomy.php:831 +msgid "Term Object" +msgstr "Objek ketentuan" + +#: includes/fields/class-acf-field-taxonomy.php:832 +msgid "Term ID" +msgstr "ID Ketentuan" + +#: includes/fields/class-acf-field-taxonomy.php:882 +#, php-format +msgid "User unable to add new %s" +msgstr "Pengguna tidak dapat menambahkan %s" + +#: includes/fields/class-acf-field-taxonomy.php:892 +#, php-format +msgid "%s already exists" +msgstr "%s sudah ada" + +#: includes/fields/class-acf-field-taxonomy.php:924 +#, php-format +msgid "%s added" +msgstr "%s ditambahkan" + +#: includes/fields/class-acf-field-taxonomy.php:970 +#: includes/locations/class-acf-location-user-form.php:66 +msgid "Add" +msgstr "Tambah" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Teks" + +#: includes/fields/class-acf-field-text.php:131 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Batas Karakter" + +#: includes/fields/class-acf-field-text.php:132 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Biarkan kosong untuk tidak terbatas" + +#: includes/fields/class-acf-field-text.php:157 +#: includes/fields/class-acf-field-textarea.php:213 +#, php-format +msgid "Value must not exceed %d characters" +msgstr "Nilai tidak boleh lebih dari %d karakter" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Area Teks" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Baris" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Atur tinggi area teks" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Pengambil Jam" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Benar / Salah" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "Menampilkan teks di samping kotak centang" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "Dalam Teks" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "Teks muncul ketika aktif" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "Off Teks" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "Teks muncul ketika tidak aktif" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "Nilai harus URL yang valid" + +#: includes/fields/class-acf-field-user.php:20 includes/locations.php:99 +msgid "User" +msgstr "Pengguna" + +#: includes/fields/class-acf-field-user.php:51 +msgid "Filter by role" +msgstr "Saring berdasarkan peran" + +#: includes/fields/class-acf-field-user.php:59 +msgid "All user roles" +msgstr "Semua peran pengguna" + +#: includes/fields/class-acf-field-user.php:84 +msgid "User Array" +msgstr "Array Pengguna" + +#: includes/fields/class-acf-field-user.php:85 +msgid "User Object" +msgstr "Object Pengguna" + +#: includes/fields/class-acf-field-user.php:86 +msgid "User ID" +msgstr "ID Pengguna" + +#: includes/fields/class-acf-field-user.php:334 +msgid "Error loading field." +msgstr "Kesalahan saat memproses bidang." + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Penyuntingan WYSIWYG" + +#: includes/fields/class-acf-field-wysiwyg.php:320 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:321 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Teks" + +#: includes/fields/class-acf-field-wysiwyg.php:327 +msgid "Click to initialize TinyMCE" +msgstr "Klik untuk inisiasi TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:380 +msgid "Tabs" +msgstr "Tab" + +#: includes/fields/class-acf-field-wysiwyg.php:385 +msgid "Visual & Text" +msgstr "Visual & Teks" + +#: includes/fields/class-acf-field-wysiwyg.php:386 +msgid "Visual Only" +msgstr "Visual Saja" + +#: includes/fields/class-acf-field-wysiwyg.php:387 +msgid "Text Only" +msgstr "Teks saja" + +#: includes/fields/class-acf-field-wysiwyg.php:394 +msgid "Toolbar" +msgstr "Toolbar" + +#: includes/fields/class-acf-field-wysiwyg.php:409 +msgid "Show Media Upload Buttons?" +msgstr "Tampilkan Tombol Unggah Media?" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Delay initialization?" +msgstr "Tunda Inisiasi?" + +#: includes/fields/class-acf-field-wysiwyg.php:420 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "TinyMCE tidak akan di inisiasi hingga bidang diklik" + +#: includes/forms/form-front.php:38 pro/fields/class-acf-field-gallery.php:353 +msgid "Title" +msgstr "Judul" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "Validasi Email" + +#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 +#: pro/options-page.php:81 +msgid "Update" +msgstr "Perbarui" + +#: includes/forms/form-front.php:105 +msgid "Post updated" +msgstr "Pos Diperbarui" + +#: includes/forms/form-front.php:231 +msgid "Spam Detected" +msgstr "Spam Terdeteksi" + +#: includes/forms/form-user.php:336 +#, php-format +msgid "ERROR: %s" +msgstr "TERJADI KESALAHAN: %s" + +#: includes/locations.php:23 +#, php-format +msgid "Class \"%s\" does not exist." +msgstr "Class “%s” tidak ditemukan." + +#: includes/locations.php:34 +#, php-format +msgid "Location type \"%s\" is already registered." +msgstr "Tipe lokasi “%s” telah terdaftar." + +#: includes/locations.php:97 includes/locations/class-acf-location-post.php:20 +msgid "Post" +msgstr "Pos" + +#: includes/locations.php:98 includes/locations/class-acf-location-page.php:20 +msgid "Page" +msgstr "Laman" + +#: includes/locations.php:100 +msgid "Forms" +msgstr "Form" + +#: includes/locations/abstract-acf-location.php:103 +msgid "is equal to" +msgstr "sama dengan" + +#: includes/locations/abstract-acf-location.php:104 +msgid "is not equal to" +msgstr "tidak sama dengan" + +#: includes/locations/class-acf-location-attachment.php:20 +msgid "Attachment" +msgstr "Lampiran" + +#: includes/locations/class-acf-location-attachment.php:82 +#, php-format +msgid "All %s formats" +msgstr "Semua %s format" + +#: includes/locations/class-acf-location-comment.php:20 +msgid "Comment" +msgstr "Komentar" + +#: includes/locations/class-acf-location-current-user-role.php:20 +msgid "Current User Role" +msgstr "Peran pengguna saat ini" + +#: includes/locations/class-acf-location-current-user-role.php:75 +msgid "Super Admin" +msgstr "Super Admin" + +#: includes/locations/class-acf-location-current-user.php:20 +msgid "Current User" +msgstr "Pengguna saat ini" + +#: includes/locations/class-acf-location-current-user.php:69 +msgid "Logged in" +msgstr "Log masuk" + +#: includes/locations/class-acf-location-current-user.php:70 +msgid "Viewing front end" +msgstr "Melihat front end" + +#: includes/locations/class-acf-location-current-user.php:71 +msgid "Viewing back end" +msgstr "Melihat back end" + +#: includes/locations/class-acf-location-nav-menu-item.php:20 +msgid "Menu Item" +msgstr "Menu Item" + +#: includes/locations/class-acf-location-nav-menu.php:20 +msgid "Menu" +msgstr "Menu" + +#: includes/locations/class-acf-location-nav-menu.php:78 +msgid "Menu Locations" +msgstr "Lokasi Menu" + +#: includes/locations/class-acf-location-page-parent.php:20 +msgid "Page Parent" +msgstr "Laman Parent" + +#: includes/locations/class-acf-location-page-template.php:20 +msgid "Page Template" +msgstr "Template Laman" + +#: includes/locations/class-acf-location-page-template.php:71 +#: includes/locations/class-acf-location-post-template.php:83 +msgid "Default Template" +msgstr "Template Default" + +#: includes/locations/class-acf-location-page-type.php:20 +msgid "Page Type" +msgstr "Jenis Laman" + +#: includes/locations/class-acf-location-page-type.php:106 +msgid "Front Page" +msgstr "Laman Depan" + +#: includes/locations/class-acf-location-page-type.php:107 +msgid "Posts Page" +msgstr "Laman Post" + +#: includes/locations/class-acf-location-page-type.php:108 +msgid "Top Level Page (no parent)" +msgstr "Laman Tingkat Atas (tanpa parent)" + +#: includes/locations/class-acf-location-page-type.php:109 +msgid "Parent Page (has children)" +msgstr "Laman Parent (memiliki anak)" + +#: includes/locations/class-acf-location-page-type.php:110 +msgid "Child Page (has parent)" +msgstr "Laman Anak (memiliki parent)" + +#: includes/locations/class-acf-location-post-category.php:20 +msgid "Post Category" +msgstr "Kategori Post" + +#: includes/locations/class-acf-location-post-format.php:20 +msgid "Post Format" +msgstr "Format Post" + +#: includes/locations/class-acf-location-post-status.php:20 +msgid "Post Status" +msgstr "Status Post" + +#: includes/locations/class-acf-location-post-taxonomy.php:20 +msgid "Post Taxonomy" +msgstr "Post Taksonomi" + +#: includes/locations/class-acf-location-post-template.php:20 +msgid "Post Template" +msgstr "Template Laman" + +#: includes/locations/class-acf-location-user-form.php:20 +msgid "User Form" +msgstr "Form Pengguna" + +#: includes/locations/class-acf-location-user-form.php:67 +msgid "Add / Edit" +msgstr "Tambah / Sunting" + +#: includes/locations/class-acf-location-user-form.php:68 +msgid "Register" +msgstr "Daftar" + +#: includes/locations/class-acf-location-user-role.php:22 +msgid "User Role" +msgstr "Peran pengguna" + +#: includes/locations/class-acf-location-widget.php:20 +msgid "Widget" +msgstr "Widget" + +#: includes/media.php:55 +msgctxt "verb" +msgid "Edit" +msgstr "Sunting" + +#: includes/media.php:56 +msgctxt "verb" +msgid "Update" +msgstr "Perbarui" + +#: includes/media.php:57 +msgid "Uploaded to this post" +msgstr "Diunggah ke post ini" + +#: includes/media.php:58 +msgid "Expand Details" +msgstr "Perluas Rincian" + +#: includes/media.php:59 +msgid "Collapse Details" +msgstr "Persempit Rincian" + +#: includes/media.php:60 +msgid "Restricted" +msgstr "Dibatasi" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "Nilai %s diharuskan" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/admin/admin-options-page.php:198 +msgid "Publish" +msgstr "Terbitkan" + +#: pro/admin/admin-options-page.php:204 +#, php-format +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-updates.php:49 +msgid "Error. Could not connect to update server" +msgstr "Kesalahan. Tidak dapat terhubung ke server yang memperbarui" + +#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Pembaruan" + +#: pro/admin/admin-updates.php:191 +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/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:19 +#, php-format +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:28 +msgid "License Key" +msgstr "Kunci lisensi" + +#: pro/admin/views/html-settings-updates.php:60 +msgid "Update Information" +msgstr "Informasi Pembaruan" + +#: pro/admin/views/html-settings-updates.php:67 +msgid "Current Version" +msgstr "Versi sekarang" + +#: pro/admin/views/html-settings-updates.php:75 +msgid "Latest Version" +msgstr "Versi terbaru" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Update Available" +msgstr "Pembaruan Tersedia" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Update Plugin" +msgstr "Perbarui Plugin" + +#: pro/admin/views/html-settings-updates.php:93 +msgid "Please enter your license key above to unlock updates" +msgstr "Masukkan kunci lisensi Anda di atas untuk membuka pembaruan" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Check Again" +msgstr "Periksa lagi" + +#: pro/admin/views/html-settings-updates.php:106 +msgid "Changelog" +msgstr "Changelog" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "Upgrade Notice" +msgstr "Pemberitahuan Upgrade" + +#: pro/blocks.php:36 +msgid "Block type name is required." +msgstr "Blok tipe nama diharuskan." + +#: pro/blocks.php:43 +#, php-format +msgid "Block type \"%s\" is already registered." +msgstr "Blok tipe “%s” telah terdaftar." + +#: pro/blocks.php:418 +msgid "Switch to Edit" +msgstr "Beralih ke Penyuntingan" + +#: pro/blocks.php:419 +msgid "Switch to Preview" +msgstr "Beralih ke Pratinjau" + +#: pro/blocks.php:420 +msgid "Change content alignment" +msgstr "Sunting perataan konten" + +#: pro/blocks.php:423 +#, php-format +msgid "%s settings" +msgstr "%s pengaturan" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Klon" + +#: pro/fields/class-acf-field-clone.php:812 +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:829 +msgid "Display" +msgstr "Tampilan" + +#: pro/fields/class-acf-field-clone.php:830 +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:835 +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:836 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Seamless (mengganti bidang ini dengan bidang yang dipilih)" + +#: pro/fields/class-acf-field-clone.php:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "Label akan ditampilkan sebagai %s" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "Awalan Label Bidang" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "Nilai akan disimpan sebagai %s" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "Awalan Nama Bidang" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "Bidang tidak diketahui" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "Grup bidang tidak diketahui" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "Semua bidang dari %s grup bidang" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:469 +msgid "Add Row" +msgstr "Tambah Baris" + +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:926 +#: pro/fields/class-acf-field-flexible-content.php:1008 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "tata letak" + +#: pro/fields/class-acf-field-flexible-content.php:74 +msgid "layouts" +msgstr "layout" + +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:925 +#: pro/fields/class-acf-field-flexible-content.php:1007 +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:78 +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:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} tersedia (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} diperlukan (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:85 +msgid "Flexible Content requires at least 1 layout" +msgstr "Konten fleksibel memerlukan setidaknya 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:287 +#, php-format +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:413 +msgid "Add layout" +msgstr "Tambah Layout" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Gandakan Layout" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Hapus layout" + +#: pro/fields/class-acf-field-flexible-content.php:416 +#: pro/fields/class-acf-field-repeater.php:301 +msgid "Click to toggle" +msgstr "Klik untuk toggle" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Reorder Layout" +msgstr "Susun ulang Layout" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Reorder" +msgstr "Susun Ulang" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Delete Layout" +msgstr "Hapus Layout" + +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Duplicate Layout" +msgstr "Duplikat Layout" + +#: pro/fields/class-acf-field-flexible-content.php:559 +msgid "Add New Layout" +msgstr "Tambah Layout Baru" + +#: pro/fields/class-acf-field-flexible-content.php:631 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:644 +msgid "Max" +msgstr "Maks" + +#: pro/fields/class-acf-field-flexible-content.php:671 +#: pro/fields/class-acf-field-repeater.php:465 +msgid "Button Label" +msgstr "Label tombol" + +#: pro/fields/class-acf-field-flexible-content.php:680 +msgid "Minimum Layouts" +msgstr "Minimum Layouts" + +#: pro/fields/class-acf-field-flexible-content.php:689 +msgid "Maximum Layouts" +msgstr "Maksimum Layout" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Tambahkan Gambar ke Galeri" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Batas pilihan maksimum" + +#: pro/fields/class-acf-field-gallery.php:322 +msgid "Length" +msgstr "Panjang" + +#: pro/fields/class-acf-field-gallery.php:362 +msgid "Caption" +msgstr "Judul" + +#: pro/fields/class-acf-field-gallery.php:371 +msgid "Alt Text" +msgstr "Alt Teks" + +#: pro/fields/class-acf-field-gallery.php:487 +msgid "Add to gallery" +msgstr "Tambahkan ke galeri" + +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Bulk actions" +msgstr "Aksi besar" + +#: pro/fields/class-acf-field-gallery.php:492 +msgid "Sort by date uploaded" +msgstr "Urutkan berdasarkan tanggal unggah" + +#: pro/fields/class-acf-field-gallery.php:493 +msgid "Sort by date modified" +msgstr "Urutkan berdasarkan tanggal modifikasi" + +#: pro/fields/class-acf-field-gallery.php:494 +msgid "Sort by title" +msgstr "Urutkan menurut judul" + +#: pro/fields/class-acf-field-gallery.php:495 +msgid "Reverse current order" +msgstr "Balik urutan saat ini" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Close" +msgstr "Tutup" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Insert" +msgstr "Masukkan" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Specify where new attachments are added" +msgstr "Tentukan di mana lampiran baru ditambahkan" + +#: pro/fields/class-acf-field-gallery.php:585 +msgid "Append to the end" +msgstr "Tambahkan ke bagian akhir" + +#: pro/fields/class-acf-field-gallery.php:586 +msgid "Prepend to the beginning" +msgstr "Tambahkan ke bagian awal" + +#: pro/fields/class-acf-field-gallery.php:605 +msgid "Minimum Selection" +msgstr "Seleksi Minimum" + +#: pro/fields/class-acf-field-gallery.php:613 +msgid "Maximum Selection" +msgstr "Seleksi maksimum" + +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:662 +msgid "Minimum rows reached ({min} rows)" +msgstr "Baris minimal mencapai ({min} baris)" + +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "Baris maksimum mencapai ({max} baris)" + +#: pro/fields/class-acf-field-repeater.php:338 +msgid "Add row" +msgstr "Tambah Baris" + +#: pro/fields/class-acf-field-repeater.php:339 +msgid "Duplicate row" +msgstr "Gandakan baris" + +#: pro/fields/class-acf-field-repeater.php:340 +msgid "Remove row" +msgstr "Hapus baris" + +#: pro/fields/class-acf-field-repeater.php:418 +msgid "Collapsed" +msgstr "Disempitkan" + +#: pro/fields/class-acf-field-repeater.php:419 +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:429 +msgid "Minimum Rows" +msgstr "Minimum Baris" + +#: pro/fields/class-acf-field-repeater.php:439 +msgid "Maximum Rows" +msgstr "Maksimum Baris" + +#: pro/locations/class-acf-location-block.php:69 +msgid "No block types exist" +msgstr "Tidak ada tipe blok tersedia" + +#: pro/locations/class-acf-location-options-page.php:68 +msgid "No options pages exist" +msgstr "Tidak ada pilihan halaman yang ada" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Pilihan Diperbarui" + +#: pro/updates.php:97 +#, php-format +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." + +#: tests/basic/test-blocks.php:279 +msgid "Hero" +msgstr "Utama" + +#: tests/basic/test-blocks.php:280 +msgid "Display a random hero image." +msgstr "Tampilkan sebuah gambar utama acak." + +#. Plugin URI of the plugin/theme +#. Author URI of the plugin/theme +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com/" + +#. Description of the plugin/theme +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Sesuaikan WordPress dengan bidang kustom yang kuat, profesional, dan " +"intuitif." + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "Elliot Condon" + +#~ msgid "Parent fields" +#~ msgstr "Bidang parent" + +#~ msgid "Sibling fields" +#~ msgstr "Bidang sibling" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "bidang grup %s disinkronkan." + +#~ msgid "Status" +#~ msgstr "Status" + +#~ msgid "See what's new in" +#~ msgstr "Lihat apa yang baru di" + +#~ msgid "Resources" +#~ msgstr "Sumber" + +#~ msgid "Getting Started" +#~ msgstr "Perkenalan" + +#~ msgid "Field Types" +#~ msgstr "Jenis Field" + +#~ msgid "Functions" +#~ msgstr "Fungsi" + +#~ msgid "Actions" +#~ msgstr "Tindakan" + +#~ msgid "'How to' guides" +#~ msgstr "Panduan \"Bagaimana Caranya\"" + +#~ msgid "Tutorials" +#~ msgstr "Tutorial" + +#~ msgid "Created by" +#~ msgstr "Dibuat oleh" + +#~ msgid "Add-ons" +#~ msgstr "Add-on" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Kesalahan. Tidak dapat memuat daftar add-on" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "What's New" +#~ msgstr "Apa yang Baru" + +#, php-format +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Sukses. Impor alat ditambahkan %s grup bidang: %s" + +#, php-format +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Peringatan. Impor alat terdeteksi grup bidang %s sudah ada dan " +#~ "telah diabaikan: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Tingkatkan ACF" + +#~ msgid "Upgrade" +#~ msgstr "Tingkatkan" + +#~ msgid "Error" +#~ msgstr "Error" + +#~ msgid "Error." +#~ msgstr "Error." + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Seret dan jatuhkan untuk mengatur ulang" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taksonomi Persyaratan" + +#~ msgid "Download & Install" +#~ msgstr "Undah dan Instal" + +#~ msgid "Installed" +#~ msgstr "Sudah Terinstall" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Selamat datang di Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Terima kasih sudah memperbarui! ACF %s lebih besar dan lebih baik " +#~ "daripada sebelumnya. Kami harap Anda menyukainya." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Pengalaman bidang kustom yang halus" + +#~ msgid "Improved Usability" +#~ msgstr "Peningkatan Kegunaan" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Termasuk Perpustakaan Select2 populer telah meningkatkan kegunaan dan " +#~ "kecepatan di sejumlah bidang jenis termasuk posting objek, link halaman, " +#~ "taksonomi, dan pilih." + +#~ msgid "Improved Design" +#~ msgstr "Peningkatan Desain" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Berbagai bidang telah mengalami refresh visual untuk membuat ACF terlihat " +#~ "lebih baik daripada sebelumnya! Perubahan nyata terlihat pada galeri, " +#~ "hubungan dan oEmbed bidang (baru)!" + +#~ msgid "Improved Data" +#~ msgstr "Peningkatan Data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Mendesain ulang arsitektur data telah memungkinkan sub bidang untuk yang " +#~ "mandiri dari parentnya. Hal ini memungkinkan Anda untuk seret dan " +#~ "jatuhkan bidang masuk dan keluar dari bidang parent!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Selamat tinggal Add-on. Halo PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Memperkenalkan ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "Kami mengubah fungsionalitas premium dengan cara yang menarik!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Semua 4 add-on premium sudah dikombinasikan kedalam versi " +#~ "Pro ACF. Dengan ketersediaan lisensi personal dan pengembang, fungsi " +#~ "premuim lebih terjangkau dan dapat diakses keseluruhan dibanding " +#~ "sebelumnya!" + +#~ msgid "Powerful Features" +#~ msgstr "Fitur kuat" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO memiliki fitur canggih seperti data yang berulang, layout konten " +#~ "yang fleksibel, bidang galeri yang cantik dan kemampuan membuat laman " +#~ "opsi ekstra admin!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Baca selengkapnya tentang Fitur-fitur ACF PRO." + +#~ msgid "Easy Upgrading" +#~ msgstr "Upgrade Mudah" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Untuk membuat peningkatan yang mudah, masuk ke akun toko dan klaim salinan gratis ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Kami juga menulis panduan upgrade untuk menjawab " +#~ "pertanyaan apapun, jika Anda sudah punya, silahkan hubungi tim support " +#~ "kami via help desk" + +#~ msgid "Under the Hood" +#~ msgstr "Dibawah judul blog" + +#~ msgid "Smarter field settings" +#~ msgstr "Pengaturan bidang yang pintar" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACF sekarang menyimpan pengaturan bidang sebagai objek post individu" + +#~ msgid "More AJAX" +#~ msgstr "Lebih banyak AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Banyak bidang yang menggunakan pencarian AJAX untuk mempercepat loading " +#~ "laman" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Ekspor otomatis ke fitur JSON meningkatkan kecepatan" + +#~ msgid "Better version control" +#~ msgstr "Pengaturan versi terbaik" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Ekspor otomatis ke fitur JSON memungkinkan pengaturan bidang menjadi " +#~ "versi yang terkontrol" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "Ubah XML ke JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Impor / ekspor sekarang menggunakan JSON yang mendukung XML" + +#~ msgid "New Forms" +#~ msgstr "Form Baru" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Bidang sekarang dapat dipetakan ke komentar, widget dan semua bentuk " +#~ "pengguna!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Bidang baru untuk melekatkan konten telah ditambahkan" + +#~ msgid "New Gallery" +#~ msgstr "Galeri baru" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Bidang Galeri telah mengalami banyak dibutuhkan facelift" + +#~ msgid "New Settings" +#~ msgstr "Pengaturan baru" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Pengaturan grup bidang telah ditambahkan untuk penempatan label dan " +#~ "penempatan instruksi" + +#~ msgid "Better Front End Forms" +#~ msgstr "Form Front End Terbaik" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() dapat membuat post baru saat di kirimkan" + +#~ msgid "Better Validation" +#~ msgstr "Validasi lebih baik" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Validasi form sekarang dilakukan melalui PHP + AJAX yang sebelumnya hanya " +#~ "mendukung JS" + +#~ msgid "Relationship Field" +#~ msgstr "Bidang hubungan" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Pengaturan bidang hubungan untuk 'Saringan' (Pencarian, Tipe Post, " +#~ "Taksonomi)" + +#~ msgid "Moving Fields" +#~ msgstr "Memindahkan Bidang" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Fungsionalitas grup bidang memungkinkan Anda memindahkan bidang antara " +#~ "grup & parent" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Grup arsip di page_link bidang seleksi" + +#~ msgid "Better Options Pages" +#~ msgstr "Opsi Laman Lebih Baik" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Fungsi baru untuk opsi laman memungkinkan pembuatan laman menu parent dan " +#~ "child" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Kami kira Anda akan menyukai perbahan di %s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Ekspor grup bidang ke PHP" + +#~ msgid "Download export file" +#~ msgstr "Unduh berkas ekspor" + +#~ msgid "Generate export code" +#~ msgstr "Hasilkan kode ekspor" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Peningkatan Database Advanced Custom Fields" + +#~ msgid "Upgrading data to" +#~ msgstr "Meningkatkan data ke" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Sebelum anda mulai menggunakan fitur keren baru ini, silahkan perbarui " +#~ "database anda ke versi terbaru." + +#~ msgid "See what's new" +#~ msgstr "Lihat apa yang baru" + +#~ msgid "Show a different month" +#~ msgstr "Tampilkan bulan berbeda" + +#~ msgid "Return format" +#~ msgstr "Kembalikan format" + +#~ msgid "uploaded to this post" +#~ msgstr "diunggah ke post ini" + +#~ msgid "File Size" +#~ msgstr "Ukuran Berkas" + +#~ msgid "No File selected" +#~ msgstr "Tak ada file yang dipilih" + +#~ msgid "Locating" +#~ msgstr "Melokasikan" + +#~ msgid "Shown when entering data" +#~ msgstr "Tampilkan ketika memasukkan data" + +#~ msgid "No embed found for the given URL." +#~ msgstr "Tidak ada embed ditemukan dari URL yang diberikan." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Nilai minimum mencapai (nilai {min})" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Bidang tab tidak akan tampil dengan baik ketika ditambahkan ke Gaya Tabel " +#~ "repeater atau layout bidang konten yang fleksibel" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Gunakan \"Bidang Tab\" untuk mengatur penyuntingan layar anda dengan " +#~ "menggabungkan bidang bersamaan." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Semua bidang mengikuti \"bidang tab\" (atau sampai \"bidang tab\" lainnya " +#~ "ditemukan) akan dikelompokkan bersama-sama menggunakan label bidang ini " +#~ "sebagai judul tab." + +#~ msgid "None" +#~ msgstr "Tidak ada" + +#~ msgid "eg. Show extra content" +#~ msgstr "contoh. Tampilkan konten ekstra" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Kesalahan Koneksi. Maaf, silakan coba lagi" + +#~ msgid "Save Options" +#~ msgstr "Simpan Pengaturan" + +#~ msgid "License" +#~ msgstr "Lisensi" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Untuk membuka update, masukkan kunci lisensi Anda di bawah ini. Jika Anda " +#~ "tidak memiliki kunci lisensi, silakan lihat" + +#~ msgid "details & pricing" +#~ msgstr "rincian & harga" + +#~ msgid "remove {layout}?" +#~ msgstr "singkirkan {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Bidang ini membutuhkan setidaknya {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maksimum {label} mencapai ({max} {identifier})" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" diff --git a/lang/pro/acf-it_IT.po b/lang/pro/acf-it_IT.po new file mode 100644 index 0000000..5921e1a --- /dev/null +++ b/lang/pro/acf-it_IT.po @@ -0,0 +1,3007 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:07+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Elliot Condon \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Loco-Target-Locale: it_IT\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: pro/options-page.php:47 +msgid "Options" +msgstr "Opzioni" + +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Aggiorna" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Ricontrollare" + +#: pro/updates.php:561 +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-options-page.php:309 +msgid "Edit field group" +msgstr "Modifica Field Group" + +#: 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Aggiornamenti" + +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 "Clona" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Campi" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Visualizza" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +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:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Specificare lo stile utilizzato per il rendering dei campi selezionati" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Blocco" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabella" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Riga" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Etichette verranno visualizzate come %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefisso Etichetta Campo" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "I valori verranno salvati come %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefisso Nomi Campo" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Campo sconosciuto" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(nessun titolo)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Field Group sconosciuto" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Tutti i campi dal %s field group" + +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Contenuto Flessibile" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Aggiungi Riga" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layout" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layout" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} disponibile (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} richiesto (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexible Content richiede almeno 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Trascinare per riordinare" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Aggiungi Layout" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Rimuovi Layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Clicca per alternare" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Riordina Layout" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Riordina" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Cancella Layout" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Cancella" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Duplica Layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Duplica" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Aggiungi Nuovo Layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Aggiungi Nuovo" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Etichetta" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Nome" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Etichetta Bottone" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Layout Minimi" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Layout Massimi" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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 "Galleria" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Aggiungi Immagine alla Galleria" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Selezione massima raggiunta" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lunghezza" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Modifica" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Rimuovi" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Titolo" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Didascalia" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Testo Alt" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Descrizione" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Aggiungi a Galleria" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Azioni in blocco" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Ordina per aggiornamento data" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Ordina per data modifica" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Ordina per titolo" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Ordine corrente inversa" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Chiudi" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Formato di ritorno" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Array Immagine" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "URL Immagine" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "ID Immagine" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Dimensione Anteprima" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Inserisci" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Specificare dove vengono aggiunti nuovi allegati" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Aggiungere alla fine" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Anteporre all'inizio" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Libreria" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Limitare la scelta alla libreria multimediale" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Tutti" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Caricato al post" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Seleziona Minima" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Seleziona Massima" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimo" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Limita i tipi di immagine che possono essere caricati" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Larghezza" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Altezza" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Dimensione File" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Massimo" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Tipologie File permesse" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "Lista separata da virgole. Lascia bianco per tutti i tipi" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Ripetitore" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Righe minime raggiunte ({min} righe)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Righe massime raggiunte ({max} righe)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Campi Sub" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Collassata" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Righe Minime" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Righe Massime" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Aggiungi riga" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Rimuovi riga" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "Pagina Opzioni" + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Informazioni di aggiornamento" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Versione corrente" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Ultima versione" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Aggiornamento Disponibile" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "No" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Si" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Inserisci il tuo codice di licenza per sbloccare gli aggiornamenti" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Aggiorna Plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Novità" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Avviso di Aggiornamento" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Campi Personalizzati Avanzati" + +#~ msgid "Field Groups" +#~ msgstr "Field Group" + +#~ msgid "Field Group" +#~ msgstr "Field Group" + +#~ msgid "Add New Field Group" +#~ msgstr "" +#~ "Aggiungi Nuovo \n" +#~ "Field Group" + +#~ msgid "Edit Field Group" +#~ msgstr "" +#~ "Modifica \n" +#~ "Field Group" + +#~ msgid "New Field Group" +#~ msgstr "" +#~ "Nuovo \n" +#~ "Field Group" + +#~ msgid "View Field Group" +#~ msgstr "" +#~ "Visualizza \n" +#~ "Field Group" + +#~ msgid "Search Field Groups" +#~ msgstr "" +#~ "Cerca \n" +#~ "Field Group" + +#~ msgid "No Field Groups found" +#~ msgstr "" +#~ "Nessun \n" +#~ "Field Group\n" +#~ " Trovato" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "" +#~ "Nessun \n" +#~ "Field Group\n" +#~ " trovato nel cestino" + +#~ msgid "Field" +#~ msgstr "Campo" + +#~ msgid "Add New Field" +#~ msgstr "Aggiungi Nuovo Campo" + +#~ msgid "Edit Field" +#~ msgstr "Modifica Campo" + +#~ msgid "New Field" +#~ msgstr "Nuovo Campo" + +#~ msgid "View Field" +#~ msgstr "Visualizza Campo" + +#~ msgid "Search Fields" +#~ msgstr "Ricerca Campi" + +#~ msgid "No Fields found" +#~ msgstr "Nessun Campo trovato" + +#~ msgid "No Fields found in Trash" +#~ msgstr "Nessun Campo trovato nel cestino" + +#~ msgid "Inactive" +#~ msgstr "Inattivo" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inattivo (%s)" +#~ msgstr[1] "Inattivo (%s)" + +#~ msgid "Field group updated." +#~ msgstr "" +#~ "Field Group\n" +#~ " aggiornato." + +#~ msgid "Field group deleted." +#~ msgstr "" +#~ "Field Group\n" +#~ " cancellato." + +#~ msgid "Field group published." +#~ msgstr "" +#~ "Field Group\n" +#~ " pubblicato." + +#~ msgid "Field group saved." +#~ msgstr "" +#~ "Field Group\n" +#~ " salvato." + +#~ msgid "Field group submitted." +#~ msgstr "" +#~ "Field Group\n" +#~ " inviato." + +#~ msgid "Field group scheduled for." +#~ msgstr "" +#~ "Field Group\n" +#~ " previsto." + +#~ msgid "Field group draft updated." +#~ msgstr "" +#~ "Bozza \n" +#~ "Field Group\n" +#~ " aggiornata." + +#~ 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" + +#~ 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" + +#~ msgid "Field group title is required" +#~ msgstr "Il titolo del Field Group è richiesto" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Sposta nel cestino. Sei sicuro?" + +#~ msgid "Move Custom Field" +#~ msgstr "Sposta Campo Personalizzato" + +#~ msgid "checked" +#~ msgstr "selezionato" + +#~ msgid "(no label)" +#~ msgstr "(nessuna etichetta)" + +#~ msgid "copy" +#~ msgstr "copia" + +#~ msgid "or" +#~ msgstr "o" + +#~ msgid "Null" +#~ msgstr "Nullo" + +#~ msgid "Location" +#~ msgstr "Posizione" + +#~ msgid "Settings" +#~ msgstr "Impostazioni" + +#~ msgid "Field Keys" +#~ msgstr "Field Key" + +#~ msgid "Active" +#~ msgstr "Attivo" + +#~ msgid "Move Complete." +#~ msgstr "Spostamento Completato." + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "" +#~ "Il Campo %s può essere trovato nel \n" +#~ "Field Group\n" +#~ " %s" + +#~ msgid "Close Window" +#~ msgstr "Chiudi Finestra" + +#~ msgid "Please select the destination for this field" +#~ msgstr "Per favore seleziona la destinazione per questo Campo" + +#~ msgid "Move Field" +#~ msgstr "Sposta Campo" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Attivo (%s)" +#~ msgstr[1] "Attivo (%s)" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "" +#~ "Field Group\n" +#~ " duplicato. %s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s Field Group duplicato." +#~ msgstr[1] "%s Field Group duplicati." + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "" +#~ "Field Group\n" +#~ " sincronizzato. %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s Field Group sincronizzato." +#~ msgstr[1] "%s Field Group sincronizzati." + +#~ msgid "Sync available" +#~ msgstr "Sync disponibile" + +#~ msgid "Status" +#~ msgstr "Stato" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "Personalizza WordPress con campi potenti, professionali e intuitivi." + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Guarda cosa c'è di nuovo nella versione %s." + +#~ msgid "Resources" +#~ msgstr "Risorse" + +#~ msgid "Website" +#~ msgstr "Sito Web" + +#~ msgid "Documentation" +#~ msgstr "Documentazione" + +#~ msgid "Support" +#~ msgstr "Supporto" + +#~ msgid "Pro" +#~ msgstr "PRO" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Grazie per aver creato con ACF." + +#~ msgid "Duplicate this item" +#~ msgstr "Duplica questo elemento" + +#~ msgid "Search" +#~ msgstr "Ricerca" + +#, php-format +#~ msgid "Select %s" +#~ msgstr "Seleziona %s" + +#~ msgid "Synchronise field group" +#~ msgstr "" +#~ "Sincronizza \n" +#~ "Field Group" + +#~ msgid "Sync" +#~ msgstr "Sync" + +#~ msgid "Apply" +#~ msgstr "Applica" + +#~ msgid "Bulk Actions" +#~ msgstr "Azioni di massa" + +#~ msgid "Tools" +#~ msgstr "Strumenti" + +#~ msgid "Custom Fields" +#~ msgstr "Campi Personalizzati" + +#~ msgid "Upgrade Database" +#~ msgstr "Aggiorna Database" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Rivedi siti e aggiornamenti" + +#~ msgid "Error validating request" +#~ msgstr "Errore di convalida richiesta" + +#~ msgid "No updates available." +#~ msgstr "Nessun aggiornamento disponibile." + +#~ msgid "Add-ons" +#~ msgstr "Add-ons" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Errore. Impossibile caricare l'elenco Add-ons" + +#~ msgid "Info" +#~ msgstr "Informazioni" + +#~ msgid "What's New" +#~ msgstr "Cosa c'è di nuovo" + +#~ msgid "Export Field Groups" +#~ msgstr "" +#~ "Esporta \n" +#~ "Field Group" + +#~ msgid "Generate PHP" +#~ msgstr "Genera PHP" + +#~ msgid "No field groups selected" +#~ msgstr "" +#~ "Nessun \n" +#~ "Field Group\n" +#~ " selezionato" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "Esportato 1 gruppo di campi." +#~ msgstr[1] "Esportati %s gruppi di campi." + +#~ msgid "Select Field Groups" +#~ msgstr "" +#~ "Cerca \n" +#~ "Field Group" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Selezionare i \n" +#~ "Field Group\n" +#~ " che si desidera esportare e quindi selezionare il metodo di " +#~ "esportazione. Utilizzare il pulsante di download per esportare in un " +#~ "file .json che sarà poi possibile importare in un'altra installazione " +#~ "ACF. Utilizzare il pulsante generare per esportare il codice PHP che è " +#~ "possibile inserire nel vostro tema." + +#~ msgid "Export File" +#~ msgstr "Esporta file" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Il codice seguente può essere utilizzato per registrare una versione " +#~ "locale del Field Group selezionato(i). Un Field Group locale può fornire " +#~ "numerosi vantaggi come ad esempio i tempi di caricamento più veloci, " +#~ "controllo di versione e campi / impostazioni dinamiche. Semplicemente " +#~ "copia e incolla il seguente codice nel file functions.php del vostro tema." + +#~ msgid "Copy to clipboard" +#~ msgstr "Copia negli appunti" + +#~ msgid "Copied" +#~ msgstr "Copiato" + +#~ msgid "Import Field Groups" +#~ msgstr "" +#~ "Importa \n" +#~ "Field Group" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Selezionare il file JSON di Advanced Custom Fields che si desidera " +#~ "importare. Quando si fa clic sul pulsante di importazione di seguito, ACF " +#~ "importerà i \n" +#~ "Field Group\n" +#~ "." + +#~ msgid "Select File" +#~ msgstr "Seleziona File" + +#~ msgid "Import File" +#~ msgstr "Importa file" + +#~ msgid "No file selected" +#~ msgstr "Nessun file selezionato" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Errore caricamento file. Per favore riprova" + +#~ msgid "Incorrect file type" +#~ msgstr "Tipo file non corretto" + +#~ msgid "Import file empty" +#~ msgstr "File importato vuoto" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "Importato 1 field group" +#~ msgstr[1] "Importati %s field groups" + +#~ msgid "Conditional Logic" +#~ msgstr "Condizione Logica" + +#~ msgid "Show this field if" +#~ msgstr "Mostra questo Campo se" + +#~ msgid "and" +#~ msgstr "e" + +#~ msgid "Add rule group" +#~ msgstr "Aggiungi gruppo di regole" + +#~ msgid "Edit field" +#~ msgstr "Modifica Campo" + +#~ msgid "Duplicate field" +#~ msgstr "Duplica Campo" + +#~ msgid "Move field to another group" +#~ msgstr "Sposta" + +#~ msgid "Move" +#~ msgstr "Sposta" + +#~ msgid "Delete field" +#~ msgstr "Cancella Campo" + +#~ msgid "Field Label" +#~ msgstr "Etichetta Campo" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "Questo è il nome che apparirà sulla pagina Modifica" + +#~ msgid "Field Name" +#~ msgstr "Nome Campo" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "Singola parola, nessun spazio. Sottolineatura e trattini consentiti" + +#~ msgid "Field Type" +#~ msgstr "Tipo di Campo" + +#~ msgid "Instructions" +#~ msgstr "Istruzioni" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Istruzioni per gli autori. Mostrato al momento della presentazione dei " +#~ "dati" + +#~ msgid "Required?" +#~ msgstr "Richiesto?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Attributi Contenitore" + +#~ msgid "width" +#~ msgstr "larghezza" + +#~ msgid "class" +#~ msgstr "classe" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "Chiudi Campo" + +#~ msgid "Order" +#~ msgstr "Ordinamento" + +#~ msgid "Key" +#~ msgstr "Chiave" + +#~ msgid "Type" +#~ msgstr "Tipo" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Nessun Campo. Clicca il bottone + Aggiungi Campo per " +#~ "creare il primo campo." + +#~ msgid "+ Add Field" +#~ msgstr "+ Aggiungi Campo" + +#~ msgid "Rules" +#~ msgstr "Regole" + +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "Creare un insieme di regole per determinare quale schermate in modifica " +#~ "dovranno utilizzare i campi personalizzati avanzati" + +#~ msgid "Style" +#~ msgstr "Stile" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Standard (metabox WP)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Senza giunte (senza metabox)" + +#~ msgid "Position" +#~ msgstr "Posizione" + +#~ msgid "High (after title)" +#~ msgstr "Alto (dopo il titolo)" + +#~ msgid "Normal (after content)" +#~ msgstr "Normale (dopo contenuto)" + +#~ msgid "Side" +#~ msgstr "A lato" + +#~ msgid "Label placement" +#~ msgstr "Posizionamento etichette" + +#~ msgid "Top aligned" +#~ msgstr "Allineamento in alto" + +#~ msgid "Left aligned" +#~ msgstr "Allineamento a sinistra" + +#~ msgid "Instruction placement" +#~ msgstr "Posizionamento Istruzione" + +#~ msgid "Below labels" +#~ msgstr "Sotto etichette" + +#~ msgid "Below fields" +#~ msgstr "Sotto campi" + +#~ msgid "Order No." +#~ msgstr "N. Ordinamento" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "" +#~ "Field groups come inizialmente viene visualizzato in un ordine inferiore" + +#~ msgid "Shown in field group list" +#~ msgstr "Mostrato in lista field group" + +#~ msgid "Hide on screen" +#~ msgstr "Nascondi nello schermo" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Seleziona gli elementi per nasconderli dalla pagina " +#~ "Modifica." + +#~ 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 Field Group usato (quello con il numero " +#~ "d'ordine più basso)" + +#~ msgid "Permalink" +#~ msgstr "Permalink" + +#~ msgid "Content Editor" +#~ msgstr "Editor Contenuto" + +#~ msgid "Excerpt" +#~ msgstr "Estratto" + +#~ msgid "Discussion" +#~ msgstr "Discussione" + +#~ msgid "Comments" +#~ msgstr "Commenti" + +#~ msgid "Revisions" +#~ msgstr "Revisioni" + +#~ msgid "Slug" +#~ msgstr "Slug" + +#~ msgid "Author" +#~ msgstr "Autore" + +#~ msgid "Format" +#~ msgstr "Formato" + +#~ msgid "Page Attributes" +#~ msgstr "Attributi di Pagina" + +#~ msgid "Featured Image" +#~ msgstr "Immagine di presentazione" + +#~ msgid "Categories" +#~ msgstr "Categorie" + +#~ msgid "Tags" +#~ msgstr "Tag" + +#~ msgid "Send Trackbacks" +#~ msgstr "Invia Trackbacks" + +#~ msgid "Show this field group if" +#~ msgstr "" +#~ "Mostra questo \n" +#~ "Field Group\n" +#~ " se" + +#~ msgid "Upgrade Sites" +#~ msgstr "Aggiornamento siti" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "" +#~ "Aggiornamento Database \n" +#~ "Advanced Custom Fields" + +#, php-format +#~ 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 clicca %s." + +#~ msgid "Site" +#~ msgstr "Sito" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Il sito necessita di un aggiornamento Database da %s a %s" + +#~ msgid "Site is up to date" +#~ msgstr "Il sito è aggiornato" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Aggiornamento Database completato. Ritorna alla Network " +#~ "Dashboard" + +#~ msgid "" +#~ "It is strongly recommended that you backup your database before " +#~ "proceeding. Are you sure you wish to run the updater now?" +#~ msgstr "" +#~ "Si raccomanda vivamente di eseguire il backup del database prima di " +#~ "procedere. Sei sicuro che si desidera eseguire il programma di " +#~ "aggiornamento adesso?" + +#~ msgid "Upgrade complete" +#~ msgstr "Aggiornamento completato" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Aggiornamento dati alla versione %s" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Aggiornamento Database richiesto" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Grazie per aver aggiornato a %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Prima di iniziare ad utilizzare queste nuove fantastiche funzionalità, " +#~ "aggiorna il tuo Database alla versione più attuale." + +#, php-format +#~ msgid "" +#~ "Please also ensure any premium add-ons (%s) have first been updated to " +#~ "the latest version." +#~ msgstr "" +#~ "Si prega di assicurarsi che anche i componenti premium (%s) siano prima " +#~ "stati aggiornati all'ultima versione." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Lettura attività di aggiornamento ..." + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "" +#~ "Aggiornamento del database completato. Guarda le novità" + +#~ msgid "Download & Install" +#~ msgstr "Scarica & Installa" + +#~ msgid "Installed" +#~ msgstr "Installato" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Benvenuto in Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Grazie per l'aggiornamento! ACF %s è più grande e migliore che mai. " +#~ "Speriamo che vi piaccia." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Campi Personalizzati come non li avete mai visti" + +#~ msgid "Improved Usability" +#~ msgstr "Migliorata Usabilità" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Inclusa la famosa biblioteca Select2, che ha migliorato sia l'usabilità, " +#~ "che la velocità di Campi come Post, Link, Tassonomie e Select." + +#~ msgid "Improved Design" +#~ msgstr "Miglioramento del Design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Molti Campi hanno subito un aggiornamento visivo per rendere ACF un " +#~ "aspetto migliore che mai! Notevoli cambiamenti li trovate nei Campi " +#~ "Gallery, Relazioni e oEmbed (nuovo)!" + +#~ msgid "Improved Data" +#~ msgstr "Miglioramento dei dati" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Ridisegnare l'architettura dei dati ha permesso ai Sotto-Campi di vivere " +#~ "in modo indipendente dai loro Genitori. Ciò consente di trascinare e " +#~ "rilasciare i Campi dentro e fuori i Campi Genitore!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Ciao, ciao Add-ons. Benvenuto PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Introduzione ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "Stiamo cambiando in modo eccitante le funzionalità Premium!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Parallelamente ACF5 è la versione tutta nuova di ACF5 PRO! Questa versione PRO include tutti e 4 i componenti aggiuntivi premium " +#~ "(Repeater, Gallery, Flexible Content e Pagina Opzioni) e con le licenze " +#~ "personali e di sviluppo disponibili, funzionalità premium è più " +#~ "conveniente che mai!" + +#~ msgid "Powerful Features" +#~ msgstr "Potenti funzionalità" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO contiene caratteristiche impressionanti come i Campi Repeater, " +#~ "Flexible Layout, Gallery e la possibilità di creare Options Page (pagine " +#~ "opzioni di amministrazione) personalizzabili!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Scopri di più sulle funzionalità di ACF PRO." + +#~ msgid "Easy Upgrading" +#~ msgstr "Aggiornamento facile" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Per rendere più semplice gli aggiornamenti, \n" +#~ "accedi al tuo account e richiedi una copia gratuita di " +#~ "ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Abbiamo inoltre scritto una guida all'aggiornamento " +#~ "per rispondere alle vostre richieste, ma se ne avete di nuove, contattate " +#~ "il nostro help desk" + +#~ msgid "Under the Hood" +#~ msgstr "Sotto il cofano" + +#~ msgid "Smarter field settings" +#~ msgstr "Impostazioni dei Campi più intelligenti" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACF ora salva le impostazioni dei Campi come oggetti Post individuali" + +#~ msgid "More AJAX" +#~ msgstr "Più AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Altri campi utilizzano la ricerca di AJAX per velocizzare il caricamento " +#~ "della pagina" + +#~ msgid "Local JSON" +#~ msgstr "JSON locale" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "" +#~ "Nuovo esportazione automatica di funzionalità JSON migliora la velocità" + +#~ msgid "Better version control" +#~ msgstr "Migliore versione di controllo" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nuova esportazione automatica di funzione JSON consente impostazioni dei " +#~ "campi da versione controllati" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML scambiato per JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Importa / Esporta ora utilizza JSON a favore di XML" + +#~ msgid "New Forms" +#~ msgstr "Nuovi Forme" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "I campi possono essere mappati con i commenti, widget e tutte le forme " +#~ "degli utenti!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "È stato aggiunto un nuovo campo per incorporare contenuti" + +#~ msgid "New Gallery" +#~ msgstr "Nuova Galleria" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Il campo galleria ha subito un lifting tanto necessario" + +#~ msgid "New Settings" +#~ msgstr "Nuove Impostazioni" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Sono state aggiunte impostazioni di gruppo sul Campo per l'inserimento " +#~ "dell'etichetta e il posizionamento di istruzioni" + +#~ msgid "Better Front End Forms" +#~ msgstr "Forme Anteriori migliori" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() può ora creare un nuovo post di presentazione" + +#~ msgid "Better Validation" +#~ msgstr "Validazione Migliore" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Validazione del form ora avviene tramite PHP + AJAX in favore del solo JS" + +#~ msgid "Relationship Field" +#~ msgstr "Campo Relazione" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nuove Impostazione Campo Relazione per i 'Filtri' (Ricerca, Tipo di Post, " +#~ "Tassonomia)" + +#~ msgid "Moving Fields" +#~ msgstr "Spostamento Campi" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "La nuova funzionalità di Field Group consente di spostare un campo tra i " +#~ "gruppi e genitori" + +#~ msgid "Page Link" +#~ msgstr "Link Pagina" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nuovo gruppo archivi in materia di selezione page_link" + +#~ msgid "Better Options Pages" +#~ msgstr "Migliori Pagine Opzioni" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nuove funzioni per la Pagina Opzioni consentono la creazione di pagine " +#~ "menu genitore e figlio" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Pensiamo che amerete i cambiamenti in %s." + +#~ msgid "Thumbnail" +#~ msgstr "Thumbnail" + +#~ msgid "Medium" +#~ msgstr "Medio" + +#~ msgid "Large" +#~ msgstr "Grande" + +#~ msgid "Full Size" +#~ msgstr "Dimensione piena" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "La larghezza dell'immagine deve essere di almeno %dpx." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "La larghezza dell'immagine non deve superare i %dpx." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "L'altezza dell'immagine deve essere di almeno %dpx." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "L'altezza dell'immagine non deve superare i %dpx." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "La dimensione massima deve essere di almeno %s." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "La dimensione massima non deve superare i %s." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "La tipologia del File deve essere %s." + +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "" +#~ "Le modifiche effettuate verranno cancellate se si esce da questa pagina" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Seleziona" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Modifica" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Aggiorna" + +#~ msgid "Uploaded to this post" +#~ msgstr "Caricato in questo Post" + +#~ msgid "Expand Details" +#~ msgstr "Espandi Dettagli" + +#~ msgid "Collapse Details" +#~ msgstr "Chiudi Dettagli" + +#~ msgid "Restricted" +#~ msgstr "Limitato" + +#~ msgid "All images" +#~ msgstr "Tutte le immagini" + +#~ msgid "Validation successful" +#~ msgstr "Validazione avvenuta con successo" + +#~ msgid "Validation failed" +#~ msgstr "Validazione fallita" + +#~ msgid "1 field requires attention" +#~ msgstr "1 Campo necessita di attenzioni" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d Campi necessitano di attenzioni" + +#~ msgid "Are you sure?" +#~ msgstr "Sei sicuro?" + +#~ msgid "Cancel" +#~ msgstr "Annulla" + +#~ msgid "Has any value" +#~ msgstr "Ha qualunque valore" + +#~ msgid "Has no value" +#~ msgstr "Non ha un valore" + +#~ msgid "Value is equal to" +#~ msgstr "Valore è uguale a" + +#~ msgid "Value is not equal to" +#~ msgstr "Valore non è uguale a" + +#~ msgid "Value matches pattern" +#~ msgstr "Valore corrisponde a modello" + +#~ msgid "Value contains" +#~ msgstr "Valore contiene" + +#~ msgid "Value is greater than" +#~ msgstr "Valore è maggiore di" + +#~ msgid "Value is less than" +#~ msgstr "Valore è meno di" + +#~ msgid "Selection is greater than" +#~ msgstr "Selezione è maggiore di" + +#~ msgid "Selection is less than" +#~ msgstr "Selezione è meno di" + +#~ msgid "Basic" +#~ msgstr "Base" + +#~ msgid "Content" +#~ msgstr "Contenuto" + +#~ msgid "Choice" +#~ msgstr "Scegli" + +#~ msgid "Relational" +#~ msgstr "Relazionale" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Field type does not exist" +#~ msgstr "Il tipo di Campo non esiste" + +#~ msgid "Unknown" +#~ msgstr "Sconosciuto" + +#~ msgid "Accordion" +#~ msgstr "Fisarmonica" + +#~ msgid "Open" +#~ msgstr "Apri" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "Mostra questa fisarmonica aperta sul caricamento della pagina." + +#~ msgid "Multi-expand" +#~ msgstr "Espansione multipla" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Permetti a questa fisarmonica di aprirsi senza chiudere gli altri." + +#~ msgid "Endpoint" +#~ msgstr "Endpoint" + +#~ msgid "" +#~ "Define an endpoint for the previous accordion to stop. This accordion " +#~ "will not be visible." +#~ msgstr "" +#~ "Definisce un endpoint per la precedente fisarmonica che deve fermarsi. " +#~ "Questa fisarmonica non sarà visibile." + +#~ msgid "Button Group" +#~ msgstr "Gruppo Bottoni" + +#~ msgid "Choices" +#~ msgstr "Scelte" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Immettere ogni scelta su una nuova linea." + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "" +#~ "Per un maggiore controllo, è possibile specificare sia un valore ed " +#~ "etichetta in questo modo:" + +#~ msgid "red : Red" +#~ msgstr "rosso : Rosso" + +#~ msgid "Allow Null?" +#~ msgstr "Consenti Nullo?" + +#~ msgid "Default Value" +#~ msgstr "Valore di default" + +#~ msgid "Appears when creating a new post" +#~ msgstr "Appare quando si crea un nuovo post" + +#~ msgid "Horizontal" +#~ msgstr "Orizzontale" + +#~ msgid "Vertical" +#~ msgstr "Verticale" + +#~ msgid "Return Value" +#~ msgstr "Valore di ritorno" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Specificare il valore restituito sul front-end" + +#~ msgid "Value" +#~ msgstr "Valore" + +#~ msgid "Both (Array)" +#~ msgstr "Entrambi (Array)" + +#~ msgid "Checkbox" +#~ msgstr "Checkbox" + +#~ msgid "Toggle All" +#~ msgstr "Seleziona tutti" + +#~ msgid "Add new choice" +#~ msgstr "Aggiungi nuova scelta" + +#~ msgid "Allow Custom" +#~ msgstr "Consenti Personalizzato" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Consenti valori 'personalizzati' da aggiungere" + +#~ msgid "Save Custom" +#~ msgstr "Salva Personalizzato" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "Salvare i valori 'personalizzati' per le scelte del campo" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Immettere ogni valore di default su una nuova linea" + +#~ msgid "Toggle" +#~ msgstr "Toggle" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "Inserisci un Checkbox extra per poter selezionare tutte le opzioni" + +#~ msgid "Color Picker" +#~ msgstr "Selettore colore" + +#~ msgid "Clear" +#~ msgstr "Chiaro" + +#~ msgid "Default" +#~ msgstr "Default" + +#~ msgid "Select Color" +#~ msgstr "Seleziona colore" + +#~ msgid "Current Color" +#~ msgstr "Colore Corrente" + +#~ msgid "Date Picker" +#~ msgstr "Selettore data" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fatto" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Oggi" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Prossimo" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Precedente" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "Sett" + +#~ msgid "Display Format" +#~ msgstr "Formato di visualizzazione" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "Il formato visualizzato durante la modifica di un post" + +#~ msgid "Custom:" +#~ msgstr "Personalizzato:" + +#~ msgid "Save Format" +#~ msgstr "Salva Formato" + +#~ msgid "The format used when saving a value" +#~ msgstr "Il formato utilizzato durante il salvataggio di un valore" + +#~ msgid "The format returned via template functions" +#~ msgstr "Il formato restituito tramite funzioni template" + +#~ msgid "Week Starts On" +#~ msgstr "La settimana inizia il" + +#~ msgid "Date Time Picker" +#~ msgstr "Selettore data/ora" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Scegli tempo" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Orario" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Ore" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minuto" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Secondo" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Millisecondo" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Microsecondo" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Fuso orario" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Ora" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fatto" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Seleziona" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "A" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "P" + +#~ msgid "Email" +#~ msgstr "Email" + +#~ msgid "Placeholder Text" +#~ msgstr "Testo segnaposto" + +#~ msgid "Appears within the input" +#~ msgstr "Appare nella finestra di input" + +#~ msgid "Prepend" +#~ msgstr "Anteponi" + +#~ msgid "Appears before the input" +#~ msgstr "Appare prima dell'input" + +#~ msgid "Append" +#~ msgstr "Accodare" + +#~ msgid "Appears after the input" +#~ msgstr "Accodare dopo l'input" + +#~ msgid "File" +#~ msgstr "File" + +#~ msgid "Edit File" +#~ msgstr "Modifica File" + +#~ msgid "Update File" +#~ msgstr "Aggiorna File" + +#~ msgid "File name" +#~ msgstr "Nome file" + +#~ msgid "Add File" +#~ msgstr "Aggiungi file" + +#~ msgid "File Array" +#~ msgstr "File Array" + +#~ msgid "File URL" +#~ msgstr "File URL" + +#~ msgid "File ID" +#~ msgstr "File ID" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Limita i tipi di File che possono essere caricati" + +#~ msgid "Google Map" +#~ msgstr "Google Map" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Spiacente, questo browser non supporta la geolocalizzazione" + +#~ msgid "Clear location" +#~ msgstr "Pulisci posizione" + +#~ msgid "Find current location" +#~ msgstr "Trova posizione corrente" + +#~ msgid "Search for address..." +#~ msgstr "Cerca per indirizzo..." + +#~ msgid "Center" +#~ msgstr "Centro" + +#~ msgid "Center the initial map" +#~ msgstr "Centrare la mappa iniziale" + +#~ msgid "Zoom" +#~ msgstr "Zoom" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Imposta il livello di zoom iniziale" + +#~ msgid "Customise the map height" +#~ msgstr "Personalizza l'altezza della mappa iniziale" + +#~ msgid "Group" +#~ msgstr "Gruppo" + +#~ msgid "Image" +#~ msgstr "Immagine" + +#~ msgid "Select Image" +#~ msgstr "Seleziona Immagine" + +#~ msgid "Edit Image" +#~ msgstr "Modifica Immagine" + +#~ msgid "Update Image" +#~ msgstr "Aggiorna Immagine" + +#~ msgid "No image selected" +#~ msgstr "Nessun immagine selezionata" + +#~ msgid "Add Image" +#~ msgstr "Aggiungi Immagine" + +#~ msgid "Shown when entering data" +#~ msgstr "Mostrato durante l'immissione dei dati" + +#~ msgid "Link" +#~ msgstr "Link" + +#~ msgid "Select Link" +#~ msgstr "Seleziona Link" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "Apri in una nuova scheda/finestra" + +#~ msgid "Link Array" +#~ msgstr "Link Array" + +#~ msgid "Link URL" +#~ msgstr "Link URL" + +#~ msgid "Message" +#~ msgstr "Messaggio" + +#~ msgid "New Lines" +#~ msgstr "Nuove Linee" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Controlla come le nuove linee sono renderizzate" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Aggiungi automaticamente paragrafi" + +#~ msgid "Automatically add <br>" +#~ msgstr "Aggiungi automaticamente <br>" + +#~ msgid "No Formatting" +#~ msgstr "Nessuna formattazione" + +#~ msgid "Escape HTML" +#~ msgstr "Escape HTML" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "Visualizza HTML come testo" + +#~ msgid "Number" +#~ msgstr "Numero" + +#~ msgid "Minimum Value" +#~ msgstr "Valore Minimo" + +#~ msgid "Maximum Value" +#~ msgstr "Valore Massimo" + +#~ msgid "Step Size" +#~ msgstr "Step Dimensione" + +#~ msgid "Value must be a number" +#~ msgstr "Il valore deve essere un numero" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Il valore deve essere uguale o superiore a %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Il valore deve essere uguale o inferiore a %d" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "Inserisci URL" + +#~ msgid "Embed Size" +#~ msgstr "Dimensione Embed" + +#~ msgid "Archives" +#~ msgstr "Archivi" + +#~ msgid "Parent" +#~ msgstr "Genitore" + +#~ msgid "Filter by Post Type" +#~ msgstr "Filtra per tipo di Post" + +#~ msgid "All post types" +#~ msgstr "Tutti i tipi di post" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "Fitra per tassonomia" + +#~ msgid "All taxonomies" +#~ msgstr "Tutte le Tassonomie" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Consentire URL degli Archivi" + +#~ msgid "Select multiple values?" +#~ msgstr "Selezionare più valori?" + +#~ msgid "Password" +#~ msgstr "Password" + +#~ msgid "Post Object" +#~ msgstr "Oggetto Post" + +#~ msgid "Post ID" +#~ msgstr "ID Post" + +#~ msgid "Radio Button" +#~ msgstr "Bottone Radio" + +#~ msgid "Other" +#~ msgstr "Altro" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "Aggiungi scelta 'altro' per consentire valori personalizzati" + +#~ msgid "Save Other" +#~ msgstr "Salva Altro" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Salvare i valori 'altri' alle scelte di campo" + +#~ msgid "Range" +#~ msgstr "Intervallo" + +#~ msgid "Relationship" +#~ msgstr "Relazioni" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Valori massimi raggiunti ( valori {max} )" + +#~ msgid "Loading" +#~ msgstr "Caricamento" + +#~ msgid "No matches found" +#~ msgstr "Nessun risultato" + +#~ msgid "Select post type" +#~ msgstr "Seleziona Post Type" + +#~ msgid "Select taxonomy" +#~ msgstr "Seleziona Tassonomia" + +#~ msgid "Search..." +#~ msgstr "Ricerca ..." + +#~ msgid "Filters" +#~ msgstr "Filtri" + +#~ msgid "Post Type" +#~ msgstr "Tipo Post" + +#~ msgid "Taxonomy" +#~ msgstr "Tassonomie" + +#~ msgid "Elements" +#~ msgstr "Elementi" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Gli elementi selezionati verranno visualizzati in ogni risultato" + +#~ msgid "Minimum posts" +#~ msgstr "Post minimi" + +#~ msgid "Maximum posts" +#~ msgstr "Post massimi" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s richiede la selezione di almeno %s" +#~ msgstr[1] "%s richiede le selezioni di almeno %s" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Seleziona" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "Un risultato disponibile, premi invio per selezionarlo." + +#, php-format +#~ 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." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Nessun riscontro trovato" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Per favore inserire 1 o più caratteri" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Inserisci %d o più caratteri" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Per favore cancella 1 carattere" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Cancellare %d caratteri" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Puoi selezionare solo 1 elemento" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "È possibile selezionare solo %d elementi" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Caricamento altri risultati…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Cercando…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Caricamento fallito" + +#~ msgid "Stylised UI" +#~ msgstr "UI stilizzata" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "Usa AJAX per le scelte di carico lazy?" + +#~ msgid "Specify the value returned" +#~ msgstr "Specificare il valore restituito" + +#~ msgid "Separator" +#~ msgstr "Separatore" + +#~ msgid "Tab" +#~ msgstr "Scheda" + +#~ msgid "Placement" +#~ msgstr "Posizione" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definire un endpoint per le schede precedenti da interrompere. Questo " +#~ "avvierà un nuovo gruppo di schede." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Nessun %s" + +#~ msgid "None" +#~ msgstr "Nessuno" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Seleziona la Tassonomia da mostrare" + +#~ msgid "Appearance" +#~ msgstr "Aspetto" + +#~ msgid "Select the appearance of this field" +#~ msgstr "Seleziona l'aspetto per questo Campo" + +#~ msgid "Multiple Values" +#~ msgstr "Valori Multipli" + +#~ msgid "Multi Select" +#~ msgstr "Selezione Multipla" + +#~ msgid "Single Value" +#~ msgstr "Valore Singolo" + +#~ msgid "Radio Buttons" +#~ msgstr "Bottoni Radio" + +#~ msgid "Create Terms" +#~ msgstr "Crea Termini" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Abilita la creazione di nuovi Termini" + +#~ msgid "Save Terms" +#~ msgstr "Salva Termini" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Collega i Termini selezionati al Post" + +#~ msgid "Load Terms" +#~ msgstr "Carica Termini" + +#~ msgid "Load value from posts terms" +#~ msgstr "Carica valori dai Termini del Post" + +#~ msgid "Term Object" +#~ msgstr "Oggetto Termine" + +#~ msgid "Term ID" +#~ msgstr "ID Termine" + +#~ msgid "Error." +#~ msgstr "Errore." + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Utente non abilitato ad aggiungere %s" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s esiste già" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s aggiunto" + +#~ msgid "Add" +#~ msgstr "Aggiungi" + +#~ msgid "Text" +#~ msgstr "Testo" + +#~ msgid "Character Limit" +#~ msgstr "Limite Carattere" + +#~ msgid "Leave blank for no limit" +#~ msgstr "Lasciare vuoto per nessun limite" + +#~ msgid "Text Area" +#~ msgstr "Area di Testo" + +#~ msgid "Rows" +#~ msgstr "Righe" + +#~ msgid "Sets the textarea height" +#~ msgstr "Imposta le righe dell'area di testo" + +#~ msgid "Time Picker" +#~ msgstr "Selettore di tempo" + +#~ msgid "True / False" +#~ msgstr "Vero / Falso" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Visualizza il testo a fianco alla casella di controllo" + +#~ msgid "On Text" +#~ msgstr "Testo Attivo" + +#~ msgid "Text shown when active" +#~ msgstr "Testo visualizzato quando è attivo" + +#~ msgid "Off Text" +#~ msgstr "Testo Disattivo" + +#~ msgid "Text shown when inactive" +#~ msgstr "Testo mostrato quando inattivo" + +#~ msgid "Url" +#~ msgstr "Url" + +#~ msgid "Value must be a valid URL" +#~ msgstr "Il valore deve essere una URL valida" + +#~ msgid "User" +#~ msgstr "Utente" + +#~ msgid "Filter by role" +#~ msgstr "Filtra per ruolo" + +#~ msgid "All user roles" +#~ msgstr "Tutti i ruoli utente" + +#~ msgid "User Array" +#~ msgstr "Array utente" + +#~ msgid "User Object" +#~ msgstr "Oggetto utente" + +#~ msgid "User ID" +#~ msgstr "ID Utente" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "Editor Wysiwyg" + +#~ msgid "Visual" +#~ msgstr "Visuale" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Testo" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Clicca per inizializzare TinyMCE" + +#~ msgid "Tabs" +#~ msgstr "Schede" + +#~ msgid "Visual & Text" +#~ msgstr "Visuale e Testuale" + +#~ msgid "Visual Only" +#~ msgstr "Solo Visuale" + +#~ msgid "Text Only" +#~ msgstr "Solo Testuale" + +#~ msgid "Toolbar" +#~ msgstr "Toolbar" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Mostra Bottoni caricamento Media?" + +#~ msgid "Delay initialization?" +#~ msgstr "Ritardo inizializzazione?" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "" +#~ "TinyMCE non sarà inizializzato fino a quando il campo non viene cliccato" + +#~ msgid "Validate Email" +#~ msgstr "Valida Email" + +#~ msgid "Post updated" +#~ msgstr "Post aggiornato" + +#~ msgid "Spam Detected" +#~ msgstr "Spam Rilevato" + +#~ msgid "Post" +#~ msgstr "Post" + +#~ msgid "Page" +#~ msgstr "Pagina" + +#~ msgid "Forms" +#~ msgstr "Moduli" + +#~ msgid "is equal to" +#~ msgstr "è uguale a" + +#~ msgid "is not equal to" +#~ msgstr "non è uguale a" + +#~ msgid "Attachment" +#~ msgstr "Allegato" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Tutti i formati %s" + +#~ msgid "Comment" +#~ msgstr "Commento" + +#~ msgid "Current User Role" +#~ msgstr "Ruolo Utente corrente" + +#~ msgid "Super Admin" +#~ msgstr "Super Admin" + +#~ msgid "Current User" +#~ msgstr "Utente corrente" + +#~ msgid "Logged in" +#~ msgstr "Autenticato" + +#~ msgid "Viewing front end" +#~ msgstr "Visualizzando Frond-end" + +#~ msgid "Viewing back end" +#~ msgstr "Visualizzando Back-end" + +#~ msgid "Menu Item" +#~ msgstr "Menu Elemento" + +#~ msgid "Menu" +#~ msgstr "Menu" + +#~ msgid "Menu Locations" +#~ msgstr "Posizione Menu" + +#~ msgid "Menus" +#~ msgstr "Menu" + +#~ msgid "Page Parent" +#~ msgstr "Genitore Pagina" + +#~ msgid "Page Template" +#~ msgstr "Template Pagina" + +#~ msgid "Default Template" +#~ msgstr "Template Default" + +#~ msgid "Page Type" +#~ msgstr "Tipo di Pagina" + +#~ msgid "Front Page" +#~ msgstr "Pagina Principale" + +#~ msgid "Posts Page" +#~ msgstr "Pagina Post" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Pagina di primo livello (no Genitori)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Pagina Genitore (ha Figli)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Pagina Figlio (ha Genitore)" + +#~ msgid "Post Category" +#~ msgstr "Categoria Post" + +#~ msgid "Post Format" +#~ msgstr "Formato Post" + +#~ msgid "Post Status" +#~ msgstr "Stato Post" + +#~ msgid "Post Taxonomy" +#~ msgstr "Tassonomia Post" + +#~ msgid "Post Template" +#~ msgstr "Template Post" + +#~ msgid "User Form" +#~ msgstr "Form Utente" + +#~ msgid "Add / Edit" +#~ msgstr "Aggiungi / Modifica" + +#~ msgid "Register" +#~ msgstr "Registra" + +#~ msgid "User Role" +#~ msgstr "Ruolo Utente" + +#~ msgid "Widget" +#~ msgstr "Widget" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "Il valore %s è richiesto" + +#~ msgid "remove {layout}?" +#~ msgstr "rimuovi {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Questo campoQuesto campo richiede almeno {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Questo campo ha un limite di {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Massimo {label} limite raggiunto ({max} {identifier})" + +#, php-format +#~ 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 attivare gli aggiornamenti, per favore inserisci la tua chiave di " +#~ "licenza nella pagina Aggiornamenti. Se non hai una " +#~ "chiave di licenza, per favore vedi dettagli e prezzi." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "No conditional fields available" +#~ msgstr "Non ci sono campi condizionali disponibili" + +#~ msgid "Parent fields" +#~ msgstr "Campi genitore" + +#~ msgid "Sibling fields" +#~ msgstr "Campi di pari livello" + +#~ msgid "Left Aligned" +#~ msgstr "Allineamento a sinistra" + +#~ msgid "Locating" +#~ msgstr "Localizzazione" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Valori minimi raggiunti ( valori {min} )" + +#~ msgid "Taxonomy Term" +#~ msgstr "Termine Tassonomia" + +#~ msgid "No toggle fields available" +#~ msgstr "Nessun Campo Toggle disponibile" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "" +#~ "Esporta \n" +#~ "Field Group\n" +#~ " di PHP" + +#~ msgid "Download export file" +#~ msgstr "Scarica file di esportazione" + +#~ msgid "Generate export code" +#~ msgstr "Generare codice di esportazione" + +#~ msgid "Import" +#~ msgstr "Importa" + +#~ msgid "No embed found for the given URL." +#~ msgstr "Nessun embed trovato per l'URL specificato." + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Il campo scheda visualizzerà correttamente quando aggiunto a un campo " +#~ "ripetitore stile di tabella o disposizione flessibile in campo dei " +#~ "contenuti" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Usa \"Campi Scheda\" per organizzare al meglio la vostra schermata di " +#~ "modifica raggruppando i campi insieme." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Tutti i campi che seguono questo \"campo scheda\" (o finché un altro " +#~ "\"campo tab \" viene definito) verranno raggruppati utilizzando " +#~ "l'etichetta di questo campo come intestazione scheda." + +#~ msgid "End-point" +#~ msgstr "Punto finale" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "" +#~ "Utilizzare questo campo come un punto finale e iniziare un nuovo gruppo " +#~ "di schede" + +#~ msgid "Getting Started" +#~ msgstr "Guida introduttiva" + +#~ msgid "Field Types" +#~ msgstr "Tipi di Field" + +#~ msgid "Functions" +#~ msgstr "Funzioni" + +#~ msgid "Actions" +#~ msgstr "Azioni" + +#~ msgid "Features" +#~ msgstr "Caratteristiche" + +#~ msgid "How to" +#~ msgstr "Come fare" + +#~ msgid "Tutorials" +#~ msgstr "Tutorial" + +#~ msgid "FAQ" +#~ msgstr "FAQ" + +#~ msgid "Term meta upgrade not possible (termmeta table does not exist)" +#~ msgstr "" +#~ "Non è possibile l'aggiornamento del meta termine (la tabella termmeta non " +#~ "esiste)" + +#~ msgid "Error" +#~ msgstr "Errore" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "1 campo richiede attenzione." +#~ msgstr[1] "%d campi richiedono attenzione." + +#~ msgid "" +#~ "Error validating ACF PRO license URL (website does not match). Please re-" +#~ "activate your license" +#~ msgstr "" +#~ "Errore durante la convalida dell'URL della licenza di ACF PRO (sito web " +#~ "non corrisponde). Si prega di riattivare la licenza" + +#~ msgid "See what's new" +#~ msgstr "Guarda cosa c'è di nuovo" + +#~ msgid "Disabled" +#~ msgstr "Disabilitato" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Disabilitato (%s)" +#~ msgstr[1] "Disabilitato (%s)" + +#~ msgid "'How to' guides" +#~ msgstr "Guide del 'come si fa'" + +#~ msgid "Created by" +#~ msgstr "Creato da" + +#~ msgid "Text shown when not active" +#~ msgstr "Testo visualizzato quando non è attivo" + +#~ msgid "" +#~ "Error validating license URL (website does not match). Please re-activate " +#~ "your license" +#~ msgstr "" +#~ "Errore nella convalida licenza URL (sito Web non corrisponde). Si prega " +#~ "di ri-attivare la licenza" + +#~ msgid "Error loading update" +#~ msgstr "Errore durante il caricamento." + +#~ msgid "eg. Show extra content" +#~ msgstr "es. Mostra contenuti extra" + +#~ msgid "Select" +#~ msgstr "Seleziona" + +#~ msgctxt "Field label" +#~ msgid "Clone" +#~ msgstr "Clona" + +#~ msgctxt "Field instruction" +#~ msgid "Clone" +#~ msgstr "Clona" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Errore di connessione. Spiacenti, per favore riprova" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "Successo. Lo strumento di importazione ha aggiunto %s Field Group: " +#~ "%s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Attenzione. Lo strumento di importazione ha trovato %s \n" +#~ "Field Group\n" +#~ " già esistenti e sono stati ignorati: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Aggiorna ACF" + +#~ msgid "Upgrade" +#~ msgstr "Aggiornamento" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "I seguenti siti necessitano di un aggiornamento Database. Seleziona " +#~ "quelli da aggiornare e clicca \"Aggiorna Database\"" + +#~ msgid "Done" +#~ msgstr "Fatto" + +#~ msgid "Today" +#~ msgstr "Oggi" + +#~ msgid "Show a different month" +#~ msgstr "Mostra un altro mese" + +#~ msgid "See what's new in" +#~ msgstr "Guarda cosa c'è di nuovo" + +#~ msgid "version" +#~ msgstr "versione" + +#~ msgid "Upgrading data to" +#~ msgstr "Aggiornare i dati a" + +#~ msgid "Return format" +#~ msgstr "Formato ritorno" + +#~ msgid "uploaded to this post" +#~ msgstr "caricare a questo post" + +#~ msgid "File Name" +#~ msgstr "Nome file" + +#~ msgid "File Size" +#~ msgstr "Dimensione file" + +#~ msgid "No File selected" +#~ msgstr "Nessun file selezionato" + +#~ msgid "Save Options" +#~ msgstr "Salva Opzioni" + +#~ msgid "License" +#~ msgstr "Licenza" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Per sbloccare gli aggiornamenti, inserisci il tuo codice di licenza di " +#~ "seguito. Se non si dispone di una chiave di licenza, si prega di " +#~ "consultare" + +#~ msgid "details & pricing" +#~ msgstr "dettagli & prezzi" + +#~ 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 attivare gli aggiornamenti, inserisci il tuo codice di licenza sulla " +#~ "pagina Aggiornamenti. Se non si dispone di una chiave " +#~ "di licenza, si prega di consultare dettagli & prezzi" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Trascina per riordinare" + +#~ msgid "Add new %s " +#~ msgstr "Aggiungi %s " + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Si prega di notare che tutto il testo viene prima passato attraverso la " +#~ "funzione wp" + +#~ msgid "Warning" +#~ msgstr "Attenzione" + +#~ msgid "Import / Export" +#~ msgstr "Importa / Esporta" + +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "I Field Group sono creati in ordine dal più basso al più alto" diff --git a/lang/pro/acf-ja.po b/lang/pro/acf-ja.po new file mode 100644 index 0000000..ccaa060 --- /dev/null +++ b/lang/pro/acf-ja.po @@ -0,0 +1,3202 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:08+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: game-ryo \n" +"Language: ja_JP\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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:523 +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 "" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "再確認" + +#: pro/updates.php:561 +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:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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:814 +msgid "Fields" +msgstr "フィールド" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "表示" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "レイアウト" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "ブロック" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "表" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "行" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(無題)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1042 +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:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "行を追加" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "レイアウト" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "レイアウト" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "{identifier}に{label}は最低{min}個必要です" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "" +"あと{available}個 {identifier}には {label} を利用できます(最大 {max}個)" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "" +"あと{required}個 {identifier}には {label} を利用する必要があります(最小 " +"{max}個)" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "柔軟コンテンツは少なくとも1個のレイアウトが必要です" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "下の \"%s\" ボタンをクリックしてレイアウトの作成を始めてください" + +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "ドラッグして並び替え" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "レイアウトを追加" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "レイアウトを削除" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "レイアウトを並べ替え" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "並べ替え" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "レイアウトを削除" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "削除" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "レイアウトを複製" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "複製" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "新しいレイアウトを追加" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "新規追加" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "ラベル" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "名前" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "最小数" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "最大数" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "ボタンのラベル" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "レイアウトの最小数" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "レイアウトの最大数" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "ギャラリーに画像を追加" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "選択の最大数に到達しました" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "長さ" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "編集" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "取り除く" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "タイトル" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "説明" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "ギャラリーを追加" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "一括操作" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "アップロード日で並べ替え" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "変更日で並び替え" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "タイトルで並び替え" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "並び順を逆にする" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "閉じる" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "返り値のフォーマット" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "画像 配列" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "画像 URL" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "画像 ID" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "プレビューサイズ" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "ライブラリ" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "制限するメディアライブラリを選択" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "全て" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "投稿にアップロードされる" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "最小選択数" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "最大選択数" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "最小" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "アップロード可能な画像を制限" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "幅" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "高さ" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "ファイルサイズ" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "最大" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "許可するファイルタイプ" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "カンマ区切りのリストで入力。全てのタイプを許可する場合は空白のままで" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "繰り返しフィールド" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "最小行数に達しました({min} 行)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "最大行数に達しました({max} 行)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "サブフィールド" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:187 +msgid "Minimum Rows" +msgstr "最小行数" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "最大行数" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "行を追加" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "行を削除" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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:41 +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:76 +msgid "Update Information" +msgstr "アップデート情報" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "現在のバージョン" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "最新のバージョン" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "利用可能なアップデート" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "いいえ" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "はい" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "アップデートのロックを解除するためにライセンスキーを入力してください" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "プラグインをアップデート" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "更新履歴" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "アップグレード通知" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Field Groups" +#~ msgstr "フィールドグループ" + +#~ msgid "Field Group" +#~ msgstr "フィールドグループ" + +#~ msgid "Add New Field Group" +#~ msgstr "フィールドグループを新規追加" + +#~ msgid "Edit Field Group" +#~ msgstr "フィールドグループを編集" + +#~ msgid "New Field Group" +#~ msgstr "新規フィールドグループ" + +#~ msgid "View Field Group" +#~ msgstr "フィールドグループを表示" + +#~ msgid "Search Field Groups" +#~ msgstr "フィールドグループを検索" + +#~ msgid "No Field Groups found" +#~ msgstr "フィールドグループが見つかりませんでした" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "ゴミ箱の中にフィールドグループは見つかりませんでした" + +#~ msgid "Field" +#~ msgstr "フィールド" + +#~ msgid "Add New Field" +#~ msgstr "新規フィールドを追加" + +#~ msgid "Edit Field" +#~ msgstr "フィールドを編集" + +#~ msgid "New Field" +#~ msgstr "新規フィールド" + +#~ msgid "View Field" +#~ msgstr "フィールドを表示" + +#~ msgid "Search Fields" +#~ msgstr "フィールドを検索" + +#~ msgid "No Fields found" +#~ msgstr "フィールドが見つかりませんでした" + +#~ msgid "No Fields found in Trash" +#~ msgstr "ゴミ箱の中にフィールドは見つかりませんでした" + +#~ msgid "Disabled" +#~ msgstr "無効状態" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "無効状態 (%s)" + +#~ msgid "Custom Fields" +#~ msgstr "カスタムフィールド" + +#~ msgid "Field group updated." +#~ msgstr "フィールドグループを更新しました。" + +#~ msgid "Field group deleted." +#~ msgstr "フィールドグループを削除しました。" + +#~ msgid "Field group published." +#~ msgstr "フィールドグループを公開しました。" + +#~ msgid "Field group saved." +#~ msgstr "フィールドグループを保存しました。" + +#~ msgid "Field group submitted." +#~ msgstr "フィールドグループを送信しました。" + +#~ msgid "Field group scheduled for." +#~ msgstr "フィールドグループを公開予約しました。" + +#~ msgid "Field group draft updated." +#~ msgstr "フィールドグループの下書きを更新しました。" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "ゴミ箱に移動します。よろしいですか?" + +#~ msgid "checked" +#~ msgstr "チェック済み" + +#~ msgid "No toggle fields available" +#~ msgstr "利用できるトグルフィールドがありません" + +#~ msgid "Field group title is required" +#~ msgstr "フィールドグループのタイトルは必須です" + +#~ msgid "copy" +#~ msgstr "複製" + +#~ msgid "or" +#~ msgstr "または" + +#~ msgid "Parent fields" +#~ msgstr "親フィールド" + +#~ msgid "Sibling fields" +#~ msgstr "兄弟フィールド" + +#~ msgid "Move Custom Field" +#~ msgstr "カスタムフィールドを移動" + +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "このフィールドは変更が保存されるまで移動することはできません" + +#~ msgid "Null" +#~ msgstr "空" + +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "このページから移動した場合、変更は失われます" + +#~ msgid "The string \"field_\" may not be used at the start of a field name" +#~ msgstr "\"field_\" はフィールド名の先頭に使うことはできません" + +#~ msgid "Location" +#~ msgstr "位置" + +#~ msgid "Settings" +#~ msgstr "設定" + +#~ msgid "Field Keys" +#~ msgstr "フィールドキー" + +#~ msgid "Active" +#~ msgstr "アクティブ" + +#~ msgid "Front Page" +#~ msgstr "フロントページ" + +#~ msgid "Posts Page" +#~ msgstr "投稿ページ" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "最上位のページ(親ページがない)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "親ページ(子ページがある場合)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "子ページ(親ページがある場合)" + +#~ msgid "Default Template" +#~ msgstr "デフォルトテンプレート" + +#~ msgid "Logged in" +#~ msgstr "ログイン済み" + +#~ msgid "Viewing front end" +#~ msgstr "フロントエンドで表示" + +#~ msgid "Viewing back end" +#~ msgstr "バックエンドで表示" + +#~ msgid "Super Admin" +#~ msgstr "ネットワーク管理者" + +#~ msgid "Add / Edit" +#~ msgstr "追加 / 編集" + +#~ msgid "Register" +#~ msgstr "登録" + +#~ msgid "Move Complete." +#~ msgstr "移動が完了しました。" + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "この %s フィールドは今 %s フィールドグループにあります" + +#~ msgid "Close Window" +#~ msgstr "ウィンドウを閉じる" + +#~ msgid "Please select the destination for this field" +#~ msgstr "このフィールドの移動先を選択してください" + +#~ msgid "Move Field" +#~ msgstr "フィールドを移動" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "アクティブ (%s)" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "フィールドグループを複製しました。 %s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s個 のフィールドグループを複製しました。" + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "フィールドグループを同期しました。%s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s個 のフィールドグループを同期しました。" + +#~ msgid "Sync available" +#~ msgstr "利用可能な同期" + +#~ msgid "Status" +#~ msgstr "状態" + +#~ msgid "See what's new in" +#~ msgstr "新着情報を見る" + +#~ msgid "version" +#~ msgstr "バージョン" + +#~ msgid "Resources" +#~ msgstr "リソース" + +#~ msgid "Getting Started" +#~ msgstr "はじめに" + +#~ msgid "Field Types" +#~ msgstr "フィールドタイプ" + +#~ msgid "Functions" +#~ msgstr "ファンクション" + +#~ msgid "Actions" +#~ msgstr "アクション" + +#~ msgid "Filters" +#~ msgstr "フィルター" + +#~ msgid "'How to' guides" +#~ msgstr "使い方ガイド" + +#~ msgid "Tutorials" +#~ msgstr "チュートリアル" + +#~ msgid "Created by" +#~ msgstr "作成" + +#~ msgid "Duplicate this item" +#~ msgstr "この項目を複製" + +#, php-format +#~ msgid "Select %s" +#~ msgstr "%s を選択" + +#~ msgid "Synchronise field group" +#~ msgstr "フィールドグループを同期する" + +#~ msgid "Sync" +#~ msgstr "同期する" + +#~ msgid "Add-ons" +#~ msgstr "アドオン" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "エラー アドオンのリストを読み込めませんでした" + +#~ msgid "Info" +#~ msgstr "お知らせ" + +#~ msgid "What's New" +#~ msgstr "新着情報" + +#~ msgid "Tools" +#~ msgstr "ツール" + +#~ msgid "No field groups selected" +#~ msgstr "フィールドグループが選択されていません" + +#~ msgid "No file selected" +#~ msgstr "ファイルが選択されていません" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "ファイルのアップロードに失敗しました。もう一度試してください" + +#~ msgid "Incorrect file type" +#~ msgstr "不正なファイルタイプ" + +#~ msgid "Import file empty" +#~ msgstr "インポートファイルが空です" + +#, php-format +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "成功 インポートツールは %s個 のフィールドグループを追加しました:%s" + +#, php-format +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "警告 インポートツールは %s個 のフィールドグループが既に存在している" +#~ "のを検出したため無視しました:%s" + +#~ msgid "Upgrade ACF" +#~ msgstr "ACFをアップグレード" + +#~ msgid "Review sites & upgrade" +#~ msgstr "サイトをレビュー&アップグレード" + +#~ msgid "Upgrade" +#~ msgstr "アップグレード" + +#~ msgid "Upgrade Database" +#~ msgstr "データベースをアップグレード" + +#~ msgid "Conditional Logic" +#~ msgstr "条件判定" + +#~ msgid "Show this field if" +#~ msgstr "このフィールドグループの表示条件" + +#~ msgid "is equal to" +#~ msgstr "等しい" + +#~ msgid "is not equal to" +#~ msgstr "等しくない" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "Add rule group" +#~ msgstr "ルールを追加" + +#~ msgid "Edit field" +#~ msgstr "フィールドを編集" + +#~ msgid "Duplicate field" +#~ msgstr "フィールドを複製" + +#~ msgid "Move field to another group" +#~ msgstr "別のグループにフィールドを移動する" + +#~ msgid "Move" +#~ msgstr "移動" + +#~ msgid "Delete field" +#~ msgstr "フィールドを削除" + +#~ msgid "Error" +#~ msgstr "エラー" + +#~ msgid "Error." +#~ msgstr "エラー." + +#~ msgid "Field type does not exist" +#~ msgstr "フィールドタイプが存在しません" + +#~ msgid "Field Label" +#~ msgstr "フィールドラベル" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "編集ページで表示される名前です" + +#~ msgid "Field Name" +#~ msgstr "フィールド名" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "スペースは不可、アンダースコアとダッシュは使用可能" + +#~ msgid "Field Type" +#~ msgstr "フィールドタイプ" + +#~ msgid "Instructions" +#~ msgstr "説明" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "投稿者向けの説明。編集時に表示されます" + +#~ msgid "Required?" +#~ msgstr "必須か?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "ラッパーの属性" + +#~ msgid "width" +#~ msgstr "width" + +#~ msgid "class" +#~ msgstr "class" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "フィールドを閉じる" + +#~ msgid "Order" +#~ msgstr "順序" + +#~ msgid "Type" +#~ msgstr "タイプ" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "フィールドはありません。+ 新規追加ボタンをクリックして最" +#~ "初のフィールドを作成してください。" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "ドラッグアンドドロップで並べ替える" + +#~ msgid "+ Add Field" +#~ msgstr "+ フィールドを追加" + +#~ msgid "Rules" +#~ msgstr "ルール" + +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "どの編集画面でカスタムフィールドを表示するかを決定するルールを作成します" + +#~ msgid "Show this field group if" +#~ msgstr "このフィールドグループを表示する条件" + +#~ msgid "Post" +#~ msgstr "投稿" + +#~ msgid "Post Type" +#~ msgstr "投稿タイプ" + +#~ msgid "Post Status" +#~ msgstr "投稿ステータス" + +#~ msgid "Post Format" +#~ msgstr "投稿フォーマット" + +#~ msgid "Post Category" +#~ msgstr "投稿カテゴリー" + +#~ msgid "Post Taxonomy" +#~ msgstr "投稿タクソノミー" + +#~ msgid "Page" +#~ msgstr "ページ" + +#~ msgid "Page Template" +#~ msgstr "ページテンプレート" + +#~ msgid "Page Type" +#~ msgstr "ページタイプ" + +#~ msgid "Page Parent" +#~ msgstr "親ページ" + +#~ msgid "User" +#~ msgstr "ユーザー" + +#~ msgid "Current User" +#~ msgstr "現在のユーザー" + +#~ msgid "Current User Role" +#~ msgstr "現在の権限グループ" + +#~ msgid "User Form" +#~ msgstr "ユーザーフォーム" + +#~ msgid "User Role" +#~ msgstr "権限グループ" + +#~ msgid "Forms" +#~ msgstr "フォーム" + +#~ msgid "Attachment" +#~ msgstr "メディア" + +#~ msgid "Taxonomy Term" +#~ msgstr "タクソノミーターム" + +#~ msgid "Comment" +#~ msgstr "コメント" + +#~ msgid "Widget" +#~ msgstr "ウィジェット" + +#~ msgid "Style" +#~ msgstr "スタイル" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "標準(WPメタボックス)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "シームレス(メタボックスなし)" + +#~ msgid "Position" +#~ msgstr "位置" + +#~ msgid "High (after title)" +#~ msgstr "高(タイトルの後)" + +#~ msgid "Normal (after content)" +#~ msgstr "通常(コンテンツエディタの後)" + +#~ msgid "Side" +#~ msgstr "サイド" + +#~ msgid "Label placement" +#~ msgstr "ラベルの配置" + +#~ msgid "Top aligned" +#~ msgstr "上揃え" + +#~ msgid "Left aligned" +#~ msgstr "左揃え" + +#~ msgid "Instruction placement" +#~ msgstr "説明の配置" + +#~ msgid "Below labels" +#~ msgstr "ラベルの下" + +#~ msgid "Below fields" +#~ msgstr "フィールドの下" + +#~ msgid "Order No." +#~ msgstr "順序 No." + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "順番が小さいフィールドグループほど最初に表示されます" + +#~ msgid "Shown in field group list" +#~ msgstr "フィールドグループリストに表示されます" + +#~ msgid "Hide on screen" +#~ msgstr "画面に非表示" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "編集画面で表示しないアイテムを選択。" + +#~ 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 "" +#~ "編集画面上に複数のフィールドグループが表示される場合、最初のフィールドグ" +#~ "ループ(=順番の数値が最も小さいグループ)のオプションが使用されます。" + +#~ msgid "Permalink" +#~ msgstr "パーマリンク" + +#~ msgid "Content Editor" +#~ msgstr "コンテンツエディタ" + +#~ msgid "Excerpt" +#~ msgstr "抜粋" + +#~ msgid "Discussion" +#~ msgstr "ディスカッション" + +#~ msgid "Comments" +#~ msgstr "コメント" + +#~ msgid "Revisions" +#~ msgstr "リビジョン" + +#~ msgid "Slug" +#~ msgstr "スラッグ" + +#~ msgid "Author" +#~ msgstr "作成者" + +#~ msgid "Format" +#~ msgstr "フォーマット" + +#~ msgid "Page Attributes" +#~ msgstr "ページ属性" + +#~ msgid "Featured Image" +#~ msgstr "アイキャッチ画像" + +#~ msgid "Categories" +#~ msgstr "カテゴリー" + +#~ msgid "Tags" +#~ msgstr "タグ" + +#~ msgid "Send Trackbacks" +#~ msgstr "トラックバック" + +#~ msgid "Download & Install" +#~ msgstr "ダウンロードしてインストール" + +#~ msgid "Installed" +#~ msgstr "インストール済み" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "ようこそ Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "アップグレードありがとうございます!ACF %s は規模、質ともに向上していま" +#~ "す。気に入ってもらえたら幸いです。" + +#~ msgid "A smoother custom field experience" +#~ msgstr "もっとも快適なカスタムフィールド体験" + +#~ msgid "Improved Usability" +#~ msgstr "改良されたユーザビリティ" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "内蔵した人気のSelect2ライブラリによって、投稿オブジェクトやページリンク、" +#~ "タクソノミーなど多くのフィールドタイプにおける選択のユーザビリティと速度の" +#~ "両方を改善しました。" + +#~ msgid "Improved Design" +#~ msgstr "改良されたデザイン" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "ACFがより良くなるよう、多くのフィールドのデザインを一新しました!目立った" +#~ "変化は、ギャラリーフィールドや関連フィールド、(新しい)oEmbedフィールドで" +#~ "わかるでしょう!" + +#~ msgid "Improved Data" +#~ msgstr "改良されたデータ" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "データ構造を再設計したことでサブフィールドは親フィールドから独立して存在で" +#~ "きるようになりました。これによって親フィールドの内外にフィールドをドラッグ" +#~ "アンドドロップできます!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "さようならアドオン、こんにちはPRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF PRO紹介" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "我々はエキサイティングな方法で有料機能を提供することにしました!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "4つのアドオンをACFのPROバージョンとして組み合わせまし" +#~ "た。個人または開発者ライセンスによって、以前よりお手頃な価格で有料機能を利" +#~ "用できます!" + +#~ msgid "Powerful Features" +#~ msgstr "パワフルな機能" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PROには、繰り返し可能なデータ、柔軟なコンテンツレイアウト、美しいギャ" +#~ "ラリーフィールド、オプションページを作成するなど、パワフルな機能が含まれて" +#~ "います!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "もっとACF PRO の機能を見る。" + +#~ msgid "Easy Upgrading" +#~ msgstr "簡単なアップグレード" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "アップグレードを簡単にするために、ストアアカウントにログイ" +#~ "ンしてACF PROの無料版を請求してください!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "我々は多くの質問に応えるためにアップグレードガイドを用" +#~ "意していますが、もし質問がある場合はヘルプデスクからサ" +#~ "ポートチームに連絡をしてください" + +#~ msgid "Under the Hood" +#~ msgstr "その内部では" + +#~ msgid "Smarter field settings" +#~ msgstr "よりスマートなフィールド設定" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "" +#~ "ACFはそれぞれのフィールドを独立した投稿オブジェクトとして保存するようにな" +#~ "りました" + +#~ msgid "More AJAX" +#~ msgstr "いっそうAJAXに" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "ページの読み込み速度を高速化するために、より多くのフィールドがAJAXを利用す" +#~ "るようになりました" + +#~ msgid "Local JSON" +#~ msgstr "ローカルJSON" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "新しいJSON形式の自動エクスポート機能の速度を改善" + +#~ msgid "Better version control" +#~ msgstr "より良いバージョンコントロール" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "新しいJSON形式の自動エクスポート機能は、フィールド設定のバージョンコント" +#~ "ロールを可能にします" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XMLからJSONへ" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "インポート / エクスポートにXML形式より優れているJSON形式が使えます" + +#~ msgid "New Forms" +#~ msgstr "新しいフォーム" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "コメントとウィジェット、全てのユーザーのフォームにフィールドを追加できるよ" +#~ "うになりました!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "新しいフィールドに「oEmbed(埋め込みコンテンツ)」を追加しています" + +#~ msgid "New Gallery" +#~ msgstr "新しいギャラリー" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "ギャラリーフィールドは多くのマイナーチェンジをしています" + +#~ msgid "New Settings" +#~ msgstr "新しい設定" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "フィールドグループの設定に「ラベルの配置」と「説明の配置」を追加しています" + +#~ msgid "Better Front End Forms" +#~ msgstr "より良いフロントエンドフォーム" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "" +#~ "acf_form()は新しい投稿をフロントエンドから作成できるようになりました" + +#~ msgid "Better Validation" +#~ msgstr "より良いバリデーション" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "フォームバリデーションは、JSのみより優れているPHP + AJAXで行われます" + +#~ msgid "Relationship Field" +#~ msgstr "関連フィールド" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "関連フィールドの新しい設定「フィルター」(検索、投稿タイプ、タクソノ" +#~ "ミー)。" + +#~ msgid "Moving Fields" +#~ msgstr "フィールド移動" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "新しいフィールドグループでは、フィールドが親フィールドやフィールドグループ" +#~ "間を移動することができます" + +#~ msgid "Page Link" +#~ msgstr "ページリンク" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "新しいページリンクの選択肢に「アーカイブグループ」を追加しています" + +#~ msgid "Better Options Pages" +#~ msgstr "より良いオプションページ" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "オプションページの新しい機能として、親と子の両方のメニューページを作ること" +#~ "ができます" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "%s の変更は、きっと気に入っていただけるでしょう。" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "フィールドグループを PHP形式 でエクスポートする" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "以下のコードは選択したフィールドグループのローカルバージョンとして登録に使" +#~ "えます。ローカルフィールドグループは読み込み時間の短縮やバージョンコント" +#~ "ロール、動的なフィールド/設定など多くの利点があります。以下のコードをテー" +#~ "マのfunctions.phpや外部ファイルにコピー&ペーストしてください。" + +#~ msgid "Select Field Groups" +#~ msgstr "フィールドグループを選択" + +#~ msgid "Export Field Groups" +#~ msgstr "フィールドグループをエクスポート" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "エクスポートしたいフィールドグループとエクスポート方法を選んでください。ダ" +#~ "ウンロードボタンでは別のACFをインストールした環境でインポートできるJSON" +#~ "ファイルがエクスポートされます。生成ボタンではテーマ内で利用できるPHPコー" +#~ "ドが生成されます。" + +#~ msgid "Download export file" +#~ msgstr "エクスポートファイルをダウンロード" + +#~ msgid "Generate export code" +#~ msgstr "エクスポートコードを生成" + +#~ msgid "Import Field Groups" +#~ msgstr "フィールドグループをインポート" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "インポートしたいACFのJSONファイルを選択してください。下のインポートボタン" +#~ "をクリックすると、ACFはフィールドグループをインポートします。" + +#~ msgid "Select File" +#~ msgstr "ファイルを選択する" + +#~ msgid "Import" +#~ msgstr "インポート" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields データベースのアップグレード" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "下記のサイトはデータベースのアップグレードが必要です。アップデートしたいサ" +#~ "イトにチェックを入れ、「データベースをアップグレード」をクリックしてくださ" +#~ "い。" + +#~ msgid "Site" +#~ msgstr "サイト" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "%s から %s へのデータベースアップグレードが必要なサイト" + +#~ msgid "Site is up to date" +#~ msgstr "サイトは最新です" + +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "データベースのアップグレードが完了しました。 ネットワーク" +#~ "ダッシュボードに戻る" + +#~ msgid "" +#~ "It is strongly recommended that you backup your database before " +#~ "proceeding. Are you sure you wish to run the updater now?" +#~ msgstr "" +#~ "処理前にデータベースのバックアップを強く推奨します。アップデーターを実行し" +#~ "てもよろしいですか?" + +#~ msgid "Upgrade complete" +#~ msgstr "更新完了" + +#~ msgid "Upgrading data to" +#~ msgstr "データをアップグレード" + +#~ msgid "Database Upgrade Required" +#~ msgstr "データベースのアップグレードが必要です" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "%s v%sへのアップグレードありがとうございます!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "素晴らしい新機能を利用する前にデータベースを最新バージョンに更新してくださ" +#~ "い。" + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "アップグレードタスクを読み込んでいます..." + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "バージョン %s へデータアップグレード中" + +#~ msgid "See what's new" +#~ msgstr "新着情報を見る" + +#~ msgid "No updates available." +#~ msgstr "利用可能なアップデートはありません。" + +#~ msgid "Thumbnail" +#~ msgstr "サムネイル" + +#~ msgid "Medium" +#~ msgstr "中" + +#~ msgid "Large" +#~ msgstr "大" + +#~ msgid "Full Size" +#~ msgstr "フルサイズ" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "画像の幅は少なくとも %dpx 必要です。" + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "画像の幅は %dpx を超えてはいけません。" + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "画像の高さは少なくとも %dpx 必要です。" + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "画像の高さは %dpx を超えてはいけません。" + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "ファイルサイズは少なくとも %s 必要です。" + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "ファイルサイズは %s を超えてはいけません。" + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "ファイルタイプは %s でなければいけません。" + +#~ msgid "Post updated" +#~ msgstr "投稿更新済み" + +#~ msgid "Basic" +#~ msgstr "基本" + +#~ msgid "Content" +#~ msgstr "コンテンツ" + +#~ msgid "Choice" +#~ msgstr "選択肢" + +#~ msgid "Relational" +#~ msgstr "関連" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Expand Details" +#~ msgstr "詳細を広げる" + +#~ msgid "Collapse Details" +#~ msgstr "詳細を縮める" + +#~ msgid "Validation successful" +#~ msgstr "検証に成功" + +#~ msgid "Validation failed" +#~ msgstr "検証に失敗" + +#~ msgid "1 field requires attention" +#~ msgstr "注意が必要なフィールドが 1 個あります" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "注意が必要なフィールドが %d 個あります" + +#~ msgid "Restricted" +#~ msgstr "制限されています" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s の値は必須です" + +#~ msgid "Checkbox" +#~ msgstr "チェックボックス" + +#~ msgid "Toggle All" +#~ msgstr "全て 選択 / 解除" + +#~ msgid "Choices" +#~ msgstr "選択肢" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "選択肢を改行で区切って入力してください。" + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "下記のように記述すると、値とラベルの両方を制御することができます:" + +#~ msgid "red : Red" +#~ msgstr "red : 赤" + +#~ msgid "Default Value" +#~ msgstr "デフォルト値" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "デフォルト値を入力する" + +#~ msgid "Vertical" +#~ msgstr "垂直" + +#~ msgid "Horizontal" +#~ msgstr "水平" + +#~ msgid "Toggle" +#~ msgstr "トグル" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "すべての選択肢をチェックするためのチェックボックスを先頭に追加する" + +#~ msgid "Color Picker" +#~ msgstr "カラーピッカー" + +#~ msgid "Clear" +#~ msgstr "クリア" + +#~ msgid "Default" +#~ msgstr "デフォルト" + +#~ msgid "Select Color" +#~ msgstr "色を選択" + +#~ msgid "Date Picker" +#~ msgstr "デイトピッカー" + +#~ msgid "Done" +#~ msgstr "完了" + +#~ msgid "Today" +#~ msgstr "本日" + +#~ msgid "Show a different month" +#~ msgstr "別の月を表示する" + +#~ msgid "Display Format" +#~ msgstr "表示フォーマット" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "投稿編集中に表示されるフォーマット" + +#~ msgid "Return format" +#~ msgstr "返り値" + +#~ msgid "The format returned via template functions" +#~ msgstr "テンプレート関数で返されるフォーマット" + +#~ msgid "Week Starts On" +#~ msgstr "週の始まり" + +#~ msgid "Email" +#~ msgstr "メール" + +#~ msgid "Appears when creating a new post" +#~ msgstr "新規投稿を作成時に表示されます" + +#~ msgid "Placeholder Text" +#~ msgstr "プレースホルダーのテキスト" + +#~ msgid "Appears within the input" +#~ msgstr "入力欄に表示されます" + +#~ msgid "Prepend" +#~ msgstr "先頭に追加" + +#~ msgid "Appears before the input" +#~ msgstr "入力欄の先頭に表示されます" + +#~ msgid "Append" +#~ msgstr "末尾に追加" + +#~ msgid "Appears after the input" +#~ msgstr "入力欄の末尾に表示されます" + +#~ msgid "File" +#~ msgstr "ファイル" + +#~ msgid "Edit File" +#~ msgstr "ファイルを編集する" + +#~ msgid "Update File" +#~ msgstr "ファイルを更新する" + +#~ msgid "uploaded to this post" +#~ msgstr "この投稿にアップロードされる" + +#~ msgid "File Name" +#~ msgstr "ファイルネーム" + +#~ msgid "File Size" +#~ msgstr "ファイルサイズ" + +#~ msgid "No File selected" +#~ msgstr "ファイルが選択されていません" + +#~ msgid "Add File" +#~ msgstr "ファイルを追加する" + +#~ msgid "Return Value" +#~ msgstr "返り値" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "フロントエンドへの返り値を指定してください" + +#~ msgid "File Array" +#~ msgstr "ファイル 配列" + +#~ msgid "File URL" +#~ msgstr "ファイル URL" + +#~ msgid "File ID" +#~ msgstr "ファイル ID" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "アップロード可能なファイルを制限" + +#~ msgid "Google Map" +#~ msgstr "Googleマップ" + +#~ msgid "Locating" +#~ msgstr "場所" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "ごめんなさい、このブラウザーはgeolocationに対応していません" + +#~ msgid "Clear location" +#~ msgstr "位置情報をクリア" + +#~ msgid "Find current location" +#~ msgstr "現在の位置情報を検索" + +#~ msgid "Search for address..." +#~ msgstr "住所で検索..." + +#~ msgid "Center" +#~ msgstr "センター" + +#~ msgid "Center the initial map" +#~ msgstr "マップ初期状態のセンター" + +#~ msgid "Zoom" +#~ msgstr "ズーム" + +#~ msgid "Set the initial zoom level" +#~ msgstr "マップ初期状態のズームレベル" + +#~ msgid "Customise the map height" +#~ msgstr "マップの高さを調整" + +#~ msgid "Image" +#~ msgstr "画像" + +#~ msgid "Select Image" +#~ msgstr "画像を選択する" + +#~ msgid "Edit Image" +#~ msgstr "画像を編集する" + +#~ msgid "Update Image" +#~ msgstr "画像を更新する" + +#~ msgid "Uploaded to this post" +#~ msgstr "この投稿にアップロード済み" + +#~ msgid "All images" +#~ msgstr "全ての画像" + +#~ msgid "No image selected" +#~ msgstr "画像が選択されていません" + +#~ msgid "Add Image" +#~ msgstr "画像を追加する" + +#~ msgid "Shown when entering data" +#~ msgstr "投稿編集中に表示されます" + +#~ msgid "Message" +#~ msgstr "メッセージ" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "すべてのテキストが最初にWordPressの関数を通過しますのでご注意ください" + +#~ msgid "Escape HTML" +#~ msgstr "HTMLをエスケープ" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "HTMLマークアップのコードとして表示を許可" + +#~ msgid "Number" +#~ msgstr "数値" + +#~ msgid "Minimum Value" +#~ msgstr "最小値" + +#~ msgid "Maximum Value" +#~ msgstr "最大値" + +#~ msgid "Step Size" +#~ msgstr "ステップサイズ" + +#~ msgid "Value must be a number" +#~ msgstr "値は数値でなければいけません" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "数値は %d 以上でなければいけません" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "数値は %d 以下でなければいけません" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "URLを入力" + +#~ msgid "No embed found for the given URL." +#~ msgstr "指定されたURLには埋め込む内容がありません." + +#~ msgid "Embed Size" +#~ msgstr "埋め込みサイズ" + +#~ msgid "Archives" +#~ msgstr "アーカイブ" + +#~ msgid "Filter by Post Type" +#~ msgstr "投稿タイプで絞り込み" + +#~ msgid "All post types" +#~ msgstr "全ての投稿タイプ" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "タクソノミーで絞り込み" + +#~ msgid "All taxonomies" +#~ msgstr "全てのタクソノミー" + +#~ msgid "Allow Null?" +#~ msgstr "空の値を許可するか?" + +#~ msgid "Select multiple values?" +#~ msgstr "複数の値を選択できるか?" + +#~ msgid "Password" +#~ msgstr "パスワード" + +#~ msgid "Post Object" +#~ msgstr "投稿オブジェクト" + +#~ msgid "Post ID" +#~ msgstr "投稿 ID" + +#~ msgid "Radio Button" +#~ msgstr "ラジオボタン" + +#~ msgid "Other" +#~ msgstr "その他" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "選択肢「その他」を追加する" + +#~ msgid "Save Other" +#~ msgstr "その他を保存" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "「その他」の値を選択肢に追加する" + +#~ msgid "Relationship" +#~ msgstr "関連" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "最小値 ( {min} ) に達しました" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "最大値( {max} ) に達しました" + +#~ msgid "Loading" +#~ msgstr "読み込み中" + +#~ msgid "No matches found" +#~ msgstr "一致する項目がありません" + +#~ msgid "Search..." +#~ msgstr "検索..." + +#~ msgid "Select post type" +#~ msgstr "投稿タイプを選択" + +#~ msgid "Select taxonomy" +#~ msgstr "タクソノミーを選択" + +#~ msgid "Search" +#~ msgstr "検索" + +#~ msgid "Taxonomy" +#~ msgstr "タクソノミー" + +#~ msgid "Elements" +#~ msgstr "要素" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "選択した要素が表示されます" + +#~ msgid "Minimum posts" +#~ msgstr "最小投稿数" + +#~ msgid "Maximum posts" +#~ msgstr "最大投稿数" + +#~ msgid "Select" +#~ msgstr "セレクトボックス" + +#~ msgid "Stylised UI" +#~ msgstr "スタイリッシュなUI" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "選択肢をAJAXで遅延ロードするか?" + +#~ msgid "Tab" +#~ msgstr "タブ" + +#~ msgid "Warning" +#~ msgstr "注意" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "このタブは、テーブルスタイルの繰り返しフィールドか柔軟コンテンツフィールド" +#~ "が追加された場合、正しく表示されません" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "\"タブ\" を使うとフィールドのグループ化によって編集画面をより整理できま" +#~ "す。" + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "この\"タブ\" の後に続く(または別の \"タブ\" が定義されるまでの)全ての" +#~ "フィールドは、このフィールドのラベルがタブの見出しとなりグループ化されま" +#~ "す。" + +#~ msgid "Placement" +#~ msgstr "タブの配置" + +#~ msgid "End-point" +#~ msgstr "エンドポイント" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "" +#~ "このフィールドをエンドポイントとして使用し、新規のタブグループを開始する" + +#, php-format +#~ msgid "Add new %s " +#~ msgstr "新しい %s を追加" + +#~ msgid "None" +#~ msgstr "無" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "表示されるタクソノミーを選択" + +#~ msgid "Appearance" +#~ msgstr "外観" + +#~ msgid "Select the appearance of this field" +#~ msgstr "このフィールドの外観を選択" + +#~ msgid "Multiple Values" +#~ msgstr "複数値" + +#~ msgid "Multi Select" +#~ msgstr "複数選択" + +#~ msgid "Single Value" +#~ msgstr "単一値" + +#~ msgid "Radio Buttons" +#~ msgstr "ラジオボタン" + +#~ msgid "Create Terms" +#~ msgstr "タームの作成" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "編集中の新規ターム作成を許可" + +#~ msgid "Save Terms" +#~ msgstr "タームの保存" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "選択されたタームを投稿に関連付ける" + +#~ msgid "Load Terms" +#~ msgstr "タームの読み込み" + +#~ msgid "Load value from posts terms" +#~ msgstr "投稿に関連付けられたタームを読み込む" + +#~ msgid "Term Object" +#~ msgstr "タームオブジェクト" + +#~ msgid "Term ID" +#~ msgstr "ターム ID" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "新規の %s を追加できないユーザーです" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s は既に存在しています" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s が追加されました" + +#~ msgid "Add" +#~ msgstr "追加" + +#~ msgid "Text" +#~ msgstr "テキスト" + +#~ msgid "Character Limit" +#~ msgstr "制限文字数" + +#~ msgid "Leave blank for no limit" +#~ msgstr "制限しない場合は空白のままで" + +#~ msgid "Text Area" +#~ msgstr "テキストエリア" + +#~ msgid "Rows" +#~ msgstr "行数" + +#~ msgid "Sets the textarea height" +#~ msgstr "テキストエリアの高さを指定" + +#~ msgid "New Lines" +#~ msgstr "改行" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "改行をどのように表示するか制御" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "自動的に段落に変換" + +#~ msgid "Automatically add <br>" +#~ msgstr "自動的に<br>に変換" + +#~ msgid "No Formatting" +#~ msgstr "なにもしない" + +#~ msgid "True / False" +#~ msgstr "真 / 偽" + +#~ msgid "eg. Show extra content" +#~ msgstr "例:追加コンテンツを表示する" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Value must be a valid URL" +#~ msgstr "値はURL形式でなければいけません" + +#~ msgid "Filter by role" +#~ msgstr "ロールでフィルタする" + +#~ msgid "All user roles" +#~ msgstr "全ての権限グループ" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "Wysiwyg エディタ" + +#~ msgid "Visual" +#~ msgstr "ビジュアル" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "テキスト" + +#~ msgid "Tabs" +#~ msgstr "タブ" + +#~ msgid "Visual & Text" +#~ msgstr "ビジュアル&テキスト" + +#~ msgid "Visual Only" +#~ msgstr "ビジュアルのみ" + +#~ msgid "Text Only" +#~ msgstr "テキストのみ" + +#~ msgid "Toolbar" +#~ msgstr "ツールバー" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "メディアアップロードボタンを表示するか?" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "接続エラー すみません、もう一度試してみてください" + +#~ msgid "Save Options" +#~ msgstr "オプションを保存" + +#~ msgid "License" +#~ msgstr "ライセンス" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "アップデートのロックを解除するには、以下にライセンスキーを入力してくださ" +#~ "い。ライセンスキーを持っていない場合は、こちらを参照してください" + +#~ msgid "details & pricing" +#~ msgstr "価格と詳細" + +#, php-format +#~ 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 "" +#~ "アップデートを有効にするには、アップデートページにライ" +#~ "センスキーを入力してください。ライセンスキーを持っていない場合は、こちらを" +#~ "詳細と価格参照してください" + +#~ msgid "remove {layout}?" +#~ msgstr "{layout} を削除しますか?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "このフィールドは{identifier}が最低{min}個は必要です" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "このフィールドは{identifier}が最高{max}個までです" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "{label}は最大数に達しました({max} {identifier})" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s は少なくとも %s個 選択してください" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "強力でプロフェッショナル、そして直感的なフィールドで WordPress をカスタマ" +#~ "イズ。" + +#~ msgid "elliot condon" +#~ msgstr "エリオット・コンドン" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Hide / Show All" +#~ msgstr "全て 非表示 / 表示" + +#~ msgid "Show Field Keys" +#~ msgstr "フィールドキーを表示" + +#~ msgid "Pending Review" +#~ msgstr "レビュー待ち" + +#~ msgid "Draft" +#~ msgstr "下書き" + +#~ msgid "Future" +#~ msgstr "予約投稿" + +#~ msgid "Private" +#~ msgstr "非公開" + +#~ msgid "Revision" +#~ msgstr "リビジョン" + +#~ msgid "Trash" +#~ msgstr "ゴミ箱" + +#~ msgid "Import / Export" +#~ msgstr "インポート / エクスポート" + +#~ msgid "Field groups are created in order
                              from lowest to highest" +#~ msgstr "フィールドグループは、順番が小さいほうから大きいほうへ作成されます" + +#~ 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 "" +#~ "編集画面に複数のフィールドグループが表示される場合、最初の(=順番の最も小" +#~ "さい)フィールドグループのオプションが使用されます。" + +#~ msgid "ACF PRO Required" +#~ msgstr "ACF PROが必要です" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "あなたに注意すべき問題があります:有料アドオン(%s)を利用したこのウェブサ" +#~ "イトにACFはもはや対応していません。" + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "慌てないでください、プラグインをロールバックすることで今までどおりACFを使" +#~ "用し続けることができます!" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "ACF v%sにロールバックする" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "なぜ自分のサイトにACF PROが必要なのか学ぶ" + +#~ msgid "Update Database" +#~ msgstr "データベースを更新" + +#~ msgid "Data Upgrade" +#~ msgstr "データアップグレード" + +#~ msgid "Data upgraded successfully." +#~ msgstr "データアップグレード成功" + +#~ msgid "Data is at the latest version." +#~ msgstr "データは最新バージョンです" + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "下記の %s個 の必須フィールドが空です" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "ターム情報の読込/保存" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "投稿ターム情報を読み込み、保存時に反映させる" + +#~ msgid "Top Level Page (parent of 0)" +#~ msgstr "一番上の階層(親ページがない)" + +#~ msgid "Logged in User Type" +#~ msgstr "ログインしているユーザーのタイプ" + +#~ msgid "Field Groups" +#~ msgstr "フィールドグループ" + +#~ msgid "Custom field updated." +#~ msgstr "カスタムフィールドを更新しました" + +#~ msgid "Custom field deleted." +#~ msgstr "カスタムフィールドを削除しました" + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "リビジョン %s からフィールドグループを復元しました" + +#~ msgid "Full" +#~ msgstr "フルサイズ" + +#~ msgid "No ACF groups selected" +#~ msgstr "ACF グループが選択されていません" + +#~ msgid "Repeater Field" +#~ msgstr "繰り返しフィールド" + +#~ msgid "" +#~ "Create infinite rows of repeatable data with this versatile interface!" +#~ msgstr "" +#~ "繰り返し挿入可能なフォームを、すてきなインターフェースで作成します。" + +#~ msgid "Gallery Field" +#~ msgstr "ギャラリーフィールド" + +#~ msgid "Create image galleries in a simple and intuitive interface!" +#~ msgstr "画像ギャラリーを、シンプルで直感的なインターフェースで作成します。" + +#~ msgid "Create global data to use throughout your website!" +#~ msgstr "ウェブサイト全体で使用できるグローバルデータを作成します。" + +#~ msgid "Flexible Content Field" +#~ msgstr "柔軟コンテンツフィールド" + +#~ msgid "Create unique designs with a flexible content layout manager!" +#~ msgstr "" +#~ "柔軟なコンテンツレイアウト管理により、すてきなデザインを作成します。" + +#~ msgid "Gravity Forms Field" +#~ msgstr "Gravity Forms フィールド" + +#~ msgid "Creates a select field populated with Gravity Forms!" +#~ msgstr "Creates a select field populated with Gravity Forms!" + +#, fuzzy +#~ msgid "Date & Time Picker" +#~ msgstr "デイトピッカー" + +#~ msgid "jQuery date & time picker" +#~ msgstr "jQuery デイトタイムピッカー" + +#, fuzzy +#~ msgid "Location Field" +#~ msgstr "位置" + +#~ msgid "Find addresses and coordinates of a desired location" +#~ msgstr "Find addresses and coordinates of a desired location" + +#, fuzzy +#~ msgid "Contact Form 7 Field" +#~ msgstr "カスタムフィールド" + +#~ msgid "Assign one or more contact form 7 forms to a post" +#~ msgstr "Assign one or more contact form 7 forms to a post" + +#, fuzzy +#~ msgid "Advanced Custom Fields Add-Ons" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "" +#~ "The following Add-ons are available to increase the functionality of the " +#~ "Advanced Custom Fields plugin." +#~ msgstr "" +#~ "Advanced Custom Fields プラグインに機能を追加するアドオンが利用できます。" + +#~ msgid "" +#~ "Each Add-on can be installed as a separate plugin (receives updates) or " +#~ "included in your theme (does not receive updates)." +#~ msgstr "" +#~ "それぞれのアドオンは、個別のプラグインとしてインストールする(管理画面で更" +#~ "新できる)か、テーマに含める(管理画面で更新できない)かしてください。" + +#~ msgid "Purchase & Install" +#~ msgstr "購入してインストールする" + +#~ msgid "Download" +#~ msgstr "ダウンロードする" + +#, fuzzy +#~ msgid "Export" +#~ msgstr "XML をエクスポートする" + +#, fuzzy +#~ msgid "Select the field groups to be exported" +#~ msgstr "" +#~ "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリック" +#~ "してください" + +#, fuzzy +#~ msgid "Export to XML" +#~ msgstr "XML をエクスポートする" + +#, fuzzy +#~ msgid "Export to PHP" +#~ msgstr "フィールドグループを PHP 形式でエクスポートする" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "ACF は .xml 形式のエクスポートファイルを作成します。WP のインポートプラグ" +#~ "インと互換性があります。" + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "インポートしたフィールドグループは、編集可能なフィールドグループの一覧に表" +#~ "示されます。WP ウェブサイト間でフィールドグループを移行するのに役立ちま" +#~ "す。" + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "" +#~ "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリック" +#~ "してください" + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "指示に従って .xml ファイルを保存してください" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "ツール » インポートと進み、WordPress を選択してください" + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "" +#~ "(インストールを促された場合は) WP インポートプラグインをインストールしてく" +#~ "ださい" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "エクスポートした .xml ファイルをアップロードし、インポートする" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "ユーザーを選択するが、Import Attachments を選択しない" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "これで OK です。WordPress をお楽しみください" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACF は、テーマに含める PHP コードを作成します" + +#~ msgid "" +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." +#~ msgstr "" +#~ "登録したフィールドグループは、編集可能なフィールドグループの一覧に表示" +#~ "されません。テーマにフィールドを含めるときに役立ちます。" + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "同一の WP でフィールドグループをエクスポートして登録する場合は、編集画面で" +#~ "重複フィールドになることに注意してください。これを修正するには、元のフィー" +#~ "ルドグループをゴミ箱へ移動するか、functions.php ファイルからこのコードを除" +#~ "去してください。" + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "" +#~ "一覧からフィールドグループを選択し、\"PHP 形式のデータを作成する\" をク" +#~ "リックしてください。" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "生成された PHP コードをコピーし、" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "functions.php に貼り付けてください" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "アドオンを有効化するには、最初の何行かのコードを編集して使用してください" + +#~ msgid "Notes" +#~ msgstr "注意" + +#~ msgid "Include in theme" +#~ msgstr "テーマに含める" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin can be included within a theme. To do " +#~ "so, move the ACF plugin inside your theme and add the following code to " +#~ "your functions.php file:" +#~ msgstr "" +#~ "Advanced Custom Fields プラグインは、テーマに含めることができます。プラグ" +#~ "インをテーマ内に移動し、functions.php に下記コードを追加してください。" + +#~ msgid "" +#~ "To remove all visual interfaces from the ACF plugin, you can use a " +#~ "constant to enable lite mode. Add the following code to your functions." +#~ "php file before the include_once code:" +#~ msgstr "" +#~ "Advanced Custom Fields プラグインのビジュアルインターフェースを取り除くに" +#~ "は、定数を利用して「ライトモード」を有効にすることができます。functions." +#~ "php の include_once よりもに下記のコードを追加してください。" + +#, fuzzy +#~ msgid "Back to export" +#~ msgstr "設定に戻る" + +#~ msgid "" +#~ "/**\n" +#~ " * Install Add-ons\n" +#~ " * \n" +#~ " * The following code will include all 4 premium Add-Ons in your theme.\n" +#~ " * Please do not attempt to include a file which does not exist. This " +#~ "will produce an error.\n" +#~ " * \n" +#~ " * All fields must be included during the 'acf/register_fields' action.\n" +#~ " * Other types of Add-ons (like the options page) can be included " +#~ "outside of this action.\n" +#~ " * \n" +#~ " * The following code assumes you have a folder 'add-ons' inside your " +#~ "theme.\n" +#~ " *\n" +#~ " * IMPORTANT\n" +#~ " * Add-ons may be included in a premium theme as outlined in the terms " +#~ "and conditions.\n" +#~ " * However, they are NOT to be included in a premium / free plugin.\n" +#~ " * For more information, please read http://www.advancedcustomfields.com/" +#~ "terms-conditions/\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Install Add-ons\n" +#~ " * \n" +#~ " * The following code will include all 4 premium Add-Ons in your theme.\n" +#~ " * Please do not attempt to include a file which does not exist. This " +#~ "will produce an error.\n" +#~ " * \n" +#~ " * All fields must be included during the 'acf/register_fields' action.\n" +#~ " * Other types of Add-ons (like the options page) can be included " +#~ "outside of this action.\n" +#~ " * \n" +#~ " * The following code assumes you have a folder 'add-ons' inside your " +#~ "theme.\n" +#~ " *\n" +#~ " * IMPORTANT\n" +#~ " * Add-ons may be included in a premium theme as outlined in the terms " +#~ "and conditions.\n" +#~ " * However, they are NOT to be included in a premium / free plugin.\n" +#~ " * For more information, please read http://www.advancedcustomfields.com/" +#~ "terms-conditions/\n" +#~ " */" + +#, fuzzy +#~ msgid "" +#~ "/**\n" +#~ " * Register Field Groups\n" +#~ " *\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * フィールドグループを登録する\n" +#~ " * register_field_group 関数は、フィールドグループを登録するのに関係する" +#~ "データを持っている一つの配列を受け付けます。\n" +#~ " * 配列を好きなように編集することができます。しかし、配列が ACF と互換性の" +#~ "無い場合、エラーになってしまいます。\n" +#~ " * このコードは、functions.php ファイルを読み込む度に実行する必要がありま" +#~ "す。\n" +#~ " */" + +#~ msgid "No field groups were selected" +#~ msgstr "フィールドグループが選択されていません" + +#, fuzzy +#~ msgid "Show Field Key:" +#~ msgstr "フィールドキー" + +#~ msgid "Vote" +#~ msgstr "投票" + +#~ msgid "Follow" +#~ msgstr "フォロー" + +#~ msgid "Thank you for updating to the latest version!" +#~ msgstr "最新版への更新ありがとうございます。" + +#~ msgid "" +#~ "is more polished and enjoyable than ever before. We hope you like it." +#~ msgstr "" +#~ "は以前よりも洗練され、より良くなりました。気に入ってもらえると嬉しいです。" + +#~ msgid "What’s New" +#~ msgstr "更新情報" + +#, fuzzy +#~ msgid "Download Add-ons" +#~ msgstr "アドオンを探す" + +#~ msgid "Activation codes have grown into plugins!" +#~ msgstr "アクティベーションコードから、プラグインに変更されました。" + +#~ msgid "" +#~ "Add-ons are now activated by downloading and installing individual " +#~ "plugins. Although these plugins will not be hosted on the wordpress.org " +#~ "repository, each Add-on will continue to receive updates in the usual way." +#~ msgstr "" +#~ "アドオンは、個別のプラグインをダウンロードしてインストールしてください。" +#~ "wordpress.org リポジトリにはありませんが、管理画面でこれらのアドオンの更新" +#~ "を行う事が出来ます。" + +#~ msgid "All previous Add-ons have been successfully installed" +#~ msgstr "今まで使用していたアドオンがインストールされました。" + +#~ msgid "This website uses premium Add-ons which need to be downloaded" +#~ msgstr "" +#~ "このウェブサイトではプレミアムアドオンが使用されており、アドオンをダウン" +#~ "ロードする必要があります。" + +#, fuzzy +#~ msgid "Download your activated Add-ons" +#~ msgstr "アドオンを有効化する" + +#~ msgid "" +#~ "This website does not use premium Add-ons and will not be affected by " +#~ "this change." +#~ msgstr "" +#~ "このウェブサイトではプレミアムアドオンを使用しておらず、この変更に影響され" +#~ "ません。" + +#~ msgid "Easier Development" +#~ msgstr "開発を容易に" + +#, fuzzy +#~ msgid "New Field Types" +#~ msgstr "フィールドタイプ" + +#, fuzzy +#~ msgid "Taxonomy Field" +#~ msgstr "タクソノミー" + +#, fuzzy +#~ msgid "User Field" +#~ msgstr "フィールドを閉じる" + +#, fuzzy +#~ msgid "Email Field" +#~ msgstr "ギャラリーフィールド" + +#, fuzzy +#~ msgid "Password Field" +#~ msgstr "新規フィールド" + +#, fuzzy +#~ msgid "Custom Field Types" +#~ msgstr "カスタムフィールド" + +#~ msgid "" +#~ "Creating your own field type has never been easier! Unfortunately, " +#~ "version 3 field types are not compatible with version 4." +#~ msgstr "" +#~ "独自のフィールドタイプが簡単に作成できます。残念ですが、バージョン 3 と" +#~ "バージョン 4 には互換性がありません。" + +#~ msgid "Migrating your field types is easy, please" +#~ msgstr "フィールドタイプをマイグレーションするのは簡単です。" + +#~ msgid "follow this tutorial" +#~ msgstr "このチュートリアルに従ってください。" + +#~ msgid "to learn more." +#~ msgstr "詳細を見る" + +#~ msgid "Actions & Filters" +#~ msgstr "アクションとフィルター" + +#~ msgid "" +#~ "All actions & filters have received a major facelift to make customizing " +#~ "ACF even easier! Please" +#~ msgstr "" +#~ "カスタマイズを簡単にするため、すべてのアクションとフィルターを改装しまし" +#~ "た。" + +#, fuzzy +#~ msgid "read this guide" +#~ msgstr "このフィールドを編集する" + +#~ msgid "to find the updated naming convention." +#~ msgstr "新しい命名規則をごらんください。" + +#~ msgid "Preview draft is now working!" +#~ msgstr "プレビューが有効になりました。" + +#~ msgid "This bug has been squashed along with many other little critters!" +#~ msgstr "このバグを修正しました。" + +#~ msgid "See the full changelog" +#~ msgstr "全ての更新履歴を見る" + +#~ msgid "Important" +#~ msgstr "重要" + +#~ msgid "Database Changes" +#~ msgstr "データベース更新" + +#~ msgid "" +#~ "Absolutely no changes have been made to the database " +#~ "between versions 3 and 4. This means you can roll back to version 3 " +#~ "without any issues." +#~ msgstr "" +#~ "バージョン 3 と 4 でデータベースの更新はありません。問題が発生した場合、" +#~ "バージョン 3 へのロールバックを行うことができます。" + +#~ msgid "Potential Issues" +#~ msgstr "潜在的な問題" + +#~ msgid "" +#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "filters, your website may not operate correctly. It is important that you " +#~ "read the full" +#~ msgstr "" +#~ "アドオン、フィールドタイプ、アクション/フィルターに関する変更のため、ウェ" +#~ "ブサイトが正常に動作しない可能性があります。" + +#~ msgid "Migrating from v3 to v4" +#~ msgstr "バージョン 3 から 4 への移行をごらんください。" + +#~ msgid "guide to view the full list of changes." +#~ msgstr "変更の一覧を見ることができます。" + +#~ msgid "Really Important!" +#~ msgstr "非常に重要" + +#~ msgid "" +#~ "If you updated the ACF plugin without prior knowledge of such changes, " +#~ "please roll back to the latest" +#~ msgstr "予備知識無しに更新してしまった場合は、" + +#~ msgid "version 3" +#~ msgstr "バージョン 3 " + +#~ msgid "of this plugin." +#~ msgstr "にロールバックしてください。" + +#~ msgid "Thank You" +#~ msgstr "ありがとうございます" + +#~ msgid "" +#~ "A BIG thank you to everyone who has helped test the " +#~ "version 4 beta and for all the support I have received." +#~ msgstr "" +#~ "バージョン 4 ベータのテストに協力してくださった皆さん、サポートしてくだ" +#~ "さった皆さんに感謝します。" + +#~ msgid "Without you all, this release would not have been possible!" +#~ msgstr "皆さんの助けが無ければ、リリースすることはできなかったでしょう。" + +#, fuzzy +#~ msgid "Changelog for" +#~ msgstr "更新履歴" + +#~ msgid "Learn more" +#~ msgstr "詳細を見る" + +#~ msgid "Overview" +#~ msgstr "概要" + +#~ msgid "" +#~ "Previously, all Add-ons were unlocked via an activation code (purchased " +#~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " +#~ "plugins which need to be individually downloaded, installed and updated." +#~ msgstr "" +#~ "今までは、アドオンはアクティベーションコードでロック解除していました。バー" +#~ "ジョン 4 では、アドオンは個別のプラグインとしてダウンロードしてインストー" +#~ "ルする必要があります。" + +#~ msgid "" +#~ "This page will assist you in downloading and installing each available " +#~ "Add-on." +#~ msgstr "このページは、アドオンのダウンロードやインストールを手助けします。" + +#, fuzzy +#~ msgid "Available Add-ons" +#~ msgstr "アドオンを有効化する" + +#~ msgid "" +#~ "The following Add-ons have been detected as activated on this website." +#~ msgstr "以下のアドオンがこのウェブサイトで有効になっています。" + +#~ msgid "Activation Code" +#~ msgstr "アクティベーションコード" + +#, fuzzy +#~ msgid "Installation" +#~ msgstr "説明" + +#~ msgid "For each Add-on available, please perform the following:" +#~ msgstr "それぞれのアドオンについて、下記を実行してください。" + +#~ msgid "Download the Add-on plugin (.zip file) to your desktop" +#~ msgstr "アドオン(.zip ファイル)をダウンロードする" + +#~ msgid "Navigate to" +#~ msgstr "管理画面で" + +#~ msgid "Plugins > Add New > Upload" +#~ msgstr "プラグイン > 新規追加 > アップロード" + +#~ msgid "" +#~ "Use the uploader to browse, select and install your Add-on (.zip file)" +#~ msgstr "アドオンのファイルを選択してインストールする" + +#~ msgid "" +#~ "Once the plugin has been uploaded and installed, click the 'Activate " +#~ "Plugin' link" +#~ msgstr "アップロードできたら、有効化をクリックする" + +#~ msgid "The Add-on is now installed and activated!" +#~ msgstr "アドオンがインストールされ、有効化されました。" + +#~ msgid "Awesome. Let's get to work" +#~ msgstr "素晴らしい。作業に戻ります。" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "検証に失敗しました。下記のフィールドの少なくとも一つが必須です。" + +#, fuzzy +#~ msgid "What's new" +#~ msgstr "新着情報で見る" + +#~ msgid "credits" +#~ msgstr "クレジット" + +#~ msgid "Modifying field group options 'show on page'" +#~ msgstr "フィールドグループオプション「ページで表示する」を変更" + +#~ msgid "Modifying field option 'taxonomy'" +#~ msgstr "フィールドオプション「タクソノミー」を変更" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "" +#~ "ユーザーのカスタムフィールドを wp_options から wp_usermeta に変更する" + +#~ msgid "blue : Blue" +#~ msgstr "blue : 青" + +#~ msgid "eg: #ffffff" +#~ msgstr "例: #ffffff" + +#~ msgid "Save format" +#~ msgstr "フォーマットを保存する" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "" +#~ "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します" + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "最も良く用いられるフォーマットは \"yymmdd\" です。詳細は" + +#~ msgid "jQuery date formats" +#~ msgstr "jQuery 日付フォーマット" + +#~ msgid "This format will be seen by the user when entering a value" +#~ msgstr "ユーザーが値を入力するときのフォーマット" + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "よく使用されるのは、\"dd/mm/yy\" や \"mm/dd/yy\" です。詳細は" + +#~ msgid "Dummy" +#~ msgstr "ダミー" + +#~ msgid "No File Selected" +#~ msgstr "ファイルが選択されていません" + +#~ msgid "File Object" +#~ msgstr "ファイルオブジェクト" + +#~ msgid "File Updated." +#~ msgstr "ファイルを更新しました" + +#~ msgid "Media attachment updated." +#~ msgstr "メディアアタッチメントを更新しました" + +#~ msgid "No files selected" +#~ msgstr "ファイルが選択されていません" + +#~ msgid "Add Selected Files" +#~ msgstr "選択されたファイルを追加する" + +#~ msgid "Image Object" +#~ msgstr "画像オブジェクト" + +#~ msgid "Image Updated." +#~ msgstr "画像を更新しました" + +#~ msgid "No images selected" +#~ msgstr "画像が選択されていません" + +#, fuzzy +#~ msgid "Add Selected Images" +#~ msgstr "選択した画像を追加する" + +#~ msgid "Text & HTML entered here will appear inline with the fields" +#~ msgstr "ここに記述したテキストと HTML がインラインで表示されます。" + +#~ msgid "Specifies the minimum value allowed" +#~ msgstr "最小値を指定します。" + +#~ msgid "Specifies the maximim value allowed" +#~ msgstr "最大値を指定します。" + +#~ msgid "Step" +#~ msgstr "Step" + +#~ msgid "Specifies the legal number intervals" +#~ msgstr "入力値の間隔を指定します。" + +#~ msgid "Filter from Taxonomy" +#~ msgstr "タクソノミーでフィルタする" + +#~ msgid "Enter your choices one per line" +#~ msgstr "選択肢を一行ずつ入力してください" + +#~ msgid "Red" +#~ msgstr "赤" + +#~ msgid "Blue" +#~ msgstr "青" + +#~ msgid "Filter by post type" +#~ msgstr "投稿タイプでフィルタする" + +#, fuzzy +#~ msgid "Post Type Select" +#~ msgstr "投稿タイプ" + +#, fuzzy +#~ msgid "Post Title" +#~ msgstr "投稿タイプ" + +#~ msgid "" +#~ "All fields proceeding this \"tab field\" (or until another \"tab field\" " +#~ "is defined) will appear grouped on the edit screen." +#~ msgstr "タブフィールドでフィールドを区切り、グループ化して表示します。" + +#~ msgid "You can use multiple tabs to break up your fields into sections." +#~ msgstr "複数のタブを使用することができます。" + +#~ msgid "Formatting" +#~ msgstr "フォーマット" + +#~ msgid "Define how to render html tags" +#~ msgstr "html タグの表示を決定する" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "html タグ/新しい行の表示を決定する" + +#~ msgid "auto <br />" +#~ msgstr "自動 <br />" + +#~ msgid "Field Order" +#~ msgstr "フィールド順序" + +#~ msgid "Field Key" +#~ msgstr "フィールドキー" + +#~ msgid "Edit this Field" +#~ msgstr "このフィールドを編集する" + +#~ msgid "Read documentation for this field" +#~ msgstr "このフィールドのドキュメントを読む" + +#~ msgid "Docs" +#~ msgstr "ドキュメント" + +#~ msgid "Duplicate this Field" +#~ msgstr "このフィールドを複製する" + +#~ msgid "Delete this Field" +#~ msgstr "このフィールドを削除する" + +#~ msgid "Field Instructions" +#~ msgstr "フィールド記入のヒント" + +#~ msgid "Show this field when" +#~ msgstr "表示する条件" + +#~ msgid "all" +#~ msgstr "全て" + +#~ msgid "any" +#~ msgstr "任意" + +#~ msgid "these rules are met" +#~ msgstr "これらの条件を満たす" + +#, fuzzy +#~ msgid "Taxonomy Term (Add / Edit)" +#~ msgstr "タクソノミー(追加/編集)" + +#~ msgid "User (Add / Edit)" +#~ msgstr "ユーザー(追加/編集)" + +#, fuzzy +#~ msgid "Media Attachment (Edit)" +#~ msgstr "メディアアタッチメントを更新しました" + +#~ msgid "Normal" +#~ msgstr "Normal" + +#~ msgid "No Metabox" +#~ msgstr "メタボックス無" + +#~ msgid "Standard Metabox" +#~ msgstr "標準メタボックス" diff --git a/lang/pro/acf-nb_NO.po b/lang/pro/acf-nb_NO.po new file mode 100644 index 0000000..1550237 --- /dev/null +++ b/lang/pro/acf-nb_NO.po @@ -0,0 +1,2758 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:09+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields Pro" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: pro/options-page.php:47 +msgid "Options" +msgstr "Valg" + +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Oppdater" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Sjekk igjen" + +#: pro/updates.php:561 +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-options-page.php:309 +msgid "Edit field group" +msgstr "Rediger 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Oppdateringer" + +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 "Klone" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Felt" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Vis" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +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:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Oppsett" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Angi stilen som brukes til å gjengi de valgte feltene" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Blokk" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabell" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Rad" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Etiketter vises som %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefiks feltetiketter" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Verdier vil bli lagret som %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefiks feltnavn" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Ukjent felt" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(ingen tittel)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Ukjent feltgruppe" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle felt fra %s feltgruppe" + +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Fleksibelt innhold" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Legg til rad" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "oppsett" +msgstr[1] "oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} tilgjengelig (maks {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} kreves (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Fleksibelt innholdsfelt krever minst en layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Dra for å endre rekkefølge" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Legg til oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Fjern oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Klikk for å veksle" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Endre rekkefølge på oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Endre rekkefølge" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Slett oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Slett" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliser oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Dupliser" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Legg til nytt oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Legg til ny" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Etikett" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Navn" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Minimum" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Maksimum" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Knappetikett" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Minimum oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maksimum oppsett" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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 "Galleri" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Legg bildet til galleri" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maksimalt utvalg nådd" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lengde" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Rediger" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Fjern" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Tittel" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Bildetekst" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alternativ tekst" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Beskrivelse" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Legg til galleri" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Massehandlinger" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sorter etter dato lastet opp" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sorter etter dato endret" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sorter etter tittel" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Snu gjeldende rekkefølge" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Lukk" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Format som skal returneres" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Filtabell" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Bilde-URL" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Bilde-ID" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Forhåndsvisningsstørrelse" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Sett inn" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Angi hvor nye vedlegg er lagt" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Tilføy til slutten" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Sett inn foran" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Bibliotek" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Begrense valg av mediebibliotek" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Alle" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Lastet opp til innlegg" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimum antall valg" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maksimum antall valg" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimum" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Begrense hvilke bilder som kan lastes opp" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Bredde" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Høyde" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Filstørrelse" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maksimum" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Tillatte filtyper" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "Kommaseparert liste. Tomt for alle typer" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Gjentaker" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimum antall rader nådd ({min} rader)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maksimum antall rader nådd ({max} rader)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Underfelt" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Sammenfoldet" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Minimum antall rader" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Maksimum antall rader" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Legg til rad" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Fjern rad" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "Alternativer-side" + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Oppdateringsinformasjon" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Gjeldende versjon" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Siste versjon" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Oppdatering tilgjengelig" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nei" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Ja" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Oppgi lisensnøkkelen ovenfor for låse opp oppdateringer" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Oppdater plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Endringslogg" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Oppgraderingsvarsel" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Field Groups" +#~ msgstr "Feltgrupper" + +#~ msgid "Field Group" +#~ msgstr "Feltgruppe" + +#~ msgid "Add New Field Group" +#~ msgstr "Legg til ny feltgruppe" + +#~ msgid "Edit Field Group" +#~ msgstr "Rediger feltgruppe" + +#~ msgid "New Field Group" +#~ msgstr "Ny feltgruppe" + +#~ msgid "View Field Group" +#~ msgstr "Vis feltgruppe" + +#~ msgid "Search Field Groups" +#~ msgstr "Søk i feltgrupper" + +#~ msgid "No Field Groups found" +#~ msgstr "Ingen feltgrupper funnet" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Ingen feltgrupper funnet i papirkurven" + +#~ msgid "Field" +#~ msgstr "Felt" + +#~ msgid "Add New Field" +#~ msgstr "Legg til nytt felt" + +#~ msgid "Edit Field" +#~ msgstr "Rediger felt" + +#~ msgid "New Field" +#~ msgstr "Nytt felt" + +#~ msgid "View Field" +#~ msgstr "Vis felt" + +#~ msgid "Search Fields" +#~ msgstr "Søkefelt" + +#~ msgid "No Fields found" +#~ msgstr "Ingen felter funnet" + +#~ msgid "No Fields found in Trash" +#~ msgstr "Ingen felt funnet i papirkurven" + +#~ msgid "Inactive" +#~ msgstr "Inaktiv" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inaktiv (%s)" +#~ msgstr[1] "Inaktive (%s)" + +#~ msgid "Field group updated." +#~ msgstr "Feltgruppe oppdatert." + +#~ msgid "Field group deleted." +#~ msgstr "Feltgruppe slettet." + +#~ msgid "Field group published." +#~ msgstr "Feltgruppe publisert." + +#~ msgid "Field group saved." +#~ msgstr "Feltgruppe lagret." + +#~ msgid "Field group submitted." +#~ msgstr "Feltgruppe sendt inn." + +#~ msgid "Field group scheduled for." +#~ msgstr "Feltgruppe planlagt for" + +#~ msgid "Field group draft updated." +#~ msgstr "Feltgruppekladd oppdatert." + +#~ msgid "Location" +#~ msgstr "Sted" + +#~ msgid "Settings" +#~ msgstr "Innstillinger" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Flytt til papirkurven. Er du sikker?" + +#~ msgid "checked" +#~ msgstr "avkrysset" + +#~ msgid "No toggle fields available" +#~ msgstr "Ingen av/på- felter tilgjengelig" + +#~ msgid "Field group title is required" +#~ msgstr "Feltgruppetittel er påkrevd" + +#~ msgid "copy" +#~ msgstr "kopier" + +#~ msgid "or" +#~ msgstr "eller" + +#~ msgid "Parent fields" +#~ msgstr "Foreldrefelter" + +#~ msgid "Sibling fields" +#~ msgstr "Søskenfelter" + +#~ msgid "Move Custom Field" +#~ msgstr "Flytt egendefinert felt" + +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "Dette feltet kan ikke flyttes før endringene er lagret" + +#~ msgid "Null" +#~ msgstr "Null" + +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "" +#~ "Endringene du har gjort vil gå tapt dersom du navigerer vekk fra denne " +#~ "siden" + +#~ msgid "The string \"field_\" may not be used at the start of a field name" +#~ msgstr "Strengen \"field_\" kan ikke brukes som starten på et feltnavn" + +#~ msgid "Field Keys" +#~ msgstr "Feltnøkler" + +#~ msgid "Active" +#~ msgstr "Aktiv" + +#~ msgid "Move Complete." +#~ msgstr "Flytting komplett." + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "%s feltet finnes nå i %s feltgruppen" + +#~ msgid "Close Window" +#~ msgstr "Lukk vinduet" + +#~ msgid "Please select the destination for this field" +#~ msgstr "Vennligst velg målet for dette feltet" + +#~ msgid "Move Field" +#~ msgstr "Flytt felt" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Aktive (%s)" +#~ msgstr[1] "Aktive (%s)" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "Feltgruppe duplisert. %s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s feltgruppe duplisert." +#~ msgstr[1] "%s feltgrupper duplisert." + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "Feltgruppe synkronisert. %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s feltgruppe synkronisert." +#~ msgstr[1] "%s feltgrupper synkronisert." + +#~ msgid "Sync available" +#~ msgstr "Synkronisering tilgjengelig" + +#~ msgid "Status" +#~ msgstr "Status" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "Tilpass WordPress med kraftige, profesjonelle og intuitive felt." + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Se hva som er nytt i %s-utgaven." + +#~ msgid "Resources" +#~ msgstr "Ressurser" + +#~ msgid "Documentation" +#~ msgstr "Dokumentasjon" + +#~ msgid "Support" +#~ msgstr "Support" + +#, fuzzy +#~ msgid "Pro" +#~ msgstr "Farvel Tillegg. Hei PRO" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Takk for at du bygger med ACF." + +#~ msgid "Duplicate this item" +#~ msgstr "Dupliser dette elementet" + +#~ msgid "Search" +#~ msgstr "Søk" + +#, php-format +#~ msgid "Select %s" +#~ msgstr "Velg %s" + +#~ msgid "Synchronise field group" +#~ msgstr "Synkroniser feltgruppe" + +#~ msgid "Sync" +#~ msgstr "Synkroniser" + +#, fuzzy +#~ msgid "Bulk Actions" +#~ msgstr "Massehandlinger" + +#~ msgid "Custom Fields" +#~ msgstr "Egendefinerte felt" + +#~ msgid "Upgrade Database" +#~ msgstr "Oppgrader database" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Gå igjennom nettsteder og oppgrader" + +#~ msgid "Error validating request" +#~ msgstr "Kunne ikke validere forespørselen" + +#~ msgid "No updates available." +#~ msgstr "Ingen oppdateringer tilgjengelige." + +#~ msgid "Add-ons" +#~ msgstr "Tillegg" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Feil. Kunne ikke laste liste over tillegg" + +#~ msgid "Info" +#~ msgstr "Informasjon" + +#~ msgid "What's New" +#~ msgstr "Hva er nytt" + +#~ msgid "Tools" +#~ msgstr "Verktøy" + +#~ msgid "No field groups selected" +#~ msgstr "Ingen feltgrupper valgt" + +#~ msgid "No file selected" +#~ msgstr "Ingen fil valgt" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Feil ved opplasting av fil. Vennligst prøv igjen" + +#~ msgid "Incorrect file type" +#~ msgstr "Feil filtype" + +#~ msgid "Import file empty" +#~ msgstr "Importfil tom" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "Importerte 1 feltgruppe" +#~ msgstr[1] "Importerte %s feltgrupper" + +#~ msgid "Conditional Logic" +#~ msgstr "Betinget logikk" + +#~ msgid "Show this field if" +#~ msgstr "Vis dette feltet hvis" + +#~ msgid "is equal to" +#~ msgstr "er lik" + +#~ msgid "is not equal to" +#~ msgstr "er ikke lik" + +#~ msgid "and" +#~ msgstr "og" + +#~ msgid "Add rule group" +#~ msgstr "Legg til regelgruppe" + +#~ msgid "Edit field" +#~ msgstr "Rediger felt" + +#~ msgid "Duplicate field" +#~ msgstr "Dupliser felt" + +#~ msgid "Move field to another group" +#~ msgstr "Flytt felt til en annen gruppe" + +#~ msgid "Move" +#~ msgstr "Flytt" + +#~ msgid "Delete field" +#~ msgstr "Slett felt" + +#~ msgid "Field Label" +#~ msgstr "Feltetikett" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "Dette navnet vil vises på REDIGERING-siden" + +#~ msgid "Field Name" +#~ msgstr "Feltnavn" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "Enkeltord, ingen mellomrom. Understreker og streker tillatt" + +#~ msgid "Field Type" +#~ msgstr "Felttype" + +#~ msgid "Instructions" +#~ msgstr "Instruksjoner" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "Instruksjoner for forfattere. Vises når du sender inn data" + +#~ msgid "Required?" +#~ msgstr "Påkrevd?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Omslags-attributter" + +#~ msgid "width" +#~ msgstr "bredde" + +#~ msgid "class" +#~ msgstr "klasse" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "Lukk felt" + +#~ msgid "Order" +#~ msgstr "Rekkefølge" + +#~ msgid "Type" +#~ msgstr "Type" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Ingen felt. Klikk på + Legg til felt knappen for å lage " +#~ "ditt første felt." + +#~ msgid "+ Add Field" +#~ msgstr "+ Legg til felt" + +#~ msgid "Rules" +#~ msgstr "Regler" + +#~ 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 redigeringsvinduer som vil bruke " +#~ "disse feltene." + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Standard (WP Metabox)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Sømløs (ingen metabox)" + +#~ msgid "Position" +#~ msgstr "Posisjon" + +#~ msgid "High (after title)" +#~ msgstr "Høy (etter tittel)" + +#~ msgid "Normal (after content)" +#~ msgstr "Normal (etter innhold)" + +#~ msgid "Side" +#~ msgstr "Side" + +#~ msgid "Label placement" +#~ msgstr "Etikettplassering" + +#~ msgid "Top aligned" +#~ msgstr "Toppjustert" + +#~ msgid "Left aligned" +#~ msgstr "Venstrejustert" + +#~ msgid "Instruction placement" +#~ msgstr "Instruksjonsplassering" + +#~ msgid "Below labels" +#~ msgstr "Nedenfor etiketter" + +#~ msgid "Below fields" +#~ msgstr "Nedenfor felt" + +#~ msgid "Order No." +#~ msgstr "Rekkefølge" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "Feltgrupper med lavere rekkefølge vises først" + +#~ msgid "Shown in field group list" +#~ msgstr "Vist i feltgruppeliste" + +#~ msgid "Hide on screen" +#~ msgstr "Skjul på skjermen" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Velg elementer som skal skjules fra redigeringsvinduet." + +#~ 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 "" +#~ "Hvis flere feltgrupper vises i et redigeringsvindu, vil den første " +#~ "feltgruppens alternativer benyttes. (Den med laveste nummer i rekkefølgen)" + +#~ msgid "Permalink" +#~ msgstr "Permalenke" + +#~ msgid "Content Editor" +#~ msgstr "Innholdsredigerer" + +#~ msgid "Excerpt" +#~ msgstr "Utdrag" + +#~ msgid "Discussion" +#~ msgstr "Diskusjon" + +#~ msgid "Comments" +#~ msgstr "Kommentarer" + +#~ msgid "Revisions" +#~ msgstr "Revisjoner" + +#~ msgid "Slug" +#~ msgstr "URL-tamp" + +#~ msgid "Author" +#~ msgstr "Forfatter" + +#~ msgid "Format" +#~ msgstr "Format" + +#~ msgid "Page Attributes" +#~ msgstr "Sideattributter" + +#~ msgid "Featured Image" +#~ msgstr "Fremhevet bilde" + +#~ msgid "Categories" +#~ msgstr "Kategorier" + +#~ msgid "Tags" +#~ msgstr "Merkelapper" + +#~ msgid "Send Trackbacks" +#~ msgstr "Send tilbakesporinger" + +#~ msgid "Show this field group if" +#~ msgstr "Vis feltgruppen hvis" + +#~ msgid "Upgrade Sites" +#~ msgstr "Oppgrader nettsteder" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Databaseoppgradering for Advanced Custom Fields" + +#, php-format +#~ 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 databaseoppgradering. Kryss av for de du " +#~ "vil oppdatere og klikk deretter %s." + +#~ msgid "Site" +#~ msgstr "Nettsted" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Siden krever databaseoppgradering fra%s til%s" + +#~ msgid "Site is up to date" +#~ msgstr "Nettstedet er oppdatert" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Databaseoppgradering er fullført. Gå tilbake til " +#~ "nettverksdashboard" + +#~ msgid "" +#~ "It is strongly recommended that you backup your database before " +#~ "proceeding. Are you sure you wish to run the updater now?" +#~ msgstr "" +#~ "Det anbefales sterkt at du sikkerhetskopierer databasen før du " +#~ "fortsetter. Er du sikker på at du vil kjøre oppdateringen nå?" + +#~ msgid "Upgrade complete" +#~ msgstr "Oppgradering komplett" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Oppgradere data til versjon%s" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Databaseoppgradering er påkrevd" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Takk for at du oppgraderte til %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Før du begynner å bruke de nye funksjonene, må du oppdatere din database " +#~ "til den nyeste versjonen." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Leser oppgraderingsoppgaver ..." + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "" +#~ "Databaseoppgradering er fullført. Se hva som er nytt" + +#~ msgid "Download & Install" +#~ msgstr "Last ned og installer" + +#~ msgid "Installed" +#~ msgstr "Installert" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Velkommen til Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Takk for at du oppdaterte! ACF %s er større og bedre enn noen gang før. " +#~ "Vi håper du liker det." + +#~ msgid "A smoother custom field experience" +#~ msgstr "En velfungerende opplevelse av egendefinerte felter" + +#~ msgid "Improved Usability" +#~ msgstr "Forbedret brukervennlighet" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Å inkludere det populære Select2-biblioteket har økt både " +#~ "brukervennlighet og lastetid for flere felttyper, inkludert " +#~ "innleggsobjekter, sidelinker, taksonomi og nedtrekksmenyer." + +#~ msgid "Improved Design" +#~ msgstr "Forbedret design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Mange felter har fått en visuell oppfriskning så ACF ser bedre ut enn på " +#~ "lenge! Nevneverdige endringer sees på galleri-, relasjons- og " +#~ "oEmbedfelter!" + +#~ msgid "Improved Data" +#~ msgstr "Forbedret data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Omskriving av dataarkitekturen tillater underfelter å leve uavhengig av " +#~ "foreldrene sine. Det betyr at du kan dra og slippe felter til og fra " +#~ "foreldrefeltene sine!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Farvel Tillegg. Hei PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Vi presenterer ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Vi endrer måten premium-funksjonalitet leveres på en spennende måte!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle fire premium-tilleggene har blitt kombinert i en ny Pro-versjon av ACF. Med både personlig- og utviklerlisenser " +#~ "tilgjengelig er premiumfunksjonalitet billigere og mer tilgjengelig enn " +#~ "noensinne!" + +#~ msgid "Powerful Features" +#~ msgstr "Kraftige funksjoner" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO inneholder kraftige funksjoner som repeterende data, fleksible " +#~ "innholdsstrukturer, et vakkert gallerifelt og muligheten til å lage " +#~ "ekstra administrasjonsegenskapssider!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Les mer om ACF PRO-funksjonaliteten." + +#~ msgid "Easy Upgrading" +#~ msgstr "Enkel oppgradering" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "For å gjøre oppgradering enklere, Logg inn på din konto og hent en gratis kopi av ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Vi har også skrevet en oppgraderingsveiledning for å " +#~ "besvare de fleste spørsmål, men skulle du fortsatt ha et spørsmål, ta " +#~ "kontakt med via helpdesken" + +#~ msgid "Under the Hood" +#~ msgstr "Under panseret" + +#~ msgid "Smarter field settings" +#~ msgstr "Smartere feltinnstillinger" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF lagrer nå feltegenskapene som individuelle innleggsobjekter" + +#~ msgid "More AJAX" +#~ msgstr "Mer AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Flere felter bruker AJAX-drevet søk for å kutte ned innlastingstiden" + +#~ msgid "Local JSON" +#~ msgstr "Lokal JSON" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Ny automatisk eksport til JSON sparer tid" + +#~ msgid "Better version control" +#~ msgstr "Bedre versjonskontroll" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Ny autoeksport til JSON lar feltinnstillinger bli versjonskontrollert" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "Byttet XML mot JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Import / eksport bruker nå JSON istedenfor XML" + +#~ msgid "New Forms" +#~ msgstr "Nye skjemaer" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Feltene kan nå tilordnes til kommentarer, widgets og alle brukerskjemaer!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Et nytt felt for å bygge inn innhold er lagt til" + +#~ msgid "New Gallery" +#~ msgstr "Nytt galleri" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Gallerietfeltet har gjennomgått en sårt tiltrengt ansiktsløftning" + +#~ msgid "New Settings" +#~ msgstr "Nye innstillinger" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Feltgruppeinnstillinger er lagt til for etikettplassering og " +#~ "instruksjonsplassering" + +#~ msgid "Better Front End Forms" +#~ msgstr "Bedre frontend-skjemaer" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() kan nå lage et nytt innlegg ved innsending" + +#~ msgid "Better Validation" +#~ msgstr "Bedre validering" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "Skjemavalidering skjer nå via PHP + AJAX framfor kun JavaScript" + +#~ msgid "Relationship Field" +#~ msgstr "Relasjonsfelt" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nye relasjonsfeltinnstillinger for 'Filtre' (søk, innleggstype, taksonomi)" + +#~ msgid "Moving Fields" +#~ msgstr "Flytte felt" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Ny feltgruppe-funksonalitet gir deg mulighet til å flytte felt mellom " +#~ "grupper og foreldre" + +#~ msgid "Page Link" +#~ msgstr "Sidekobling" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Ny arkiver gruppe i page_link feltvalg" + +#~ msgid "Better Options Pages" +#~ msgstr "Bedre sider for innstillinger" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nye funksjoner på Valg-siden tillater oppretting av menysider for både " +#~ "foreldre og barn" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Vi tror du vil elske endringene i %s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Eksporter feltgrupper til PHP" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Følgende kode kan brukes for å registrere en lokal versjon av de(n) " +#~ "valgte feltgruppen(e). En lokal feltgruppe kan gi mange fordeler som " +#~ "raskere lastetid, versjonskontroll og dynamiske felter/innstillinger. " +#~ "Kopier og lim inn den følgende koden i ditt temas functions.php-fil, " +#~ "eller inkluder det med en ekstern fil." + +#~ msgid "Select Field Groups" +#~ msgstr "Velg feltgrupper" + +#~ msgid "Export Field Groups" +#~ msgstr "Eksporter feltgrupper" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Velg feltgruppene du vil eksportere og velg eksporteringsmetode. Bruk " +#~ "nedlastingsknappen for å eksportere til en .json-fil du kan importere i " +#~ "en annen installasjon av ACF. Bruk genererknappen for å eksportere PHP-" +#~ "kode du kan legge inn i ditt tema." + +#~ msgid "Download export file" +#~ msgstr "Last ned eksportfil" + +#~ msgid "Generate export code" +#~ msgstr "Generer eksportkode" + +#~ msgid "Import Field Groups" +#~ msgstr "Importer feltgrupper" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Velg ACF JSON-filen du vil importere. Når du klikker importerknappen " +#~ "under, vil ACF importere feltgruppene." + +#~ msgid "Select File" +#~ msgstr "Velg fil" + +#~ msgid "Import" +#~ msgstr "Importer" + +#~ msgid "Thumbnail" +#~ msgstr "Miniatyrbilde" + +#~ msgid "Medium" +#~ msgstr "Medium" + +#~ msgid "Large" +#~ msgstr "Stor" + +#~ msgid "Full Size" +#~ msgstr "Full størrelse" + +#~ msgid "Parent" +#~ msgstr "Forelder" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Bildebredde må være minst %dpx." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Bildebredden må ikke overstige %dpx." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Bildehøyden må være minst %dpx." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Bilde høyde må ikke overstige %dpx." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Filstørrelse må være minst %s." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "Filstørrelsen må ikke overstige %s." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Filtypen må være %s." + +#~ msgid "Basic" +#~ msgstr "Grunnleggende" + +#~ msgid "Content" +#~ msgstr "Innhold" + +#~ msgid "Choice" +#~ msgstr "Valg" + +#~ msgid "Relational" +#~ msgstr "Relaterte" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Field type does not exist" +#~ msgstr "Felttype eksisterer ikke" + +#, fuzzy +#~ msgid "Unknown" +#~ msgstr "Ukjent feltgruppe" + +#~ msgid "Checkbox" +#~ msgstr "Avkryssingsboks" + +#~ msgid "Toggle All" +#~ msgstr "Velg/avvelg alle" + +#~ msgid "Add new choice" +#~ msgstr "Legg til nytt valg" + +#~ msgid "Choices" +#~ msgstr "Valg" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Skriv inn hvert valg på en ny linje." + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "For mer kontroll, kan du angi både en verdi og merke som dette:" + +#~ msgid "red : Red" +#~ msgstr "svart : Svart" + +#~ msgid "Allow Custom" +#~ msgstr "Tillat egendefinert" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Tillat at \"egendefinerte\" verdier legges til" + +#~ msgid "Save Custom" +#~ msgstr "Lagre egendefinert" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "Lagre \"egendefinerte\" verdier som alternativer i feltets valg" + +#~ msgid "Default Value" +#~ msgstr "Standardverdi" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Skriv inn hver standardverdi på en ny linje" + +#~ msgid "Vertical" +#~ msgstr "Vertikal" + +#~ msgid "Horizontal" +#~ msgstr "Horisontal" + +#~ msgid "Toggle" +#~ msgstr "Veksle" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "Legg til ekstra avkryssingsboks for å velge alle alternativer" + +#~ msgid "Return Value" +#~ msgstr "Returverdi" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Angi verdien returnert på frontend" + +#~ msgid "Value" +#~ msgstr "Verdi" + +#~ msgid "Both (Array)" +#~ msgstr "Begge (Array)" + +#~ msgid "Color Picker" +#~ msgstr "Fargevelger" + +#~ msgid "Clear" +#~ msgstr "Fjern" + +#~ msgid "Default" +#~ msgstr "Standardverdi" + +#~ msgid "Select Color" +#~ msgstr "Velg farge" + +#~ msgid "Current Color" +#~ msgstr "Nåværende farge" + +#~ msgid "Date Picker" +#~ msgstr "Datovelger" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fullført" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Idag" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Neste" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Forrige" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "uke" + +#~ msgid "Display Format" +#~ msgstr "Visningsformat" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "Visningsformat når du redigerer et innlegg" + +#, fuzzy +#~ msgid "Custom:" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Save Format" +#~ msgstr "Lagre format" + +#~ msgid "The format used when saving a value" +#~ msgstr "Formatet som brukes når du lagrer en verdi" + +#~ msgid "The format returned via template functions" +#~ msgstr "Formatet som returneres via malfunksjoner" + +#~ msgid "Week Starts On" +#~ msgstr "Uken starter på" + +#~ msgid "Date Time Picker" +#~ msgstr "Dato/tid-velger" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Velg tid" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Tid" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Time" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minutt" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Sekund" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Millisekund" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Mikrosekund" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Tidssone" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Nå" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Fullført" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Velg" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "A" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "P" + +#~ msgid "Email" +#~ msgstr "Epost" + +#~ msgid "Appears when creating a new post" +#~ msgstr "Vises når du oppretter et nytt innlegg" + +#~ msgid "Placeholder Text" +#~ msgstr "Plassholdertekst" + +#~ msgid "Appears within the input" +#~ msgstr "Vises i inndataene" + +#~ msgid "Prepend" +#~ msgstr "Sett inn foran" + +#~ msgid "Appears before the input" +#~ msgstr "Vises før inndata" + +#~ msgid "Append" +#~ msgstr "Tilføy" + +#~ msgid "Appears after the input" +#~ msgstr "Vises etter inndata" + +#~ msgid "File" +#~ msgstr "Fil" + +#~ msgid "Edit File" +#~ msgstr "Rediger fil" + +#~ msgid "Update File" +#~ msgstr "Oppdater fil" + +#~ msgid "Uploaded to this post" +#~ msgstr "Lastet opp til dette innlegget" + +#~ msgid "File name" +#~ msgstr "Filnavn" + +#~ msgid "Add File" +#~ msgstr "Legg til fil" + +#~ msgid "File Array" +#~ msgstr "Filtabell" + +#~ msgid "File URL" +#~ msgstr "Fil-URL" + +#~ msgid "File ID" +#~ msgstr "Fil-ID" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Begrense hvilke filer som kan lastes opp" + +#~ msgid "Google Map" +#~ msgstr "Google-kart" + +#~ msgid "Locating" +#~ msgstr "Lokaliserer" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Beklager, støtter denne nettleseren ikke geolokasjon" + +#~ msgid "Clear location" +#~ msgstr "Tøm plassering" + +#~ msgid "Find current location" +#~ msgstr "Finn nåværende posisjon" + +#~ msgid "Search for address..." +#~ msgstr "Søk etter adresse" + +#~ msgid "Center" +#~ msgstr "Sentrer" + +#~ msgid "Center the initial map" +#~ msgstr "Sentrer det første kartet" + +#~ msgid "Zoom" +#~ msgstr "Zoom" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Angi initielt zoom-nivå" + +#~ msgid "Customise the map height" +#~ msgstr "Tilpasse karthøyde" + +#, fuzzy +#~ msgid "Group" +#~ msgstr "Gruppe (viser valgt felt i en gruppe innenfor dette feltet)" + +#~ msgid "Image" +#~ msgstr "Bilde" + +#~ msgid "Select Image" +#~ msgstr "Velg bilde" + +#~ msgid "Edit Image" +#~ msgstr "Rediger bilde" + +#~ msgid "Update Image" +#~ msgstr "Oppdater bilde" + +#~ msgid "All images" +#~ msgstr "Alle bilder" + +#~ msgid "No image selected" +#~ msgstr "Ingen bilde valgt" + +#~ msgid "Add Image" +#~ msgstr "Legg til bilde" + +#~ msgid "Shown when entering data" +#~ msgstr "Vises når du skriver inn data" + +#, fuzzy +#~ msgid "Link" +#~ msgstr "Sidekobling" + +#, fuzzy +#~ msgid "Select Link" +#~ msgstr "Velg fil" + +#, fuzzy +#~ msgid "Link Array" +#~ msgstr "Filtabell" + +#, fuzzy +#~ msgid "Link URL" +#~ msgstr "Fil-URL" + +#~ msgid "Message" +#~ msgstr "Melding" + +#~ msgid "New Lines" +#~ msgstr "Linjeskift" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Kontroller hvordan linjeskift gjengis" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Automatisk legge til avsnitt" + +#~ msgid "Automatically add <br>" +#~ msgstr "Legg til <br>" + +#~ msgid "No Formatting" +#~ msgstr "Ingen formatering" + +#~ msgid "Escape HTML" +#~ msgstr "Escape HTML" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "" +#~ "Tillat HTML-kode til å vise oppføringsteksten i stedet for gjengivelse" + +#~ msgid "Number" +#~ msgstr "Tall" + +#~ msgid "Minimum Value" +#~ msgstr "Minste verdi" + +#~ msgid "Maximum Value" +#~ msgstr "Maksimal verdi" + +#~ msgid "Step Size" +#~ msgstr "Størrelse trinn" + +#~ msgid "Value must be a number" +#~ msgstr "Verdien må være et tall" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Verdien må være lik eller høyere enn %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Verdien må være lik eller lavere enn %d" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "Skriv inn URL" + +#~ msgid "Error." +#~ msgstr "Feil." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Fant ingen innbygging for den gitte URL-en." + +#~ msgid "Embed Size" +#~ msgstr "Embed-størrelse" + +#~ msgid "Archives" +#~ msgstr "Arkiv" + +#~ msgid "Filter by Post Type" +#~ msgstr "Filtrer etter innleggstype" + +#~ msgid "All post types" +#~ msgstr "Alle innleggstyper" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "Filtrer etter taksonomi" + +#~ msgid "All taxonomies" +#~ msgstr "Alle taksonomier" + +#~ msgid "Allow Null?" +#~ msgstr "Tillat Null?" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Tillat arkiv-URL-er" + +#~ msgid "Select multiple values?" +#~ msgstr "Velg flere verdier?" + +#~ msgid "Password" +#~ msgstr "Passord" + +#~ msgid "Post Object" +#~ msgstr "Innleggsobjekt" + +#~ msgid "Post ID" +#~ msgstr "ID for innlegg" + +#~ msgid "Radio Button" +#~ msgstr "Radioknapp" + +#~ msgid "Other" +#~ msgstr "Andre" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "Legg til 'andre'-valg for å tillate egendefinerte verdier" + +#~ msgid "Save Other" +#~ msgstr "Lagre annen" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Lagre 'andre'-verdier til feltets valg" + +#~ msgid "Relationship" +#~ msgstr "Forhold" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimumsverdier nådd ({min} verdier)" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Maksimumsverdier nådd ( {max} verdier )" + +#~ msgid "Loading" +#~ msgstr "Laster" + +#~ msgid "No matches found" +#~ msgstr "Fant ingen treff" + +#~ msgid "Search..." +#~ msgstr "Søk …" + +#~ msgid "Select post type" +#~ msgstr "Velg innleggstype" + +#~ msgid "Select taxonomy" +#~ msgstr "Velg taksonomi" + +#~ msgid "Filters" +#~ msgstr "Filtre" + +#~ msgid "Post Type" +#~ msgstr "Innleggstype" + +#~ msgid "Taxonomy" +#~ msgstr "Taksonomi" + +#~ msgid "Elements" +#~ msgstr "Elementer" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Valgte elementer vises i hvert resultat" + +#~ msgid "Minimum posts" +#~ msgstr "Minimum antall innlegg" + +#~ msgid "Maximum posts" +#~ msgstr "Maksimalt antall innlegg" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s krever minst %s valgt" +#~ msgstr[1] "%s krever minst %s valgte" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Valg" + +#~ 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." + +#, php-format +#~ 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 nedpiltastene for å navigere." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Fant ingen treff" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Vennligst fyll inn ett eller flere tegn" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Vennligst fyll inn %d eller flere tegn" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Vennligst slett ett tegn" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Vennligst slett %d tegn" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Du kan bare velge ett element" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Du kan bare velge %d elementer" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Laster flere resultater …" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Søker…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Lasting mislyktes" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Velg" + +#~ msgid "Stylised UI" +#~ msgstr "Stilisert brukergrensesnitt" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "Bruk AJAX for å laste valg i bakgrunnen ved behov?" + +#~ msgid "Specify the value returned" +#~ msgstr "Angi verdien som returneres" + +#~ msgid "Tab" +#~ msgstr "Tab" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Fane-feltet vises ikke korrekt når det plasseres i et repeterende felt " +#~ "med tabell-visning eller i et fleksibelt innholdsfelt" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "Bruk \"Fane-felt\" til å gruppere felter" + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle felter som kommer etter dette \"fane-feltet\" (eller til et annet " +#~ "\"fane-felt\" defineres) blir gruppert under overskriften til dette fane-" +#~ "feltet." + +#~ msgid "Placement" +#~ msgstr "Plassering" + +#~ msgid "End-point" +#~ msgstr "Avslutning" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "Bruk dette feltet som en avslutning eller start en ny fane-gruppe" + +#~ msgid "None" +#~ msgstr "Ingen" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Velg taksonomien som skal vises" + +#~ msgid "Appearance" +#~ msgstr "Utseende" + +#~ msgid "Select the appearance of this field" +#~ msgstr "Velg utseendet på dette feltet" + +#~ msgid "Multiple Values" +#~ msgstr "Flere verdier" + +#~ msgid "Multi Select" +#~ msgstr "Flervalgsboks" + +#~ msgid "Single Value" +#~ msgstr "Enkeltverdi" + +#~ msgid "Radio Buttons" +#~ msgstr "Radioknapper" + +#~ msgid "Create Terms" +#~ msgstr "Opprett termer" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Tillat at nye termer opprettes under redigering" + +#~ msgid "Save Terms" +#~ msgstr "Lagre termer" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Koble valgte termer til innlegget" + +#~ msgid "Load Terms" +#~ msgstr "Hent termer" + +#~ msgid "Load value from posts terms" +#~ msgstr "Hent verdier fra andre innleggstermer" + +#~ msgid "Term Object" +#~ msgstr "Term-objekt" + +#~ msgid "Term ID" +#~ msgstr "Term-ID" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Brukeren kan ikke legge til ny %s" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s eksisterer allerede" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s lagt til" + +#~ msgid "Add" +#~ msgstr "Legg til" + +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Character Limit" +#~ msgstr "Karakterbegrensning" + +#~ msgid "Leave blank for no limit" +#~ msgstr "La stå tomt for ingen grense" + +#~ msgid "Text Area" +#~ msgstr "Tekstområde" + +#~ msgid "Rows" +#~ msgstr "Rader" + +#~ msgid "Sets the textarea height" +#~ msgstr "Setter textarea-høyde" + +#~ msgid "Time Picker" +#~ msgstr "Tidsvelger" + +#~ msgid "True / False" +#~ msgstr "Sann / Usann" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Viser tekst ved siden av avkryssingsboksen" + +#~ msgid "On Text" +#~ msgstr "På tekst" + +#~ msgid "Text shown when active" +#~ msgstr "Teksten som vises når aktiv" + +#~ msgid "Off Text" +#~ msgstr "Av tekst" + +#~ msgid "Text shown when inactive" +#~ msgstr "Teksten som vises når inaktiv" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Value must be a valid URL" +#~ msgstr "Feltet må inneholde en gyldig URL" + +#~ msgid "User" +#~ msgstr "Bruker" + +#~ msgid "Filter by role" +#~ msgstr "Filtrer etter rolle" + +#~ msgid "All user roles" +#~ msgstr "Alle brukerroller" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "WYSIWYG Editor" + +#~ msgid "Visual" +#~ msgstr "Visuell" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Klikk for å initialisere TinyMCE" + +#~ msgid "Tabs" +#~ msgstr "Faner" + +#~ msgid "Visual & Text" +#~ msgstr "Visuell og tekst" + +#~ msgid "Visual Only" +#~ msgstr "Bare visuell" + +#~ msgid "Text Only" +#~ msgstr "Bare tekst" + +#~ msgid "Toolbar" +#~ msgstr "Verktøylinje" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Vise knapper for mediaopplasting?" + +#~ msgid "Delay initialization?" +#~ msgstr "Utsette initialisering?" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "TinyMCE blir ikke initialisert før feltet klikkes" + +#~ msgid "Validate Email" +#~ msgstr "Valider epot" + +#~ msgid "Post updated" +#~ msgstr "Innlegg oppdatert" + +#~ msgid "Spam Detected" +#~ msgstr "Søppel avdekket" + +#~ msgid "Expand Details" +#~ msgstr "Utvid detaljer" + +#~ msgid "Collapse Details" +#~ msgstr "Skjul detaljer" + +#~ msgid "Validation successful" +#~ msgstr "Vellykket validering" + +#~ msgid "Validation failed" +#~ msgstr "Validering mislyktes" + +#~ msgid "1 field requires attention" +#~ msgstr "1 felt må ses på" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d felter må ses på" + +#~ msgid "Restricted" +#~ msgstr "Begrenset" + +#~ msgid "Post" +#~ msgstr "Innlegg" + +#~ msgid "Page" +#~ msgstr "Side" + +#~ msgid "Forms" +#~ msgstr "Skjemaer" + +#~ msgid "Attachment" +#~ msgstr "Vedlegg" + +#~ msgid "Comment" +#~ msgstr "Kommentar" + +#~ msgid "Current User Role" +#~ msgstr "Rolle nåværende bruker" + +#~ msgid "Super Admin" +#~ msgstr "Superadmin" + +#~ msgid "Current User" +#~ msgstr "Nåværende bruker" + +#~ msgid "Logged in" +#~ msgstr "Logget inn" + +#~ msgid "Viewing front end" +#~ msgstr "Ser forside" + +#~ msgid "Viewing back end" +#~ msgstr "Ser adminside" + +#, fuzzy +#~ msgid "Menu Locations" +#~ msgstr "Sted" + +#~ msgid "Page Parent" +#~ msgstr "Sideforelder" + +#~ msgid "Page Template" +#~ msgstr "Sidemal" + +#~ msgid "Default Template" +#~ msgstr "Standardmal" + +#~ msgid "Page Type" +#~ msgstr "Sidetype" + +#~ msgid "Front Page" +#~ msgstr "Forside" + +#~ msgid "Posts Page" +#~ msgstr "Innleggsside" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Toppnivåside (ingen forelder)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Foreldreside (har barn)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Barn-side (har foreldre)" + +#~ msgid "Post Category" +#~ msgstr "Innleggskategori" + +#~ msgid "Post Format" +#~ msgstr "Innleggsformat" + +#~ msgid "Post Status" +#~ msgstr "Innleggsstatus" + +#~ msgid "Post Taxonomy" +#~ msgstr "Innleggstaksonomi" + +#, fuzzy +#~ msgid "Post Template" +#~ msgstr "Sidemal" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taksonomi-term" + +#~ msgid "User Form" +#~ msgstr "Brukerskjema" + +#~ msgid "Add / Edit" +#~ msgstr "Legg til / Rediger" + +#~ msgid "Register" +#~ msgstr "Registrer" + +#~ msgid "User Role" +#~ msgstr "Brukerrolle" + +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Rediger" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Oppdater" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s verdi som kreves" + +#~ msgid "remove {layout}?" +#~ msgstr "fjern {oppsett}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dette feltet krever minst {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Dette feltet har en grense på {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maksimalt {label} nådd ({max} {identifier})" + +#, php-format +#~ 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 "" +#~ "For å låse opp oppdateringer må lisensnøkkelen skrives inn på oppdateringer-siden. Se detaljer " +#~ "og priser dersom du ikke har lisensnøkkel." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Getting Started" +#~ msgstr "Kom i gang" + +#~ msgid "Field Types" +#~ msgstr "Felttyper" + +#~ msgid "Functions" +#~ msgstr "Funksjoner" + +#~ msgid "Actions" +#~ msgstr "Handlinger" + +#~ msgid "Features" +#~ msgstr "Funksjoner" + +#~ msgid "How to" +#~ msgstr "Veiledning" + +#~ msgid "Tutorials" +#~ msgstr "Veiledninger" + +#~ msgid "FAQ" +#~ msgstr "OSS" + +#~ msgid "Term meta upgrade not possible (termmeta table does not exist)" +#~ msgstr "Termmeta-oppgradering ikke mulig (termmeta-tabell finnes ikke)" + +#~ msgid "Error" +#~ msgstr "Feil" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "1 felt må ses på" +#~ msgstr[1] "%d felter må ses på" + +#~ msgid "" +#~ "Error validating ACF PRO license URL (website does not match). Please re-" +#~ "activate your license" +#~ msgstr "" +#~ "Feil under validering av ACF PRO-lisens URL (nettsted samsvarer ikke). " +#~ "Vennligst reaktiver lisensen" + +#~ msgid "Disabled" +#~ msgstr "Deaktivert" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Deaktivert (%s)" +#~ msgstr[1] "Deaktiverte (%s)" + +#~ msgid "'How to' guides" +#~ msgstr "\"Hvordan\" -guider" + +#~ msgid "Created by" +#~ msgstr "Laget av" + +#~ msgid "No updates available" +#~ msgstr "Ingen oppdateringer tilgjengelige" + +#~ msgid "Error loading update" +#~ msgstr "Feil ved lasting av oppdatering" + +#~ msgid "Database Upgrade complete" +#~ msgstr "Databaseoppgradering fullført" + +#~ msgid "Return to network dashboard" +#~ msgstr "Tilbake til nettverkskontrollpanel" + +#~ msgid "See what's new" +#~ msgstr "Se hva som er nytt" + +#~ msgid "No embed found for the given URL" +#~ msgstr "Ingen embed funnet for den gitte URL-en" + +#~ msgid "eg. Show extra content" +#~ msgstr "f. eks. Vis ekstra innhold" + +#~ msgid "No Custom Field Groups found for this options page" +#~ msgstr "Ingen egendefinerte feltgrupper funnet for dette valget" + +#~ msgid "Create a Custom Field Group" +#~ msgstr "Opprett en egendefinert feltgruppe" + +#~ msgid "" +#~ "Error validating license URL (website does not match). Please re-activate " +#~ "your license" +#~ msgstr "" +#~ "Feil ved validering av lisens-URL (nettsted samsvarer ikke). Vennligst " +#~ "reaktiver din lisens" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Suksess. Importverktøyet la til %s feltgrupper: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Advarsel. Importverktøyet oppdaget %s feltgrupper allerede " +#~ "eksisterer og har blitt ignorert: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Oppgrader ACF" + +#~ msgid "Upgrade" +#~ msgstr "Oppgrader" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "Følgende områder krever en database-oppgradering. Sjekk de du vil " +#~ "oppdatere, og klikk deretter på \"Upgrade Database\"." + +#~ msgid "Select" +#~ msgstr "Select" + +#~ msgid "Done" +#~ msgstr "Fullført" + +#~ msgid "Today" +#~ msgstr "Idag" + +#~ msgid "Show a different month" +#~ msgstr "Vise en annen måned" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Tilkoblingsfeil. Beklager, prøv på nytt" + +#~ msgid "See what's new in" +#~ msgstr "Se hva som er nytt i" + +#~ msgid "version" +#~ msgstr "versjon" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Dra og slipp for å endre rekkefølgen" + +#~ msgid "Upgrading data to" +#~ msgstr "Oppgradere data til" + +#~ msgid "Return format" +#~ msgstr "Format som skal returneres" + +#~ msgid "uploaded to this post" +#~ msgstr "lastet opp til dette innlegget" + +#~ msgid "File Name" +#~ msgstr "Filnavn" + +#~ msgid "File Size" +#~ msgstr "Filstørrelse" + +#~ msgid "No File selected" +#~ msgstr "Ingen fil valgt" + +#~ msgid "Add new %s " +#~ msgstr "Legg til ny %s" + +#~ msgid "Save Options" +#~ msgstr "Lagringsvalg" + +#~ msgid "License" +#~ msgstr "Lisens" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Oppgi lisensnøkkelen nedenfor for å låse opp oppdateringer. Hvis du ikke " +#~ "har en lisensnøkkel, se" + +#~ msgid "details & pricing" +#~ msgstr "detaljer og priser" + +#~ 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 "" +#~ "For å aktivere oppdateringer, angi din lisensnøkkel på oppdateringer -siden. Hvis du ikke har en lisensnøkkel, se detaljer og priser" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" diff --git a/lang/pro/acf-nl_BE.po b/lang/pro/acf-nl_BE.po new file mode 100644 index 0000000..9277d53 --- /dev/null +++ b/lang/pro/acf-nl_BE.po @@ -0,0 +1,3270 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:09+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Derk Oosterveld \n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: pro/options-page.php:47 +msgid "Options" +msgstr "Opties" + +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Bijwerken" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Controleer op updates" + +#: pro/updates.php:561 +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-options-page.php:309 +msgid "Edit field group" +msgstr "Bewerk 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Updates" + +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 "Kloon" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Velden" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Toon" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Naadloos (vervangt dit veld met de geselecteerde velden)" + +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Kies de gebruikte stijl bij het renderen van de geselecteerde velden" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Blok" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabel" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Rij" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Labels worden getoond als %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefix veld labels" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Waarden worden opgeslagen als %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefix veld namen" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Onbekend veld" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(geen titel)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Onbekend groep" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle velden van %s veld groep" + +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexibele content" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layout" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layouts" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} beschikbaar (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} verplicht (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibele content vereist minimaal 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Sleep om te sorteren" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Layout toevoegen" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Klik om in/uit te klappen" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Herorder layout" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Herorder" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Verwijder" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliceer layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Dupliceer" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Nieuwe layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Nieuwe groep" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Label" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Naam" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Button label" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Minimale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maximale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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 "Galerij" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Voeg afbeelding toe aan galerij" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maximale selectie bereikt" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lengte" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Bewerk" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Verwijder" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Titel" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Onderschrift" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alt tekst" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Omschrijving" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Afbeelding(en) toevoegen" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Acties" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sorteer op datum geüpload" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sorteer op datum aangepast" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sorteer op titel" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Keer volgorde om" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Sluiten" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Output weergeven als" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Afbeelding Array" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Afbeelding URL" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Afbeelding ID" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Afmeting voorbeeld" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Invoegen" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Geef aan waar nieuwe bijlagen worden toegevoegd" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Toevoegen aan het einde" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Toevoegen aan het begin" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Bibliotheek" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "" +"Limiteer de keuze van bestanden. Kies voor de gehele media bibliotheek, of " +"alleen de bestanden die geüpload zijn naar de post." + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Alles" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Geüpload naar post" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimale selectie" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maximale selectie" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimaal" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Bepaal welke afbeeldingen geüpload mogen worden" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Breedte" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Hoogte" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Bestandsgrootte" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maximaal" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Toegestane bestandstypen" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "Met komma's gescheiden lijst. Laat leeg voor alle types." + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Herhalen" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maximum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Sub-velden" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Ingeklapt" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Minimum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Maximum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Verwijder regel" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "Opties pagina" + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Update informatie" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Huidige versie" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Nieuwste versie" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Update beschikbaar" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nee" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Ja" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Vul uw licentiecode hierboven in om updates te ontvangen" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Update plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Wat is er nieuw?" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Upgrade opmerking" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Field Groups" +#~ msgstr "Groepen" + +#~ msgid "Field Group" +#~ msgstr "Nieuwe groep" + +#~ msgid "Add New Field Group" +#~ msgstr "Nieuwe groep toevoegen" + +#~ msgid "Edit Field Group" +#~ msgstr "Bewerk groep" + +#~ msgid "New Field Group" +#~ msgstr "Nieuwe groep" + +#~ msgid "View Field Group" +#~ msgstr "Bekijk groep" + +#~ msgid "Search Field Groups" +#~ msgstr "Zoek groepen" + +#~ msgid "No Field Groups found" +#~ msgstr "Geen groepen gevonden" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Geen groepen gevonden in de prullenbak" + +#~ msgid "Field" +#~ msgstr "Veld" + +#~ msgid "Add New Field" +#~ msgstr "Nieuw veld" + +#~ msgid "Edit Field" +#~ msgstr "Bewerk veld" + +#~ msgid "New Field" +#~ msgstr "Nieuw veld" + +#~ msgid "View Field" +#~ msgstr "Nieuw veld" + +#~ msgid "Search Fields" +#~ msgstr "Zoek velden" + +#~ msgid "No Fields found" +#~ msgstr "Geen velden gevonden" + +#~ msgid "No Fields found in Trash" +#~ msgstr "Geen velden gevonden in de prullenbak" + +#~ msgid "Inactive" +#~ msgstr "Niet actief" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inactief (%s)" +#~ msgstr[1] "Inactief (%s)" + +#~ msgid "Field group updated." +#~ msgstr "Groep bijgewerkt." + +#~ msgid "Field group deleted." +#~ msgstr "Groep verwijderd." + +#~ msgid "Field group published." +#~ msgstr "Groep gepubliceerd." + +#~ msgid "Field group saved." +#~ msgstr "Groep opgeslagen." + +#~ msgid "Field group submitted." +#~ msgstr "Groep toegevoegd." + +#~ msgid "Field group scheduled for." +#~ msgstr "Groep gepland voor." + +#~ msgid "Field group draft updated." +#~ msgstr "Groep concept bijgewerkt." + +#~ msgid "Location" +#~ msgstr "Locatie" + +#~ msgid "Settings" +#~ msgstr "Instellingen" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Naar prullenbak. Weet je het zeker?" + +#~ msgid "checked" +#~ msgstr "aangevinkt" + +#~ msgid "No toggle fields available" +#~ msgstr "Geen aan/uit velden beschikbaar" + +#~ msgid "Field group title is required" +#~ msgstr "Titel is verplicht" + +#~ msgid "copy" +#~ msgstr "kopie" + +#~ msgid "or" +#~ msgstr "of" + +#~ msgid "Parent fields" +#~ msgstr "Hoofdpagina" + +#~ msgid "Sibling fields" +#~ msgstr "Zuster velden" + +#~ msgid "Move Custom Field" +#~ msgstr "Verplaats extra veld" + +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "" +#~ "Dit veld kan niet worden verplaatst totdat de wijzigingen zijn opgeslagen" + +#~ msgid "Null" +#~ msgstr "Nul" + +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "De gemaakte wijzigingen gaan verloren als je deze pagina verlaat" + +#~ 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" + +#~ msgid "Field Keys" +#~ msgstr "Veld keys" + +#~ msgid "Active" +#~ msgstr "Actief" + +#~ msgid "Move Complete." +#~ msgstr "Verplaatsen geslaagd." + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Het veld: %s bevindt zich nu in de groep: %s" + +#~ msgid "Close Window" +#~ msgstr "Venster sluiten" + +#~ msgid "Please select the destination for this field" +#~ msgstr "Selecteer de bestemming voor dit veld" + +#~ msgid "Move Field" +#~ msgstr "Veld verplaatsen" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Actief (%s)" +#~ msgstr[1] "Actief (%s)" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "Groep gedupliceerd. %s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s groep gedupliceerd." +#~ msgstr[1] "%s groepen gedupliceerd." + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "Groep gesynchroniseerd. %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s groep gesynchroniseerd." +#~ msgstr[1] "%s groepen gesynchroniseerd." + +#~ msgid "Sync available" +#~ msgstr "Synchronisatie beschikbaar" + +#~ msgid "Status" +#~ msgstr "Status" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "Pas WordPress aan met krachtige, professionele en slimme velden." + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Bekijk wat nieuw is in versie %s." + +#~ msgid "Resources" +#~ msgstr "Documentatie (Engels)" + +#~ msgid "Website" +#~ msgstr "Website" + +#~ msgid "Documentation" +#~ msgstr "Documentatie" + +#~ msgid "Support" +#~ msgstr "Support" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Bedankt voor het ontwikkelen met ACF." + +#~ msgid "Duplicate this item" +#~ msgstr "Dupliceer dit item" + +#~ msgid "Search" +#~ msgstr "Zoeken" + +#, php-format +#~ msgid "Select %s" +#~ msgstr "Selecteer %s" + +#~ msgid "Synchronise field group" +#~ msgstr "Synchroniseer groep" + +#~ msgid "Sync" +#~ msgstr "Synchroniseer" + +#~ msgid "Apply" +#~ msgstr "Toepassen" + +#~ msgid "Bulk Actions" +#~ msgstr "Bulk acties" + +#~ msgid "Custom Fields" +#~ msgstr "Extra velden" + +#~ msgid "Upgrade Database" +#~ msgstr "Upgrade database" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Controleer websites & upgrade" + +#~ msgid "Error validating request" +#~ msgstr "Fout bij valideren" + +#~ msgid "No updates available." +#~ msgstr "Geen updates beschikbaar." + +#~ msgid "Add-ons" +#~ msgstr "Add-ons" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Fout. Kan add-ons lijst niet laden" + +#~ msgid "Info" +#~ msgstr "Informatie" + +#~ msgid "What's New" +#~ msgstr "Wat is er nieuw" + +#~ msgid "Tools" +#~ msgstr "Tools" + +#~ msgid "No field groups selected" +#~ msgstr "Geen groepen geselecteerd" + +#~ msgid "No file selected" +#~ msgstr "Geen bestanden geselecteerd" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Fout bij het uploaden van bestand. Probeer het nog eens" + +#~ msgid "Incorrect file type" +#~ msgstr "Ongeldig bestandstype" + +#~ msgid "Import file empty" +#~ msgstr "Importeer bestand is leeg" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "1 groep geïmporteerd" +#~ msgstr[1] "%s groepen geïmporteerd" + +#~ msgid "Conditional Logic" +#~ msgstr "Conditionele logica" + +#~ msgid "Show this field if" +#~ msgstr "Toon dit veld als" + +#~ msgid "is equal to" +#~ msgstr "gelijk is aan" + +#~ msgid "is not equal to" +#~ msgstr "is niet gelijk aan" + +#~ msgid "and" +#~ msgstr "en" + +#~ msgid "Add rule group" +#~ msgstr "Nieuwe groep toevoegen" + +#~ msgid "Edit field" +#~ msgstr "Bewerk veld" + +#~ msgid "Duplicate field" +#~ msgstr "Dupliceer veld" + +#~ msgid "Move field to another group" +#~ msgstr "Verplaats veld naar een andere groep" + +#~ msgid "Move" +#~ msgstr "Verplaats" + +#~ msgid "Delete field" +#~ msgstr "Verwijder veld" + +#~ msgid "Field Label" +#~ msgstr "Veld label" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "De naam die verschijnt op het edit screen" + +#~ msgid "Field Name" +#~ msgstr "Veld naam" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "Enkel woord, geen spaties. (Liggende) streepjes toegestaan." + +#~ msgid "Field Type" +#~ msgstr "Soort veld" + +#~ msgid "Instructions" +#~ msgstr "Instructies" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Toelichting voor gebruikers. Wordt getoond bij invullen van het veld." + +#~ msgid "Required?" +#~ msgstr "Verplicht?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Veld-attributen" + +#~ msgid "width" +#~ msgstr "Breedte" + +#~ msgid "class" +#~ msgstr "class" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "Veld sluiten" + +#~ msgid "Order" +#~ msgstr "Volgorde" + +#~ msgid "Key" +#~ msgstr "Sleutel" + +#~ msgid "Type" +#~ msgstr "Soort" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Geen velden. Klik op + Nieuw veld button om je eerste " +#~ "veld te maken." + +#~ msgid "+ Add Field" +#~ msgstr "+ Nieuw veld" + +#~ msgid "Rules" +#~ msgstr "Regels" + +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "Maak regels aan om te bepalen op welk edit screen jouw extra velden " +#~ "verschijnen" + +#~ msgid "Style" +#~ msgstr "Stijl" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Standaard (WordPress metabox)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Naadloos (zonder WordPress metabox)" + +#~ msgid "Position" +#~ msgstr "Positie" + +#~ msgid "High (after title)" +#~ msgstr "Hoog (onder titel)" + +#~ msgid "Normal (after content)" +#~ msgstr "Normaal (onder tekstverwerker)" + +#~ msgid "Side" +#~ msgstr "Zijkant" + +#~ msgid "Label placement" +#~ msgstr "Label positionering" + +#~ msgid "Top aligned" +#~ msgstr "Boven velden" + +#~ msgid "Left aligned" +#~ msgstr "Links naast velden" + +#~ msgid "Instruction placement" +#~ msgstr "Instructie positionering" + +#~ msgid "Below labels" +#~ msgstr "Onder label" + +#~ msgid "Below fields" +#~ msgstr "Onder veld" + +#~ msgid "Order No." +#~ msgstr "Volgorde nummer" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "Groepen met een lage volgorde worden als eerst getoond" + +#~ msgid "Shown in field group list" +#~ msgstr "Toon in groeplijst" + +#~ msgid "Hide on screen" +#~ msgstr "Verberg elementen" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Selecteer elementen om te verbergen op het wijzig scherm." + +#~ 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 "" +#~ "Indien meerdere groepen op het bewerk scherm worden getoond, komt de " +#~ "groep met de laagste volgorde als eerste." + +#~ msgid "Permalink" +#~ msgstr "Permalink" + +#~ msgid "Content Editor" +#~ msgstr "Content editor" + +#~ msgid "Excerpt" +#~ msgstr "Samenvatting" + +#~ msgid "Discussion" +#~ msgstr "Reageren" + +#~ msgid "Comments" +#~ msgstr "Reacties" + +#~ msgid "Revisions" +#~ msgstr "Revisies" + +#~ msgid "Slug" +#~ msgstr "Slug" + +#~ msgid "Author" +#~ msgstr "Auteur" + +#~ msgid "Format" +#~ msgstr "Format" + +#~ msgid "Page Attributes" +#~ msgstr "Pagina-attributen" + +#~ msgid "Featured Image" +#~ msgstr "Uitgelichte afbeelding" + +#~ msgid "Categories" +#~ msgstr "Categorieën" + +#~ msgid "Tags" +#~ msgstr "Tags" + +#~ msgid "Send Trackbacks" +#~ msgstr "Trackbacks verzenden" + +#~ msgid "Show this field group if" +#~ msgstr "Toon deze groep als" + +#~ msgid "Upgrade Sites" +#~ msgstr "Upgrade websites" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields database upgrade" + +#, php-format +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click %s." +#~ msgstr "" +#~ "Er is een database upgrade nodig voor de volgende websites. Controleer " +#~ "degene die je wilt updaten en klik %s." + +#~ msgid "Site" +#~ msgstr "Website" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Website vereist een database upgrade van %s naar %s" + +#~ msgid "Site is up to date" +#~ msgstr "Website is up-to-date" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Database upgrade afgerond. Terug naar netwerk dashboard" + +#~ 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 aan te raden om eerst een backup van de database te maken voordat " +#~ "je de update uitvoert. Weet je zeker dat je de update nu wilt uitvoeren?" + +#~ msgid "Upgrade complete" +#~ msgstr "Upgrade afgerond" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Bezig met upgraden naar versie %s" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Database upgrade vereist" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Bedankt voor het updaten naar %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Voordat je aan de slag kunt met de geweldige nieuwe functies, is een " +#~ "database update vereist." + +#, php-format +#~ msgid "" +#~ "Please also ensure any premium add-ons (%s) have first been updated to " +#~ "the latest version." +#~ msgstr "" +#~ "Zorg ervoor dat elke premium add-ons (%s) eerst zijn bijgewerkt naar de " +#~ "laatste versie." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Lezen van upgrade taken…" + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "Database upgrade afgerond. Bekijk wat nieuw is" + +#~ msgid "Download & Install" +#~ msgstr "Download & installeer" + +#~ msgid "Installed" +#~ msgstr "Geïnstalleerd" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Welkom bij Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Bedankt voor het updaten! ACF %s is groter dan ooit tevoren. We hopen dat " +#~ "je tevreden bent." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Een verbeterde extra veld beleving" + +#~ msgid "Improved Usability" +#~ msgstr "Gebruikersvriendelijker" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Inclusief de populaire Select2 bibliotheek, die zowel " +#~ "gebruikersvriendelijker als sneller werkt bij velden als post object, " +#~ "pagina link, taxonomy en selecteer." + +#~ msgid "Improved Design" +#~ msgstr "Verbeterd design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Vele velden hebben een make-over gekregen. Nu oogt ACF beter dan ooit! " +#~ "Merkwaardige verschillen vindt je onder andere terug bij de galerij, " +#~ "relatie en oEmbed velden!" + +#~ msgid "Improved Data" +#~ msgstr "Verbeterde data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Het herontwerp van de dataverwerking zorgt ervoor dat velden los van hun " +#~ "hoofdvelden kunnen functioneren. Hiermee wordt het mogelijk om velden te " +#~ "drag-and-droppen tussen hoofdvelden." + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Vaarwel Add-ons. Hallo PRO!" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "We veranderen de manier waarop premium functies worden geleverd, op een " +#~ "gave manier!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle 4 de premium add-ons zijn samengevoegd tot een PRO " +#~ "versie van ACF. Er zijn zowel persoonlijke als developer licenties " +#~ "verkrijgbaar tegen een aantrekkelijke prijs!" + +#~ msgid "Powerful Features" +#~ msgstr "Krachtige functies" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO beschikt over krachtige velden en functies zoals: herhaalbare " +#~ "velden, flexibile content layouts, een interactieve fotogalerij veld en " +#~ "de mogelijkheid om optie pagina's aan te maken!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Lees meer over de ACF PRO functionaliteiten." + +#~ msgid "Easy Upgrading" +#~ msgstr "Gemakkelijk upgraden" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Om upgraden gemakkelijk te maken kun je inloggen met je " +#~ "bestaande winkelaccount en een gratis versie van ACF PRO claimen!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "We hebben een speciale upgrade gids gemaakt om al je " +#~ "vraagstukken te beantwoorden. Indien je een uitgebreidere vraag hebt, kun " +#~ "je contact opnemen met de helpdesk (Engelstalig)." + +#~ msgid "Under the Hood" +#~ msgstr "Onder de motorkap" + +#~ msgid "Smarter field settings" +#~ msgstr "Slimmere veld instellingen" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF slaat velden als individuele post objecten op" + +#~ msgid "More AJAX" +#~ msgstr "Meer AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Steeds meer velden maken gebruik van AJAX gestuurde zoekopdrachten. Dit " +#~ "maakt het laden een stuk sneller" + +#~ msgid "Local JSON" +#~ msgstr "Local JSON" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Het automatisch exporteren naar JSON maakt alles een stuk sneller" + +#~ msgid "Better version control" +#~ msgstr "Betere versie controles" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nieuw is het automatisch exporteren naar JSON. Dit voorkomt problemen " +#~ "tijdens het upgraden van ACF." + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML is vervangen door JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "" +#~ "Importeren / Exporteren gaat nu via JSON. Indien gewenst kan er XML " +#~ "worden gebruikt" + +#~ msgid "New Forms" +#~ msgstr "Nieuwe formulieren" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Velden kunnen nu worden toegewezen aan reacties, widgets en " +#~ "gebruikersformulieren!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Een nieuw veld voor het embedden van content is toegevoegd" + +#~ msgid "New Gallery" +#~ msgstr "Nieuwe galerij" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Het galerij veld heeft een complete facelift ondergaan" + +#~ msgid "New Settings" +#~ msgstr "Nieuwe instellingen" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Nieuwe groep instellingen zijn toegevoegd om label en instructies toe te " +#~ "voegen" + +#~ msgid "Better Front End Forms" +#~ msgstr "Betere front-end formulieren" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() kan nu posts aanmaken/toevoegen na goedkeuring" + +#~ msgid "Better Validation" +#~ msgstr "Betere validatie" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Formulier validatie gaat nu via PHP + AJAX. Indien gewenst kan dit ook " +#~ "via JS" + +#~ msgid "Relationship Field" +#~ msgstr "Relatie veld" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nieuwe relatieveld instellingen voor filters (Zoeken, Post Type en " +#~ "Taxonomy)" + +#~ msgid "Moving Fields" +#~ msgstr "Velden verplaatsen" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Nieuwe veld groep functionaliteiten laat je velden tussen groepen " +#~ "verplaatsen." + +#~ msgid "Page Link" +#~ msgstr "Pagina link" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nieuwe archief groep in pagina_link veld" + +#~ msgid "Better Options Pages" +#~ msgstr "Verbeterde optie pagina's" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "De opties pagina's kunnen nu worden voorzien van zowel hoofd als sub-" +#~ "pagina's" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "" +#~ "Wij denken dat u de wijzigingen en vernieuwingen zult waarderen in versie " +#~ "%s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exporteer groep(en) naar PHP" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "De volgende code kun je integreren in je thema. Door de groep(en) te " +#~ "integreren verhoog je de laadsnelheid. Kopieer en plak deze in code in " +#~ "functions.php, of maak een nieuw PHP bestand aan." + +#~ msgid "Select Field Groups" +#~ msgstr "Selecteer groepen" + +#~ msgid "Export Field Groups" +#~ msgstr "Exporteer groepen" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Selecteer de groepen die je wilt exporteren. Maak vervolgens de keuze om " +#~ "de groepen te downloaden als JSON bestand, of genereer de export code in " +#~ "PHP formaat. De PHP export code kun je integreren in je thema." + +#~ msgid "Download export file" +#~ msgstr "Download export bestand" + +#~ msgid "Generate export code" +#~ msgstr "Genereer export code" + +#~ msgid "Import Field Groups" +#~ msgstr "Importeer groepen" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Selecteer het Advanced Custom Fields JSON bestand die je wilt importeren. " +#~ "Klik op de importeer button om het importeren te starten." + +#~ msgid "Select File" +#~ msgstr "Selecteer bestand" + +#~ msgid "Import" +#~ msgstr "Importeer" + +#~ msgid "Thumbnail" +#~ msgstr "Thumbnail" + +#~ msgid "Medium" +#~ msgstr "Gemiddeld" + +#~ msgid "Large" +#~ msgstr "Groot" + +#~ msgid "Full Size" +#~ msgstr "Volledige grootte" + +#~ msgid "Parent" +#~ msgstr "Hoofd" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Afbeelding breedte moet tenminste %dpx zijn." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Afbeelding mag niet breder zijn dan %dpx." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Afbeelding hoogte moet tenminste %dpx zijn." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Afbeelding mag niet hoger zijn dan %dpx." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Bestandsgrootte moet tenminste %s zijn." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "Bestand mag niet groter zijn dan %s." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Bestandstype moet %s zijn." + +#~ msgid "Basic" +#~ msgstr "Basis" + +#~ msgid "Content" +#~ msgstr "Inhoud" + +#~ msgid "Choice" +#~ msgstr "Keuze" + +#~ msgid "Relational" +#~ msgstr "Relatie" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Field type does not exist" +#~ msgstr "Veld type bestaat niet" + +#~ msgid "Unknown" +#~ msgstr "Onbekend" + +#~ msgid "Button Group" +#~ msgstr "Button groep" + +#~ msgid "Choices" +#~ msgstr "Keuzes" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Per regel een keuze" + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "" +#~ "Om meer controle te krijgen over de keuzes, kun je de naam en het label " +#~ "van elkaar scheiden. Dit doe je op de volgende manier:" + +#~ msgid "red : Red" +#~ msgstr "rood : Rood" + +#~ msgid "Allow Null?" +#~ msgstr "Mag leeg zijn?" + +#~ msgid "Default Value" +#~ msgstr "Standaard waarde" + +#~ msgid "Appears when creating a new post" +#~ msgstr "" +#~ "Vooraf ingevulde waarde die te zien is tijdens het aanmaken van een " +#~ "nieuwe post" + +#~ msgid "Horizontal" +#~ msgstr "Horizontaal" + +#~ msgid "Vertical" +#~ msgstr "Verticaal" + +#~ msgid "Return Value" +#~ msgstr "Output weergeven als" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Bepaal hier de output weergave" + +#~ msgid "Value" +#~ msgstr "Waarde" + +#~ msgid "Both (Array)" +#~ msgstr "Beide (Array)" + +#~ msgid "Checkbox" +#~ msgstr "Checkbox" + +#~ msgid "Toggle All" +#~ msgstr "Selecteer alle" + +#~ msgid "Add new choice" +#~ msgstr "Nieuwe keuze" + +#~ msgid "Allow Custom" +#~ msgstr "Eigen invoer toestaan" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "‘Eigen invoer’ waarden toestaan" + +#~ msgid "Save Custom" +#~ msgstr "Eigen invoer opslaan" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "Sla ‘eigen invoer’ waarden op als veld keuzes" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Per regel de naam van een keuze" + +#~ msgid "Toggle" +#~ msgstr "Switch" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "" +#~ "Voeg een extra checkbox toe aan het begin om alle keuzes te selecteren" + +#~ msgid "Color Picker" +#~ msgstr "Kleurprikker" + +#~ msgid "Clear" +#~ msgstr "Wissen" + +#~ msgid "Default" +#~ msgstr "Standaard waarde" + +#~ msgid "Select Color" +#~ msgstr "Selecteer kleur" + +#~ msgid "Current Color" +#~ msgstr "Huidige kleur" + +#~ msgid "Date Picker" +#~ msgstr "Datumprikker" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Gereed" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Vandaag" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Volgende" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Vorige" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "Wk " + +#~ msgid "Display Format" +#~ msgstr "Weergeven als" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "De weergave tijdens het aanmaken/bewerken van een post" + +#~ msgid "Custom:" +#~ msgstr "Eigen invoer:" + +#~ msgid "Save Format" +#~ msgstr "Indeling opslaan" + +#~ msgid "The format used when saving a value" +#~ msgstr "Het formaat bij opslaan van waarde" + +#~ msgid "The format returned via template functions" +#~ msgstr "De weergave in het thema" + +#~ msgid "Week Starts On" +#~ msgstr "Week start op" + +#~ msgid "Date Time Picker" +#~ msgstr "Datum tijd picker" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Kies tijd" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Tijd" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Uur" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minuut" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Seconde" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Milliseconde" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Microseconde" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Tijdzone" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Nu" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Gereed" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Selecteer" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "A" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "P" + +#~ msgid "Email" +#~ msgstr "E-mail" + +#~ msgid "Placeholder Text" +#~ msgstr "Plaatsvervangende tekst" + +#~ msgid "Appears within the input" +#~ msgstr "Informatie die verschijnt in het veld (verdwijnt zodra je typt)" + +#~ msgid "Prepend" +#~ msgstr "Voorvoegsel" + +#~ msgid "Appears before the input" +#~ msgstr "Informatie die verschijnt voor het veld" + +#~ msgid "Append" +#~ msgstr "Navoegsel" + +#~ msgid "Appears after the input" +#~ msgstr "Informatie die verschijnt na het veld" + +#~ msgid "File" +#~ msgstr "Bestand" + +#~ msgid "Edit File" +#~ msgstr "Bewerk bestand" + +#~ msgid "Update File" +#~ msgstr "Update bestand" + +#~ msgid "Uploaded to this post" +#~ msgstr "Geüpload naar deze post" + +#~ msgid "File name" +#~ msgstr "Bestandsnaam" + +#~ msgid "Add File" +#~ msgstr "Voeg bestand toe" + +#~ msgid "File Array" +#~ msgstr "Bestand Array" + +#~ msgid "File URL" +#~ msgstr "Bestands-URL" + +#~ msgid "File ID" +#~ msgstr "Bestands-ID" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Bepaal welke bestanden geüpload mogen worden" + +#~ msgid "Google Map" +#~ msgstr "Google Map" + +#~ msgid "Locating" +#~ msgstr "Locatie wordt gezocht..." + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Excuses, deze browser ondersteund geen geolocatie" + +#~ msgid "Clear location" +#~ msgstr "Wis locatie" + +#~ msgid "Find current location" +#~ msgstr "Zoek huidige locatie" + +#~ msgid "Search for address..." +#~ msgstr "Zoek een adres..." + +#~ msgid "Center" +#~ msgstr "Standaard locatie" + +#~ msgid "Center the initial map" +#~ msgstr "Bepaal de standaard locatie van de kaart" + +#~ msgid "Zoom" +#~ msgstr "Inzoomen" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Bepaal het zoom niveau van de kaart" + +#~ msgid "Customise the map height" +#~ msgstr "Wijzig de hoogte van de kaart" + +#~ msgid "Group" +#~ msgstr "Groep" + +#~ msgid "Image" +#~ msgstr "Afbeelding" + +#~ msgid "Select Image" +#~ msgstr "Selecteer afbeelding" + +#~ msgid "Edit Image" +#~ msgstr "Bewerk afbeelding" + +#~ msgid "Update Image" +#~ msgstr "Update afbeelding" + +#~ msgid "All images" +#~ msgstr "Alle afbeeldingen" + +#~ msgid "No image selected" +#~ msgstr "Geen afbeelding geselecteerd" + +#~ msgid "Add Image" +#~ msgstr "Voeg afbeelding toe" + +#~ msgid "Shown when entering data" +#~ msgstr "Voorbeeld wordt na het uploaden/selecteren getoond" + +#~ msgid "Link" +#~ msgstr "Link" + +#~ msgid "Select Link" +#~ msgstr "Selecteer link" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "Opent in een nieuw venster/tab" + +#~ msgid "Link Array" +#~ msgstr "Link array" + +#~ msgid "Link URL" +#~ msgstr "Link URL" + +#~ msgid "Message" +#~ msgstr "Bericht" + +#~ msgid "New Lines" +#~ msgstr "Nieuwe regels" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Bepaal wat er gebeurt met een nieuwe tekstregel" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Automatisch paragrafen toevoegen" + +#~ msgid "Automatically add <br>" +#~ msgstr "Automatisch een nieuwe regel maken <br />" + +#~ msgid "No Formatting" +#~ msgstr "Niets ondernemen" + +#~ msgid "Escape HTML" +#~ msgstr "Escape HTML" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "" +#~ "Toestaan HTML markup te tonen als tekst in plaats van het te renderen" + +#~ msgid "Number" +#~ msgstr "Nummer" + +#~ msgid "Minimum Value" +#~ msgstr "Minimale waarde" + +#~ msgid "Maximum Value" +#~ msgstr "Maximale waarde" + +#~ msgid "Step Size" +#~ msgstr "Stapgrootte" + +#~ msgid "Value must be a number" +#~ msgstr "Waarde moet numeriek zijn" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Waarde moet gelijk of meer dan zijn %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Waarde moet gelijk of minder zijn dan %d" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "Vul URL in" + +#~ msgid "Error." +#~ msgstr "Fout." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Geen embed mogelijkheid gevonden voor de gewenste URL." + +#~ msgid "Embed Size" +#~ msgstr "Embed formaat" + +#~ msgid "Archives" +#~ msgstr "Archieven" + +#~ msgid "Filter by Post Type" +#~ msgstr "Filter op post type" + +#~ msgid "All post types" +#~ msgstr "Alle post types" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "Filter op taxonomy" + +#~ msgid "All taxonomies" +#~ msgstr "Alle taxonomieën" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Archief URL’s toestaan" + +#~ msgid "Select multiple values?" +#~ msgstr "Meerdere selecties mogelijk?" + +#~ msgid "Password" +#~ msgstr "Wachtwoord" + +#~ msgid "Post Object" +#~ msgstr "Post object" + +#~ msgid "Post ID" +#~ msgstr "Post ID" + +#~ msgid "Radio Button" +#~ msgstr "Radio button" + +#~ msgid "Other" +#~ msgstr "Anders namelijk" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "Voeg de keuze \"anders” toe voor eigen invulling" + +#~ msgid "Save Other" +#~ msgstr "Anders namelijk waarde toevoegen aan keuzes?" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "" +#~ "Voeg de ingevulde \"anders namelijk\" waarde toe aan de keuzelijst na het " +#~ "opslaan van een post" + +#~ msgid "Range" +#~ msgstr "Reeks" + +#~ msgid "Relationship" +#~ msgstr "Relatie" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimaal aantal bereikt ( {min} stuks )" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Maximum aantal waarden bereikt ( {max} waarden )" + +#~ msgid "Loading" +#~ msgstr "Laden" + +#~ msgid "No matches found" +#~ msgstr "Geen gelijkenis gevonden" + +#~ msgid "Select post type" +#~ msgstr "Selecteer post type" + +#~ msgid "Select taxonomy" +#~ msgstr "Selecteer taxonomy" + +#~ msgid "Search..." +#~ msgstr "Zoeken..." + +#~ msgid "Filters" +#~ msgstr "Filters" + +#~ msgid "Post Type" +#~ msgstr "Post type" + +#~ msgid "Taxonomy" +#~ msgstr "Taxonomy" + +#~ msgid "Elements" +#~ msgstr "Elementen" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Selecteer de elementen die moeten worden getoond in elk resultaat" + +#~ msgid "Minimum posts" +#~ msgstr "Minimale berichten" + +#~ msgid "Maximum posts" +#~ msgstr "Maximum aantal selecties" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s verplicht tenminste %s selectie" +#~ msgstr[1] "%s verplicht tenminste %s selecties" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Selecteer" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "Eén resultaat beschikbaar, toets enter om te selecteren." + +#, php-format +#~ msgctxt "Select2 JS matches_n" +#~ msgid "%d results are available, use up and down arrow keys to navigate." +#~ msgstr "" +#~ "%d resultaten beschikbaar, gebruik de pijltjes toetsen om te navigeren." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Geen resultaten" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Vul 1 of meer tekens in" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Vul %d of meer tekens in" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Verwijderd 1 teken" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Verwijder %d tekens" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Je kunt maar 1 item selecteren" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Je kunt maar %d items selecteren" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Laad meer resultaten…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Zoeken…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Laden mislukt" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Selecteer" + +#~ msgid "Stylised UI" +#~ msgstr "Uitgebreide weergave" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "AJAX gebruiken om keuzes te laden?" + +#~ msgid "Specify the value returned" +#~ msgstr "Bepaal hier de output weergave" + +#~ msgid "Separator" +#~ msgstr "Scheidingsteken" + +#~ msgid "Tab" +#~ msgstr "Tab" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Deze tab zal niet correct worden weergegeven in een herhalende tabel" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "Gebruik tabbladen om velden in het edit screen te organiseren." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle velden onder dit \"Tab veld\" zullen worden toegevoegd aan deze tab. " +#~ "Het ingevulde \"Veld label\" dient als benaming van de tab." + +#~ msgid "Placement" +#~ msgstr "Plaatsing" + +#~ msgid "End-point" +#~ msgstr "Eindpunt" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "Gebruik dit veld als eindpunt en startpunt van een groep tabbladen" + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Geen %s" + +#~ msgid "None" +#~ msgstr "Geen" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Selecteer de weer te geven taxonomie " + +#~ msgid "Appearance" +#~ msgstr "Uiterlijk" + +#~ msgid "Select the appearance of this field" +#~ msgstr "Selecteer het uiterlijk van dit veld" + +#~ msgid "Multiple Values" +#~ msgstr "Meerdere waardes" + +#~ msgid "Multi Select" +#~ msgstr "Multi-selecteer" + +#~ msgid "Single Value" +#~ msgstr "Enkele waarde" + +#~ msgid "Radio Buttons" +#~ msgstr "Radio buttons" + +#~ msgid "Create Terms" +#~ msgstr "Voorwaarden toevoegen" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "" +#~ "Toestaan dat nieuwe voorwaarden worden aangemaakt terwijl je bewerkt" + +#~ msgid "Save Terms" +#~ msgstr "Voorwaarden opslaan" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Koppel geselecteerde terms aan een post" + +#~ msgid "Load Terms" +#~ msgstr "Voorwaarden laden" + +#~ msgid "Load value from posts terms" +#~ msgstr "Waarde ophalen van posts terms" + +#~ msgid "Term Object" +#~ msgstr "Term object" + +#~ msgid "Term ID" +#~ msgstr "Term ID" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Gebruiker is niet in staat om nieuwe %s toe te voegen" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s bestaat al" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s toegevoegd" + +#~ msgid "Add" +#~ msgstr "Nieuwe" + +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Character Limit" +#~ msgstr "Karakter limiet" + +#~ msgid "Leave blank for no limit" +#~ msgstr "Laat leeg voor geen limiet" + +#~ msgid "Text Area" +#~ msgstr "Tekstvlak" + +#~ msgid "Rows" +#~ msgstr "Rijen" + +#~ msgid "Sets the textarea height" +#~ msgstr "Hoogte (in regels) voor dit tekstvlak" + +#~ msgid "Time Picker" +#~ msgstr "Tijd picker" + +#~ msgid "True / False" +#~ msgstr "Waar / niet waar" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Geeft tekst weer naast de checkbox" + +#~ msgid "On Text" +#~ msgstr "On tekst" + +#~ msgid "Text shown when active" +#~ msgstr "Tekst die verschijnt bij actief" + +#~ msgid "Off Text" +#~ msgstr "Off tekst" + +#~ msgid "Text shown when inactive" +#~ msgstr "Tekst die verschijnt bij inactief" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Value must be a valid URL" +#~ msgstr "Waarde moet een geldige URL zijn" + +#~ msgid "User" +#~ msgstr "Gebruiker" + +#~ msgid "Filter by role" +#~ msgstr "Filter op rol" + +#~ msgid "All user roles" +#~ msgstr "Alle rollen" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "Wysiwyg editor" + +#~ msgid "Visual" +#~ msgstr "Visueel" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Klik om TinyMCE te initialiseren" + +#~ msgid "Tabs" +#~ msgstr "Tabbladen" + +#~ msgid "Visual & Text" +#~ msgstr "Visueel & tekst" + +#~ msgid "Visual Only" +#~ msgstr "Alleen visueel" + +#~ msgid "Text Only" +#~ msgstr "Alleen tekst" + +#~ msgid "Toolbar" +#~ msgstr "Toolbar" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Toon media upload buttons?" + +#~ msgid "Delay initialization?" +#~ msgstr "Vertraag initialisatie?" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "TinyMCE wordt niet geïnitialiseerd tot veld is aangeklikt" + +#~ msgid "Validate Email" +#~ msgstr "Valideer e-mail" + +#~ msgid "Post updated" +#~ msgstr "Bericht bijgewerkt" + +#~ msgid "Spam Detected" +#~ msgstr "Spam gedetecteerd" + +#~ msgid "Expand Details" +#~ msgstr "Toon details" + +#~ msgid "Collapse Details" +#~ msgstr "Verberg details" + +#~ msgid "Validation successful" +#~ msgstr "Validatie geslaagd" + +#~ msgid "Validation failed" +#~ msgstr "Validatie mislukt" + +#~ msgid "1 field requires attention" +#~ msgstr "1 veld heeft aandacht nodig" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d velden hebben aandacht nodig" + +#~ msgid "Restricted" +#~ msgstr "Verplicht" + +#~ msgid "Are you sure?" +#~ msgstr "Ben je zeker?" + +#~ msgid "Cancel" +#~ msgstr "Annuleer" + +#~ msgid "Post" +#~ msgstr "Bericht" + +#~ msgid "Page" +#~ msgstr "Pagina" + +#~ msgid "Forms" +#~ msgstr "Formulieren" + +#~ msgid "Attachment" +#~ msgstr "Bijlage" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Alle %s formaten" + +#~ msgid "Comment" +#~ msgstr "Reactie" + +#~ msgid "Current User Role" +#~ msgstr "Huidige gebruikersrol" + +#~ msgid "Super Admin" +#~ msgstr "Super beheerder" + +#~ msgid "Current User" +#~ msgstr "Huidige gebruiker" + +#~ msgid "Logged in" +#~ msgstr "Ingelogd" + +#~ msgid "Viewing front end" +#~ msgstr "Bekijk voorkant" + +#~ msgid "Viewing back end" +#~ msgstr "Bekijk achterkant" + +#~ msgid "Menu Item" +#~ msgstr "Menu item" + +#~ msgid "Menu" +#~ msgstr "Menu" + +#~ msgid "Menu Locations" +#~ msgstr "Menu locaties" + +#~ msgid "Menus" +#~ msgstr "Menu’s " + +#~ msgid "Page Parent" +#~ msgstr "Pagina hoofd" + +#~ msgid "Page Template" +#~ msgstr "Pagina template" + +#~ msgid "Default Template" +#~ msgstr "Standaard template" + +#~ msgid "Page Type" +#~ msgstr "Pagina type" + +#~ msgid "Front Page" +#~ msgstr "Hoofdpagina" + +#~ msgid "Posts Page" +#~ msgstr "Berichten pagina" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Hoofdpagina (geen hoofd)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Hoofdpagina (bevat subitems)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Subpagina" + +#~ msgid "Post Category" +#~ msgstr "Bericht categorie" + +#~ msgid "Post Format" +#~ msgstr "Bericht format" + +#~ msgid "Post Status" +#~ msgstr "Status" + +#~ msgid "Post Taxonomy" +#~ msgstr "Bericht taxonomy" + +#~ msgid "Post Template" +#~ msgstr "Bericht template" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomy term" + +#~ msgid "User Form" +#~ msgstr "Gebruiker formulier" + +#~ msgid "Add / Edit" +#~ msgstr "Toevoegen / Bewerken" + +#~ msgid "Register" +#~ msgstr "Registreer" + +#~ msgid "User Role" +#~ msgstr "Rol" + +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Bewerk" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Bijwerken" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s waarde is verplicht" + +#~ msgid "remove {layout}?" +#~ msgstr "verwijder {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dit veld vereist op zijn minst {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Dit veld heeft een limiet van {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximum {label} limiet bereikt ({max} {identifier})" + +#, php-format +#~ 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 updates te ontvangen vul je op Updates pagina je " +#~ "licentiecode in. Nog geen licentiecode? Bekijk details & prijzen." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Disabled" +#~ msgstr "Inactief" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Inactief (%s)" +#~ msgstr[1] "Inactief (%s)" + +#~ msgid "Getting Started" +#~ msgstr "Aan de slag" + +#~ msgid "Field Types" +#~ msgstr "Veld soorten" + +#~ msgid "Functions" +#~ msgstr "Functies" + +#~ msgid "Actions" +#~ msgstr "Acties" + +#~ msgid "'How to' guides" +#~ msgstr "Veelgestelde vragen" + +#~ msgid "Tutorials" +#~ msgstr "Tutorials" + +#~ msgid "FAQ" +#~ msgstr "FAQ" + +#~ msgid "Created by" +#~ msgstr "Ontwikkeld door" + +#~ msgid "Error loading update" +#~ msgstr "Fout bij laden van update" + +#~ msgid "Error" +#~ msgstr "Fout" + +#~ msgid "See what's new" +#~ msgstr "Bekijk alle vernieuwingen en verbeteringen van" + +#~ msgid "eg. Show extra content" +#~ msgstr "bijv. Toon op homepage" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "1 veld vraagt om aandacht" +#~ msgstr[1] "%d velden vragen om aandacht" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Verbindingsfout. Onze excuses, probeer het later nog eens" + +#~ msgid "See what's new in" +#~ msgstr "Bekijk alle vernieuwingen en verbeteringen van" + +#~ msgid "version" +#~ msgstr "versie" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "Gelukt!. De importeer tool heeft %s velden en %s groepen " +#~ "geïmporteerd" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Waarschuwing. De importeer functie heeft %s bestaande veldgroepen " +#~ "gedetecteerd en heeft deze genegeerd: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Upgrade ACF" + +#~ msgid "Upgrade" +#~ msgstr "Upgrade" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "De volgende website vereist een DB upgrade. Selecteer degene die u wilt " +#~ "updaten en klik op “Upgrade database”." + +#~ msgid "Upgrading data to" +#~ msgstr "Upgraden van data naar " + +#~ msgid "Done" +#~ msgstr "Gereed" + +#~ msgid "Today" +#~ msgstr "Vandaag" + +#~ msgid "Show a different month" +#~ msgstr "Toon een andere maand" + +#~ msgid "Return format" +#~ msgstr "Output weergeven als" + +#~ msgid "uploaded to this post" +#~ msgstr "geüpload naar deze post" + +#~ msgid "File Name" +#~ msgstr "Bestandsnaam" + +#~ msgid "File Size" +#~ msgstr "Bestandsformaat" + +#~ msgid "No File selected" +#~ msgstr "Geen bestand geselecteerd" + +#~ msgid "Save Options" +#~ msgstr "Opties bijwerken" + +#~ msgid "License" +#~ msgstr "Licentie" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Voor het verkrijgen van updates is een licentiesleutel vereist. Indien je " +#~ "niet beschikt over een licentiecode kun je deze aanschaffen, zie:" + +#~ msgid "details & pricing" +#~ msgstr "details & kosten" + +#~ 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 "" +#~ "Voor het verkrijgen van updates is een licentiesleutel vereist. Vul uw " +#~ "licentiecode in op de Updates pagina, of schaf een " +#~ "licentiecode aan via details & prijzen." + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Sleep om te sorteren" + +#~ msgid "Add new %s " +#~ msgstr "Nieuwe %s " + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Tekst wordt automatisch voorzien van paragrafen door de wp functie: " + +#~ msgid "Warning" +#~ msgstr "Waarschuwing" + +#~ msgid "Hide / Show All" +#~ msgstr "Verberg / Toon alle" + +#~ msgid "Show Field Keys" +#~ msgstr "Toon veld sleutels" + +#~ msgid "Pending Review" +#~ msgstr "Wachtend op goedkeuring" + +#~ msgid "Draft" +#~ msgstr "Concept" + +#~ msgid "Future" +#~ msgstr "Toekomst" + +#~ msgid "Private" +#~ msgstr "Privé" + +#~ msgid "Revision" +#~ msgstr "Revisie" + +#~ msgid "Trash" +#~ msgstr "Afval" + +#~ msgid "Top Level Page (parent of 0)" +#~ msgstr "Hoofdpagina (ouder dan 0)" + +#~ msgid "Import / Export" +#~ msgstr "Importeer / Exporteer" + +#~ msgid "Logged in User Type" +#~ msgstr "Gebruikersrol" + +#~ msgid "Field groups are created in order
                              from lowest to highest" +#~ msgstr "Groepen worden gesorteerd van laag naar hoog." + +#~ msgid "Select items to hide them from the edit screen" +#~ msgstr "" +#~ "Selecteer elementen die verborgen worden op het edit screen" + +#~ 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 groepen verschijnen op een edit screen, zal de eerste " +#~ "groep worden gebruikt. (degene met het laagste volgorde nummer)" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exiting " +#~ "way!" +#~ msgstr "" +#~ "We hebben de premium mogelijkheden vernieuwd op een geweldige manier!" + +#~ msgid "ACF PRO Required" +#~ msgstr "ACF PRO verplicht" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "We hebben een probleem ontdekt die uw aandacht vereist: Deze website " +#~ "maakt gebruik van add-ons (%s) die niet compatible zijn met de huidige " +#~ "versie van ACF." + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Geen paniek! Je kunt gemakkelijk downgraden naar een vorige versie van " +#~ "ACF." + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Downgrade naar ACF v%s" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Ontdek waarom je niet zonder ACF PRO kunt" + +#~ msgid "Update Database" +#~ msgstr "Database updaten" + +#~ msgid "Data Upgrade" +#~ msgstr "Data geüpgrade" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Data is met succes geüpgraded." + +#~ msgid "Data is at the latest version." +#~ msgstr "Data beschikt over de laatste versie." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "1 verplicht veld is leeg" +#~ msgstr[1] "%s verplichte velden zijn leeg" + +#~ msgid "Controls how HTML tags are rendered" +#~ msgstr "Bepaal hoe HTML tags worden weergegeven" + +#~ msgid "No taxonomy filter" +#~ msgstr "Geen taxonomy filter" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Laad & sla termen op bij post" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Laad waarde aan de hand van de post termen en update de post termen bij " +#~ "het opslaan" + +#~ msgid "Custom field updated." +#~ msgstr "Extra veld bijgewerkt." + +#~ msgid "Custom field deleted." +#~ msgstr "Extra veld verwijderd." + +#~ msgid "Field group duplicated! Edit the new \"%s\" field group." +#~ msgstr "Groep gedupliceerd! Bewerk de nieuwe \"%s\" groep." + +#~ msgid "Import/Export" +#~ msgstr "Import/Export" + +#~ msgid "Column Width" +#~ msgstr "Kolom breedte" + +#~ msgid "Attachment Details" +#~ msgstr "Bijlage details" + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "Groepen hersteld naar revisie van %s" + +#~ msgid "No ACF groups selected" +#~ msgstr "Geen ACF groep geselecteerd" + +#~ msgid "Normal" +#~ msgstr "Normaal" + +#~ msgid "No Metabox" +#~ msgstr "Geen metabox" + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "" +#~ "Lees de documentatie, leer de functies kennen en ontdek tips & tricks " +#~ "voor jouw web project." + +#~ msgid "Visit the ACF website" +#~ msgstr "Bezoek de ACF website" + +#~ msgid "Vote" +#~ msgstr "Stem" + +#~ msgid "Follow" +#~ msgstr "Volg op Twitter" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "" +#~ "Validatie mislukt. Eén of meer velden hieronder zijn verplicht." + +#~ msgid "Add File to Field" +#~ msgstr "+ Bestand toevoegen aan veld" + +#~ msgid "Add Image to Field" +#~ msgstr "Add Image to Field" + +#~ msgid "Attachment updated" +#~ msgstr "Bijlage bijgewerkt." + +#~ msgid "Repeater field deactivated" +#~ msgstr "Repeater Field gedeactiveerd" + +#~ msgid "Gallery field deactivated" +#~ msgstr "Gallery field gedeactiveerd" + +#~ msgid "Repeater field activated" +#~ msgstr "Repeater field geactiveerd" + +#~ msgid "Options page activated" +#~ msgstr "Options page geactiveerd" + +#~ msgid "Flexible Content field activated" +#~ msgstr "Flexible Content field geactiveerd" + +#~ msgid "Gallery field activated" +#~ msgstr "Gallery field geactiveerd" + +#~ msgid "License key unrecognised" +#~ msgstr "Licentie code niet herkend" + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "" +#~ "Add-ons kun je activeren door een licentie code te kopen. Elke code kan " +#~ "gebruikt worden op meerdere websites." + +#~ msgid "Activation Code" +#~ msgstr "Activatie code" + +#~ msgid "Repeater Field" +#~ msgstr "Repeater Field" + +#~ msgid "Flexible Content Field" +#~ msgstr "Flexible Content Field" + +#~ msgid "Gallery Field" +#~ msgstr "Gallery Field" + +#~ msgid "Export Field Groups to XML" +#~ msgstr "Exporteer groepen naar XML" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "ACF maakt een .xml export bestand die compatibel is met de ingebouwde WP " +#~ "import plugin." + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "Geïmporteerde veld groepen verschijnen in de lijst van " +#~ "beheerbare veld groepen. Dit is handig voor het migreren van veld groepen " +#~ "tussen WP websites." + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "Selecteer veld groep(en) van van de lijst en klik \"Exporteer XML\"" + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "Sla de .xml file op wanneer er om gevraagd wordt" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "Navigeer naar Extra » Importeren en selecteer WordPress " + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "Installeer de WP import plugin als er naar wordt gevraagd" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "Upload en import je geëxporteerde .xml bestand" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "Selecteer je gebruiker en negeer import bijlages" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "Dat is het! Happy WordPressing" + +#~ msgid "Export XML" +#~ msgstr "Exporteer XML" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACF maakt de PHP code die je kan integreren in jouw thema." + +#~ msgid "Register Field Groups" +#~ msgstr "Registreer veld groepen" + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "Houd er rekening mee dat wanneer je veld groepen exporteert en " +#~ "registreert in dezelfde WP installatie, ze verschijnen als gedupliceerde " +#~ "velden in je edit screens. Om dit te verhelpen: verwijder de originele " +#~ "veld groepen naar de prullenbak of verwijder de code uit je functions.php " +#~ "bestand." + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "Selecteer veld groepen uit de lijst en klik \"Maak PHP\"" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Kopieer de gegenereerde PHP code" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Plak in je functions.php bestand" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "Om add-ons te activeren, bewerk en gebruik de code in de eerste regels." + +#~ msgid "Create PHP" +#~ msgstr "Maak PHP" + +#~ msgid "Back to settings" +#~ msgstr "Terug naar instellingen" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "Advanced Custom Fields instellingen" + +#~ msgid "requires a database upgrade" +#~ msgstr "vereist een database upgrade" + +#~ msgid "why?" +#~ msgstr "waarom?" + +#~ msgid "Please" +#~ msgstr "Graag" + +#~ msgid "backup your database" +#~ msgstr "backup maken van je database" + +#~ msgid "then click" +#~ msgstr "vervolgens klikken op" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "Verplaats gebruikers eigen velden van wp_options naar wp_usermeta" + +#~ msgid "No choices to choose from" +#~ msgstr "Geen keuzes om uit te kiezen" + +#~ msgid "Red" +#~ msgstr "Rood" + +#~ msgid "Blue" +#~ msgstr "Blauw" + +#~ msgid "blue : Blue" +#~ msgstr "blauw : Blauw" + +#~ msgid "File Updated." +#~ msgstr "Bestand bijgewerkt." + +#~ msgid "Media attachment updated." +#~ msgstr "Media bijlage bijgewerkt." + +#~ msgid "Add Selected Files" +#~ msgstr "Geselecteerde bestanden toevoegen" + +#~ msgid "+ Add Row" +#~ msgstr "+ Nieuwe regel" + +#~ msgid "Field Order" +#~ msgstr "Veld volgorde" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "" +#~ "Geen velden. Klik op \"+ Nieuw sub veld\" button om je eerste veld te " +#~ "maken." + +#~ msgid "Docs" +#~ msgstr "Documentatie" + +#~ msgid "Close Sub Field" +#~ msgstr "Sub veld sluiten" + +#~ msgid "+ Add Sub Field" +#~ msgstr "+ Nieuw sub veld" + +#~ msgid "Alternate Text" +#~ msgstr "Alternatieve tekst" + +#~ msgid "Thumbnail is advised" +#~ msgstr "Thumbnail wordt geadviseerd" + +#~ msgid "Image Updated" +#~ msgstr "Afbeelding bijgwerkt" + +#~ msgid "Grid" +#~ msgstr "Grid" + +#~ msgid "List" +#~ msgstr "Lijst" + +#~ msgid "No images selected" +#~ msgstr "Geen afbeeldingen geselecteerd" + +#~ msgid "1 image selected" +#~ msgstr "1 afbeelding geselecteerd" + +#~ msgid "{count} images selected" +#~ msgstr "{count} afbeeldingen geselecteerd" + +#~ msgid "Added" +#~ msgstr "Toegevoegd" + +#~ msgid "Image already exists in gallery" +#~ msgstr "Afbeelding bestaat al galerij" + +#~ msgid "Image Updated." +#~ msgstr "Afbeelding bijgewerkt." + +#~ msgid "Add selected Images" +#~ msgstr "Voeg geselecteerde afbeeldingen toe" + +#~ msgid "Repeater Fields" +#~ msgstr "Velden herhalen" + +#~ msgid "Field Instructions" +#~ msgstr "Veld instructies" + +#~ msgid "Table (default)" +#~ msgstr "Tabel (standaard)" + +#~ msgid "Define how to render html tags" +#~ msgstr "Bepaal hoe HTML tags worden omgezet" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Bepaal hoe HTML tags worden omgezet / nieuwe regels" + +#~ msgid "Run filter \"the_content\"?" +#~ msgstr "Gebruik filter \"the_content\"?" + +#~ msgid "Enable this filter to use shortcodes within the WYSIWYG field" +#~ msgstr "Activeer dit filter om shortcodes te gebruiken in het WYSIWYG veld" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "" +#~ "De datum wordt in deze indeling opgeslagen in de database en teruggegeven " +#~ "door de API" + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "\"yymmdd\" is de meest veelzijdige opslaan indeling. Lees meer op" + +#~ msgid "jQuery date formats" +#~ msgstr "jQuery datum format" + +#~ msgid "This format will be seen by the user when entering a value" +#~ msgstr "" +#~ "Deze indeling wordt gezien door de gebruiker wanneer datum wordt ingevuld" + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "" +#~ "\"dd/mm/yy\" of \"mm/dd/yy\" zijn de meest gebruikte indelingen. Lees " +#~ "meer op" + +#~ msgid "Page Specific" +#~ msgstr "Pagina specifiek" + +#~ msgid "Post Specific" +#~ msgstr "Bericht specifiek" + +#~ msgid "Taxonomy (Add / Edit)" +#~ msgstr "Taxonomy (Nieuwe / bewerk)" + +#~ msgid "Media (Edit)" +#~ msgstr "Media (Bewerk)" + +#~ msgid "match" +#~ msgstr "komt overeen met" + +#~ msgid "all" +#~ msgstr "allen" + +#~ msgid "of the above" +#~ msgstr "van hierboven" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "Ontgrendel opties add-on met een activatie code" + +#~ msgid "Add Fields to Edit Screens" +#~ msgstr "Voeg velden toe aan edit screen" + +#~ msgid "Navigate to the" +#~ msgstr "Ga naar de" + +#~ msgid "and select WordPress" +#~ msgstr "en selecteer WordPress" + +#~ msgid "eg. dd/mm/yy. read more about" +#~ msgstr "bijv. dd/mm/yyyy. Lees meer over" + +#~ msgid "" +#~ "Filter posts by selecting a post type
                              \n" +#~ "\t\t\t\tTip: deselect all post types to show all post type's posts" +#~ msgstr "" +#~ "Filter post type door te selecteren
                              \n" +#~ "\t\t\t\tTip: selecteer 'alles' om alle posts van alle post type te tonen" + +#~ msgid "Everything Fields deactivated" +#~ msgstr "Everything Fields gedeactiveerd" + +#~ msgid "Everything Fields activated" +#~ msgstr "Everything Fields geactiveerd" + +#~ msgid "Set to -1 for infinite" +#~ msgstr "Plaats -1 voor oneindig" + +#~ msgid "Row Limit" +#~ msgstr "Rij limiet" diff --git a/lang/pro/acf-nl_NL.po b/lang/pro/acf-nl_NL.po new file mode 100644 index 0000000..9277d53 --- /dev/null +++ b/lang/pro/acf-nl_NL.po @@ -0,0 +1,3270 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:09+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Derk Oosterveld \n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: pro/options-page.php:47 +msgid "Options" +msgstr "Opties" + +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Bijwerken" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Controleer op updates" + +#: pro/updates.php:561 +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-options-page.php:309 +msgid "Edit field group" +msgstr "Bewerk 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Updates" + +#: pro/admin/admin-updates.php:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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 "Kloon" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Velden" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Toon" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Naadloos (vervangt dit veld met de geselecteerde velden)" + +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Kies de gebruikte stijl bij het renderen van de geselecteerde velden" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Blok" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabel" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Rij" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Labels worden getoond als %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefix veld labels" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Waarden worden opgeslagen als %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefix veld namen" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Onbekend veld" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(geen titel)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Onbekend groep" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alle velden van %s veld groep" + +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexibele content" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layout" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layouts" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} beschikbaar (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} verplicht (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibele content vereist minimaal 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Sleep om te sorteren" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Layout toevoegen" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Klik om in/uit te klappen" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Herorder layout" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Herorder" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Verwijder layout" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Verwijder" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Dupliceer layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Dupliceer" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Nieuwe layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Nieuwe groep" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Label" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Naam" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Button label" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Minimale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maximale layouts" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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 "Galerij" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Voeg afbeelding toe aan galerij" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maximale selectie bereikt" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Lengte" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Bewerk" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Verwijder" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Titel" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Onderschrift" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alt tekst" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Omschrijving" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Afbeelding(en) toevoegen" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Acties" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sorteer op datum geüpload" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sorteer op datum aangepast" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sorteer op titel" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Keer volgorde om" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Sluiten" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Output weergeven als" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Afbeelding Array" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Afbeelding URL" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Afbeelding ID" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Afmeting voorbeeld" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Invoegen" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Geef aan waar nieuwe bijlagen worden toegevoegd" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Toevoegen aan het einde" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Toevoegen aan het begin" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Bibliotheek" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "" +"Limiteer de keuze van bestanden. Kies voor de gehele media bibliotheek, of " +"alleen de bestanden die geüpload zijn naar de post." + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Alles" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Geüpload naar post" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimale selectie" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maximale selectie" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimaal" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Bepaal welke afbeeldingen geüpload mogen worden" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Breedte" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Hoogte" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Bestandsgrootte" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maximaal" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Toegestane bestandstypen" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "Met komma's gescheiden lijst. Laat leeg voor alle types." + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Herhalen" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minimum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maximum aantal rijen bereikt ({max} rijen)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Sub-velden" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Ingeklapt" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Minimum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Maximum aantal rijen" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Nieuwe regel" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Verwijder regel" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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 "Opties pagina" + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Update informatie" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Huidige versie" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Nieuwste versie" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Update beschikbaar" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nee" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Ja" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "Vul uw licentiecode hierboven in om updates te ontvangen" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Update plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Wat is er nieuw?" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Upgrade opmerking" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Field Groups" +#~ msgstr "Groepen" + +#~ msgid "Field Group" +#~ msgstr "Nieuwe groep" + +#~ msgid "Add New Field Group" +#~ msgstr "Nieuwe groep toevoegen" + +#~ msgid "Edit Field Group" +#~ msgstr "Bewerk groep" + +#~ msgid "New Field Group" +#~ msgstr "Nieuwe groep" + +#~ msgid "View Field Group" +#~ msgstr "Bekijk groep" + +#~ msgid "Search Field Groups" +#~ msgstr "Zoek groepen" + +#~ msgid "No Field Groups found" +#~ msgstr "Geen groepen gevonden" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Geen groepen gevonden in de prullenbak" + +#~ msgid "Field" +#~ msgstr "Veld" + +#~ msgid "Add New Field" +#~ msgstr "Nieuw veld" + +#~ msgid "Edit Field" +#~ msgstr "Bewerk veld" + +#~ msgid "New Field" +#~ msgstr "Nieuw veld" + +#~ msgid "View Field" +#~ msgstr "Nieuw veld" + +#~ msgid "Search Fields" +#~ msgstr "Zoek velden" + +#~ msgid "No Fields found" +#~ msgstr "Geen velden gevonden" + +#~ msgid "No Fields found in Trash" +#~ msgstr "Geen velden gevonden in de prullenbak" + +#~ msgid "Inactive" +#~ msgstr "Niet actief" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inactief (%s)" +#~ msgstr[1] "Inactief (%s)" + +#~ msgid "Field group updated." +#~ msgstr "Groep bijgewerkt." + +#~ msgid "Field group deleted." +#~ msgstr "Groep verwijderd." + +#~ msgid "Field group published." +#~ msgstr "Groep gepubliceerd." + +#~ msgid "Field group saved." +#~ msgstr "Groep opgeslagen." + +#~ msgid "Field group submitted." +#~ msgstr "Groep toegevoegd." + +#~ msgid "Field group scheduled for." +#~ msgstr "Groep gepland voor." + +#~ msgid "Field group draft updated." +#~ msgstr "Groep concept bijgewerkt." + +#~ msgid "Location" +#~ msgstr "Locatie" + +#~ msgid "Settings" +#~ msgstr "Instellingen" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Naar prullenbak. Weet je het zeker?" + +#~ msgid "checked" +#~ msgstr "aangevinkt" + +#~ msgid "No toggle fields available" +#~ msgstr "Geen aan/uit velden beschikbaar" + +#~ msgid "Field group title is required" +#~ msgstr "Titel is verplicht" + +#~ msgid "copy" +#~ msgstr "kopie" + +#~ msgid "or" +#~ msgstr "of" + +#~ msgid "Parent fields" +#~ msgstr "Hoofdpagina" + +#~ msgid "Sibling fields" +#~ msgstr "Zuster velden" + +#~ msgid "Move Custom Field" +#~ msgstr "Verplaats extra veld" + +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "" +#~ "Dit veld kan niet worden verplaatst totdat de wijzigingen zijn opgeslagen" + +#~ msgid "Null" +#~ msgstr "Nul" + +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "De gemaakte wijzigingen gaan verloren als je deze pagina verlaat" + +#~ 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" + +#~ msgid "Field Keys" +#~ msgstr "Veld keys" + +#~ msgid "Active" +#~ msgstr "Actief" + +#~ msgid "Move Complete." +#~ msgstr "Verplaatsen geslaagd." + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Het veld: %s bevindt zich nu in de groep: %s" + +#~ msgid "Close Window" +#~ msgstr "Venster sluiten" + +#~ msgid "Please select the destination for this field" +#~ msgstr "Selecteer de bestemming voor dit veld" + +#~ msgid "Move Field" +#~ msgstr "Veld verplaatsen" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Actief (%s)" +#~ msgstr[1] "Actief (%s)" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "Groep gedupliceerd. %s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s groep gedupliceerd." +#~ msgstr[1] "%s groepen gedupliceerd." + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "Groep gesynchroniseerd. %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s groep gesynchroniseerd." +#~ msgstr[1] "%s groepen gesynchroniseerd." + +#~ msgid "Sync available" +#~ msgstr "Synchronisatie beschikbaar" + +#~ msgid "Status" +#~ msgstr "Status" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "Pas WordPress aan met krachtige, professionele en slimme velden." + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Bekijk wat nieuw is in versie %s." + +#~ msgid "Resources" +#~ msgstr "Documentatie (Engels)" + +#~ msgid "Website" +#~ msgstr "Website" + +#~ msgid "Documentation" +#~ msgstr "Documentatie" + +#~ msgid "Support" +#~ msgstr "Support" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Bedankt voor het ontwikkelen met ACF." + +#~ msgid "Duplicate this item" +#~ msgstr "Dupliceer dit item" + +#~ msgid "Search" +#~ msgstr "Zoeken" + +#, php-format +#~ msgid "Select %s" +#~ msgstr "Selecteer %s" + +#~ msgid "Synchronise field group" +#~ msgstr "Synchroniseer groep" + +#~ msgid "Sync" +#~ msgstr "Synchroniseer" + +#~ msgid "Apply" +#~ msgstr "Toepassen" + +#~ msgid "Bulk Actions" +#~ msgstr "Bulk acties" + +#~ msgid "Custom Fields" +#~ msgstr "Extra velden" + +#~ msgid "Upgrade Database" +#~ msgstr "Upgrade database" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Controleer websites & upgrade" + +#~ msgid "Error validating request" +#~ msgstr "Fout bij valideren" + +#~ msgid "No updates available." +#~ msgstr "Geen updates beschikbaar." + +#~ msgid "Add-ons" +#~ msgstr "Add-ons" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Fout. Kan add-ons lijst niet laden" + +#~ msgid "Info" +#~ msgstr "Informatie" + +#~ msgid "What's New" +#~ msgstr "Wat is er nieuw" + +#~ msgid "Tools" +#~ msgstr "Tools" + +#~ msgid "No field groups selected" +#~ msgstr "Geen groepen geselecteerd" + +#~ msgid "No file selected" +#~ msgstr "Geen bestanden geselecteerd" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Fout bij het uploaden van bestand. Probeer het nog eens" + +#~ msgid "Incorrect file type" +#~ msgstr "Ongeldig bestandstype" + +#~ msgid "Import file empty" +#~ msgstr "Importeer bestand is leeg" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "1 groep geïmporteerd" +#~ msgstr[1] "%s groepen geïmporteerd" + +#~ msgid "Conditional Logic" +#~ msgstr "Conditionele logica" + +#~ msgid "Show this field if" +#~ msgstr "Toon dit veld als" + +#~ msgid "is equal to" +#~ msgstr "gelijk is aan" + +#~ msgid "is not equal to" +#~ msgstr "is niet gelijk aan" + +#~ msgid "and" +#~ msgstr "en" + +#~ msgid "Add rule group" +#~ msgstr "Nieuwe groep toevoegen" + +#~ msgid "Edit field" +#~ msgstr "Bewerk veld" + +#~ msgid "Duplicate field" +#~ msgstr "Dupliceer veld" + +#~ msgid "Move field to another group" +#~ msgstr "Verplaats veld naar een andere groep" + +#~ msgid "Move" +#~ msgstr "Verplaats" + +#~ msgid "Delete field" +#~ msgstr "Verwijder veld" + +#~ msgid "Field Label" +#~ msgstr "Veld label" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "De naam die verschijnt op het edit screen" + +#~ msgid "Field Name" +#~ msgstr "Veld naam" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "Enkel woord, geen spaties. (Liggende) streepjes toegestaan." + +#~ msgid "Field Type" +#~ msgstr "Soort veld" + +#~ msgid "Instructions" +#~ msgstr "Instructies" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Toelichting voor gebruikers. Wordt getoond bij invullen van het veld." + +#~ msgid "Required?" +#~ msgstr "Verplicht?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Veld-attributen" + +#~ msgid "width" +#~ msgstr "Breedte" + +#~ msgid "class" +#~ msgstr "class" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "Veld sluiten" + +#~ msgid "Order" +#~ msgstr "Volgorde" + +#~ msgid "Key" +#~ msgstr "Sleutel" + +#~ msgid "Type" +#~ msgstr "Soort" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Geen velden. Klik op + Nieuw veld button om je eerste " +#~ "veld te maken." + +#~ msgid "+ Add Field" +#~ msgstr "+ Nieuw veld" + +#~ msgid "Rules" +#~ msgstr "Regels" + +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "" +#~ "Maak regels aan om te bepalen op welk edit screen jouw extra velden " +#~ "verschijnen" + +#~ msgid "Style" +#~ msgstr "Stijl" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Standaard (WordPress metabox)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Naadloos (zonder WordPress metabox)" + +#~ msgid "Position" +#~ msgstr "Positie" + +#~ msgid "High (after title)" +#~ msgstr "Hoog (onder titel)" + +#~ msgid "Normal (after content)" +#~ msgstr "Normaal (onder tekstverwerker)" + +#~ msgid "Side" +#~ msgstr "Zijkant" + +#~ msgid "Label placement" +#~ msgstr "Label positionering" + +#~ msgid "Top aligned" +#~ msgstr "Boven velden" + +#~ msgid "Left aligned" +#~ msgstr "Links naast velden" + +#~ msgid "Instruction placement" +#~ msgstr "Instructie positionering" + +#~ msgid "Below labels" +#~ msgstr "Onder label" + +#~ msgid "Below fields" +#~ msgstr "Onder veld" + +#~ msgid "Order No." +#~ msgstr "Volgorde nummer" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "Groepen met een lage volgorde worden als eerst getoond" + +#~ msgid "Shown in field group list" +#~ msgstr "Toon in groeplijst" + +#~ msgid "Hide on screen" +#~ msgstr "Verberg elementen" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Selecteer elementen om te verbergen op het wijzig scherm." + +#~ 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 "" +#~ "Indien meerdere groepen op het bewerk scherm worden getoond, komt de " +#~ "groep met de laagste volgorde als eerste." + +#~ msgid "Permalink" +#~ msgstr "Permalink" + +#~ msgid "Content Editor" +#~ msgstr "Content editor" + +#~ msgid "Excerpt" +#~ msgstr "Samenvatting" + +#~ msgid "Discussion" +#~ msgstr "Reageren" + +#~ msgid "Comments" +#~ msgstr "Reacties" + +#~ msgid "Revisions" +#~ msgstr "Revisies" + +#~ msgid "Slug" +#~ msgstr "Slug" + +#~ msgid "Author" +#~ msgstr "Auteur" + +#~ msgid "Format" +#~ msgstr "Format" + +#~ msgid "Page Attributes" +#~ msgstr "Pagina-attributen" + +#~ msgid "Featured Image" +#~ msgstr "Uitgelichte afbeelding" + +#~ msgid "Categories" +#~ msgstr "Categorieën" + +#~ msgid "Tags" +#~ msgstr "Tags" + +#~ msgid "Send Trackbacks" +#~ msgstr "Trackbacks verzenden" + +#~ msgid "Show this field group if" +#~ msgstr "Toon deze groep als" + +#~ msgid "Upgrade Sites" +#~ msgstr "Upgrade websites" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields database upgrade" + +#, php-format +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click %s." +#~ msgstr "" +#~ "Er is een database upgrade nodig voor de volgende websites. Controleer " +#~ "degene die je wilt updaten en klik %s." + +#~ msgid "Site" +#~ msgstr "Website" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Website vereist een database upgrade van %s naar %s" + +#~ msgid "Site is up to date" +#~ msgstr "Website is up-to-date" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Database upgrade afgerond. Terug naar netwerk dashboard" + +#~ 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 aan te raden om eerst een backup van de database te maken voordat " +#~ "je de update uitvoert. Weet je zeker dat je de update nu wilt uitvoeren?" + +#~ msgid "Upgrade complete" +#~ msgstr "Upgrade afgerond" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Bezig met upgraden naar versie %s" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Database upgrade vereist" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Bedankt voor het updaten naar %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Voordat je aan de slag kunt met de geweldige nieuwe functies, is een " +#~ "database update vereist." + +#, php-format +#~ msgid "" +#~ "Please also ensure any premium add-ons (%s) have first been updated to " +#~ "the latest version." +#~ msgstr "" +#~ "Zorg ervoor dat elke premium add-ons (%s) eerst zijn bijgewerkt naar de " +#~ "laatste versie." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Lezen van upgrade taken…" + +#, php-format +#~ msgid "Database Upgrade complete. See what's new" +#~ msgstr "Database upgrade afgerond. Bekijk wat nieuw is" + +#~ msgid "Download & Install" +#~ msgstr "Download & installeer" + +#~ msgid "Installed" +#~ msgstr "Geïnstalleerd" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Welkom bij Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Bedankt voor het updaten! ACF %s is groter dan ooit tevoren. We hopen dat " +#~ "je tevreden bent." + +#~ msgid "A smoother custom field experience" +#~ msgstr "Een verbeterde extra veld beleving" + +#~ msgid "Improved Usability" +#~ msgstr "Gebruikersvriendelijker" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Inclusief de populaire Select2 bibliotheek, die zowel " +#~ "gebruikersvriendelijker als sneller werkt bij velden als post object, " +#~ "pagina link, taxonomy en selecteer." + +#~ msgid "Improved Design" +#~ msgstr "Verbeterd design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Vele velden hebben een make-over gekregen. Nu oogt ACF beter dan ooit! " +#~ "Merkwaardige verschillen vindt je onder andere terug bij de galerij, " +#~ "relatie en oEmbed velden!" + +#~ msgid "Improved Data" +#~ msgstr "Verbeterde data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Het herontwerp van de dataverwerking zorgt ervoor dat velden los van hun " +#~ "hoofdvelden kunnen functioneren. Hiermee wordt het mogelijk om velden te " +#~ "drag-and-droppen tussen hoofdvelden." + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Vaarwel Add-ons. Hallo PRO!" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "We veranderen de manier waarop premium functies worden geleverd, op een " +#~ "gave manier!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Alle 4 de premium add-ons zijn samengevoegd tot een PRO " +#~ "versie van ACF. Er zijn zowel persoonlijke als developer licenties " +#~ "verkrijgbaar tegen een aantrekkelijke prijs!" + +#~ msgid "Powerful Features" +#~ msgstr "Krachtige functies" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO beschikt over krachtige velden en functies zoals: herhaalbare " +#~ "velden, flexibile content layouts, een interactieve fotogalerij veld en " +#~ "de mogelijkheid om optie pagina's aan te maken!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Lees meer over de ACF PRO functionaliteiten." + +#~ msgid "Easy Upgrading" +#~ msgstr "Gemakkelijk upgraden" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Om upgraden gemakkelijk te maken kun je inloggen met je " +#~ "bestaande winkelaccount en een gratis versie van ACF PRO claimen!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "We hebben een speciale upgrade gids gemaakt om al je " +#~ "vraagstukken te beantwoorden. Indien je een uitgebreidere vraag hebt, kun " +#~ "je contact opnemen met de helpdesk (Engelstalig)." + +#~ msgid "Under the Hood" +#~ msgstr "Onder de motorkap" + +#~ msgid "Smarter field settings" +#~ msgstr "Slimmere veld instellingen" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF slaat velden als individuele post objecten op" + +#~ msgid "More AJAX" +#~ msgstr "Meer AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "" +#~ "Steeds meer velden maken gebruik van AJAX gestuurde zoekopdrachten. Dit " +#~ "maakt het laden een stuk sneller" + +#~ msgid "Local JSON" +#~ msgstr "Local JSON" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Het automatisch exporteren naar JSON maakt alles een stuk sneller" + +#~ msgid "Better version control" +#~ msgstr "Betere versie controles" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nieuw is het automatisch exporteren naar JSON. Dit voorkomt problemen " +#~ "tijdens het upgraden van ACF." + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML is vervangen door JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "" +#~ "Importeren / Exporteren gaat nu via JSON. Indien gewenst kan er XML " +#~ "worden gebruikt" + +#~ msgid "New Forms" +#~ msgstr "Nieuwe formulieren" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Velden kunnen nu worden toegewezen aan reacties, widgets en " +#~ "gebruikersformulieren!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Een nieuw veld voor het embedden van content is toegevoegd" + +#~ msgid "New Gallery" +#~ msgstr "Nieuwe galerij" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Het galerij veld heeft een complete facelift ondergaan" + +#~ msgid "New Settings" +#~ msgstr "Nieuwe instellingen" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Nieuwe groep instellingen zijn toegevoegd om label en instructies toe te " +#~ "voegen" + +#~ msgid "Better Front End Forms" +#~ msgstr "Betere front-end formulieren" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() kan nu posts aanmaken/toevoegen na goedkeuring" + +#~ msgid "Better Validation" +#~ msgstr "Betere validatie" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Formulier validatie gaat nu via PHP + AJAX. Indien gewenst kan dit ook " +#~ "via JS" + +#~ msgid "Relationship Field" +#~ msgstr "Relatie veld" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nieuwe relatieveld instellingen voor filters (Zoeken, Post Type en " +#~ "Taxonomy)" + +#~ msgid "Moving Fields" +#~ msgstr "Velden verplaatsen" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Nieuwe veld groep functionaliteiten laat je velden tussen groepen " +#~ "verplaatsen." + +#~ msgid "Page Link" +#~ msgstr "Pagina link" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nieuwe archief groep in pagina_link veld" + +#~ msgid "Better Options Pages" +#~ msgstr "Verbeterde optie pagina's" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "De opties pagina's kunnen nu worden voorzien van zowel hoofd als sub-" +#~ "pagina's" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "" +#~ "Wij denken dat u de wijzigingen en vernieuwingen zult waarderen in versie " +#~ "%s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exporteer groep(en) naar PHP" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "De volgende code kun je integreren in je thema. Door de groep(en) te " +#~ "integreren verhoog je de laadsnelheid. Kopieer en plak deze in code in " +#~ "functions.php, of maak een nieuw PHP bestand aan." + +#~ msgid "Select Field Groups" +#~ msgstr "Selecteer groepen" + +#~ msgid "Export Field Groups" +#~ msgstr "Exporteer groepen" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Selecteer de groepen die je wilt exporteren. Maak vervolgens de keuze om " +#~ "de groepen te downloaden als JSON bestand, of genereer de export code in " +#~ "PHP formaat. De PHP export code kun je integreren in je thema." + +#~ msgid "Download export file" +#~ msgstr "Download export bestand" + +#~ msgid "Generate export code" +#~ msgstr "Genereer export code" + +#~ msgid "Import Field Groups" +#~ msgstr "Importeer groepen" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Selecteer het Advanced Custom Fields JSON bestand die je wilt importeren. " +#~ "Klik op de importeer button om het importeren te starten." + +#~ msgid "Select File" +#~ msgstr "Selecteer bestand" + +#~ msgid "Import" +#~ msgstr "Importeer" + +#~ msgid "Thumbnail" +#~ msgstr "Thumbnail" + +#~ msgid "Medium" +#~ msgstr "Gemiddeld" + +#~ msgid "Large" +#~ msgstr "Groot" + +#~ msgid "Full Size" +#~ msgstr "Volledige grootte" + +#~ msgid "Parent" +#~ msgstr "Hoofd" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Afbeelding breedte moet tenminste %dpx zijn." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Afbeelding mag niet breder zijn dan %dpx." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Afbeelding hoogte moet tenminste %dpx zijn." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Afbeelding mag niet hoger zijn dan %dpx." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Bestandsgrootte moet tenminste %s zijn." + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "Bestand mag niet groter zijn dan %s." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Bestandstype moet %s zijn." + +#~ msgid "Basic" +#~ msgstr "Basis" + +#~ msgid "Content" +#~ msgstr "Inhoud" + +#~ msgid "Choice" +#~ msgstr "Keuze" + +#~ msgid "Relational" +#~ msgstr "Relatie" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Field type does not exist" +#~ msgstr "Veld type bestaat niet" + +#~ msgid "Unknown" +#~ msgstr "Onbekend" + +#~ msgid "Button Group" +#~ msgstr "Button groep" + +#~ msgid "Choices" +#~ msgstr "Keuzes" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Per regel een keuze" + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "" +#~ "Om meer controle te krijgen over de keuzes, kun je de naam en het label " +#~ "van elkaar scheiden. Dit doe je op de volgende manier:" + +#~ msgid "red : Red" +#~ msgstr "rood : Rood" + +#~ msgid "Allow Null?" +#~ msgstr "Mag leeg zijn?" + +#~ msgid "Default Value" +#~ msgstr "Standaard waarde" + +#~ msgid "Appears when creating a new post" +#~ msgstr "" +#~ "Vooraf ingevulde waarde die te zien is tijdens het aanmaken van een " +#~ "nieuwe post" + +#~ msgid "Horizontal" +#~ msgstr "Horizontaal" + +#~ msgid "Vertical" +#~ msgstr "Verticaal" + +#~ msgid "Return Value" +#~ msgstr "Output weergeven als" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Bepaal hier de output weergave" + +#~ msgid "Value" +#~ msgstr "Waarde" + +#~ msgid "Both (Array)" +#~ msgstr "Beide (Array)" + +#~ msgid "Checkbox" +#~ msgstr "Checkbox" + +#~ msgid "Toggle All" +#~ msgstr "Selecteer alle" + +#~ msgid "Add new choice" +#~ msgstr "Nieuwe keuze" + +#~ msgid "Allow Custom" +#~ msgstr "Eigen invoer toestaan" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "‘Eigen invoer’ waarden toestaan" + +#~ msgid "Save Custom" +#~ msgstr "Eigen invoer opslaan" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "Sla ‘eigen invoer’ waarden op als veld keuzes" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Per regel de naam van een keuze" + +#~ msgid "Toggle" +#~ msgstr "Switch" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "" +#~ "Voeg een extra checkbox toe aan het begin om alle keuzes te selecteren" + +#~ msgid "Color Picker" +#~ msgstr "Kleurprikker" + +#~ msgid "Clear" +#~ msgstr "Wissen" + +#~ msgid "Default" +#~ msgstr "Standaard waarde" + +#~ msgid "Select Color" +#~ msgstr "Selecteer kleur" + +#~ msgid "Current Color" +#~ msgstr "Huidige kleur" + +#~ msgid "Date Picker" +#~ msgstr "Datumprikker" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Gereed" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Vandaag" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Volgende" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Vorige" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "Wk " + +#~ msgid "Display Format" +#~ msgstr "Weergeven als" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "De weergave tijdens het aanmaken/bewerken van een post" + +#~ msgid "Custom:" +#~ msgstr "Eigen invoer:" + +#~ msgid "Save Format" +#~ msgstr "Indeling opslaan" + +#~ msgid "The format used when saving a value" +#~ msgstr "Het formaat bij opslaan van waarde" + +#~ msgid "The format returned via template functions" +#~ msgstr "De weergave in het thema" + +#~ msgid "Week Starts On" +#~ msgstr "Week start op" + +#~ msgid "Date Time Picker" +#~ msgstr "Datum tijd picker" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Kies tijd" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Tijd" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Uur" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minuut" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Seconde" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Milliseconde" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Microseconde" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Tijdzone" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Nu" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Gereed" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Selecteer" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "A" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "P" + +#~ msgid "Email" +#~ msgstr "E-mail" + +#~ msgid "Placeholder Text" +#~ msgstr "Plaatsvervangende tekst" + +#~ msgid "Appears within the input" +#~ msgstr "Informatie die verschijnt in het veld (verdwijnt zodra je typt)" + +#~ msgid "Prepend" +#~ msgstr "Voorvoegsel" + +#~ msgid "Appears before the input" +#~ msgstr "Informatie die verschijnt voor het veld" + +#~ msgid "Append" +#~ msgstr "Navoegsel" + +#~ msgid "Appears after the input" +#~ msgstr "Informatie die verschijnt na het veld" + +#~ msgid "File" +#~ msgstr "Bestand" + +#~ msgid "Edit File" +#~ msgstr "Bewerk bestand" + +#~ msgid "Update File" +#~ msgstr "Update bestand" + +#~ msgid "Uploaded to this post" +#~ msgstr "Geüpload naar deze post" + +#~ msgid "File name" +#~ msgstr "Bestandsnaam" + +#~ msgid "Add File" +#~ msgstr "Voeg bestand toe" + +#~ msgid "File Array" +#~ msgstr "Bestand Array" + +#~ msgid "File URL" +#~ msgstr "Bestands-URL" + +#~ msgid "File ID" +#~ msgstr "Bestands-ID" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Bepaal welke bestanden geüpload mogen worden" + +#~ msgid "Google Map" +#~ msgstr "Google Map" + +#~ msgid "Locating" +#~ msgstr "Locatie wordt gezocht..." + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Excuses, deze browser ondersteund geen geolocatie" + +#~ msgid "Clear location" +#~ msgstr "Wis locatie" + +#~ msgid "Find current location" +#~ msgstr "Zoek huidige locatie" + +#~ msgid "Search for address..." +#~ msgstr "Zoek een adres..." + +#~ msgid "Center" +#~ msgstr "Standaard locatie" + +#~ msgid "Center the initial map" +#~ msgstr "Bepaal de standaard locatie van de kaart" + +#~ msgid "Zoom" +#~ msgstr "Inzoomen" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Bepaal het zoom niveau van de kaart" + +#~ msgid "Customise the map height" +#~ msgstr "Wijzig de hoogte van de kaart" + +#~ msgid "Group" +#~ msgstr "Groep" + +#~ msgid "Image" +#~ msgstr "Afbeelding" + +#~ msgid "Select Image" +#~ msgstr "Selecteer afbeelding" + +#~ msgid "Edit Image" +#~ msgstr "Bewerk afbeelding" + +#~ msgid "Update Image" +#~ msgstr "Update afbeelding" + +#~ msgid "All images" +#~ msgstr "Alle afbeeldingen" + +#~ msgid "No image selected" +#~ msgstr "Geen afbeelding geselecteerd" + +#~ msgid "Add Image" +#~ msgstr "Voeg afbeelding toe" + +#~ msgid "Shown when entering data" +#~ msgstr "Voorbeeld wordt na het uploaden/selecteren getoond" + +#~ msgid "Link" +#~ msgstr "Link" + +#~ msgid "Select Link" +#~ msgstr "Selecteer link" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "Opent in een nieuw venster/tab" + +#~ msgid "Link Array" +#~ msgstr "Link array" + +#~ msgid "Link URL" +#~ msgstr "Link URL" + +#~ msgid "Message" +#~ msgstr "Bericht" + +#~ msgid "New Lines" +#~ msgstr "Nieuwe regels" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Bepaal wat er gebeurt met een nieuwe tekstregel" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Automatisch paragrafen toevoegen" + +#~ msgid "Automatically add <br>" +#~ msgstr "Automatisch een nieuwe regel maken <br />" + +#~ msgid "No Formatting" +#~ msgstr "Niets ondernemen" + +#~ msgid "Escape HTML" +#~ msgstr "Escape HTML" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "" +#~ "Toestaan HTML markup te tonen als tekst in plaats van het te renderen" + +#~ msgid "Number" +#~ msgstr "Nummer" + +#~ msgid "Minimum Value" +#~ msgstr "Minimale waarde" + +#~ msgid "Maximum Value" +#~ msgstr "Maximale waarde" + +#~ msgid "Step Size" +#~ msgstr "Stapgrootte" + +#~ msgid "Value must be a number" +#~ msgstr "Waarde moet numeriek zijn" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Waarde moet gelijk of meer dan zijn %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Waarde moet gelijk of minder zijn dan %d" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "Vul URL in" + +#~ msgid "Error." +#~ msgstr "Fout." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Geen embed mogelijkheid gevonden voor de gewenste URL." + +#~ msgid "Embed Size" +#~ msgstr "Embed formaat" + +#~ msgid "Archives" +#~ msgstr "Archieven" + +#~ msgid "Filter by Post Type" +#~ msgstr "Filter op post type" + +#~ msgid "All post types" +#~ msgstr "Alle post types" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "Filter op taxonomy" + +#~ msgid "All taxonomies" +#~ msgstr "Alle taxonomieën" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Archief URL’s toestaan" + +#~ msgid "Select multiple values?" +#~ msgstr "Meerdere selecties mogelijk?" + +#~ msgid "Password" +#~ msgstr "Wachtwoord" + +#~ msgid "Post Object" +#~ msgstr "Post object" + +#~ msgid "Post ID" +#~ msgstr "Post ID" + +#~ msgid "Radio Button" +#~ msgstr "Radio button" + +#~ msgid "Other" +#~ msgstr "Anders namelijk" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "Voeg de keuze \"anders” toe voor eigen invulling" + +#~ msgid "Save Other" +#~ msgstr "Anders namelijk waarde toevoegen aan keuzes?" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "" +#~ "Voeg de ingevulde \"anders namelijk\" waarde toe aan de keuzelijst na het " +#~ "opslaan van een post" + +#~ msgid "Range" +#~ msgstr "Reeks" + +#~ msgid "Relationship" +#~ msgstr "Relatie" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimaal aantal bereikt ( {min} stuks )" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Maximum aantal waarden bereikt ( {max} waarden )" + +#~ msgid "Loading" +#~ msgstr "Laden" + +#~ msgid "No matches found" +#~ msgstr "Geen gelijkenis gevonden" + +#~ msgid "Select post type" +#~ msgstr "Selecteer post type" + +#~ msgid "Select taxonomy" +#~ msgstr "Selecteer taxonomy" + +#~ msgid "Search..." +#~ msgstr "Zoeken..." + +#~ msgid "Filters" +#~ msgstr "Filters" + +#~ msgid "Post Type" +#~ msgstr "Post type" + +#~ msgid "Taxonomy" +#~ msgstr "Taxonomy" + +#~ msgid "Elements" +#~ msgstr "Elementen" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Selecteer de elementen die moeten worden getoond in elk resultaat" + +#~ msgid "Minimum posts" +#~ msgstr "Minimale berichten" + +#~ msgid "Maximum posts" +#~ msgstr "Maximum aantal selecties" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s verplicht tenminste %s selectie" +#~ msgstr[1] "%s verplicht tenminste %s selecties" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Selecteer" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "Eén resultaat beschikbaar, toets enter om te selecteren." + +#, php-format +#~ msgctxt "Select2 JS matches_n" +#~ msgid "%d results are available, use up and down arrow keys to navigate." +#~ msgstr "" +#~ "%d resultaten beschikbaar, gebruik de pijltjes toetsen om te navigeren." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Geen resultaten" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Vul 1 of meer tekens in" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Vul %d of meer tekens in" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Verwijderd 1 teken" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Verwijder %d tekens" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Je kunt maar 1 item selecteren" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Je kunt maar %d items selecteren" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Laad meer resultaten…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Zoeken…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Laden mislukt" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Selecteer" + +#~ msgid "Stylised UI" +#~ msgstr "Uitgebreide weergave" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "AJAX gebruiken om keuzes te laden?" + +#~ msgid "Specify the value returned" +#~ msgstr "Bepaal hier de output weergave" + +#~ msgid "Separator" +#~ msgstr "Scheidingsteken" + +#~ msgid "Tab" +#~ msgstr "Tab" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Deze tab zal niet correct worden weergegeven in een herhalende tabel" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "Gebruik tabbladen om velden in het edit screen te organiseren." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alle velden onder dit \"Tab veld\" zullen worden toegevoegd aan deze tab. " +#~ "Het ingevulde \"Veld label\" dient als benaming van de tab." + +#~ msgid "Placement" +#~ msgstr "Plaatsing" + +#~ msgid "End-point" +#~ msgstr "Eindpunt" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "Gebruik dit veld als eindpunt en startpunt van een groep tabbladen" + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Geen %s" + +#~ msgid "None" +#~ msgstr "Geen" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Selecteer de weer te geven taxonomie " + +#~ msgid "Appearance" +#~ msgstr "Uiterlijk" + +#~ msgid "Select the appearance of this field" +#~ msgstr "Selecteer het uiterlijk van dit veld" + +#~ msgid "Multiple Values" +#~ msgstr "Meerdere waardes" + +#~ msgid "Multi Select" +#~ msgstr "Multi-selecteer" + +#~ msgid "Single Value" +#~ msgstr "Enkele waarde" + +#~ msgid "Radio Buttons" +#~ msgstr "Radio buttons" + +#~ msgid "Create Terms" +#~ msgstr "Voorwaarden toevoegen" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "" +#~ "Toestaan dat nieuwe voorwaarden worden aangemaakt terwijl je bewerkt" + +#~ msgid "Save Terms" +#~ msgstr "Voorwaarden opslaan" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Koppel geselecteerde terms aan een post" + +#~ msgid "Load Terms" +#~ msgstr "Voorwaarden laden" + +#~ msgid "Load value from posts terms" +#~ msgstr "Waarde ophalen van posts terms" + +#~ msgid "Term Object" +#~ msgstr "Term object" + +#~ msgid "Term ID" +#~ msgstr "Term ID" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Gebruiker is niet in staat om nieuwe %s toe te voegen" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s bestaat al" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s toegevoegd" + +#~ msgid "Add" +#~ msgstr "Nieuwe" + +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Character Limit" +#~ msgstr "Karakter limiet" + +#~ msgid "Leave blank for no limit" +#~ msgstr "Laat leeg voor geen limiet" + +#~ msgid "Text Area" +#~ msgstr "Tekstvlak" + +#~ msgid "Rows" +#~ msgstr "Rijen" + +#~ msgid "Sets the textarea height" +#~ msgstr "Hoogte (in regels) voor dit tekstvlak" + +#~ msgid "Time Picker" +#~ msgstr "Tijd picker" + +#~ msgid "True / False" +#~ msgstr "Waar / niet waar" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Geeft tekst weer naast de checkbox" + +#~ msgid "On Text" +#~ msgstr "On tekst" + +#~ msgid "Text shown when active" +#~ msgstr "Tekst die verschijnt bij actief" + +#~ msgid "Off Text" +#~ msgstr "Off tekst" + +#~ msgid "Text shown when inactive" +#~ msgstr "Tekst die verschijnt bij inactief" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Value must be a valid URL" +#~ msgstr "Waarde moet een geldige URL zijn" + +#~ msgid "User" +#~ msgstr "Gebruiker" + +#~ msgid "Filter by role" +#~ msgstr "Filter op rol" + +#~ msgid "All user roles" +#~ msgstr "Alle rollen" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "Wysiwyg editor" + +#~ msgid "Visual" +#~ msgstr "Visueel" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Klik om TinyMCE te initialiseren" + +#~ msgid "Tabs" +#~ msgstr "Tabbladen" + +#~ msgid "Visual & Text" +#~ msgstr "Visueel & tekst" + +#~ msgid "Visual Only" +#~ msgstr "Alleen visueel" + +#~ msgid "Text Only" +#~ msgstr "Alleen tekst" + +#~ msgid "Toolbar" +#~ msgstr "Toolbar" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Toon media upload buttons?" + +#~ msgid "Delay initialization?" +#~ msgstr "Vertraag initialisatie?" + +#~ msgid "TinyMCE will not be initalized until field is clicked" +#~ msgstr "TinyMCE wordt niet geïnitialiseerd tot veld is aangeklikt" + +#~ msgid "Validate Email" +#~ msgstr "Valideer e-mail" + +#~ msgid "Post updated" +#~ msgstr "Bericht bijgewerkt" + +#~ msgid "Spam Detected" +#~ msgstr "Spam gedetecteerd" + +#~ msgid "Expand Details" +#~ msgstr "Toon details" + +#~ msgid "Collapse Details" +#~ msgstr "Verberg details" + +#~ msgid "Validation successful" +#~ msgstr "Validatie geslaagd" + +#~ msgid "Validation failed" +#~ msgstr "Validatie mislukt" + +#~ msgid "1 field requires attention" +#~ msgstr "1 veld heeft aandacht nodig" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d velden hebben aandacht nodig" + +#~ msgid "Restricted" +#~ msgstr "Verplicht" + +#~ msgid "Are you sure?" +#~ msgstr "Ben je zeker?" + +#~ msgid "Cancel" +#~ msgstr "Annuleer" + +#~ msgid "Post" +#~ msgstr "Bericht" + +#~ msgid "Page" +#~ msgstr "Pagina" + +#~ msgid "Forms" +#~ msgstr "Formulieren" + +#~ msgid "Attachment" +#~ msgstr "Bijlage" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Alle %s formaten" + +#~ msgid "Comment" +#~ msgstr "Reactie" + +#~ msgid "Current User Role" +#~ msgstr "Huidige gebruikersrol" + +#~ msgid "Super Admin" +#~ msgstr "Super beheerder" + +#~ msgid "Current User" +#~ msgstr "Huidige gebruiker" + +#~ msgid "Logged in" +#~ msgstr "Ingelogd" + +#~ msgid "Viewing front end" +#~ msgstr "Bekijk voorkant" + +#~ msgid "Viewing back end" +#~ msgstr "Bekijk achterkant" + +#~ msgid "Menu Item" +#~ msgstr "Menu item" + +#~ msgid "Menu" +#~ msgstr "Menu" + +#~ msgid "Menu Locations" +#~ msgstr "Menu locaties" + +#~ msgid "Menus" +#~ msgstr "Menu’s " + +#~ msgid "Page Parent" +#~ msgstr "Pagina hoofd" + +#~ msgid "Page Template" +#~ msgstr "Pagina template" + +#~ msgid "Default Template" +#~ msgstr "Standaard template" + +#~ msgid "Page Type" +#~ msgstr "Pagina type" + +#~ msgid "Front Page" +#~ msgstr "Hoofdpagina" + +#~ msgid "Posts Page" +#~ msgstr "Berichten pagina" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Hoofdpagina (geen hoofd)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Hoofdpagina (bevat subitems)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Subpagina" + +#~ msgid "Post Category" +#~ msgstr "Bericht categorie" + +#~ msgid "Post Format" +#~ msgstr "Bericht format" + +#~ msgid "Post Status" +#~ msgstr "Status" + +#~ msgid "Post Taxonomy" +#~ msgstr "Bericht taxonomy" + +#~ msgid "Post Template" +#~ msgstr "Bericht template" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomy term" + +#~ msgid "User Form" +#~ msgstr "Gebruiker formulier" + +#~ msgid "Add / Edit" +#~ msgstr "Toevoegen / Bewerken" + +#~ msgid "Register" +#~ msgstr "Registreer" + +#~ msgid "User Role" +#~ msgstr "Rol" + +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Bewerk" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Bijwerken" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s waarde is verplicht" + +#~ msgid "remove {layout}?" +#~ msgstr "verwijder {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Dit veld vereist op zijn minst {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "Dit veld heeft een limiet van {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximum {label} limiet bereikt ({max} {identifier})" + +#, php-format +#~ 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 updates te ontvangen vul je op Updates pagina je " +#~ "licentiecode in. Nog geen licentiecode? Bekijk details & prijzen." + +#~ msgid "https://www.advancedcustomfields.com/" +#~ msgstr "https://www.advancedcustomfields.com/" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Disabled" +#~ msgstr "Inactief" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Inactief (%s)" +#~ msgstr[1] "Inactief (%s)" + +#~ msgid "Getting Started" +#~ msgstr "Aan de slag" + +#~ msgid "Field Types" +#~ msgstr "Veld soorten" + +#~ msgid "Functions" +#~ msgstr "Functies" + +#~ msgid "Actions" +#~ msgstr "Acties" + +#~ msgid "'How to' guides" +#~ msgstr "Veelgestelde vragen" + +#~ msgid "Tutorials" +#~ msgstr "Tutorials" + +#~ msgid "FAQ" +#~ msgstr "FAQ" + +#~ msgid "Created by" +#~ msgstr "Ontwikkeld door" + +#~ msgid "Error loading update" +#~ msgstr "Fout bij laden van update" + +#~ msgid "Error" +#~ msgstr "Fout" + +#~ msgid "See what's new" +#~ msgstr "Bekijk alle vernieuwingen en verbeteringen van" + +#~ msgid "eg. Show extra content" +#~ msgstr "bijv. Toon op homepage" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "1 veld vraagt om aandacht" +#~ msgstr[1] "%d velden vragen om aandacht" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Verbindingsfout. Onze excuses, probeer het later nog eens" + +#~ msgid "See what's new in" +#~ msgstr "Bekijk alle vernieuwingen en verbeteringen van" + +#~ msgid "version" +#~ msgstr "versie" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "" +#~ "Gelukt!. De importeer tool heeft %s velden en %s groepen " +#~ "geïmporteerd" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Waarschuwing. De importeer functie heeft %s bestaande veldgroepen " +#~ "gedetecteerd en heeft deze genegeerd: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Upgrade ACF" + +#~ msgid "Upgrade" +#~ msgstr "Upgrade" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "De volgende website vereist een DB upgrade. Selecteer degene die u wilt " +#~ "updaten en klik op “Upgrade database”." + +#~ msgid "Upgrading data to" +#~ msgstr "Upgraden van data naar " + +#~ msgid "Done" +#~ msgstr "Gereed" + +#~ msgid "Today" +#~ msgstr "Vandaag" + +#~ msgid "Show a different month" +#~ msgstr "Toon een andere maand" + +#~ msgid "Return format" +#~ msgstr "Output weergeven als" + +#~ msgid "uploaded to this post" +#~ msgstr "geüpload naar deze post" + +#~ msgid "File Name" +#~ msgstr "Bestandsnaam" + +#~ msgid "File Size" +#~ msgstr "Bestandsformaat" + +#~ msgid "No File selected" +#~ msgstr "Geen bestand geselecteerd" + +#~ msgid "Save Options" +#~ msgstr "Opties bijwerken" + +#~ msgid "License" +#~ msgstr "Licentie" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Voor het verkrijgen van updates is een licentiesleutel vereist. Indien je " +#~ "niet beschikt over een licentiecode kun je deze aanschaffen, zie:" + +#~ msgid "details & pricing" +#~ msgstr "details & kosten" + +#~ 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 "" +#~ "Voor het verkrijgen van updates is een licentiesleutel vereist. Vul uw " +#~ "licentiecode in op de Updates pagina, of schaf een " +#~ "licentiecode aan via details & prijzen." + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Sleep om te sorteren" + +#~ msgid "Add new %s " +#~ msgstr "Nieuwe %s " + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Tekst wordt automatisch voorzien van paragrafen door de wp functie: " + +#~ msgid "Warning" +#~ msgstr "Waarschuwing" + +#~ msgid "Hide / Show All" +#~ msgstr "Verberg / Toon alle" + +#~ msgid "Show Field Keys" +#~ msgstr "Toon veld sleutels" + +#~ msgid "Pending Review" +#~ msgstr "Wachtend op goedkeuring" + +#~ msgid "Draft" +#~ msgstr "Concept" + +#~ msgid "Future" +#~ msgstr "Toekomst" + +#~ msgid "Private" +#~ msgstr "Privé" + +#~ msgid "Revision" +#~ msgstr "Revisie" + +#~ msgid "Trash" +#~ msgstr "Afval" + +#~ msgid "Top Level Page (parent of 0)" +#~ msgstr "Hoofdpagina (ouder dan 0)" + +#~ msgid "Import / Export" +#~ msgstr "Importeer / Exporteer" + +#~ msgid "Logged in User Type" +#~ msgstr "Gebruikersrol" + +#~ msgid "Field groups are created in order
                              from lowest to highest" +#~ msgstr "Groepen worden gesorteerd van laag naar hoog." + +#~ msgid "Select items to hide them from the edit screen" +#~ msgstr "" +#~ "Selecteer elementen die verborgen worden op het edit screen" + +#~ 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 groepen verschijnen op een edit screen, zal de eerste " +#~ "groep worden gebruikt. (degene met het laagste volgorde nummer)" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exiting " +#~ "way!" +#~ msgstr "" +#~ "We hebben de premium mogelijkheden vernieuwd op een geweldige manier!" + +#~ msgid "ACF PRO Required" +#~ msgstr "ACF PRO verplicht" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "We hebben een probleem ontdekt die uw aandacht vereist: Deze website " +#~ "maakt gebruik van add-ons (%s) die niet compatible zijn met de huidige " +#~ "versie van ACF." + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Geen paniek! Je kunt gemakkelijk downgraden naar een vorige versie van " +#~ "ACF." + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Downgrade naar ACF v%s" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Ontdek waarom je niet zonder ACF PRO kunt" + +#~ msgid "Update Database" +#~ msgstr "Database updaten" + +#~ msgid "Data Upgrade" +#~ msgstr "Data geüpgrade" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Data is met succes geüpgraded." + +#~ msgid "Data is at the latest version." +#~ msgstr "Data beschikt over de laatste versie." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "1 verplicht veld is leeg" +#~ msgstr[1] "%s verplichte velden zijn leeg" + +#~ msgid "Controls how HTML tags are rendered" +#~ msgstr "Bepaal hoe HTML tags worden weergegeven" + +#~ msgid "No taxonomy filter" +#~ msgstr "Geen taxonomy filter" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Laad & sla termen op bij post" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Laad waarde aan de hand van de post termen en update de post termen bij " +#~ "het opslaan" + +#~ msgid "Custom field updated." +#~ msgstr "Extra veld bijgewerkt." + +#~ msgid "Custom field deleted." +#~ msgstr "Extra veld verwijderd." + +#~ msgid "Field group duplicated! Edit the new \"%s\" field group." +#~ msgstr "Groep gedupliceerd! Bewerk de nieuwe \"%s\" groep." + +#~ msgid "Import/Export" +#~ msgstr "Import/Export" + +#~ msgid "Column Width" +#~ msgstr "Kolom breedte" + +#~ msgid "Attachment Details" +#~ msgstr "Bijlage details" + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "Groepen hersteld naar revisie van %s" + +#~ msgid "No ACF groups selected" +#~ msgstr "Geen ACF groep geselecteerd" + +#~ msgid "Normal" +#~ msgstr "Normaal" + +#~ msgid "No Metabox" +#~ msgstr "Geen metabox" + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "" +#~ "Lees de documentatie, leer de functies kennen en ontdek tips & tricks " +#~ "voor jouw web project." + +#~ msgid "Visit the ACF website" +#~ msgstr "Bezoek de ACF website" + +#~ msgid "Vote" +#~ msgstr "Stem" + +#~ msgid "Follow" +#~ msgstr "Volg op Twitter" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "" +#~ "Validatie mislukt. Eén of meer velden hieronder zijn verplicht." + +#~ msgid "Add File to Field" +#~ msgstr "+ Bestand toevoegen aan veld" + +#~ msgid "Add Image to Field" +#~ msgstr "Add Image to Field" + +#~ msgid "Attachment updated" +#~ msgstr "Bijlage bijgewerkt." + +#~ msgid "Repeater field deactivated" +#~ msgstr "Repeater Field gedeactiveerd" + +#~ msgid "Gallery field deactivated" +#~ msgstr "Gallery field gedeactiveerd" + +#~ msgid "Repeater field activated" +#~ msgstr "Repeater field geactiveerd" + +#~ msgid "Options page activated" +#~ msgstr "Options page geactiveerd" + +#~ msgid "Flexible Content field activated" +#~ msgstr "Flexible Content field geactiveerd" + +#~ msgid "Gallery field activated" +#~ msgstr "Gallery field geactiveerd" + +#~ msgid "License key unrecognised" +#~ msgstr "Licentie code niet herkend" + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "" +#~ "Add-ons kun je activeren door een licentie code te kopen. Elke code kan " +#~ "gebruikt worden op meerdere websites." + +#~ msgid "Activation Code" +#~ msgstr "Activatie code" + +#~ msgid "Repeater Field" +#~ msgstr "Repeater Field" + +#~ msgid "Flexible Content Field" +#~ msgstr "Flexible Content Field" + +#~ msgid "Gallery Field" +#~ msgstr "Gallery Field" + +#~ msgid "Export Field Groups to XML" +#~ msgstr "Exporteer groepen naar XML" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "ACF maakt een .xml export bestand die compatibel is met de ingebouwde WP " +#~ "import plugin." + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "Geïmporteerde veld groepen verschijnen in de lijst van " +#~ "beheerbare veld groepen. Dit is handig voor het migreren van veld groepen " +#~ "tussen WP websites." + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "Selecteer veld groep(en) van van de lijst en klik \"Exporteer XML\"" + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "Sla de .xml file op wanneer er om gevraagd wordt" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "Navigeer naar Extra » Importeren en selecteer WordPress " + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "Installeer de WP import plugin als er naar wordt gevraagd" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "Upload en import je geëxporteerde .xml bestand" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "Selecteer je gebruiker en negeer import bijlages" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "Dat is het! Happy WordPressing" + +#~ msgid "Export XML" +#~ msgstr "Exporteer XML" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACF maakt de PHP code die je kan integreren in jouw thema." + +#~ msgid "Register Field Groups" +#~ msgstr "Registreer veld groepen" + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "Houd er rekening mee dat wanneer je veld groepen exporteert en " +#~ "registreert in dezelfde WP installatie, ze verschijnen als gedupliceerde " +#~ "velden in je edit screens. Om dit te verhelpen: verwijder de originele " +#~ "veld groepen naar de prullenbak of verwijder de code uit je functions.php " +#~ "bestand." + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "Selecteer veld groepen uit de lijst en klik \"Maak PHP\"" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Kopieer de gegenereerde PHP code" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Plak in je functions.php bestand" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "Om add-ons te activeren, bewerk en gebruik de code in de eerste regels." + +#~ msgid "Create PHP" +#~ msgstr "Maak PHP" + +#~ msgid "Back to settings" +#~ msgstr "Terug naar instellingen" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "Advanced Custom Fields instellingen" + +#~ msgid "requires a database upgrade" +#~ msgstr "vereist een database upgrade" + +#~ msgid "why?" +#~ msgstr "waarom?" + +#~ msgid "Please" +#~ msgstr "Graag" + +#~ msgid "backup your database" +#~ msgstr "backup maken van je database" + +#~ msgid "then click" +#~ msgstr "vervolgens klikken op" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "Verplaats gebruikers eigen velden van wp_options naar wp_usermeta" + +#~ msgid "No choices to choose from" +#~ msgstr "Geen keuzes om uit te kiezen" + +#~ msgid "Red" +#~ msgstr "Rood" + +#~ msgid "Blue" +#~ msgstr "Blauw" + +#~ msgid "blue : Blue" +#~ msgstr "blauw : Blauw" + +#~ msgid "File Updated." +#~ msgstr "Bestand bijgewerkt." + +#~ msgid "Media attachment updated." +#~ msgstr "Media bijlage bijgewerkt." + +#~ msgid "Add Selected Files" +#~ msgstr "Geselecteerde bestanden toevoegen" + +#~ msgid "+ Add Row" +#~ msgstr "+ Nieuwe regel" + +#~ msgid "Field Order" +#~ msgstr "Veld volgorde" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "" +#~ "Geen velden. Klik op \"+ Nieuw sub veld\" button om je eerste veld te " +#~ "maken." + +#~ msgid "Docs" +#~ msgstr "Documentatie" + +#~ msgid "Close Sub Field" +#~ msgstr "Sub veld sluiten" + +#~ msgid "+ Add Sub Field" +#~ msgstr "+ Nieuw sub veld" + +#~ msgid "Alternate Text" +#~ msgstr "Alternatieve tekst" + +#~ msgid "Thumbnail is advised" +#~ msgstr "Thumbnail wordt geadviseerd" + +#~ msgid "Image Updated" +#~ msgstr "Afbeelding bijgwerkt" + +#~ msgid "Grid" +#~ msgstr "Grid" + +#~ msgid "List" +#~ msgstr "Lijst" + +#~ msgid "No images selected" +#~ msgstr "Geen afbeeldingen geselecteerd" + +#~ msgid "1 image selected" +#~ msgstr "1 afbeelding geselecteerd" + +#~ msgid "{count} images selected" +#~ msgstr "{count} afbeeldingen geselecteerd" + +#~ msgid "Added" +#~ msgstr "Toegevoegd" + +#~ msgid "Image already exists in gallery" +#~ msgstr "Afbeelding bestaat al galerij" + +#~ msgid "Image Updated." +#~ msgstr "Afbeelding bijgewerkt." + +#~ msgid "Add selected Images" +#~ msgstr "Voeg geselecteerde afbeeldingen toe" + +#~ msgid "Repeater Fields" +#~ msgstr "Velden herhalen" + +#~ msgid "Field Instructions" +#~ msgstr "Veld instructies" + +#~ msgid "Table (default)" +#~ msgstr "Tabel (standaard)" + +#~ msgid "Define how to render html tags" +#~ msgstr "Bepaal hoe HTML tags worden omgezet" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Bepaal hoe HTML tags worden omgezet / nieuwe regels" + +#~ msgid "Run filter \"the_content\"?" +#~ msgstr "Gebruik filter \"the_content\"?" + +#~ msgid "Enable this filter to use shortcodes within the WYSIWYG field" +#~ msgstr "Activeer dit filter om shortcodes te gebruiken in het WYSIWYG veld" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "" +#~ "De datum wordt in deze indeling opgeslagen in de database en teruggegeven " +#~ "door de API" + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "\"yymmdd\" is de meest veelzijdige opslaan indeling. Lees meer op" + +#~ msgid "jQuery date formats" +#~ msgstr "jQuery datum format" + +#~ msgid "This format will be seen by the user when entering a value" +#~ msgstr "" +#~ "Deze indeling wordt gezien door de gebruiker wanneer datum wordt ingevuld" + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "" +#~ "\"dd/mm/yy\" of \"mm/dd/yy\" zijn de meest gebruikte indelingen. Lees " +#~ "meer op" + +#~ msgid "Page Specific" +#~ msgstr "Pagina specifiek" + +#~ msgid "Post Specific" +#~ msgstr "Bericht specifiek" + +#~ msgid "Taxonomy (Add / Edit)" +#~ msgstr "Taxonomy (Nieuwe / bewerk)" + +#~ msgid "Media (Edit)" +#~ msgstr "Media (Bewerk)" + +#~ msgid "match" +#~ msgstr "komt overeen met" + +#~ msgid "all" +#~ msgstr "allen" + +#~ msgid "of the above" +#~ msgstr "van hierboven" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "Ontgrendel opties add-on met een activatie code" + +#~ msgid "Add Fields to Edit Screens" +#~ msgstr "Voeg velden toe aan edit screen" + +#~ msgid "Navigate to the" +#~ msgstr "Ga naar de" + +#~ msgid "and select WordPress" +#~ msgstr "en selecteer WordPress" + +#~ msgid "eg. dd/mm/yy. read more about" +#~ msgstr "bijv. dd/mm/yyyy. Lees meer over" + +#~ msgid "" +#~ "Filter posts by selecting a post type
                              \n" +#~ "\t\t\t\tTip: deselect all post types to show all post type's posts" +#~ msgstr "" +#~ "Filter post type door te selecteren
                              \n" +#~ "\t\t\t\tTip: selecteer 'alles' om alle posts van alle post type te tonen" + +#~ msgid "Everything Fields deactivated" +#~ msgstr "Everything Fields gedeactiveerd" + +#~ msgid "Everything Fields activated" +#~ msgstr "Everything Fields geactiveerd" + +#~ msgid "Set to -1 for infinite" +#~ msgstr "Plaats -1 voor oneindig" + +#~ msgid "Row Limit" +#~ msgstr "Rij limiet" diff --git a/lang/pro/acf-pl_PL.po b/lang/pro/acf-pl_PL.po new file mode 100644 index 0000000..5ec69a0 --- /dev/null +++ b/lang/pro/acf-pl_PL.po @@ -0,0 +1,4471 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2022-02-27 13:58+0100\n" +"Last-Translator: Dariusz Zielonka \n" +"Language-Team: Dariusz Zielonka \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 3.0.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:3, pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: acf.php:4, acf.php:8 +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#: acf.php:5 +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "" +"Dostosuj WordPress za pomocą potężnych, profesjonalnych i intuicyjnych pól." + +#: acf.php:7 +msgid "Delicious Brains" +msgstr "Delicious Brains" + +#: acf.php:71 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:360, includes/admin/admin.php:50, includes/admin/admin.php:50 +msgid "Field Groups" +msgstr "Grupy pól" + +#: acf.php:361 +msgid "Field Group" +msgstr "Grupa pól" + +#: acf.php:362, acf.php:396, includes/admin/admin.php:51, +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Dodaj nową" + +#: acf.php:363 +msgid "Add New Field Group" +msgstr "Dodaj nową grupę pól" + +#: acf.php:364 +msgid "Edit Field Group" +msgstr "Edytuj grupę pól" + +#: acf.php:365 +msgid "New Field Group" +msgstr "Nowa grupa pól" + +#: acf.php:366 +msgid "View Field Group" +msgstr "Zobacz grupę pól" + +#: acf.php:367 +msgid "Search Field Groups" +msgstr "Szukaj grup pól" + +#: acf.php:368 +msgid "No Field Groups found" +msgstr "Nie znaleziono grupy pól" + +#: acf.php:369 +msgid "No Field Groups found in Trash" +msgstr "Brak grup pól w koszu" + +#: acf.php:394, includes/admin/admin-field-group.php:233, +#: includes/admin/admin-field-groups.php:266, +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Pola" + +#: acf.php:395 +msgid "Field" +msgstr "Pole" + +#: acf.php:397 +msgid "Add New Field" +msgstr "Dodaj nowe pole" + +#: acf.php:398 +msgid "Edit Field" +msgstr "Edytuj pole" + +#: acf.php:399, includes/admin/views/field-group-fields.php:56 +msgid "New Field" +msgstr "Nowe pole" + +#: acf.php:400 +msgid "View Field" +msgstr "Zobacz pole" + +#: acf.php:401 +msgid "Search Fields" +msgstr "Szukaj pól" + +#: acf.php:402 +msgid "No Fields found" +msgstr "Nie znaleziono pól" + +#: acf.php:403 +msgid "No Fields found in Trash" +msgstr "Nie znaleziono pól w koszu" + +#: acf.php:441, includes/admin/admin-field-group.php:385, +#: includes/admin/admin-field-groups.php:230 +msgctxt "post status" +msgid "Disabled" +msgstr "Wyłączone" + +#: acf.php:446 +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Wyłączony: (%s)" +msgstr[1] "Wyłączonych: (%s)" +msgstr[2] "Wyłączonych: (%s)" + +#: acf.php:496 +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 nie powinny być aktywne " +"w tym samym czasie. Automatycznie dezaktywowaliśmy Advanced Custom Fields." + +#: acf.php:498 +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 nie powinny być aktywne " +"w tym samym czasie. Automatycznie dezaktywowaliśmy Advanced Custom Fields " +"PRO." + +#: includes/acf-field-functions.php:841, +#: includes/admin/admin-field-group.php:171 +msgid "(no label)" +msgstr "(brak etykiety)" + +#: includes/acf-field-group-functions.php:846, +#: includes/admin/admin-field-group.php:173 +msgid "copy" +msgstr "kopia" + +#: includes/acf-value-functions.php:353 +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 więcej wywołań, które pobierają " +"wartości pól ACF przed inicjalizacją ACF. Nie są one obsłużone i może " +"powodować nieprawidłowe lub brakujące dane. Dowiedz się, jak to naprawić." + +#: includes/acf-wp-functions.php:41 +msgid "Posts" +msgstr "Wpisy" + +#: includes/acf-wp-functions.php:54 +msgid "Taxonomies" +msgstr "Taksonomie" + +#: includes/acf-wp-functions.php:59 +msgid "Attachments" +msgstr "Załączniki" + +#: includes/acf-wp-functions.php:63, +#: includes/admin/views/field-group-options.php:144 +msgid "Comments" +msgstr "Komentarze" + +#: includes/acf-wp-functions.php:67 +msgid "Widgets" +msgstr "Widgety" + +#: includes/acf-wp-functions.php:71, +#: includes/locations/class-acf-location-nav-menu.php:89 +msgid "Menus" +msgstr "Wiele menu" + +#: includes/acf-wp-functions.php:75 +msgid "Menu items" +msgstr "Elementy menu" + +#: includes/acf-wp-functions.php:79 +msgid "Users" +msgstr "Użytkownicy" + +#: includes/acf-wp-functions.php:83, pro/options-page.php:47 +msgid "Options" +msgstr "Opcje" + +#: includes/acf-wp-functions.php:87 +msgid "Blocks" +msgstr "Bloki" + +#: includes/assets.php:348 +msgid "Are you sure?" +msgstr "Czy na pewno?" + +#: includes/assets.php:349, includes/fields/class-acf-field-true_false.php:80, +#: includes/fields/class-acf-field-true_false.php:176, +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Tak" + +#: includes/assets.php:350, includes/fields/class-acf-field-true_false.php:83, +#: includes/fields/class-acf-field-true_false.php:193, +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nie" + +#: includes/assets.php:351, includes/fields/class-acf-field-file.php:159, +#: includes/fields/class-acf-field-image.php:139, +#: includes/fields/class-acf-field-link.php:142, +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Usuń" + +#: includes/assets.php:352 +msgid "Cancel" +msgstr "Anuluj" + +#: includes/assets.php:362 +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/assets.php:365 +msgid "Validation successful" +msgstr "Walidacja zakończona sukcesem" + +#: includes/assets.php:366, includes/validation.php:286, +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Walidacja nie powiodła się" + +#: includes/assets.php:367 +msgid "1 field requires attention" +msgstr "1 pole wymaga uwagi" + +#: includes/assets.php:368 +msgid "%d fields require attention" +msgstr "%d pól wymaga uwagi" + +#: includes/assets.php:371, includes/forms/form-comment.php:160, +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Edytuj grupę pól" + +#: includes/fields.php:313 +msgid "Field type does not exist" +msgstr "Typ pola nie istnieje" + +#: includes/fields.php:313 +msgid "Unknown" +msgstr "Nieznane" + +#: includes/fields.php:354 +msgid "Basic" +msgstr "Podstawowe" + +#: includes/fields.php:355, includes/forms/form-front.php:49 +msgid "Content" +msgstr "Treść" + +#: includes/fields.php:356 +msgid "Choice" +msgstr "Wybór" + +#: includes/fields.php:357 +msgid "Relational" +msgstr "Relacyjne" + +#: includes/fields.php:358 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:359, +#: includes/fields/class-acf-field-button-group.php:181, +#: includes/fields/class-acf-field-checkbox.php:377, +#: includes/fields/class-acf-field-group.php:462, +#: includes/fields/class-acf-field-radio.php:256, +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:451 +msgid "Layout" +msgstr "Układ" + +#: includes/locations.php:25 +msgid "Class \"%s\" does not exist." +msgstr "Klasa \"%s\" nie istnieje." + +#: includes/locations.php:36 +msgid "Location type \"%s\" is already registered." +msgstr "Typ lokalizacji \"%s\" jest już zarejestrowany." + +#: includes/locations.php:99, includes/locations/class-acf-location-post.php:22 +msgid "Post" +msgstr "Wpis" + +#: includes/locations.php:100, +#: includes/locations/class-acf-location-page.php:22 +msgid "Page" +msgstr "Strona" + +#: includes/locations.php:101, includes/fields/class-acf-field-user.php:20 +msgid "User" +msgstr "Użytkownik" + +#: includes/locations.php:102 +msgid "Forms" +msgstr "Formularze" + +#: includes/media.php:48, includes/fields/class-acf-field-select.php:255 +msgctxt "verb" +msgid "Select" +msgstr "Wybierz" + +#: includes/media.php:49 +msgctxt "verb" +msgid "Edit" +msgstr "Edytuj" + +#: includes/media.php:50 +msgctxt "verb" +msgid "Update" +msgstr "Aktualizuj" + +#: includes/media.php:51 +msgid "Uploaded to this post" +msgstr "Przesłane do tego wpisu" + +#: includes/media.php:52 +msgid "Expand Details" +msgstr "Rozwiń szczegóły" + +#: includes/media.php:53 +msgid "Collapse Details" +msgstr "Zwiń szczegóły" + +#: includes/media.php:54 +msgid "Restricted" +msgstr "Ograniczone" + +#: includes/media.php:55, includes/fields/class-acf-field-image.php:67 +msgid "All images" +msgstr "Wszystkie obrazy" + +#: includes/validation.php:364 +msgid "%s value is required" +msgstr "%s wartość jest wymagana" + +#: pro/blocks.php:37 +msgid "Block type name is required." +msgstr "Nazwa typu bloku jest wymagana." + +#: pro/blocks.php:44 +msgid "Block type \"%s\" is already registered." +msgstr "Typ bloku \"%s\" jest już zarejestrowany." + +#: pro/blocks.php:495 +msgid "Switch to Edit" +msgstr "Przejdź do Edytuj" + +#: pro/blocks.php:496 +msgid "Switch to Preview" +msgstr "Przejdź do Podglądu" + +#: pro/blocks.php:497 +msgid "Change content alignment" +msgstr "Zmień wyrównanie treści" + +#. translators: %s: Block type title +#: pro/blocks.php:500 +msgid "%s settings" +msgstr "Ustawienia %s" + +#: pro/options-page.php:77, includes/forms/form-front.php:106, +#: pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Aktualizuj" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Sprawdź ponownie" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "" +"Błąd aktywacji ACF. Nie można połączyć się z serwerem aktywacyjnym" + +#: includes/admin/admin-field-group.php:84, +#: includes/admin/admin-field-group.php:85, +#: includes/admin/admin-field-group.php:87 +msgid "Field group updated." +msgstr "Grupa pól została zaktualizowana." + +#: includes/admin/admin-field-group.php:86 +msgid "Field group deleted." +msgstr "Grupa pól została usunięta." + +#: includes/admin/admin-field-group.php:89 +msgid "Field group published." +msgstr "Grupa pól została opublikowana." + +#: includes/admin/admin-field-group.php:90 +msgid "Field group saved." +msgstr "Grupa pól została zapisana." + +#: includes/admin/admin-field-group.php:91 +msgid "Field group submitted." +msgstr "Grupa pól została dodana." + +#: includes/admin/admin-field-group.php:92 +msgid "Field group scheduled for." +msgstr "Grupa pól została zaplanowana na." + +#: includes/admin/admin-field-group.php:93 +msgid "Field group draft updated." +msgstr "Szkic grupy pól został zaktualizowany." + +#: includes/admin/admin-field-group.php:164 +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/admin-field-group.php:165 +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/admin-field-group.php:166 +msgid "Field group title is required" +msgstr "Tytuł grupy pól jest wymagany" + +#: includes/admin/admin-field-group.php:167 +msgid "Move to trash. Are you sure?" +msgstr "Przenieś do kosza. Jesteś pewny?" + +#: includes/admin/admin-field-group.php:168 +msgid "No toggle fields available" +msgstr "Pola przełączania niedostępne" + +#: includes/admin/admin-field-group.php:169 +msgid "Move Custom Field" +msgstr "Przenieś pole" + +#: includes/admin/admin-field-group.php:170 +msgid "Checked" +msgstr "Zaznaczone" + +#: includes/admin/admin-field-group.php:172 +msgid "(this field)" +msgstr "(to pole)" + +#: includes/admin/admin-field-group.php:174, includes/api/api-helpers.php:3409, +#: includes/admin/views/field-group-field-conditional-logic.php:60, +#: includes/admin/views/field-group-field-conditional-logic.php:170, +#: includes/admin/views/field-group-locations.php:36, +#: includes/admin/views/html-location-group.php:3 +msgid "or" +msgstr "lub" + +#: includes/admin/admin-field-group.php:175, +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Pokaż tą grupę pól jeśli" + +#: includes/admin/admin-field-group.php:176 +msgid "Null" +msgstr "Null" + +#: includes/admin/admin-field-group.php:179 +msgid "Has any value" +msgstr "Ma dowolną wartość" + +#: includes/admin/admin-field-group.php:180 +msgid "Has no value" +msgstr "Nie ma wartości" + +#: includes/admin/admin-field-group.php:181 +msgid "Value is equal to" +msgstr "Wartość jest równa" + +#: includes/admin/admin-field-group.php:182 +msgid "Value is not equal to" +msgstr "Wartość nie jest równa" + +#: includes/admin/admin-field-group.php:183 +msgid "Value matches pattern" +msgstr "Wartość musi pasować do wzoru" + +#: includes/admin/admin-field-group.php:184 +msgid "Value contains" +msgstr "Wartość zawiera" + +#: includes/admin/admin-field-group.php:185 +msgid "Value is greater than" +msgstr "Wartość jest większa niż" + +#: includes/admin/admin-field-group.php:186 +msgid "Value is less than" +msgstr "Wartość jest mniejsza niż" + +#: includes/admin/admin-field-group.php:187 +msgid "Selection is greater than" +msgstr "Wybór jest większy niż" + +#: includes/admin/admin-field-group.php:188 +msgid "Selection is less than" +msgstr "Wybór jest mniejszy niż" + +#: includes/admin/admin-field-group.php:191 +msgid "Repeater (Pro only)" +msgstr "Pole powtarzalne (tylko Pro)" + +#: includes/admin/admin-field-group.php:192 +msgid "Flexible Content (Pro only)" +msgstr "Elastyczna zawartość (tylko Pro)" + +#: includes/admin/admin-field-group.php:193 +msgid "Clone (Pro only)" +msgstr "Klon (tylko Pro)" + +#: includes/admin/admin-field-group.php:194 +msgid "Gallery (Pro only)" +msgstr "Galeria (tylko Pro)" + +#: includes/admin/admin-field-group.php:234, +#: includes/admin/admin-field-groups.php:265 +msgid "Location" +msgstr "Lokacja" + +#: includes/admin/admin-field-group.php:235, +#: includes/admin/tools/class-acf-admin-tool-export.php:288 +msgid "Settings" +msgstr "Ustawienia" + +#: includes/admin/admin-field-group.php:361 +msgid "Field Keys" +msgstr "Klucze pola" + +#: includes/admin/admin-field-group.php:385 +msgctxt "post status" +msgid "Active" +msgstr "Aktywne" + +#: includes/admin/admin-field-group.php:752 +msgid "Move Complete." +msgstr "Przenoszenie zakończone." + +#: includes/admin/admin-field-group.php:754 +msgid "The %1$s field can now be found in the %2$s field group" +msgstr "Pole %1$s można teraz znaleźć w grupie pól %2$s" + +#: includes/admin/admin-field-group.php:758 +msgid "Close Window" +msgstr "Zamknij okno" + +#: includes/admin/admin-field-group.php:797 +msgid "Please select the destination for this field" +msgstr "Proszę wybrać miejsce przeznaczenia dla tego pola" + +#: includes/admin/admin-field-group.php:804 +msgid "Move Field" +msgstr "Przenieś pole" + +#: includes/admin/admin-field-groups.php:116 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktywny (%s)" +msgstr[1] "Aktywne (%s)" +msgstr[2] "Aktywnych (%s)" + +#: includes/admin/admin-field-groups.php:196 +msgid "Review local JSON changes" +msgstr "Przegląd lokalnych zmian JSON" + +#: includes/admin/admin-field-groups.php:197 +msgid "Loading diff" +msgstr "Ładowanie różnic" + +#: includes/admin/admin-field-groups.php:198, +#: includes/admin/admin-field-groups.php:533 +msgid "Sync changes" +msgstr "Synchronizuj zmiany" + +#: includes/admin/admin-field-groups.php:263, +#: pro/fields/class-acf-field-gallery.php:388, +#: includes/admin/views/field-group-options.php:127, +#: includes/admin/views/html-admin-page-upgrade-network.php:38, +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +msgid "Description" +msgstr "Opis" + +#: includes/admin/admin-field-groups.php:264, +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Klucz" + +#: includes/admin/admin-field-groups.php:269 +msgid "Local JSON" +msgstr "Lokalny JSON" + +#: includes/admin/admin-field-groups.php:419 +msgid "Various" +msgstr "Różne" + +#: includes/admin/admin-field-groups.php:449 +msgid "Located in: %s" +msgstr "Znajduje się w: %s" + +#: includes/admin/admin-field-groups.php:445 +msgid "Located in plugin: %s" +msgstr "Znalezione we wtyczce: %s" + +#: includes/admin/admin-field-groups.php:441 +msgid "Located in theme: %s" +msgstr "Znalezione w motywie: %s" + +#: includes/admin/admin-field-groups.php:484 +msgid "Awaiting save" +msgstr "Oczekiwanie na zapis" + +#: includes/admin/admin-field-groups.php:481 +msgid "Saved" +msgstr "Zapisane" + +#: includes/admin/admin-field-groups.php:469, +#: includes/admin/admin-field-groups.php:687 +msgid "Sync available" +msgstr "Synchronizacja możliwa" + +#: includes/admin/admin-field-groups.php:477 +msgid "Import" +msgstr "Import" + +#: includes/admin/admin-field-groups.php:472 +msgid "Sync" +msgstr "Synchronizacja" + +#: includes/admin/admin-field-groups.php:473 +msgid "Review changes" +msgstr "Przejrzyj zmiany" + +#: includes/admin/admin-field-groups.php:505 +msgid "Duplicate this item" +msgstr "Duplikuj to pole" + +#: includes/admin/admin-field-groups.php:505, +#: includes/admin/admin-field-groups.php:525, +#: pro/fields/class-acf-field-flexible-content.php:553, +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate" +msgstr "Duplikuj" + +#: includes/admin/admin-field-groups.php:555 +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "Grupa pól została powielona." +msgstr[1] "%s grupy pól zostało zduplikowanych." +msgstr[2] "%s grup pól zostało zduplikowanych." + +#: includes/admin/admin-field-groups.php:612 +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +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." + +#: includes/admin/admin-field-groups.php:800 +msgid "Select %s" +msgstr "Wybierz %s" + +#: includes/admin/admin-tools.php:119, +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Narzędzia" + +#: includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:113, +#: includes/admin/admin-upgrade.php:114, includes/admin/admin-upgrade.php:177, +#: includes/admin/views/html-admin-page-upgrade-network.php:24, +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "Aktualizuj bazę danych" + +#: includes/admin/admin-upgrade.php:201 +msgid "Review sites & upgrade" +msgstr "Strona opinii i aktualizacji" + +#: includes/admin/admin.php:49, +#: includes/admin/views/field-group-options.php:142 +msgid "Custom Fields" +msgstr "Własne pola" + +#: includes/admin/admin.php:129, includes/admin/admin.php:131 +msgid "Overview" +msgstr "Podsumowanie" + +#: includes/admin/admin.php:132 +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:134 +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:137 +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:146, includes/admin/admin.php:148 +msgid "Help & Support" +msgstr "Pomoc & Wsparcie" + +#: includes/admin/admin.php:149 +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. Jeśli napotkasz " +"jakiekolwiek trudności, jest kilka miejsc, w których możesz znaleźć pomoc:" + +#: includes/admin/admin.php:152 +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:156 +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." + +#: includes/admin/admin.php:160 +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:169 +msgid "Information" +msgstr "Informacja" + +#: includes/admin/admin.php:170 +msgid "Version %s" +msgstr "Wersja %s" + +#: includes/admin/admin.php:171 +msgid "View details" +msgstr "Pokaż szczegóły" + +#: includes/admin/admin.php:172 +msgid "Visit website" +msgstr "Odwiedź stronę" + +#: includes/admin/admin.php:201, +#: includes/admin/views/field-group-field-conditional-logic.php:157, +#: includes/admin/views/html-location-rule.php:92 +msgid "and" +msgstr "oraz" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:36 +msgid "Invalid field group parameter(s)." +msgstr "Nieprawidłowy parametr (parametry) grupy pól." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:43 +msgid "Invalid field group ID." +msgstr "Nieprawidłowy identyfikator grupy pól." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:53 +msgid "Sorry, this field group is unavailable for diff comparison." +msgstr "Przepraszamy, ta grupa pól jest niedostępna dla porównania różnic." + +#: includes/ajax/class-acf-ajax-local-json-diff.php:59 +msgid "Last updated: %s" +msgstr "Ostatnia aktualizacja: %s" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:64 +msgid "Original field group" +msgstr "Oryginalna grupa pól" + +#: includes/ajax/class-acf-ajax-local-json-diff.php:68 +msgid "JSON field group (newer)" +msgstr "Grupa pól JSON (nowsze)" + +#: includes/ajax/class-acf-ajax-upgrade.php:34, +#: includes/admin/views/html-admin-page-upgrade.php:94 +msgid "No updates available." +msgstr "Brak dostępnych aktualizacji." + +#: includes/ajax/class-acf-ajax.php:157 +msgid "Invalid nonce." +msgstr "Nieprawidłowy identyfikator jednorazowy." + +#: includes/api/api-helpers.php:821 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/api/api-helpers.php:822 +msgid "Medium" +msgstr "Średni" + +#: includes/api/api-helpers.php:823 +msgid "Large" +msgstr "Duży" + +#: includes/api/api-helpers.php:864 +msgid "Full Size" +msgstr "Pełny rozmiar" + +#: includes/api/api-helpers.php:1569, includes/api/api-term.php:147, +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(brak tytułu)" + +#: includes/api/api-helpers.php:3343 +msgid "Image width must not exceed %dpx." +msgstr "Szerokość obrazu nie może przekraczać %dpx." + +#: includes/api/api-helpers.php:3338 +msgid "Image width must be at least %dpx." +msgstr "Szerokość obrazu musi mieć co najmniej %dpx." + +#: includes/api/api-helpers.php:3362 +msgid "Image height must not exceed %dpx." +msgstr "Wysokość obrazu nie może przekraczać %dpx." + +#: includes/api/api-helpers.php:3357 +msgid "Image height must be at least %dpx." +msgstr "Wysokość obrazu musi mieć co najmniej %dpx." + +#: includes/api/api-helpers.php:3382 +msgid "File size must not exceed %s." +msgstr "Rozmiar pliku nie może przekraczać %s." + +#: includes/api/api-helpers.php:3377 +msgid "File size must be at least %s." +msgstr "Rozmiar pliku musi wynosić co najmniej %s." + +#: includes/api/api-helpers.php:3413 +msgid "File type must be %s." +msgstr "Plik musi spełniać kryteria typu %s." + +#: includes/fields/class-acf-field-accordion.php:25 +msgid "Accordion" +msgstr "Zwijane panele" + +#: includes/fields/class-acf-field-accordion.php:102 +msgid "Open" +msgstr "Otwarte" + +#: includes/fields/class-acf-field-accordion.php:103 +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:114 +msgid "Multi-expand" +msgstr "Multi-expand" + +#: includes/fields/class-acf-field-accordion.php:115 +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:126, +#: includes/fields/class-acf-field-tab.php:117 +msgid "Endpoint" +msgstr "Punkt końcowy" + +#: includes/fields/class-acf-field-accordion.php:127 +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-button-group.php:24 +msgid "Button Group" +msgstr "Grupa przycisków" + +#: includes/fields/class-acf-field-button-group.php:147, +#: includes/fields/class-acf-field-checkbox.php:324, +#: includes/fields/class-acf-field-radio.php:191, +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "Wybory" + +#: includes/fields/class-acf-field-button-group.php:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +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:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"Aby uzyskać większą kontrolę, można określić zarówno wartość i etykietę w " +"niniejszy sposób:" + +#: includes/fields/class-acf-field-button-group.php:148, +#: includes/fields/class-acf-field-checkbox.php:325, +#: includes/fields/class-acf-field-radio.php:192, +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "czerwony : Czerwony" + +#: includes/fields/class-acf-field-button-group.php:158, +#: includes/fields/class-acf-field-page_link.php:482, +#: includes/fields/class-acf-field-post_object.php:394, +#: includes/fields/class-acf-field-radio.php:202, +#: includes/fields/class-acf-field-select.php:386, +#: includes/fields/class-acf-field-taxonomy.php:748, +#: includes/fields/class-acf-field-user.php:68 +msgid "Allow Null?" +msgstr "Zezwolić na pustą wartość Null?" + +#: includes/fields/class-acf-field-button-group.php:170, +#: includes/fields/class-acf-field-checkbox.php:366, +#: includes/fields/class-acf-field-color_picker.php:155, +#: includes/fields/class-acf-field-email.php:117, +#: includes/fields/class-acf-field-number.php:125, +#: includes/fields/class-acf-field-radio.php:245, +#: includes/fields/class-acf-field-range.php:163, +#: includes/fields/class-acf-field-select.php:375, +#: includes/fields/class-acf-field-text.php:97, +#: includes/fields/class-acf-field-textarea.php:103, +#: includes/fields/class-acf-field-true_false.php:148, +#: includes/fields/class-acf-field-url.php:101, +#: includes/fields/class-acf-field-wysiwyg.php:334 +msgid "Default Value" +msgstr "Domyślna wartość" + +#: includes/fields/class-acf-field-button-group.php:171, +#: includes/fields/class-acf-field-email.php:118, +#: includes/fields/class-acf-field-number.php:126, +#: includes/fields/class-acf-field-radio.php:246, +#: includes/fields/class-acf-field-range.php:164, +#: includes/fields/class-acf-field-text.php:98, +#: includes/fields/class-acf-field-textarea.php:104, +#: includes/fields/class-acf-field-url.php:102, +#: includes/fields/class-acf-field-wysiwyg.php:335 +msgid "Appears when creating a new post" +msgstr "Wyświetlane podczas tworzenia nowego wpisu" + +#: includes/fields/class-acf-field-button-group.php:187, +#: includes/fields/class-acf-field-checkbox.php:384, +#: includes/fields/class-acf-field-radio.php:263 +msgid "Horizontal" +msgstr "Poziomy" + +#: includes/fields/class-acf-field-button-group.php:188, +#: includes/fields/class-acf-field-checkbox.php:383, +#: includes/fields/class-acf-field-radio.php:262 +msgid "Vertical" +msgstr "Pionowy" + +#: includes/fields/class-acf-field-button-group.php:197, +#: includes/fields/class-acf-field-checkbox.php:405, +#: includes/fields/class-acf-field-file.php:227, +#: includes/fields/class-acf-field-link.php:170, +#: includes/fields/class-acf-field-radio.php:272, +#: includes/fields/class-acf-field-taxonomy.php:801 +msgid "Return Value" +msgstr "Zwracana wartość" + +#: includes/fields/class-acf-field-button-group.php:198, +#: includes/fields/class-acf-field-checkbox.php:406, +#: includes/fields/class-acf-field-file.php:228, +#: includes/fields/class-acf-field-link.php:171, +#: includes/fields/class-acf-field-radio.php:273 +msgid "Specify the returned value on front end" +msgstr "Określ zwracaną wartość na stronie (front-end)" + +#: includes/fields/class-acf-field-button-group.php:203, +#: includes/fields/class-acf-field-checkbox.php:411, +#: includes/fields/class-acf-field-radio.php:278, +#: includes/fields/class-acf-field-select.php:444 +msgid "Value" +msgstr "Wartość" + +#: includes/fields/class-acf-field-button-group.php:204, +#: includes/fields/class-acf-field-checkbox.php:412, +#: includes/fields/class-acf-field-radio.php:279, +#: includes/fields/class-acf-field-select.php:445, +#: pro/fields/class-acf-field-flexible-content.php:581, +#: includes/admin/views/field-group-fields.php:5 +msgid "Label" +msgstr "Etykieta" + +#: includes/fields/class-acf-field-button-group.php:205, +#: includes/fields/class-acf-field-checkbox.php:413, +#: includes/fields/class-acf-field-radio.php:280, +#: includes/fields/class-acf-field-select.php:446 +msgid "Both (Array)" +msgstr "Oba (Array)" + +#: includes/fields/class-acf-field-checkbox.php:25, +#: includes/fields/class-acf-field-taxonomy.php:733 +msgid "Checkbox" +msgstr "Wybór (checkbox)" + +#: includes/fields/class-acf-field-checkbox.php:144 +msgid "Toggle All" +msgstr "Przełącz wszystko" + +#: includes/fields/class-acf-field-checkbox.php:207 +msgid "Add new choice" +msgstr "Dodaj nowy wybór" + +#: includes/fields/class-acf-field-checkbox.php:335 +msgid "Allow Custom" +msgstr "Zezwól na niestandardowe" + +#: includes/fields/class-acf-field-checkbox.php:340 +msgid "Allow 'custom' values to be added" +msgstr "Zezwalaj na dodawanie \"niestandardowych\" wartości" + +#: includes/fields/class-acf-field-checkbox.php:348 +msgid "Save Custom" +msgstr "Zapisz niestandardowe" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Save 'custom' values to the field's choices" +msgstr "Zapisz \"niestandardowe\" wartości tego pola wyboru" + +#: includes/fields/class-acf-field-checkbox.php:367, +#: includes/fields/class-acf-field-select.php:376 +msgid "Enter each default value on a new line" +msgstr "Wpisz każdą domyślną wartość w osobnej linii" + +#: includes/fields/class-acf-field-checkbox.php:393 +msgid "Toggle" +msgstr "Przełącznik (Toggle)" + +#: includes/fields/class-acf-field-checkbox.php:394 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" +"Dołącz dodatkowe pole wyboru, aby grupowo włączać/wyłączać wszystkie pola " +"wyboru" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Wybór koloru" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Clear" +msgstr "Wyczyść" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Clear color" +msgstr "Usuń kolor" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Default" +msgstr "Domyślna wartość" + +#: includes/fields/class-acf-field-color_picker.php:72 +msgid "Select default color" +msgstr "Ustaw kolor domyślny" + +#: includes/fields/class-acf-field-color_picker.php:73 +msgid "Select Color" +msgstr "Wybierz kolor" + +#: includes/fields/class-acf-field-color_picker.php:74 +msgid "Color value" +msgstr "Wartość koloru" + +#: includes/fields/class-acf-field-color_picker.php:95, +#: includes/fields/class-acf-field-color_picker.php:185 +msgid "Hex String" +msgstr "Hex String" + +#: includes/fields/class-acf-field-color_picker.php:96 +msgid "RGBA String" +msgstr "Ciąg RGBA" + +#: includes/fields/class-acf-field-color_picker.php:167 +msgid "Enable Transparency" +msgstr "Włącz transparencję" + +#: includes/fields/class-acf-field-color_picker.php:179, +#: includes/fields/class-acf-field-date_picker.php:216, +#: includes/fields/class-acf-field-date_time_picker.php:201, +#: includes/fields/class-acf-field-image.php:204, +#: includes/fields/class-acf-field-post_object.php:418, +#: includes/fields/class-acf-field-relationship.php:662, +#: includes/fields/class-acf-field-select.php:439, +#: includes/fields/class-acf-field-time_picker.php:131, +#: includes/fields/class-acf-field-user.php:90, +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Zwracany format" + +#: includes/fields/class-acf-field-color_picker.php:186 +msgid "RGBA Array" +msgstr "Tablica RGBA" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Wybór daty" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Gotowe" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Dzisiaj" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Dalej" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Wstecz" + +#: includes/fields/class-acf-field-date_picker.php:64 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Tydz" + +#: 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:114 +msgid "Display Format" +msgstr "Format wyświetlania" + +#: 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:115 +msgid "The format displayed when editing a post" +msgstr "Wyświetlany format przy edycji wpisu" + +#: includes/fields/class-acf-field-date_picker.php:190, +#: includes/fields/class-acf-field-date_picker.php:226, +#: includes/fields/class-acf-field-date_time_picker.php:192, +#: includes/fields/class-acf-field-date_time_picker.php:211, +#: includes/fields/class-acf-field-time_picker.php:122, +#: includes/fields/class-acf-field-time_picker.php:139 +msgid "Custom:" +msgstr "Niestandardowe:" + +#: includes/fields/class-acf-field-date_picker.php:217, +#: includes/fields/class-acf-field-date_time_picker.php:202, +#: 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-date_picker.php:202 +msgid "Save Format" +msgstr "Zapisz format" + +#: includes/fields/class-acf-field-date_picker.php:203 +msgid "The format used when saving a value" +msgstr "Format używany podczas zapisywania wartości" + +#: includes/fields/class-acf-field-date_picker.php:237, +#: includes/fields/class-acf-field-date_time_picker.php:220 +msgid "Week Starts On" +msgstr "Tydzień zaczyna się od" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Wybieranie daty i godziny" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Wybierz czas" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Czas" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Godzina" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuta" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Sekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Mikrosekunda" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Strefa czasu" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Teraz" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Gotowe" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +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 amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "E-mail" + +#: includes/fields/class-acf-field-email.php:128, +#: includes/fields/class-acf-field-number.php:136, +#: includes/fields/class-acf-field-password.php:73, +#: includes/fields/class-acf-field-text.php:108, +#: includes/fields/class-acf-field-textarea.php:114, +#: includes/fields/class-acf-field-url.php:112 +msgid "Placeholder Text" +msgstr "Placeholder (tekst zastępczy)" + +#: includes/fields/class-acf-field-email.php:129, +#: includes/fields/class-acf-field-number.php:137, +#: includes/fields/class-acf-field-password.php:74, +#: includes/fields/class-acf-field-text.php:109, +#: includes/fields/class-acf-field-textarea.php:115, +#: includes/fields/class-acf-field-url.php:113 +msgid "Appears within the input" +msgstr "Pojawia się w polu formularza" + +#: includes/fields/class-acf-field-email.php:139, +#: includes/fields/class-acf-field-number.php:147, +#: includes/fields/class-acf-field-password.php:84, +#: includes/fields/class-acf-field-range.php:210, +#: includes/fields/class-acf-field-text.php:119 +msgid "Prepend" +msgstr "Przed polem (prefiks)" + +#: includes/fields/class-acf-field-email.php:140, +#: includes/fields/class-acf-field-number.php:148, +#: includes/fields/class-acf-field-password.php:85, +#: includes/fields/class-acf-field-range.php:211, +#: includes/fields/class-acf-field-text.php:120 +msgid "Appears before the input" +msgstr "Pojawia się przed polem formularza" + +#: includes/fields/class-acf-field-email.php:150, +#: includes/fields/class-acf-field-number.php:158, +#: includes/fields/class-acf-field-password.php:95, +#: includes/fields/class-acf-field-range.php:221, +#: includes/fields/class-acf-field-text.php:130 +msgid "Append" +msgstr "Za polem (sufiks)" + +#: includes/fields/class-acf-field-email.php:151, +#: includes/fields/class-acf-field-number.php:159, +#: includes/fields/class-acf-field-password.php:96, +#: includes/fields/class-acf-field-range.php:222, +#: includes/fields/class-acf-field-text.php:131 +msgid "Appears after the input" +msgstr "Pojawia się za polem formularza" + +#: includes/fields/class-acf-field-email.php:175 +msgid "'%s' is not a valid email address" +msgstr "'%s' nie jest prawidłowym adresem e-mail" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Plik" + +#: includes/fields/class-acf-field-file.php:58, +#: includes/admin/tools/class-acf-admin-tool-import.php:55 +msgid "Select File" +msgstr "Wybierz plik" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Edit File" +msgstr "Edytuj plik" + +#: includes/fields/class-acf-field-file.php:60 +msgid "Update File" +msgstr "Aktualizuj plik" + +#: includes/fields/class-acf-field-file.php:147 +msgid "File name" +msgstr "Nazwa pliku" + +#: includes/fields/class-acf-field-file.php:151, +#: includes/fields/class-acf-field-file.php:264, +#: includes/fields/class-acf-field-file.php:277, +#: includes/fields/class-acf-field-image.php:276, +#: includes/fields/class-acf-field-image.php:313, +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Wielkość pliku" + +#: includes/fields/class-acf-field-file.php:157, +#: includes/fields/class-acf-field-image.php:137, +#: includes/fields/class-acf-field-link.php:142, +#: pro/fields/class-acf-field-gallery.php:335, +#: includes/admin/views/field-group-field.php:56 +msgid "Edit" +msgstr "Edytuj" + +#: includes/fields/class-acf-field-file.php:182, +#: includes/admin/tools/class-acf-admin-tool-import.php:89 +msgid "No file selected" +msgstr "Nie zaznaczono żadnego pliku" + +#: includes/fields/class-acf-field-file.php:182 +msgid "Add File" +msgstr "Dodaj plik" + +#: includes/fields/class-acf-field-file.php:233 +msgid "File Array" +msgstr "Tablica pliku (Array)" + +#: includes/fields/class-acf-field-file.php:234 +msgid "File URL" +msgstr "Adres URL pliku" + +#: includes/fields/class-acf-field-file.php:235 +msgid "File ID" +msgstr "ID pliku" + +#: includes/fields/class-acf-field-file.php:244, +#: includes/fields/class-acf-field-image.php:233, +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Biblioteka" + +#: includes/fields/class-acf-field-file.php:245, +#: includes/fields/class-acf-field-image.php:234, +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Ograniczenie wyborów z biblioteki" + +#: includes/fields/class-acf-field-file.php:250, +#: includes/fields/class-acf-field-image.php:239, +#: 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, +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Wszystkie" + +#: includes/fields/class-acf-field-file.php:251, +#: includes/fields/class-acf-field-image.php:240, +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Przesłane do wpisu" + +#: includes/fields/class-acf-field-file.php:260, +#: includes/fields/class-acf-field-image.php:249, +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimum" + +#: includes/fields/class-acf-field-file.php:261, +#: includes/fields/class-acf-field-file.php:274 +msgid "Restrict which files can be uploaded" +msgstr "Określ jakie pliki mogą być przesyłane" + +#: includes/fields/class-acf-field-file.php:273, +#: includes/fields/class-acf-field-image.php:286, +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maksimum" + +#: includes/fields/class-acf-field-file.php:286, +#: includes/fields/class-acf-field-image.php:323, +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Dozwolone typy plików" + +#: includes/fields/class-acf-field-file.php:287, +#: includes/fields/class-acf-field-image.php:324, +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "Lista rozdzielana przecinkami. Pozostaw puste dla wszystkich typów" + +#: includes/fields/class-acf-field-file.php:469 +msgid "%s requires a valid attachment ID." +msgstr "%s wymaga prawidłowego ID załącznika." + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Mapa Google" + +#: includes/fields/class-acf-field-google-map.php:60 +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:155, +#: includes/fields/class-acf-field-relationship.php:615 +msgid "Search" +msgstr "Szukaj" + +#: includes/fields/class-acf-field-google-map.php:156 +msgid "Clear location" +msgstr "Wyczyść lokalizację" + +#: includes/fields/class-acf-field-google-map.php:157 +msgid "Find current location" +msgstr "Znajdź aktualną lokalizację" + +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Search for address..." +msgstr "Szukaj adresu..." + +#: includes/fields/class-acf-field-google-map.php:192, +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Center" +msgstr "Wyśrodkuj" + +#: includes/fields/class-acf-field-google-map.php:193, +#: includes/fields/class-acf-field-google-map.php:206 +msgid "Center the initial map" +msgstr "Wyśrodkuj początkową mapę" + +#: includes/fields/class-acf-field-google-map.php:219 +msgid "Zoom" +msgstr "Zbliżenie" + +#: includes/fields/class-acf-field-google-map.php:220 +msgid "Set the initial zoom level" +msgstr "Ustaw początkowe zbliżenie" + +#: includes/fields/class-acf-field-google-map.php:231, +#: includes/fields/class-acf-field-image.php:264, +#: includes/fields/class-acf-field-image.php:301, +#: includes/fields/class-acf-field-oembed.php:292, +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Wysokość" + +#: includes/fields/class-acf-field-google-map.php:232 +msgid "Customize the map height" +msgstr "Dostosuj wysokość mapy" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Grupa" + +#: includes/fields/class-acf-field-group.php:446, +#: pro/fields/class-acf-field-repeater.php:381 +msgid "Sub Fields" +msgstr "Pola podrzędne" + +#: includes/fields/class-acf-field-group.php:463, +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Określ style stosowane to renderowania wybranych pól" + +#: includes/fields/class-acf-field-group.php:468, +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:459, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Blok" + +#: includes/fields/class-acf-field-group.php:469, +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Table" +msgstr "Tabela" + +#: includes/fields/class-acf-field-group.php:470, +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:460 +msgid "Row" +msgstr "Wiersz" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Obraz" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Select Image" +msgstr "Wybierz obraz" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Edit Image" +msgstr "Edytuj obraz" + +#: includes/fields/class-acf-field-image.php:66 +msgid "Update Image" +msgstr "Aktualizuj obraz" + +#: includes/fields/class-acf-field-image.php:158 +msgid "No image selected" +msgstr "Nie wybrano obrazu" + +#: includes/fields/class-acf-field-image.php:158 +msgid "Add Image" +msgstr "Dodaj obraz" + +#: includes/fields/class-acf-field-image.php:210, +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Tablica obrazów (Array)" + +#: includes/fields/class-acf-field-image.php:211, +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Adres URL obrazu" + +#: includes/fields/class-acf-field-image.php:212, +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "ID obrazu" + +#: includes/fields/class-acf-field-image.php:221, +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Rozmiar podglądu" + +#: includes/fields/class-acf-field-image.php:250, +#: includes/fields/class-acf-field-image.php:287, +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Określ jakie obrazy mogą być przesyłane" + +#: includes/fields/class-acf-field-image.php:253, +#: includes/fields/class-acf-field-image.php:290, +#: includes/fields/class-acf-field-oembed.php:279, +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Szerokość" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Link" + +#: includes/fields/class-acf-field-link.php:137 +msgid "Select Link" +msgstr "Wybierz link" + +#: includes/fields/class-acf-field-link.php:142 +msgid "Opens in a new window/tab" +msgstr "Otwiera się w nowym oknie/karcie" + +#: includes/fields/class-acf-field-link.php:176 +msgid "Link Array" +msgstr "Tablica linków (Array)" + +#: includes/fields/class-acf-field-link.php:177 +msgid "Link URL" +msgstr "Adres URL linku" + +#: includes/fields/class-acf-field-message.php:26, +#: includes/fields/class-acf-field-message.php:100, +#: includes/fields/class-acf-field-true_false.php:137 +msgid "Message" +msgstr "Wiadomość" + +#: includes/fields/class-acf-field-message.php:111, +#: includes/fields/class-acf-field-textarea.php:148 +msgid "New Lines" +msgstr "Nowe linie" + +#: includes/fields/class-acf-field-message.php:112, +#: includes/fields/class-acf-field-textarea.php:149 +msgid "Controls how new lines are rendered" +msgstr "Kontroluje jak nowe linie są renderowane" + +#: includes/fields/class-acf-field-message.php:116, +#: includes/fields/class-acf-field-textarea.php:153 +msgid "Automatically add paragraphs" +msgstr "Automatycznie dodaj akapity" + +#: includes/fields/class-acf-field-message.php:117, +#: includes/fields/class-acf-field-textarea.php:154 +msgid "Automatically add <br>" +msgstr "Automatycznie dodaj <br>" + +#: includes/fields/class-acf-field-message.php:118, +#: includes/fields/class-acf-field-textarea.php:155 +msgid "No Formatting" +msgstr "Brak formatowania" + +#: includes/fields/class-acf-field-message.php:127 +msgid "Escape HTML" +msgstr "Dodawaj znaki ucieczki do HTML (escape HTML)" + +#: includes/fields/class-acf-field-message.php:128 +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-number.php:25 +msgid "Number" +msgstr "Liczba" + +#: includes/fields/class-acf-field-number.php:169, +#: includes/fields/class-acf-field-range.php:174 +msgid "Minimum Value" +msgstr "Minimalna wartość" + +#: includes/fields/class-acf-field-number.php:180, +#: includes/fields/class-acf-field-range.php:186 +msgid "Maximum Value" +msgstr "Maksymalna wartość" + +#: includes/fields/class-acf-field-number.php:191, +#: includes/fields/class-acf-field-range.php:198 +msgid "Step Size" +msgstr "Wielkość kroku" + +#: includes/fields/class-acf-field-number.php:229 +msgid "Value must be a number" +msgstr "Wartość musi być liczbą" + +#: includes/fields/class-acf-field-number.php:244 +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:251 +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-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:230 +msgid "Enter URL" +msgstr "Wprowadź adres URL" + +#: includes/fields/class-acf-field-oembed.php:276, +#: includes/fields/class-acf-field-oembed.php:289 +msgid "Embed Size" +msgstr "Rozmiar osadzenia" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Link do strony" + +#: includes/fields/class-acf-field-page_link.php:165 +msgid "Archives" +msgstr "Archiwa" + +#: includes/fields/class-acf-field-page_link.php:249, +#: includes/fields/class-acf-field-post_object.php:250, +#: includes/fields/class-acf-field-taxonomy.php:948 +msgid "Parent" +msgstr "Rodzic" + +#: includes/fields/class-acf-field-page_link.php:450, +#: includes/fields/class-acf-field-post_object.php:362, +#: includes/fields/class-acf-field-relationship.php:578 +msgid "Filter by Post Type" +msgstr "Filtruj wg typu wpisu" + +#: includes/fields/class-acf-field-page_link.php:458, +#: includes/fields/class-acf-field-post_object.php:370, +#: includes/fields/class-acf-field-relationship.php:586 +msgid "All post types" +msgstr "Wszystkie typy wpisów" + +#: includes/fields/class-acf-field-page_link.php:466, +#: includes/fields/class-acf-field-post_object.php:378, +#: includes/fields/class-acf-field-relationship.php:594 +msgid "Filter by Taxonomy" +msgstr "Filtruj wg taksonomii" + +#: includes/fields/class-acf-field-page_link.php:474, +#: includes/fields/class-acf-field-post_object.php:386, +#: includes/fields/class-acf-field-relationship.php:602 +msgid "All taxonomies" +msgstr "Wszystkie taksonomie" + +#: includes/fields/class-acf-field-page_link.php:494 +msgid "Allow Archives URLs" +msgstr "Pozwól na adresy URL archiwów" + +#: includes/fields/class-acf-field-page_link.php:506, +#: includes/fields/class-acf-field-post_object.php:406, +#: includes/fields/class-acf-field-select.php:398, +#: includes/fields/class-acf-field-user.php:79 +msgid "Select multiple values?" +msgstr "Możliwość wyboru wielu wartości?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Hasło" + +#: includes/fields/class-acf-field-post_object.php:25, +#: includes/fields/class-acf-field-post_object.php:423, +#: includes/fields/class-acf-field-relationship.php:667 +msgid "Post Object" +msgstr "Obiekt wpisu" + +#: includes/fields/class-acf-field-post_object.php:424, +#: includes/fields/class-acf-field-relationship.php:668 +msgid "Post ID" +msgstr "ID wpisu" + +#: includes/fields/class-acf-field-post_object.php:642 +msgid "%1$s must have a valid post ID." +msgstr "%1$s musi mieć poprawny identyfikator wpisu." + +#: includes/fields/class-acf-field-post_object.php:651 +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 wpisu %2$s." +msgstr[1] "%1$s musi należeć do następujących typów wpisów: %2$s" +msgstr[2] "%1$s musi należeć do następujących typów wpisów: %2$s" + +#: includes/fields/class-acf-field-post_object.php:667 +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 następujących taksonomii: %2$s" +msgstr[2] "%1$s musi należeć do następujących taksonomii: %2$s" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Przycisk opcji (radio)" + +#: includes/fields/class-acf-field-radio.php:214 +msgid "Other" +msgstr "Inne" + +#: includes/fields/class-acf-field-radio.php:219 +msgid "Add 'other' choice to allow for custom values" +msgstr "" +"Dodaj pole \"inne\" aby zezwolić na wartości definiowane przez użytkownika" + +#: includes/fields/class-acf-field-radio.php:227 +msgid "Save Other" +msgstr "Zapisz inne" + +#: includes/fields/class-acf-field-radio.php:232 +msgid "Save 'other' values to the field's choices" +msgstr "Dopisz zapisaną wartość pola \"inne\" do wyborów tego pola" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Zakres" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relacja" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Maximum values reached ( {max} values )" +msgstr "Maksymalna liczba wartości została przekroczona ( {max} wartości )" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "Loading" +msgstr "Ładowanie" + +#: includes/fields/class-acf-field-relationship.php:65 +msgid "No matches found" +msgstr "Nie znaleziono pasujących wyników" + +#: includes/fields/class-acf-field-relationship.php:390 +msgid "Select post type" +msgstr "Wybierz typ wpisu" + +#: includes/fields/class-acf-field-relationship.php:399 +msgid "Select taxonomy" +msgstr "Wybierz taksonomię" + +#: includes/fields/class-acf-field-relationship.php:469 +msgid "Search..." +msgstr "Szukaj..." + +#: includes/fields/class-acf-field-relationship.php:610 +msgid "Filters" +msgstr "Filtry" + +#: includes/fields/class-acf-field-relationship.php:616, +#: includes/locations/class-acf-location-post-type.php:22 +msgid "Post Type" +msgstr "Typ wpisu" + +#: includes/fields/class-acf-field-relationship.php:617, +#: includes/fields/class-acf-field-taxonomy.php:28, +#: includes/fields/class-acf-field-taxonomy.php:714, +#: includes/locations/class-acf-location-taxonomy.php:22 +msgid "Taxonomy" +msgstr "Taksonomia" + +#: includes/fields/class-acf-field-relationship.php:626 +msgid "Elements" +msgstr "Elementy" + +#: includes/fields/class-acf-field-relationship.php:627 +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:631, +#: includes/admin/views/field-group-options.php:150 +msgid "Featured Image" +msgstr "Obrazek wyróżniający" + +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Minimum posts" +msgstr "Minimum wpisów" + +#: includes/fields/class-acf-field-relationship.php:651 +msgid "Maximum posts" +msgstr "Maksimum wpisów" + +#: includes/fields/class-acf-field-relationship.php:752, +#: pro/fields/class-acf-field-gallery.php:832 +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-select.php:25, +#: includes/fields/class-acf-field-taxonomy.php:738 +msgctxt "noun" +msgid "Select" +msgstr "Wybór" + +#: includes/fields/class-acf-field-select.php:107 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Dostępny jest jeden wynik. Aby go wybrać, wciśnij klawisz enter." + +#: includes/fields/class-acf-field-select.php:108 +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:109 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nie znaleziono wyników" + +#: includes/fields/class-acf-field-select.php:110 +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:111 +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:112 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Proszę usunąć 1 znak" + +#: includes/fields/class-acf-field-select.php:113 +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:114 +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:115 +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Możesz wybrać tylko %d elementy/ów" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Ładuję więcej wyników…" + +#: includes/fields/class-acf-field-select.php:117 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Szukam…" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Ładowanie zakończone niepowodzeniem" + +#: includes/fields/class-acf-field-select.php:410, +#: includes/fields/class-acf-field-true_false.php:159 +msgid "Stylised UI" +msgstr "Ostylowany interfejs użytkownika" + +#: includes/fields/class-acf-field-select.php:422 +msgid "Use AJAX to lazy load choices?" +msgstr "Użyć technologii AJAX do wczytywania wyników?" + +#: includes/fields/class-acf-field-select.php:440 +msgid "Specify the value returned" +msgstr "Określ zwracaną wartość" + +#: includes/fields/class-acf-field-select.php:663 +msgid "%1$s is not one of %2$s" +msgstr "%1$s nie jest jednym z %2$s" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Separator" + +#: includes/fields/class-acf-field-tab.php:26 +msgid "Tab" +msgstr "Zakładka" + +#: includes/fields/class-acf-field-tab.php:103 +msgid "Placement" +msgstr "Położenie" + +#: includes/fields/class-acf-field-tab.php:107, +#: includes/admin/views/field-group-options.php:87 +msgid "Top aligned" +msgstr "Wyrównanie do góry" + +#: includes/fields/class-acf-field-tab.php:108, +#: includes/admin/views/field-group-options.php:88 +msgid "Left aligned" +msgstr "Wyrównanie do lewej" + +#: includes/fields/class-acf-field-tab.php:118 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "Użyj tego pola jako punkt końcowy i zacznij nową grupę zakładek." + +#: includes/fields/class-acf-field-taxonomy.php:673 +msgctxt "No terms" +msgid "No %s" +msgstr "Brak %s" + +#: includes/fields/class-acf-field-taxonomy.php:715 +msgid "Select the taxonomy to be displayed" +msgstr "Wybierz taksonomię do wyświetlenia" + +#: includes/fields/class-acf-field-taxonomy.php:726 +msgid "Appearance" +msgstr "Wygląd" + +#: includes/fields/class-acf-field-taxonomy.php:727 +msgid "Select the appearance of this field" +msgstr "Określ wygląd tego pola" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "Multiple Values" +msgstr "Wiele wartości" + +#: includes/fields/class-acf-field-taxonomy.php:734 +msgid "Multi Select" +msgstr "Wybór wielokrotny" + +#: includes/fields/class-acf-field-taxonomy.php:736 +msgid "Single Value" +msgstr "Pojedyncza wartość" + +#: includes/fields/class-acf-field-taxonomy.php:737 +msgid "Radio Buttons" +msgstr "Przycisk opcji (radio)" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Create Terms" +msgstr "Tworzenie terminów taksonomii" + +#: includes/fields/class-acf-field-taxonomy.php:766 +msgid "Allow new terms to be created whilst editing" +msgstr "Pozwól na tworzenie nowych terminów taksonomii podczas edycji" + +#: includes/fields/class-acf-field-taxonomy.php:777 +msgid "Save Terms" +msgstr "Zapisz terminy taksonomii" + +#: includes/fields/class-acf-field-taxonomy.php:778 +msgid "Connect selected terms to the post" +msgstr "Przypisz wybrane terminy taksonomii do wpisu" + +#: includes/fields/class-acf-field-taxonomy.php:789 +msgid "Load Terms" +msgstr "Wczytaj terminy taksonomii" + +#: includes/fields/class-acf-field-taxonomy.php:790 +msgid "Load value from posts terms" +msgstr "Wczytaj wartości z terminów taksonomii z wpisu" + +#: includes/fields/class-acf-field-taxonomy.php:806 +msgid "Term Object" +msgstr "Obiekt terminu (WP_Term)" + +#: includes/fields/class-acf-field-taxonomy.php:807 +msgid "Term ID" +msgstr "ID terminu" + +#: includes/fields/class-acf-field-taxonomy.php:862 +msgid "User unable to add new %s" +msgstr "Użytkownik nie może dodać nowych %s" + +#: includes/fields/class-acf-field-taxonomy.php:874 +msgid "%s already exists" +msgstr "%s już istnieje" + +#: includes/fields/class-acf-field-taxonomy.php:910 +msgid "%s added" +msgstr "Dodano %s" + +#: includes/fields/class-acf-field-taxonomy.php:926, +#: pro/fields/class-acf-field-flexible-content.php:597, +#: includes/admin/views/field-group-fields.php:6 +msgid "Name" +msgstr "Nazwa" + +#: includes/fields/class-acf-field-taxonomy.php:961, +#: includes/locations/class-acf-location-user-form.php:72 +msgid "Add" +msgstr "Dodaj" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Tekst" + +#: includes/fields/class-acf-field-text.php:141, +#: includes/fields/class-acf-field-textarea.php:125 +msgid "Character Limit" +msgstr "Limit znaków" + +#: includes/fields/class-acf-field-text.php:142, +#: includes/fields/class-acf-field-textarea.php:126 +msgid "Leave blank for no limit" +msgstr "Pozostaw puste w przypadku braku limitu" + +#: includes/fields/class-acf-field-text.php:168, +#: includes/fields/class-acf-field-textarea.php:221 +msgid "Value must not exceed %d characters" +msgstr "Wartość nie może przekraczać %d znaków" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Obszar tekstowy" + +#: includes/fields/class-acf-field-textarea.php:136 +msgid "Rows" +msgstr "Wiersze" + +#: includes/fields/class-acf-field-textarea.php:137 +msgid "Sets the textarea height" +msgstr "Określa wysokość obszaru tekstowego" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Wybieranie daty i godziny" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Prawda / Fałsz" + +#: includes/fields/class-acf-field-true_false.php:138 +msgid "Displays text alongside the checkbox" +msgstr "Wyświetla tekst obok pola wyboru (checkbox)" + +#: includes/fields/class-acf-field-true_false.php:172 +msgid "On Text" +msgstr "Tekst, gdy włączone" + +#: includes/fields/class-acf-field-true_false.php:173 +msgid "Text shown when active" +msgstr "Tekst wyświetlany, gdy jest aktywne" + +#: includes/fields/class-acf-field-true_false.php:189 +msgid "Off Text" +msgstr "Tekst, gdy wyłączone" + +#: includes/fields/class-acf-field-true_false.php:190 +msgid "Text shown when inactive" +msgstr "Tekst wyświetlany, gdy jest nieaktywne" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-url.php:154 +msgid "Value must be a valid URL" +msgstr "Wartość musi być poprawnym adresem URL" + +#: includes/fields/class-acf-field-user.php:53 +msgid "Filter by role" +msgstr "Filtruj wg roli" + +#: includes/fields/class-acf-field-user.php:61 +msgid "All user roles" +msgstr "Wszystkie role użytkownika" + +#: includes/fields/class-acf-field-user.php:95 +msgid "User Array" +msgstr "Tablica użytkowników (Array)" + +#: includes/fields/class-acf-field-user.php:96 +msgid "User Object" +msgstr "Obiekt użytkownika" + +#: includes/fields/class-acf-field-user.php:97 +msgid "User ID" +msgstr "ID użytkownika" + +#: includes/fields/class-acf-field-user.php:350 +msgid "Error loading field." +msgstr "Błąd ładowania pola." + +#: includes/fields/class-acf-field-user.php:355 +msgid "Invalid request." +msgstr "Nieprawidłowe żądanie." + +#: includes/fields/class-acf-field-user.php:517 +msgid "%1$s must have a valid user ID." +msgstr "%1$s musi mieć ważny poprawny ID użytkownika." + +#: includes/fields/class-acf-field-user.php:526 +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żytkowników z następującymi rolami: %2$s" +msgstr[2] "%1$s musi mieć użytkowników z następującymi rolami: %2$s" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Edytor WYSIWYG" + +#: includes/fields/class-acf-field-wysiwyg.php:282 +msgid "Visual" +msgstr "Wizualny" + +#: includes/fields/class-acf-field-wysiwyg.php:283 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Tekstowy" + +#: includes/fields/class-acf-field-wysiwyg.php:289 +msgid "Click to initialize TinyMCE" +msgstr "Kliknij, aby zainicjować TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:345 +msgid "Tabs" +msgstr "Zakładki" + +#: includes/fields/class-acf-field-wysiwyg.php:350 +msgid "Visual & Text" +msgstr "Wizualna i Tekstowa" + +#: includes/fields/class-acf-field-wysiwyg.php:351 +msgid "Visual Only" +msgstr "Tylko wizualna" + +#: includes/fields/class-acf-field-wysiwyg.php:352 +msgid "Text Only" +msgstr "Tylko tekstowa" + +#: includes/fields/class-acf-field-wysiwyg.php:361 +msgid "Toolbar" +msgstr "Pasek narzędzi" + +#: includes/fields/class-acf-field-wysiwyg.php:378 +msgid "Show Media Upload Buttons?" +msgstr "Wyświetlić przyciski Dodawania mediów?" + +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Delay initialization?" +msgstr "Opóźnić inicjowanie?" + +#: includes/fields/class-acf-field-wysiwyg.php:391 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "" +"TinyMCE nie zostanie zainicjowany, dopóki to pole nie zostanie kliknięte" + +#: includes/forms/form-front.php:40, pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Tytuł" + +#: includes/forms/form-front.php:57 +msgid "Validate Email" +msgstr "Waliduj E-mail" + +#: includes/forms/form-front.php:107 +msgid "Post updated" +msgstr "Wpis zaktualizowany" + +#: includes/forms/form-front.php:236 +msgid "Spam Detected" +msgstr "Wykryto Spam" + +#: includes/forms/form-user.php:353 +msgid "Error: %s" +msgstr "Błąd: %s" + +#: includes/locations/abstract-acf-location.php:105 +msgid "is equal to" +msgstr "jest równe" + +#: includes/locations/abstract-acf-location.php:106 +msgid "is not equal to" +msgstr "jest inne niż" + +#: includes/locations/class-acf-location-attachment.php:22 +msgid "Attachment" +msgstr "Załącznik" + +#: includes/locations/class-acf-location-attachment.php:84 +msgid "All %s formats" +msgstr "Wszystkie formaty %s" + +#: includes/locations/class-acf-location-comment.php:22 +msgid "Comment" +msgstr "Komentarz" + +#: 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-current-user-role.php:77 +msgid "Super Admin" +msgstr "Super Administrator" + +#: includes/locations/class-acf-location-current-user.php:22 +msgid "Current User" +msgstr "Bieżący użytkownik" + +#: includes/locations/class-acf-location-current-user.php:71 +msgid "Logged in" +msgstr "Zalogowany" + +#: includes/locations/class-acf-location-current-user.php:72 +msgid "Viewing front end" +msgstr "Wyświetla stronę (front-end)" + +#: includes/locations/class-acf-location-current-user.php:73 +msgid "Viewing back end" +msgstr "Wyświetla kokpit (back-end)" + +#: includes/locations/class-acf-location-nav-menu-item.php:22 +msgid "Menu Item" +msgstr "Element menu" + +#: includes/locations/class-acf-location-nav-menu.php:22 +msgid "Menu" +msgstr "Menu" + +#: includes/locations/class-acf-location-nav-menu.php:80 +msgid "Menu Locations" +msgstr "Pozycje menu" + +#: includes/locations/class-acf-location-page-parent.php:22 +msgid "Page Parent" +msgstr "Rodzic strony" + +#: includes/locations/class-acf-location-page-template.php:22 +msgid "Page Template" +msgstr "Szablon strony" + +#: 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-page-type.php:22 +msgid "Page Type" +msgstr "Typ strony" + +#: includes/locations/class-acf-location-page-type.php:110 +msgid "Front Page" +msgstr "Strona główna" + +#: includes/locations/class-acf-location-page-type.php:111 +msgid "Posts Page" +msgstr "Strona wpisów" + +#: includes/locations/class-acf-location-page-type.php:112 +msgid "Top Level Page (no parent)" +msgstr "Strona najwyższego poziomu (brak rodzica)" + +#: includes/locations/class-acf-location-page-type.php:113 +msgid "Parent Page (has children)" +msgstr "Strona będąca rodzicem (posiada potomne)" + +#: includes/locations/class-acf-location-page-type.php:114 +msgid "Child Page (has parent)" +msgstr "Strona będąca potomną (ma rodziców)" + +#: includes/locations/class-acf-location-post-category.php:22 +msgid "Post Category" +msgstr "Kategoria wpisu" + +#: includes/locations/class-acf-location-post-format.php:22 +msgid "Post Format" +msgstr "Format wpisu" + +#: includes/locations/class-acf-location-post-status.php:22 +msgid "Post Status" +msgstr "Status wpisu" + +#: includes/locations/class-acf-location-post-taxonomy.php:22 +msgid "Post Taxonomy" +msgstr "Taksonomia wpisu" + +#: includes/locations/class-acf-location-post-template.php:22 +msgid "Post Template" +msgstr "Szablon wpisu" + +#: includes/locations/class-acf-location-user-form.php:22 +msgid "User Form" +msgstr "Formularz użytkownika" + +#: includes/locations/class-acf-location-user-form.php:73 +msgid "Add / Edit" +msgstr "Dodaj / Edytuj" + +#: includes/locations/class-acf-location-user-form.php:74 +msgid "Register" +msgstr "Zarejestruj" + +#: includes/locations/class-acf-location-user-role.php:24 +msgid "User Role" +msgstr "Rola użytkownika" + +#: includes/locations/class-acf-location-widget.php:22 +msgid "Widget" +msgstr "Widżet" + +#: 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Aktualizacje" + +#: pro/admin/admin-updates.php:209 +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:196 +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:25 +msgctxt "noun" +msgid "Clone" +msgstr "Klon" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Wyświetl" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Ujednolicenie (zastępuje to pole wybranymi polami)" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Etykiety będą wyświetlane jako %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefiks Etykiet Pól" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Wartości będą zapisane jako %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefiks Nazw Pól" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Nieznane pole" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Nieznana grupa pól" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Wszystkie pola z grupy pola %s" + +#: pro/fields/class-acf-field-flexible-content.php:25, +#: includes/admin/views/html-notice-upgrade.php:12 +msgid "Flexible Content" +msgstr "Elastyczne treść" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:182, +#: pro/fields/class-acf-field-repeater.php:473 +msgid "Add Row" +msgstr "Dodaj wiersz" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +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:72 +msgid "layouts" +msgstr "układy" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} dostępne (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} wymagane (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "Elastyczne pole wymaga przynajmniej 1 układu" + +#: pro/fields/class-acf-field-flexible-content.php:276 +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:410, +#: pro/fields/class-acf-field-repeater.php:295, +#: includes/admin/views/field-group-field.php:49 +msgid "Drag to reorder" +msgstr "Przeciągnij aby zmienić kolejność" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Dodaj układ" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Powiel układ" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Usuń układ" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-field-repeater.php:297 +msgid "Click to toggle" +msgstr "Kliknij, aby przełączyć" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Zmień kolejność układów" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Zmień kolejność" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Usuń układ" + +#: pro/fields/class-acf-field-flexible-content.php:552, +#: includes/admin/views/field-group-field.php:59 +msgid "Delete" +msgstr "Usuń" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Duplikuj układ" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Dodaj nowy układ" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:469 +msgid "Button Label" +msgstr "Etykieta przycisku" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Minimalna liczba układów" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Maksymalna liczba układów" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:1108 +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:1715 +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:1731 +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:25, +#: includes/admin/views/html-notice-upgrade.php:15 +msgid "Gallery" +msgstr "Galeria" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Dodaj obraz do galerii" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Maksimum ilości wyborów osiągnięte" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Długość" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Etykieta" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Tekst alternatywny" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Dodaj do galerii" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Działania na wielu" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sortuj po dacie przesłania" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sortuj po dacie modyfikacji" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sortuj po tytule" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Odwróć aktualną kolejność" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Zamknij" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Wstaw" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Określ gdzie są dodawane nowe załączniki" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Dodaj na końcu" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Dodaj do początku" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minimalna liczba wybranych elementów" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Maksymalna liczba wybranych elementów" + +#: pro/fields/class-acf-field-repeater.php:25, +#: includes/admin/views/html-notice-upgrade.php:9 +msgid "Repeater" +msgstr "Pole powtarzalne" + +#: pro/fields/class-acf-field-repeater.php:64, +#: pro/fields/class-acf-field-repeater.php:659 +msgid "Minimum rows reached ({min} rows)" +msgstr "Osiągnięto minimum liczby wierszy ( {min} wierszy )" + +#: pro/fields/class-acf-field-repeater.php:65 +msgid "Maximum rows reached ({max} rows)" +msgstr "Osiągnięto maksimum liczby wierszy ( {max} wierszy )" + +#: pro/fields/class-acf-field-repeater.php:334 +msgid "Add row" +msgstr "Dodaj wiersz" + +#: pro/fields/class-acf-field-repeater.php:335 +msgid "Duplicate row" +msgstr "Powiel wiersz" + +#: pro/fields/class-acf-field-repeater.php:336 +msgid "Remove row" +msgstr "Usuń wiersz" + +#: pro/fields/class-acf-field-repeater.php:414 +msgid "Collapsed" +msgstr "Zwinięty" + +#: pro/fields/class-acf-field-repeater.php:415 +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:427 +msgid "Minimum Rows" +msgstr "Minimalna liczba wierszy" + +#: pro/fields/class-acf-field-repeater.php:439 +msgid "Maximum Rows" +msgstr "Maksymalna liczba wierszy" + +#: 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:22, +#: includes/admin/views/html-notice-upgrade.php:18 +msgid "Options Page" +msgstr "Strona opcji" + +#: pro/locations/class-acf-location-options-page.php:70 +msgid "No options pages exist" +msgstr "Strona opcji nie istnieje" + +#: tests/basic/test-blocks.php:456 +msgid "Hero" +msgstr "Hero" + +#: tests/basic/test-blocks.php:457 +msgid "Display a random hero image." +msgstr "Wyświetl losowy obrazek typu hero." + +#: tests/basic/test-blocks.php:630 +msgid "Test JS" +msgstr "Test JS" + +#: tests/basic/test-blocks.php:631 +msgid "A block for testing JS." +msgstr "Blok do testowania JS." + +#: 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-export.php:39, +#: includes/admin/tools/class-acf-admin-tool-export.php:335, +#: includes/admin/tools/class-acf-admin-tool-export.php:364 +msgid "Generate PHP" +msgstr "Utwórz PHP" + +#: 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:167 +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Wyeksportowano 1 grupę pól." +msgstr[1] "Wyeksportowano %s grupy pól." +msgstr[2] "Wyeksportowano %s grup pól." + +#: includes/admin/tools/class-acf-admin-tool-export.php:233, +#: includes/admin/tools/class-acf-admin-tool-export.php:262 +msgid "Select Field Groups" +msgstr "Wybierz grupy pól" + +#: includes/admin/tools/class-acf-admin-tool-export.php:329 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Wybierz grupy pól, które chcesz wyeksportować, a następnie wybierz metodę " +"eksportu. Użyj przycisku pobierania aby wyeksportować do pliku .json, który " +"można następnie zaimportować do innej instalacji ACF. Użyj przycisku generuj " +"do wyeksportowania ustawień do kodu PHP, który można umieścić w motywie." + +#: includes/admin/tools/class-acf-admin-tool-export.php:334 +msgid "Export File" +msgstr "Plik eksportu" + +#: includes/admin/tools/class-acf-admin-tool-export.php:405 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Poniższy kod może być użyty do rejestracji lokalnej wersji wybranej grupy " +"lub grup pól. Lokalna grupa pól może dostarczyć wiele korzyści takich jak " +"szybszy czas ładowania, możliwość wersjonowania i dynamiczne pola/" +"ustawienia. Wystarczy skopiować i wkleić poniższy kod do pliku functions.php " +"Twojego motywu lub dołączyć go do zewnętrznego pliku." + +#: includes/admin/tools/class-acf-admin-tool-export.php:435 +msgid "Copy to clipboard" +msgstr "Skopiuj do schowka" + +#: includes/admin/tools/class-acf-admin-tool-export.php:472 +msgid "Copied" +msgstr "Skopiowano" + +#: includes/admin/tools/class-acf-admin-tool-import.php:28 +msgid "Import Field Groups" +msgstr "Importuj grupy pól" + +#: 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 field groups." +msgstr "" +"Wybierz plik JSON Advanced Custom Fields, który chcesz zaimportować. Gdy " +"klikniesz przycisk importu poniżej, ACF zaimportuje grupy pól." + +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +msgid "Import File" +msgstr "Plik importu" + +#: includes/admin/tools/class-acf-admin-tool-import.php:97 +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:102 +msgid "Incorrect file type" +msgstr "Błędny typ pliku" + +#: includes/admin/tools/class-acf-admin-tool-import.php:111 +msgid "Import file empty" +msgstr "Importowany plik jest pusty" + +#: includes/admin/tools/class-acf-admin-tool-import.php:142 +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Zaimportowano 1 grupę pól" +msgstr[1] "Zaimportowano %s grupy pól" +msgstr[2] "Zaimportowano %s grup pól" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Wyświetlaj pola warunkowo" + +#: includes/admin/views/field-group-field-conditional-logic.php:60 +msgid "Show this field if" +msgstr "Pokaż to pole jeśli" + +#: includes/admin/views/field-group-field-conditional-logic.php:172, +#: includes/admin/views/field-group-locations.php:38 +msgid "Add rule group" +msgstr "Dodaj grupę warunków" + +#: includes/admin/views/field-group-field.php:53, +#: includes/admin/views/field-group-field.php:56 +msgid "Edit field" +msgstr "Edytuj pole" + +#: includes/admin/views/field-group-field.php:57 +msgid "Duplicate field" +msgstr "Duplikuj to pole" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move field to another group" +msgstr "Przenieś pole do innej grupy" + +#: includes/admin/views/field-group-field.php:58 +msgid "Move" +msgstr "Przenieś" + +#: includes/admin/views/field-group-field.php:59 +msgid "Delete field" +msgstr "Usuń pole" + +#: includes/admin/views/field-group-field.php:78 +msgid "Field Label" +msgstr "Etykieta pola" + +#: includes/admin/views/field-group-field.php:79 +msgid "This is the name which will appear on the EDIT page" +msgstr "Ta nazwa będzie widoczna na stronie edycji" + +#: includes/admin/views/field-group-field.php:92 +msgid "Field Name" +msgstr "Nazwa pola" + +#: includes/admin/views/field-group-field.php:93 +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/field-group-field.php:106 +msgid "Field Type" +msgstr "Typ pola" + +#: includes/admin/views/field-group-field.php:121 +msgid "Instructions" +msgstr "Instrukcje" + +#: includes/admin/views/field-group-field.php:122 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instrukcje dla autorów. Będą widoczne w trakcie wprowadzania danych" + +#: includes/admin/views/field-group-field.php:135 +msgid "Required?" +msgstr "Wymagane?" + +#: includes/admin/views/field-group-field.php:161 +msgid "Wrapper Attributes" +msgstr "Atrybuty kontenera" + +#: includes/admin/views/field-group-field.php:167 +msgid "width" +msgstr "szerokość" + +#: includes/admin/views/field-group-field.php:185 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:201 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:215, +#: includes/admin/views/field-group-field.php:215 +msgid "Close Field" +msgstr "Zamknij to pole" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Kolejność" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Typ" + +#: includes/admin/views/field-group-fields.php:19 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Brak pól. Kliknij przycisk + Dodaj pole aby utworzyć " +"pierwsze pole." + +#: includes/admin/views/field-group-fields.php:44 +msgid "+ Add Field" +msgstr "+ Dodaj pole" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Warunki" + +#: includes/admin/views/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/field-group-options.php:10 +msgid "Active" +msgstr "Aktywne" + +#: includes/admin/views/field-group-options.php:27 +msgid "Show in REST API" +msgstr "Pokaż w API REST" + +#: includes/admin/views/field-group-options.php:44 +msgid "Style" +msgstr "Styl" + +#: includes/admin/views/field-group-options.php:51 +msgid "Standard (WP metabox)" +msgstr "Standardowy (WP metabox)" + +#: includes/admin/views/field-group-options.php:52 +msgid "Seamless (no metabox)" +msgstr "Bezpodziałowy (brak metaboxa)" + +#: includes/admin/views/field-group-options.php:61 +msgid "Position" +msgstr "Pozycja" + +#: includes/admin/views/field-group-options.php:68 +msgid "High (after title)" +msgstr "Wysoka (pod tytułem)" + +#: includes/admin/views/field-group-options.php:69 +msgid "Normal (after content)" +msgstr "Normalna (pod edytorem)" + +#: includes/admin/views/field-group-options.php:70 +msgid "Side" +msgstr "Boczna" + +#: includes/admin/views/field-group-options.php:80 +msgid "Label placement" +msgstr "Umieszczenie etykiet" + +#: includes/admin/views/field-group-options.php:97 +msgid "Instruction placement" +msgstr "Umieszczenie instrukcji" + +#: includes/admin/views/field-group-options.php:104 +msgid "Below labels" +msgstr "Pod etykietami" + +#: includes/admin/views/field-group-options.php:105 +msgid "Below fields" +msgstr "Pod polami" + +#: includes/admin/views/field-group-options.php:114 +msgid "Order No." +msgstr "Nr w kolejności." + +#: includes/admin/views/field-group-options.php:115 +msgid "Field groups with a lower order will appear first" +msgstr "Grupy pól z niższym numerem pojawią się pierwsze" + +#: includes/admin/views/field-group-options.php:128 +msgid "Shown in field group list" +msgstr "Wyświetlany na liście grupy pól" + +#: includes/admin/views/field-group-options.php:139 +msgid "Permalink" +msgstr "Odnośnik bezpośredni" + +#: includes/admin/views/field-group-options.php:140 +msgid "Content Editor" +msgstr "Edytor treści" + +#: includes/admin/views/field-group-options.php:141 +msgid "Excerpt" +msgstr "Wypis" + +#: includes/admin/views/field-group-options.php:143 +msgid "Discussion" +msgstr "Dyskusja" + +#: includes/admin/views/field-group-options.php:145 +msgid "Revisions" +msgstr "Wersje" + +#: includes/admin/views/field-group-options.php:146 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:147 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:148 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:149 +msgid "Page Attributes" +msgstr "Atrybuty strony" + +#: includes/admin/views/field-group-options.php:151 +msgid "Categories" +msgstr "Kategorie" + +#: includes/admin/views/field-group-options.php:152 +msgid "Tags" +msgstr "Tagi" + +#: includes/admin/views/field-group-options.php:153 +msgid "Send Trackbacks" +msgstr "Wyślij trackbacki" + +#: includes/admin/views/field-group-options.php:161 +msgid "Hide on screen" +msgstr "Ukryj na stronie edycji" + +#: includes/admin/views/field-group-options.php:162 +msgid "Select items to hide them from the edit screen." +msgstr "Wybierz elementy, które chcesz ukryć na stronie edycji." + +#: includes/admin/views/field-group-options.php:162 +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/html-admin-navigation.php:89 +msgid "Upgrade to Pro" +msgstr "Przejdź na wersję Pro" + +#: includes/admin/views/html-admin-page-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/html-admin-page-upgrade-network.php:26, +#: includes/admin/views/html-admin-page-upgrade-network.php:27, +#: includes/admin/views/html-admin-page-upgrade-network.php:96 +msgid "Upgrade Sites" +msgstr "Aktualizacja witryn" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36, +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "Witryna" + +#: includes/admin/views/html-admin-page-upgrade-network.php:80 +msgid "Site is up to date" +msgstr "Ta witryna jest aktualna" + +#: includes/admin/views/html-admin-page-upgrade-network.php:78 +msgid "Site requires database upgrade from %1$s to %2$s" +msgstr "Strona wymaga aktualizacji bazy danych z %1$s do %2$s" + +#: includes/admin/views/html-admin-page-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/html-admin-page-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/html-admin-page-upgrade-network.php:121, +#: includes/admin/views/html-notice-upgrade.php:45 +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 uruchomić aktualizacje teraz?" + +#: includes/admin/views/html-admin-page-upgrade-network.php:148, +#: includes/admin/views/html-admin-page-upgrade.php:31 +msgid "Upgrading data to version %s" +msgstr "Aktualizowanie danych do wersji %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:162 +msgid "Upgrade complete." +msgstr "Aktualizacja zakończona." + +#: includes/admin/views/html-admin-page-upgrade-network.php:165, +#: includes/admin/views/html-admin-page-upgrade.php:65 +msgid "Upgrade failed." +msgstr "Aktualizacja nie powiodła się." + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "Czytam zadania aktualizacji..." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +msgid "Database upgrade complete. See what's new" +msgstr "" +"Aktualizacja bazy danych zakończona. Zobacz co nowego" + +#: includes/admin/views/html-admin-tools.php:24 +msgid "Back to all tools" +msgstr "Wróć do wszystkich narzędzi" + +#: includes/admin/views/html-notice-upgrade.php:28 +msgid "Database Upgrade Required" +msgstr "Wymagana jest aktualizacja bazy danych" + +#: includes/admin/views/html-notice-upgrade.php:29 +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Dziękujemy za aktualizację do %1$s v%2$s!" + +#: includes/admin/views/html-notice-upgrade.php:29 +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/html-notice-upgrade.php:31 +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." + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Informacje o aktualizacji" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Zainstalowana wersja" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Najnowsza wersja" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Dostępna aktualizacja" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Proszę wpisać swój klucz licencyjny powyżej aby odblokować aktualizacje" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Aktualizuj wtyczkę" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" +"Proszę wpisać swój klucz licencyjny powyżej aby odblokować aktualizacje" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Dziennik zmian" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Informacje o aktualizacji" + +#~ msgid "Inactive" +#~ msgstr "Nieaktywne" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Nieaktywne (%s)" +#~ msgstr[1] "Nieaktywne (%s)" +#~ msgstr[2] "Nieaktywnych (%s)" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s grupa pól została zsynchronizowana." +#~ msgstr[1] "%s grupy pól zostały zsynchronizowane." +#~ msgstr[2] "%s grup pól zostało zsynchronizowanych." + +#~ msgid "Status" +#~ msgstr "Status" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Zobacz co nowego w wersji %s." + +#~ msgid "Resources" +#~ msgstr "Zasoby" + +#~ msgid "Website" +#~ msgstr "Witryna" + +#~ msgid "Documentation" +#~ msgstr "Dokumentacja" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Dziękujemy za tworzenie z ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "Synchronizuj grupę pól" + +#~ msgid "Apply" +#~ msgstr "Zastosuj" + +#~ msgid "Bulk Actions" +#~ msgstr "Akcje na wielu" + +#~ msgid "Add-ons" +#~ msgstr "Dodatki" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Błąd. Nie można załadować listy dodatków" + +#~ msgid "Info" +#~ msgstr "Informacja" + +#~ msgid "What's New" +#~ msgstr "Co nowego" + +#~ msgid "Download & Install" +#~ msgstr "Pobierz i instaluj" + +#~ msgid "Installed" +#~ msgstr "Zainstalowano" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Witamy w Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Dziękujemy za aktualizację! ACF %s jest większy i lepszy niż kiedykolwiek " +#~ "wcześniej. Mamy nadzieję, że go polubisz." + +#~ msgid "A Smoother Experience" +#~ msgstr "Lepsze odczucia w użytkowaniu" + +#~ msgid "Improved Usability" +#~ msgstr "Zwiększona użyteczność" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Użycie popularnej biblioteki Select2 poprawiło zarówno użyteczność jak i " +#~ "szybkość wielu typów pól wliczając obiekty wpisów, odnośniki stron, " +#~ "taksonomie i pola wyboru." + +#~ msgid "Improved Design" +#~ msgstr "Ulepszony wygląd" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Wiele pól przeszło graficzne odświeżenie, aby ACF wyglądał lepiej niż " +#~ "kiedykolwiek! Zmiany warte uwagi są widoczne w galerii, polach relacji i " +#~ "polach oEmbed (nowość)!" + +#~ msgid "Improved Data" +#~ msgstr "Ulepszona struktura danych" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Przeprojektowanie architektury danych pozwoliła polom podrzędnym być " +#~ "niezależnymi od swoich rodziców. Pozwala to na przeciąganie i upuszczanie " +#~ "pól pomiędzy rodzicami!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Do widzenia Dodatki. Dzień dobry PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Przedstawiamy ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Zmieniliśmy sposób funkcjonowania wersji premium - teraz jest dostarczana " +#~ "w ekscytujący sposób!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Wszystkie 4 dodatki premium zostały połączone w nową wersję Pro ACF. W obu licencjach, osobistej i deweloperskiej, " +#~ "funkcjonalność premium jest bardziej przystępna niż kiedykolwiek " +#~ "wcześniej!" + +#~ msgid "Powerful Features" +#~ msgstr "Potężne funkcje" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO zawiera zaawansowane funkcje, takie jak powtarzalne dane, " +#~ "elastyczne układy treści, piękne galerie i możliwość tworzenia " +#~ "dodatkowych stron opcji administracyjnych!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Przeczytaj więcej o możliwościach ACF PRO." + +#~ msgid "Easy Upgrading" +#~ msgstr "Łatwa aktualizacja" + +#~ msgid "" +#~ "Upgrading to ACF PRO is easy. Simply purchase a license online and " +#~ "download the plugin!" +#~ msgstr "" +#~ "Ulepszenie wersji do ACF PRO jest łatwe. Wystarczy zakupić licencję " +#~ "online i pobrać wtyczkę!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk." +#~ msgstr "" +#~ "Napisaliśmy również przewodnik aktualizacji " +#~ "wyjaśniający wiele zagadnień, jednak jeśli masz jakieś pytanie skontaktuj " +#~ "się z nami na stronie wsparcia technicznego." + +#~ msgid "New Features" +#~ msgstr "Nowe funkcje" + +#~ msgid "Link Field" +#~ msgstr "Pole linku" + +#~ msgid "" +#~ "The Link field provides a simple way to select or define a link (url, " +#~ "title, target)." +#~ msgstr "" +#~ "Pole linku zapewnia prosty sposób wybrać lub określić łącze (adres URL, " +#~ "atrybut 'title', atrybut 'target')." + +#~ msgid "Group Field" +#~ msgstr "Pole grupy" + +#~ msgid "The Group field provides a simple way to create a group of fields." +#~ msgstr "Pole grupy zapewnia prosty sposób tworzenia grupy pól." + +#~ msgid "oEmbed Field" +#~ msgstr "Pole oEmbed" + +#~ msgid "" +#~ "The oEmbed field allows an easy way to embed videos, images, tweets, " +#~ "audio, and other content." +#~ msgstr "" +#~ "Pole oEmbed pozwala w łatwy sposób osadzać filmy, obrazy, tweety, audio i " +#~ "inne treści." + +#~ msgid "Clone Field" +#~ msgstr "Pole klonowania" + +#~ msgid "The clone field allows you to select and display existing fields." +#~ msgstr "" +#~ "Pole klonowania umożliwia zaznaczanie i wyświetlanie istniejących pól." + +#~ msgid "More AJAX" +#~ msgstr "Więcej technologii AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading." +#~ msgstr "Więcej pól korzysta z AJAX, aby przyspieszyć ładowanie stron." + +#~ msgid "" +#~ "New auto export to JSON feature improves speed and allows for " +#~ "syncronisation." +#~ msgstr "" +#~ "Nowy zautomatyzowany eksport do JSON ma poprawioną szybkość i pozwala na " +#~ "synchronizację." + +#~ msgid "Easy Import / Export" +#~ msgstr "Łatwy Import / Eksport" + +#~ msgid "Both import and export can easily be done through a new tools page." +#~ msgstr "" +#~ "Zarówno import, jak i eksport można łatwo wykonać za pomocą nowej strony " +#~ "narzędzi." + +#~ msgid "New Form Locations" +#~ msgstr "Nowe lokalizacje formularzy" + +#~ msgid "" +#~ "Fields can now be mapped to menus, menu items, comments, widgets and all " +#~ "user forms!" +#~ msgstr "" +#~ "Pola można teraz mapować na menu, pozycji menu, komentarzy, widżetów i " +#~ "wszystkich formularzy użytkowników!" + +#~ msgid "More Customization" +#~ msgstr "Więcej dostosowywania" + +#~ msgid "" +#~ "New PHP (and JS) actions and filters have been added to allow for more " +#~ "customization." +#~ msgstr "" +#~ "Dodano nowe akcje i filtry PHP (i JS), aby poszerzyć zakres " +#~ "personalizacji." + +#~ msgid "Fresh UI" +#~ msgstr "Fresh UI" + +#~ msgid "" +#~ "The entire plugin has had a design refresh including new field types, " +#~ "settings and design!" +#~ msgstr "" +#~ "Cała wtyczka została odświeżone, dodano nowe typy pól, ustawienia i " +#~ "wygląd!" + +#~ msgid "New Settings" +#~ msgstr "Nowe ustawienia" + +#~ msgid "" +#~ "Field group settings have been added for Active, Label Placement, " +#~ "Instructions Placement and Description." +#~ msgstr "" +#~ "Zostały dodane ustawienia grup pól dotyczące, Aktywności, Pozycji etykiet " +#~ "oraz Pozycji instrukcji i Opisu." + +#~ msgid "Better Front End Forms" +#~ msgstr "Lepszy wygląd formularzy (Front End Forms)" + +#~ msgid "" +#~ "acf_form() can now create a new post on submission with lots of new " +#~ "settings." +#~ msgstr "" +#~ "acf_form() może teraz utworzyć nowy wpis po przesłaniu i zawiera wiele " +#~ "nowych ustawień." + +#~ msgid "Better Validation" +#~ msgstr "Lepsza walidacja" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." +#~ msgstr "Walidacja pól jest wykonana w PHP + AJAX a nie tylko w JS." + +#~ msgid "Moving Fields" +#~ msgstr "Przenoszenie pól" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents." +#~ msgstr "" +#~ "Nowa funkcjonalność pozwala na przenoszenie pól pomiędzy grupami i " +#~ "rodzicami." + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Uważamy, że pokochasz zmiany wprowadzone w wersji %s." + +#~ msgid "Current Color" +#~ msgstr "Bieżący Kolor" + +#~ msgid "Shown when entering data" +#~ msgstr "Widoczny podczas wprowadzania danych" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "Error validating request" +#~ msgstr "Błąd podczas walidacji żądania" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Aktualizacja bazy danych Advanced Custom Fields" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Zanim zaczniesz korzystać z niesamowitych funkcji prosimy o " +#~ "zaktualizowanie bazy danych do najnowszej wersji." + +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Aby aktualizacja była łatwa, zaloguj się do swojego konta i pobierz darmową kopię ACF PRO!" + +#~ msgid "Under the Hood" +#~ msgstr "Pod maską" + +#~ msgid "Smarter field settings" +#~ msgstr "Sprytniejsze ustawienia pól" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF teraz zapisuje ustawienia pól jako osobny obiekt wpisu" + +#~ msgid "Better version control" +#~ msgstr "Lepsza kontrola wersji" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Nowy zautomatyzowany eksport do JSON pozwala na wersjonowanie ustawień pól" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "Zmiana XML na JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Import / Eksport teraz korzysta z JSON zamiast XML" + +#~ msgid "New Forms" +#~ msgstr "Nowe formularze" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Dodano nowe pole do osadzania zawartości" + +#~ msgid "New Gallery" +#~ msgstr "Nowa galeria" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Pola galerii przeszły niezbędny facelifting" + +#~ msgid "Relationship Field" +#~ msgstr "Pole relacji" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Nowe ustawienia pola relacji dla \"Filtrów\" (Wyszukiwarka, Typ Wpisu, " +#~ "Taksonomia)" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Nowe grupy archiwów do wyboru dla pola page_link" + +#~ msgid "Better Options Pages" +#~ msgstr "Lepsze strony opcji" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nowe funkcje dla strony opcji pozwalają tworzyć strony w menu będące " +#~ "rodzicami oraz potomnymi." + +#~ msgid "Parent fields" +#~ msgstr "Pola nadrzędne" + +#~ msgid "Sibling fields" +#~ msgstr "Pola tego samego poziomu" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Eksportuj grupy pól do PHP" + +#~ msgid "Download export file" +#~ msgstr "Pobierz plik eksportu" + +#~ msgid "Generate export code" +#~ msgstr "Generuj kod eksportu" + +#~ msgid "Locating" +#~ msgstr "Lokalizacja" + +#~ msgid "Error." +#~ msgstr "Błąd." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Nie znaleziono osadzenia dla podanego URLa." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Minimalna wartość została przekroczona ( {min} )" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Pole zakładki będzie wyświetlane nieprawidłowo jeśli zostanie dodano do " +#~ "pola powtarzalnego wyświetlanego jako tabela lub do elastycznego pola" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "Użyj \"Pola zakładki\" aby uporządkować ekran edycji grupując pola." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Wszystkie pola po tym \"polu zakładki\" (lub przed następnym \"polem " +#~ "zakładki\") zostaną zgrupowane razem używając etykiety tego pola jako " +#~ "nagłówka." + +#~ msgid "None" +#~ msgstr "Brak" + +#~ msgid "Taxonomy Term" +#~ msgstr "Termin taksonomii" + +#~ msgid "remove {layout}?" +#~ msgstr "usunąć {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "To pole wymaga przynamniej {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maksimum {label} limit osiągnięty ({max} {identifier})" + +#~ msgid "Getting Started" +#~ msgstr "Pierwsze kroki" + +#~ msgid "Field Types" +#~ msgstr "Rodzaje pól" + +#~ msgid "Functions" +#~ msgstr "Funkcje" + +#~ msgid "Actions" +#~ msgstr "Akcje" + +#~ msgid "'How to' guides" +#~ msgstr "Wskazówki 'how-to'" + +#~ msgid "Tutorials" +#~ msgstr "Poradniki" + +#~ msgid "FAQ" +#~ msgstr "Najczęściej zadawane pytania (FAQ)" + +#~ msgid "Created by" +#~ msgstr "Stworzone przez" + +#~ msgid "Error" +#~ msgstr "Błąd" + +#~ msgid "See what's new" +#~ msgstr "Zobacz co nowego" + +#~ msgid "eg. Show extra content" +#~ msgstr "np. Wyświetl dodatkową treść" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "1 pole wymaga uwagi." +#~ msgstr[1] "%d pola wymagają uwagi." +#~ msgstr[2] "%d pól wymaga uwagi." + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Sukces. Narzędzie importu dodało %s grup pól: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Ostrzeżenie. Narzędzie importu wykryło %s już istniejących grup " +#~ "pól i je pominęło: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Aktualizuj ACF" + +#~ msgid "Upgrade" +#~ msgstr "Aktualizacja" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "Następujące strony wymagają aktualizacji bazy danych. Zaznacz te które " +#~ "chcesz aktualizować i kliknij 'Aktualizuj bazę danych\"." + +#~ msgid "Select" +#~ msgstr "Wybór (select)" + +#~ msgid "Done" +#~ msgstr "Gotowe" + +#~ msgid "Today" +#~ msgstr "Dzisiaj" + +#~ msgid "Show a different month" +#~ msgstr "Pokaż inny miesiąc" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Błąd połączenia. Przepraszamy, spróbuj ponownie" + +#~ msgid "See what's new in" +#~ msgstr "Zobacz co słychać nowego w" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Przeciągnij i zmień kolejność" + +#~ msgid "Upgrading data to" +#~ msgstr "Aktualizacja danych do" + +#~ msgid "Return format" +#~ msgstr "Zwracany format" + +#~ msgid "uploaded to this post" +#~ msgstr "przesłane do tego wpisu" + +#~ msgid "File Name" +#~ msgstr "Nazwa pliku" + +#~ msgid "File Size" +#~ msgstr "Rozmiar pliku" + +#~ msgid "No File selected" +#~ msgstr "Nie wybrano pliku" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Proszę pamiętać, że wszystkie teksty najpierw przepuszczane są przez " +#~ "funkcje WP" + +#~ msgid "Warning" +#~ msgstr "Ostrzeżenie" + +#~ msgid "Add new %s " +#~ msgstr "Dodaj nowe %s" + +#~ msgid "Save Options" +#~ msgstr "Zapisz opcje" + +#~ msgid "License" +#~ msgstr "Licencja" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "W celu odblokowania aktualizacji proszę wpisać swój numer licencji " +#~ "poniżej. Jeśli nie masz klucza proszę zobacz" + +#~ msgid "details & pricing" +#~ msgstr "szczegóły i ceny" + +#~ 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ć aktualizację proszę wpisać swój klucz licencji na stronie Aktualizacje. Jeśli nie posiadasz klucza proszę zobaczyć " +#~ "szczegóły i ceny" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields Pro" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +#, fuzzy +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "" +#~ "Grupy pól są tworzone w kolejności
                              od najniższej do najwyższej." + +#, fuzzy +#~ msgid "ACF PRO Required" +#~ msgstr "Wymagane?" + +#, fuzzy +#~ msgid "Update Database" +#~ msgstr "Aktualizuj bazę danych" + +#, fuzzy +#~ msgid "Data Upgrade" +#~ msgstr "Aktualizacja" + +#, fuzzy +#~ msgid "image" +#~ msgstr "Obrazek" + +#, fuzzy +#~ msgid "relationship" +#~ msgstr "Relacja" + +#, fuzzy +#~ msgid "title_is_required" +#~ msgstr "Grupa pól została opublikowana." + +#, fuzzy +#~ msgid "move_field" +#~ msgstr "Zapisz pole" + +#, fuzzy +#~ msgid "flexible_content" +#~ msgstr "Elastyczna treść" + +#, fuzzy +#~ msgid "gallery" +#~ msgstr "Galeria" + +#, fuzzy +#~ msgid "repeater" +#~ msgstr "Pole powtarzalne" + +#~ msgid "Custom field updated." +#~ msgstr "Włąsne pole zostało zaktualizowane." + +#~ msgid "Custom field deleted." +#~ msgstr "Własne pole zostało usunięte." + +#, fuzzy +#~ msgid "Import/Export" +#~ msgstr "Import / Eksport" + +#, fuzzy +#~ msgid "Attachment Details" +#~ msgstr "ID załącznika" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "Walidacja nie powiodła się. Jedno lub więcej pól jest wymaganych." + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "Grupa pól została przywróćona z wersji %s" + +#~ msgid "No ACF groups selected" +#~ msgstr "Nie zaznaczono żadnej grupy pól" + +#~ msgid "Add Fields to Edit Screens" +#~ msgstr "Dodaj pola do stron edycji" + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "" +#~ "Przeczytaj dokumentację, naucz się funkcji i poznaj parę tricków, które " +#~ "mogą przydać Ci się w Twoim kolejnym projekcie." + +#~ msgid "Vote" +#~ msgstr "Głosuj" + +#~ msgid "Follow" +#~ msgstr "Śledź" + +#~ msgid "Add File to Field" +#~ msgstr "Dodaj plik do pola" + +#~ msgid "Add Image to Field" +#~ msgstr "Dodaj zdjęcie do pola" + +#~ msgid "Repeater field deactivated" +#~ msgstr "Pole powtarzalne zostało deaktywowane" + +#~ msgid "Gallery field deactivated" +#~ msgstr "Galeria została deaktywowana" + +#~ msgid "Repeater field activated" +#~ msgstr "Pole powtarzalne zostało aktywowane" + +#~ msgid "Options page activated" +#~ msgstr "Strona opcji została aktywowana" + +#~ msgid "Flexible Content field activated" +#~ msgstr "Pole z elastyczną zawartością zostało aktywowane" + +#~ msgid "Gallery field activated" +#~ msgstr "Galeria została aktywowana" + +#~ msgid "License key unrecognised" +#~ msgstr "Klucz licencji nie został rozpoznany" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "Ustawienia zaawansowanych własnych pól" + +#~ msgid "Flexible Content Field" +#~ msgstr "Pole z elastyczną zawartością" + +#~ msgid "Gallery Field" +#~ msgstr "Galeria" + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "" +#~ "Dodatki można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny " +#~ "może być wykorzystywany na dowolnej liczbie stron." + +#~ msgid "Export Field Groups to XML" +#~ msgstr "Eksportuj Grupy pól do XML" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "" +#~ "Wtyczka utworzy plik eksportu .xml, który jest kompatybilny z domyślną " +#~ "wtyczką importu plików." + +#~ msgid "Export XML" +#~ msgstr "Eksportuj XML" + +#~ msgid "Navigate to the" +#~ msgstr "Przejdź do" + +#~ msgid "and select WordPress" +#~ msgstr "i wybierz Wordpress" + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "Zainstaluj wtyczkę importu WP, jeśli zostaniesz o to poproszony" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "Wgraj i zaimportuj wyeksportowany wcześniej plik .xml" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "Wybierz użytkownika i ignoruj Importowanie załączników" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "Gotowe!" + +#~ msgid "ACF will create the PHP code to include in your theme" +#~ msgstr "ACF wygeneruje kod PHP, który możesz wkleić do swego szablonu" + +#~ msgid "Register Field Groups with PHP" +#~ msgstr "Utwórz grupę pól z PHP" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Skopij wygenerowany kod PHP" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Wklej do pliku functions.php" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "Aby aktywować dodatki, edytuj i użyj kodu w pierwszych kilku liniach." + +#~ msgid "" +#~ "/**\n" +#~ " * Activate Add-ons\n" +#~ " * Here you can enter your activation codes to unlock Add-ons to use in " +#~ "your theme. \n" +#~ " * Since all activation codes are multi-site licenses, you are allowed to " +#~ "include your key in premium themes. \n" +#~ " * Use the commented out code to update the database with your activation " +#~ "code. \n" +#~ " * You may place this code inside an IF statement that only runs on theme " +#~ "activation.\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Aktywuj dodatki\n" +#~ " * Możesz tu wpisać kody aktywacyjne uruchamiające dodatkowe funkcje. \n" +#~ " * W związku z tym, że kody są na dowolną ilość licencji, możesz je " +#~ "stosować także w płatnych szablonach. \n" +#~ " * Użyj kodu aby zaktualizować bazę danych. \n" +#~ " * Możesz umieścić ten kod w funkcjach if, które uruchamiają się np. przy " +#~ "aktywacji szablonu.\n" +#~ " */" + +#~ msgid "" +#~ "/**\n" +#~ " * Register field groups\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" +#~ " * This code must run every time the functions.php file is read\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Zarejestruj grupy pól\n" +#~ " * Funkcja register_field_group akceptuje 1 ciąg zmiennych, która zawiera " +#~ "wszystkie dane służące rejestracji grupy\n" +#~ " * Możesz edytować tę zmienną i dopasowywać ją do swoich potrzeb. Ale " +#~ "może to też powodować błąd jeśli ta zmienna nie jest kompatybilna z ACF\n" +#~ " * Kod musi być uruchamiany każdorazowo w pliku functions.php\n" +#~ " */" + +#~ msgid "requires a database upgrade" +#~ msgstr "wymagana jest aktualizacja bazy danych" + +#~ msgid "why?" +#~ msgstr "dlaczego?" + +#~ msgid "Please" +#~ msgstr "Proszę" + +#~ msgid "backup your database" +#~ msgstr "zrobić kopię zapasową bazy danych" + +#~ msgid "then click" +#~ msgstr "a następnie kliknąć" + +#~ msgid "Modifying field group options 'show on page'" +#~ msgstr "Modyfikacje opcji grupy pól 'pokaż na stronie'" + +#~ msgid "No choices to choose from" +#~ msgstr "Brak możliwościi wyboru" + +#~ msgid "Red" +#~ msgstr "Czerwony" + +#~ msgid "Blue" +#~ msgstr "Niebieski" + +#~ msgid "blue : Blue" +#~ msgstr "niebieski : Niebieski" + +#~ msgid "File Updated." +#~ msgstr "Plik został zaktualizowany." + +#~ msgid "Media attachment updated." +#~ msgstr "Załącznik został zaktualizowany." + +#~ msgid "Add Selected Files" +#~ msgstr "Dodaj zaznaczone pliki" + +#~ msgid "+ Add Row" +#~ msgstr "+ Dodaj rząd" + +#~ msgid "Field Order" +#~ msgstr "Kolejność pola" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "" +#~ "Brak pól. Kliknij przycisk \"+ Dodaj pole podrzędne\" aby utworzyć " +#~ "pierwsze własne pole." + +#~ msgid "Docs" +#~ msgstr "Dokumentacja" + +#~ msgid "Close Sub Field" +#~ msgstr "Zamknij pole" + +#~ msgid "+ Add Sub Field" +#~ msgstr "+ Dodaj pole podrzędne" + +#~ msgid "Alternate Text" +#~ msgstr "Tekst alternatywny" + +#~ msgid "Thumbnail is advised" +#~ msgstr "Zalecana jest miniatura." + +#~ msgid "Image Updated" +#~ msgstr "Zdjęcie zostało zaktualizowane." + +#~ msgid "Grid" +#~ msgstr "Siatka" + +#~ msgid "List" +#~ msgstr "Lista" + +#~ msgid "Image already exists in gallery" +#~ msgstr "To zdjęcie już jest w galerii." + +#~ msgid "Image Updated." +#~ msgstr "Zdjęcie zostało zaktualizowane." + +#~ msgid "No images selected" +#~ msgstr "Nie wybrano obrazków" + +#~ msgid "Add selected Images" +#~ msgstr "Dodaj zaznaczone obrazki" + +#~ msgid "" +#~ "Filter posts by selecting a post type
                              \n" +#~ "\t\t\t\tTip: deselect all post types to show all post type's posts" +#~ msgstr "" +#~ "Filtruj wpisy wybierając typ wpisu
                              \n" +#~ "\t\t\t\tPodpowiedź: nie zaznaczenie żadnego typu wpisów spowoduje " +#~ "wyświetlenie wszystkich" + +#~ msgid "Set to -1 for infinite" +#~ msgstr "Wpisanie -1 oznacza nieskończoność" + +#~ msgid "Repeater Fields" +#~ msgstr "Pola powtarzalne" + +#~ msgid "Table (default)" +#~ msgstr "Tabela (domyślne)" + +#~ msgid "Define how to render html tags" +#~ msgstr "Określ jak traktować znaczniki HTML" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Określ jak traktować znaczniki HTML / nowe wiersze" + +#~ msgid "eg. dd/mm/yy. read more about" +#~ msgstr "np. dd/mm/rr. czytaj więcej" + +#~ msgid "Page Specific" +#~ msgstr "Związane ze stronami" + +#~ msgid "Post Specific" +#~ msgstr "Związane z typem wpisu" + +#~ msgid "Taxonomy (Add / Edit)" +#~ msgstr "Taksonomia (Dodaj / Edytuj)" + +#~ msgid "Media (Edit)" +#~ msgstr "Medium (Edytuj)" + +#~ msgid "match" +#~ msgstr "pasuje" + +#~ msgid "all" +#~ msgstr "wszystkie" + +#~ msgid "of the above" +#~ msgstr "do pozostałych" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "Odblokuj dodatkowe opcje z kodem aktywacyjnym" + +#~ msgid "Normal" +#~ msgstr "Normalna" + +#~ msgid "No Metabox" +#~ msgstr "Bez metabox" + +#~ msgid "Everything Fields deactivated" +#~ msgstr "Pola do wszystkiego zostały deaktywowane" + +#~ msgid "Everything Fields activated" +#~ msgstr "Pola do wszystkiego zostały aktywowane" + +#~ msgid "Row Limit" +#~ msgstr "Limit rzędów" + +#~ msgid "required" +#~ msgstr "wymagane" + +#~ msgid "Show on page" +#~ msgstr "Wyświetl na stronie" + +#~ msgid "" +#~ "Watch tutorials, read documentation, learn the API code and find some " +#~ "tips & tricks for your next web project." +#~ msgstr "" +#~ "Obejrzyj tutorial, przeczytaj dokumentację, naucz się API i poznaj parę " +#~ "tricków do przydatnych w Twoim kolejnym projekcie." + +#~ msgid "View the plugins website" +#~ msgstr "Odwiedź witrynę wtyczki" + +#~ msgid "" +#~ "Join the growing community over at the support forum to share ideas, " +#~ "report bugs and keep up to date with ACF" +#~ msgstr "" +#~ "Dołącz do rosnącej społeczności użytkowników i forum pomocy, aby dzielić " +#~ "się pomysłami, zgłąszać błedy i być na bierząco z tą wtyczką." + +#~ msgid "View the Support Forum" +#~ msgstr "Zobacz forum pomocy" + +#~ msgid "Developed by" +#~ msgstr "Opracowana przez" + +#~ msgid "Vote for ACF" +#~ msgstr "Głosuj na tę wtyczkę" + +#~ msgid "Twitter" +#~ msgstr "Twitter" + +#~ msgid "Blog" +#~ msgstr "Blog" + +#~ msgid "Unlock Special Fields." +#~ msgstr "Odblokuj pola specjalne" + +#~ msgid "" +#~ "Special Fields can be unlocked by purchasing an activation code. Each " +#~ "activation code can be used on multiple sites." +#~ msgstr "" +#~ "Pola specjalne można odblokować kupując kod aktywacyjny. Każdy kod " +#~ "aktywacyjny może być wykorzystywany wielokrotnie." + +#~ msgid "Visit the Plugin Store" +#~ msgstr "Odwiedź sklep wtyczki" + +#~ msgid "Unlock Fields" +#~ msgstr "Odblokuj pola" + +#~ msgid "Have an ACF export file? Import it here." +#~ msgstr "Wyeksportowałeś plik z polami? Możesz go zaimportować tutaj." + +#~ msgid "" +#~ "Want to create an ACF export file? Just select the desired ACF's and hit " +#~ "Export" +#~ msgstr "" +#~ "Chcesz stworzyć i wyeksportować plik z polami? Wybierz pola i kliknij " +#~ "Eksport" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Field button\" to create your first field." +#~ msgstr "" +#~ "Brak pól. Kliknij przycisk \"+ Dodaj pole\" aby utworzyć pierwsze własne " +#~ "pole." + +#~ msgid "" +#~ "Special Fields can be unlocked by purchasing a license key. Each key can " +#~ "be used on multiple sites." +#~ msgstr "" +#~ "Pola specjalne można odblokować kupując kod aktywacyjny. Każdy kod " +#~ "aktywacyjny może być wykorzystywany wielokrotnie." + +#~ msgid "Select which ACF groups to export" +#~ msgstr "Wybierz, które grupy chcesz wyeksportować" + +#~ msgid "" +#~ "Have an ACF export file? Import it here. Please note that v2 and v3 .xml " +#~ "files are not compatible." +#~ msgstr "" +#~ "Wyeksportowałeś plik z polami? Zaimportuj go tutaj. Zwróć uwagę, że " +#~ "wersje 2 i 3 plików .xml nie są ze sobą kompatybilne." + +#~ msgid "Import your .xml file" +#~ msgstr "Zaimportuj plik .xml" + +#~ msgid "Display your field group with or without a box" +#~ msgstr "Wyświetl grupę pól w ramce lub bez niej" + +#~ msgid "No Options" +#~ msgstr "Brak opcji" + +#~ msgid "Sorry, it seems there are no fields for this options page." +#~ msgstr "Przykro mi, ale ta strona opcji nie zawiera pól." + +#~ msgid "" +#~ "Enter your choices one per line
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tRed
                              \n" +#~ "\t\t\t\tBlue
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tor
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tred : Red
                              \n" +#~ "\t\t\t\tblue : Blue" +#~ msgstr "" +#~ "Wpisz dostęne opcje, każdy w odrębnym rzędzie
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tCzerwony
                              \n" +#~ "\t\t\t\tNiebieski
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tor
                              \n" +#~ "\t\t\t\t
                              \n" +#~ "\t\t\t\tczerwony : Czerwony
                              \n" +#~ "\t\t\t\tniebieski : Niebieski" + +#~ msgid "continue editing ACF" +#~ msgstr "kontynuuj edycję" + +#~ msgid "Adv Upgrade" +#~ msgstr "Zaawansowana aktualizacja" diff --git a/lang/pro/acf-pt_BR.po b/lang/pro/acf-pt_BR.po new file mode 100644 index 0000000..37198da --- /dev/null +++ b/lang/pro/acf-pt_BR.po @@ -0,0 +1,3367 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields PRO 5.4\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2017-11-22 09:03-0200\n" +"PO-Revision-Date: 2018-02-06 10:06+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: Augusto Simão \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 1.8.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:67 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:369 includes/admin/admin.php:117 +msgid "Field Groups" +msgstr "Grupos de Campos" + +#: acf.php:370 +msgid "Field Group" +msgstr "Grupo de Campos" + +#: acf.php:371 acf.php:403 includes/admin/admin.php:118 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Add New" +msgstr "Adicionar Novo" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Adicionar Novo Grupo de Campos" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Editar Grupo de Campos" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Novo Grupo de Campos" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Ver Grupo de Campos" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Pesquisar Grupos de Campos" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Nenhum Grupo de Campos encontrado" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "Nenhum Grupo de Campos encontrado na Lixeira" + +#: acf.php:401 includes/admin/admin-field-group.php:182 +#: includes/admin/admin-field-group.php:275 +#: includes/admin/admin-field-groups.php:510 +#: pro/fields/class-acf-field-clone.php:807 +msgid "Fields" +msgstr "Campos" + +#: acf.php:402 +msgid "Field" +msgstr "Campo" + +#: acf.php:404 +msgid "Add New Field" +msgstr "Adicionar Novo Campo" + +#: acf.php:405 +msgid "Edit Field" +msgstr "Editar Campo" + +#: acf.php:406 includes/admin/views/field-group-fields.php:41 +#: includes/admin/views/settings-info.php:105 +msgid "New Field" +msgstr "Novo Campo" + +#: acf.php:407 +msgid "View Field" +msgstr "Ver Campo" + +#: acf.php:408 +msgid "Search Fields" +msgstr "Pesquisar Campos" + +#: acf.php:409 +msgid "No Fields found" +msgstr "Nenhum Campo encontrado" + +#: acf.php:410 +msgid "No Fields found in Trash" +msgstr "Nenhum Campo encontrado na Lixeira" + +#: acf.php:449 includes/admin/admin-field-group.php:390 +#: includes/admin/admin-field-groups.php:567 +msgid "Inactive" +msgstr "Inativo" + +#: acf.php:454 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Ativo (%s)" +msgstr[1] "Ativos (%s)" + +#: includes/admin/admin-field-group.php:68 +#: includes/admin/admin-field-group.php:69 +#: includes/admin/admin-field-group.php:71 +msgid "Field group updated." +msgstr "Grupo de campos atualizado" + +#: includes/admin/admin-field-group.php:70 +msgid "Field group deleted." +msgstr "Grupo de campos excluído." + +#: includes/admin/admin-field-group.php:73 +msgid "Field group published." +msgstr "Grupo de campos publicado." + +#: includes/admin/admin-field-group.php:74 +msgid "Field group saved." +msgstr "Grupo de campos salvo." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group submitted." +msgstr "Grupo de campos enviado." + +#: includes/admin/admin-field-group.php:76 +msgid "Field group scheduled for." +msgstr "Grupo de campos agendando." + +#: includes/admin/admin-field-group.php:77 +msgid "Field group draft updated." +msgstr "Rascunho do grupo de campos atualizado." + +#: includes/admin/admin-field-group.php:183 +msgid "Location" +msgstr "Localização" + +#: includes/admin/admin-field-group.php:184 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Configurações" + +#: includes/admin/admin-field-group.php:269 +msgid "Move to trash. Are you sure?" +msgstr "Mover para a lixeira. Você tem certeza?" + +#: includes/admin/admin-field-group.php:270 +msgid "checked" +msgstr "selecionado" + +#: includes/admin/admin-field-group.php:271 +msgid "No toggle fields available" +msgstr "Nenhum campo de opções disponível" + +#: includes/admin/admin-field-group.php:272 +msgid "Field group title is required" +msgstr "O título do grupo de campos é obrigatório" + +#: includes/admin/admin-field-group.php:273 +#: includes/api/api-field-group.php:751 +msgid "copy" +msgstr "copiar" + +#: includes/admin/admin-field-group.php:274 +#: includes/admin/views/field-group-field-conditional-logic.php:54 +#: includes/admin/views/field-group-field-conditional-logic.php:154 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3959 +msgid "or" +msgstr "ou" + +#: includes/admin/admin-field-group.php:276 +msgid "Parent fields" +msgstr "Campos superiores" + +#: includes/admin/admin-field-group.php:277 +msgid "Sibling fields" +msgstr "Campos do mesmo grupo" + +#: includes/admin/admin-field-group.php:278 +msgid "Move Custom Field" +msgstr "Mover Campo Personalizado" + +#: includes/admin/admin-field-group.php:279 +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/admin-field-group.php:280 +msgid "Null" +msgstr "Vazio" + +#: includes/admin/admin-field-group.php:281 includes/input.php:258 +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/admin/admin-field-group.php:282 +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/admin-field-group.php:360 +msgid "Field Keys" +msgstr "Chaves dos Campos" + +#: includes/admin/admin-field-group.php:390 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Ativo" + +#: includes/admin/admin-field-group.php:801 +msgid "Move Complete." +msgstr "Movimentação realizada." + +#: includes/admin/admin-field-group.php:802 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "O campo %s pode agora ser encontrado no grupo de campos %s" + +#: includes/admin/admin-field-group.php:803 +msgid "Close Window" +msgstr "Fechar Janela" + +#: includes/admin/admin-field-group.php:844 +msgid "Please select the destination for this field" +msgstr "Selecione o destino para este campo" + +#: includes/admin/admin-field-group.php:851 +msgid "Move Field" +msgstr "Mover Campo" + +#: includes/admin/admin-field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Ativo (%s)" +msgstr[1] "Ativos (%s)" + +#: includes/admin/admin-field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "Grupo de campos duplicado. %s" + +#: includes/admin/admin-field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s grupo de campos duplicado." +msgstr[1] "%s grupos de campos duplicados." + +#: includes/admin/admin-field-groups.php:227 +#, php-format +msgid "Field group synchronised. %s" +msgstr "Grupo de campos sincronizado. %s" + +#: includes/admin/admin-field-groups.php:231 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s grupo de campos sincronizado." +msgstr[1] "%s grupos de campos sincronizados." + +#: includes/admin/admin-field-groups.php:394 +#: includes/admin/admin-field-groups.php:557 +msgid "Sync available" +msgstr "Sincronização disponível" + +#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:355 +msgid "Title" +msgstr "Título" + +#: includes/admin/admin-field-groups.php:508 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/install-network.php:21 +#: includes/admin/views/install-network.php:29 +#: pro/fields/class-acf-field-gallery.php:382 +msgid "Description" +msgstr "Descrição" + +#: includes/admin/admin-field-groups.php:509 +msgid "Status" +msgstr "Status" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:607 +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "" +"Personalize o WordPress com campos personalizados profissionais, poderosos e " +"intuitivos." + +#: includes/admin/admin-field-groups.php:609 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Registro de alterações" + +#: includes/admin/admin-field-groups.php:614 +#, php-format +msgid "See what's new in version %s." +msgstr "Veja o que há de novo na versão %s." + +#: includes/admin/admin-field-groups.php:617 +msgid "Resources" +msgstr "Recursos (em inglês)" + +#: includes/admin/admin-field-groups.php:619 +msgid "Website" +msgstr "Website" + +#: includes/admin/admin-field-groups.php:620 +msgid "Documentation" +msgstr "Documentação" + +#: includes/admin/admin-field-groups.php:621 +msgid "Support" +msgstr "Suporte" + +#: includes/admin/admin-field-groups.php:623 +msgid "Pro" +msgstr "Profissional" + +#: includes/admin/admin-field-groups.php:628 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "Obrigado por criar com ACF." + +#: includes/admin/admin-field-groups.php:667 +msgid "Duplicate this item" +msgstr "Duplicar este item" + +#: includes/admin/admin-field-groups.php:667 +#: includes/admin/admin-field-groups.php:683 +#: includes/admin/views/field-group-field.php:49 +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Duplicate" +msgstr "Duplicar" + +#: includes/admin/admin-field-groups.php:700 +#: includes/fields/class-acf-field-google-map.php:112 +#: includes/fields/class-acf-field-relationship.php:656 +msgid "Search" +msgstr "Pesquisa" + +#: includes/admin/admin-field-groups.php:759 +#, php-format +msgid "Select %s" +msgstr "Selecionar %s" + +#: includes/admin/admin-field-groups.php:767 +msgid "Synchronise field group" +msgstr "Sincronizar grupo de campos" + +#: includes/admin/admin-field-groups.php:767 +#: includes/admin/admin-field-groups.php:797 +msgid "Sync" +msgstr "Sincronizar" + +#: includes/admin/admin-field-groups.php:779 +msgid "Apply" +msgstr "Aplicar" + +#: includes/admin/admin-field-groups.php:797 +msgid "Bulk Actions" +msgstr "Ações em massa" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Ferramentas" + +#: includes/admin/admin.php:113 +#: includes/admin/views/field-group-options.php:118 +msgid "Custom Fields" +msgstr "Campos Personalizados" + +#: includes/admin/install-network.php:88 includes/admin/install.php:70 +#: includes/admin/install.php:121 +msgid "Upgrade Database" +msgstr "Atualizar Banco de Dados" + +#: includes/admin/install-network.php:140 +msgid "Review sites & upgrade" +msgstr "Revisar sites e atualizar" + +#: includes/admin/install.php:187 +msgid "Error validating request" +msgstr "Erro ao validar solicitação" + +#: includes/admin/install.php:210 includes/admin/views/install.php:105 +msgid "No updates available." +msgstr "Nenhuma atualização disponível." + +#: includes/admin/settings-addons.php:51 +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "Complementos" + +#: includes/admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "Erro. Não foi possível carregar a lista de complementos" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Informações" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "O que há de novo" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Exportar Grupos de Campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "Nenhum grupo de campos selecionado" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Exportado 1 grupo de campos" +msgstr[1] "Importados %s grupos de campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Selecionar Grupo de Campos" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Selecione os grupos de campos que deseja exportar e escolha o método de " +"exportação. Para exportar um arquivo do tipo .json (que permitirá a " +"importação dos grupos em uma outra instalação do ACF) utilize o botão de " +"download. Para obter o código em PHP (que você poderá depois inserir em seu " +"tema), utilize o botão de gerar o código." + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "Exportar arquivo" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"O código a seguir poderá ser usado para registrar uma versão local do(s) " +"grupo(s) de campo selecionado(s). Um grupo de campos local pode fornecer " +"muitos benefícios, tais como um tempo de carregamento mais rápido, controle " +"de versão e campos/configurações dinâmicas. Basta copiar e colar o seguinte " +"código para o arquivo functions.php do seu tema ou incluí-lo dentro de um " +"arquivo externo." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Importar Grupos de Campos" + +#: includes/admin/tools/class-acf-admin-tool-import.php:61 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Selecione o arquivo JSON do Advanced Custom Fields que deseja importar. " +"Depois de clicar no botão importar abaixo, o ACF fará a importação dos " +"grupos de campos." + +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +#: includes/fields/class-acf-field-file.php:35 +msgid "Select File" +msgstr "Selecionar Arquivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:76 +msgid "Import File" +msgstr "Importar arquivo" + +#: includes/admin/tools/class-acf-admin-tool-import.php:100 +#: includes/fields/class-acf-field-file.php:159 +msgid "No file selected" +msgstr "Nenhum arquivo selecionado" + +#: includes/admin/tools/class-acf-admin-tool-import.php:113 +msgid "Error uploading file. Please try again" +msgstr "Erro ao realizar o upload do arquivo. Tente novamente" + +#: includes/admin/tools/class-acf-admin-tool-import.php:122 +msgid "Incorrect file type" +msgstr "Tipo de arquivo incorreto" + +#: includes/admin/tools/class-acf-admin-tool-import.php:139 +msgid "Import file empty" +msgstr "Arquivo de importação vazio" + +#: includes/admin/tools/class-acf-admin-tool-import.php:247 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Importado 1 grupo de campos" +msgstr[1] "Importados %s grupos de campos" + +#: includes/admin/views/field-group-field-conditional-logic.php:28 +msgid "Conditional Logic" +msgstr "Condições para exibição" + +#: includes/admin/views/field-group-field-conditional-logic.php:54 +msgid "Show this field if" +msgstr "Mostrar este campo se" + +#: includes/admin/views/field-group-field-conditional-logic.php:103 +#: includes/locations.php:247 +msgid "is equal to" +msgstr "é igual a" + +#: includes/admin/views/field-group-field-conditional-logic.php:104 +#: includes/locations.php:248 +msgid "is not equal to" +msgstr "não é igual a" + +#: includes/admin/views/field-group-field-conditional-logic.php:141 +#: includes/admin/views/html-location-rule.php:80 +msgid "and" +msgstr "e" + +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Adicionar grupo de regras" + +#: includes/admin/views/field-group-field.php:41 +#: pro/fields/class-acf-field-flexible-content.php:403 +#: pro/fields/class-acf-field-repeater.php:296 +msgid "Drag to reorder" +msgstr "Arraste para reorganizar" + +#: includes/admin/views/field-group-field.php:45 +#: includes/admin/views/field-group-field.php:48 +msgid "Edit field" +msgstr "Editar campo" + +#: includes/admin/views/field-group-field.php:48 +#: includes/fields/class-acf-field-file.php:141 +#: includes/fields/class-acf-field-image.php:122 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:342 +msgid "Edit" +msgstr "Editar" + +#: includes/admin/views/field-group-field.php:49 +msgid "Duplicate field" +msgstr "Duplicar campo" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move field to another group" +msgstr "Mover campo para outro grupo" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move" +msgstr "Mover" + +#: includes/admin/views/field-group-field.php:51 +msgid "Delete field" +msgstr "Excluir campo" + +#: includes/admin/views/field-group-field.php:51 +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Delete" +msgstr "Excluir" + +#: includes/admin/views/field-group-field.php:67 +msgid "Field Label" +msgstr "Rótulo do Campo" + +#: includes/admin/views/field-group-field.php:68 +msgid "This is the name which will appear on the EDIT page" +msgstr "Este é o nome que irá aparecer na página de EDIÇÃO" + +#: includes/admin/views/field-group-field.php:77 +msgid "Field Name" +msgstr "Nome do Campo" + +#: includes/admin/views/field-group-field.php:78 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "" +"Uma única palavra, sem espaços. Traço inferior (_) e traços (-) permitidos" + +#: includes/admin/views/field-group-field.php:87 +msgid "Field Type" +msgstr "Tipo de Campo" + +#: includes/admin/views/field-group-field.php:98 +msgid "Instructions" +msgstr "Instruções" + +#: includes/admin/views/field-group-field.php:99 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instrução para os autores. Exibido quando se está enviando dados" + +#: includes/admin/views/field-group-field.php:108 +msgid "Required?" +msgstr "Obrigatório?" + +#: includes/admin/views/field-group-field.php:131 +msgid "Wrapper Attributes" +msgstr "Atributos do Wrapper" + +#: includes/admin/views/field-group-field.php:137 +msgid "width" +msgstr "largura" + +#: includes/admin/views/field-group-field.php:152 +msgid "class" +msgstr "classe" + +#: includes/admin/views/field-group-field.php:165 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:177 +msgid "Close Field" +msgstr "Fechar Campo" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Ordem" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:415 +#: includes/fields/class-acf-field-radio.php:306 +#: includes/fields/class-acf-field-select.php:432 +#: pro/fields/class-acf-field-flexible-content.php:582 +msgid "Label" +msgstr "Rótulo" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:964 +#: pro/fields/class-acf-field-flexible-content.php:595 +msgid "Name" +msgstr "Nome" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Chave" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Nenhum campo. Clique no botão + Adicionar Campo para criar " +"seu primeiro campo." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Adicionar Campo" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Regras" + +#: includes/admin/views/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 utilizarão " +"estes campos personalizados" + +#: includes/admin/views/field-group-options.php:23 +msgid "Style" +msgstr "Estilo" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Padrão (metabox do WP)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Sem bordas (sem metabox)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Posição" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Superior (depois do título)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Normal (depois do editor de conteúdo)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Posicionamento do rótulo" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Alinhado ao Topo" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Alinhado à Esquerda" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Posicionamento das instruções" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Abaixo dos rótulos" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Abaixo dos campos" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Nº. de Ordem" + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "Grupos de campos com a menor numeração aparecerão primeiro" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Exibido na lista de grupos de campos" + +#: includes/admin/views/field-group-options.php:107 +msgid "Hide on screen" +msgstr "Ocultar na tela" + +#: includes/admin/views/field-group-options.php:108 +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/field-group-options.php:108 +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/field-group-options.php:115 +msgid "Permalink" +msgstr "Link permanente" + +#: includes/admin/views/field-group-options.php:116 +msgid "Content Editor" +msgstr "Editor de Conteúdo" + +#: includes/admin/views/field-group-options.php:117 +msgid "Excerpt" +msgstr "Resumo" + +#: includes/admin/views/field-group-options.php:119 +msgid "Discussion" +msgstr "Discussão" + +#: includes/admin/views/field-group-options.php:120 +msgid "Comments" +msgstr "Comentários" + +#: includes/admin/views/field-group-options.php:121 +msgid "Revisions" +msgstr "Revisões" + +#: includes/admin/views/field-group-options.php:122 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:123 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:124 +msgid "Format" +msgstr "Formato" + +#: includes/admin/views/field-group-options.php:125 +msgid "Page Attributes" +msgstr "Atributos da Página" + +#: includes/admin/views/field-group-options.php:126 +#: includes/fields/class-acf-field-relationship.php:670 +msgid "Featured Image" +msgstr "Imagem Destacada" + +#: includes/admin/views/field-group-options.php:127 +msgid "Categories" +msgstr "Categorias" + +#: includes/admin/views/field-group-options.php:128 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/views/field-group-options.php:129 +msgid "Send Trackbacks" +msgstr "Enviar Trackbacks" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Mostrar este grupo de campos se" + +#: includes/admin/views/install-network.php:4 +msgid "Upgrade Sites" +msgstr "Revisar sites e atualizar" + +#: includes/admin/views/install-network.php:9 +#: includes/admin/views/install.php:3 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "Atualização do Banco de Dados do Advanced Custom Fields" + +#: includes/admin/views/install-network.php:11 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"O banco de dados dos sites abaixo precisam ser atualizados. Verifique os que " +"você deseja atualizar e clique %s." + +#: includes/admin/views/install-network.php:20 +#: includes/admin/views/install-network.php:28 +msgid "Site" +msgstr "Site" + +#: includes/admin/views/install-network.php:48 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Site requer atualização do banco de dados da versão %s para %s" + +#: includes/admin/views/install-network.php:50 +msgid "Site is up to date" +msgstr "Site está atualizado" + +#: includes/admin/views/install-network.php:63 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Atualização do Banco de Dados realizada. Retornar para o " +"painel da rede" + +#: includes/admin/views/install-network.php:102 +#: includes/admin/views/install-notice.php:42 +msgid "" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "" +"É altamente recomendado fazer um backup do seu banco de dados antes de " +"continuar. Você tem certeza que deseja atualizar agora?" + +#: includes/admin/views/install-network.php:158 +msgid "Upgrade complete" +msgstr "Atualização realizada" + +#: includes/admin/views/install-network.php:162 +#: includes/admin/views/install.php:9 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Atualizando os dados para a versão %s" + +#: includes/admin/views/install-notice.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Repetidor" + +#: includes/admin/views/install-notice.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Conteúdo Flexível" + +#: includes/admin/views/install-notice.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galeria" + +#: includes/admin/views/install-notice.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Página de Opções" + +#: includes/admin/views/install-notice.php:26 +msgid "Database Upgrade Required" +msgstr "Atualização do Banco de Dados Necessária" + +#: includes/admin/views/install-notice.php:28 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Obrigado por atualizar para o %s v%s!" + +#: includes/admin/views/install-notice.php:28 +msgid "" +"Before you start using the new awesome features, please update your database " +"to the newest version." +msgstr "" +"Antes de começar a utilizar as novas e incríveis funcionalidades, por favor " +"atualize seus banco de dados para a versão mais recente." + +#: includes/admin/views/install-notice.php:31 +#, php-format +msgid "" +"Please also ensure any premium add-ons (%s) have first been updated to the " +"latest version." +msgstr "" +"Certifique-se que todos os complementos premium (%s) foram atualizados para " +"a última versão." + +#: includes/admin/views/install.php:7 +msgid "Reading upgrade tasks..." +msgstr "Lendo as tarefas de atualização…" + +#: includes/admin/views/install.php:11 +#, php-format +msgid "Database Upgrade complete. See what's new" +msgstr "" +"Atualização do banco de dados concluída. Veja o que há de " +"novo" + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Fazer Download e Instalar" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Instalado" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Bem-vindo ao Advanced Custom Fields" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Obrigado por atualizar! O ACF %s está maior e melhor do que nunca. Esperamos " +"que você goste." + +#: includes/admin/views/settings-info.php:17 +msgid "A smoother custom field experience" +msgstr "Uma experiência de uso mais simples e mais agradável" + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Usability" +msgstr "Melhoria da Usabilidade" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"Incluir a popular biblioteca Select2 nos possibilitou aperfeiçoar a " +"usabilidade e a performance de diversos tipos de campos, como o objeto do " +"post, link da página, taxonomias e seleções." + +#: includes/admin/views/settings-info.php:27 +msgid "Improved Design" +msgstr "Melhorias no Design" + +#: includes/admin/views/settings-info.php:28 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Muitos campos passaram por uma atualização visual para tornar o ACF mais " +"bonito do que nunca! As mudanças mais visíveis podem ser vistas na galeria, " +"no campo de relação e no novo campo oEmbed!" + +#: includes/admin/views/settings-info.php:32 +msgid "Improved Data" +msgstr "Aprimoramento dos Dados" + +#: includes/admin/views/settings-info.php:33 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"Ao redefinir a arquitetura de dados promovemos mais autonomia aos sub " +"campos, que podem agora funcionar de forma mais independente e serem " +"arrastados e reposicionados entre diferentes campos." + +#: includes/admin/views/settings-info.php:39 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Adeus Complementos. Olá PRO" + +#: includes/admin/views/settings-info.php:44 +msgid "Introducing ACF PRO" +msgstr "Apresentando o ACF PRO" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" +"Estamos mudando a forma como as funcionalidades premium são disponibilizadas " +"para um modo ainda melhor!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Todos os 4 add-ons premium foram combinados na nova versão Pro " +"do ACF. Com licenças pessoais e para desenvolvedores, as funcionalidades " +"premium estão mais acessíveis do que nunca!" + +#: includes/admin/views/settings-info.php:50 +msgid "Powerful Features" +msgstr "Funcionalidades poderosas" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"O ACF PRO contém funcionalidades incríveis como o campo de dados " +"repetitivos, layouts de conteúdo flexíveis, um belíssimo campo de galeria e " +"a capacidade de criar páginas de opções adicionais!" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "" +"Leia mais sobre as funcionalidades do ACF PRO (em inglês)." + +#: includes/admin/views/settings-info.php:56 +msgid "Easy Upgrading" +msgstr "Fácil Atualização" + +#: includes/admin/views/settings-info.php:57 +#, php-format +msgid "" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" +msgstr "" +"Para facilitar a atualização, faça o login na sua conta e " +"solicite sua cópia gratuita do ACF PRO!" + +#: includes/admin/views/settings-info.php:58 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" +msgstr "" +"Também escrevemos um guia de atualização (em inglês) para " +"esclarecer qualquer dúvida, mas se você tiver alguma questão, entre em " +"contato com nosso time de suporte através do help desk" + +#: includes/admin/views/settings-info.php:66 +msgid "Under the Hood" +msgstr "Nos bastidores" + +#: includes/admin/views/settings-info.php:71 +msgid "Smarter field settings" +msgstr "Definições de campo mais inteligentes" + +#: includes/admin/views/settings-info.php:72 +msgid "ACF now saves its field settings as individual post objects" +msgstr "O ACF agora salva as definições dos campos como posts individuais" + +#: includes/admin/views/settings-info.php:76 +msgid "More AJAX" +msgstr "Mais AJAX" + +#: includes/admin/views/settings-info.php:77 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "" +"Mais campos utilizam pesquisas em AJAX para acelerar o carregamento da página" + +#: includes/admin/views/settings-info.php:81 +msgid "Local JSON" +msgstr "JSON Local" + +#: includes/admin/views/settings-info.php:82 +msgid "New auto export to JSON feature improves speed" +msgstr "" +"Melhor performance com a nova funcionalidade de exportação automática para " +"JSON" + +#: includes/admin/views/settings-info.php:88 +msgid "Better version control" +msgstr "Melhor controle de versões" + +#: includes/admin/views/settings-info.php:89 +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" +msgstr "" +"A nova função de exportação automática para JSON permite que as definições " +"do campo sejam controladas por versão" + +#: includes/admin/views/settings-info.php:93 +msgid "Swapped XML for JSON" +msgstr "Troca de XML para JSON" + +#: includes/admin/views/settings-info.php:94 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "" +"As funcionalidades de Importar/ Exportar agora utilizam JSON ao invés de XML" + +#: includes/admin/views/settings-info.php:98 +msgid "New Forms" +msgstr "Novos espaços de Formulários" + +#: includes/admin/views/settings-info.php:99 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "" +"Os Campos agora podem ser inseridos nos comentários, widgets e em todos os " +"formulários de usuários!" + +#: includes/admin/views/settings-info.php:106 +msgid "A new field for embedding content has been added" +msgstr "Foi adicionado o novo campo oEmbed para incorporar conteúdo" + +#: includes/admin/views/settings-info.php:110 +msgid "New Gallery" +msgstr "Nova Galeria" + +#: includes/admin/views/settings-info.php:111 +msgid "The gallery field has undergone a much needed facelift" +msgstr "O campo de Galeria passou por uma transformação muito necessária" + +#: includes/admin/views/settings-info.php:115 +msgid "New Settings" +msgstr "Novas Definições" + +#: includes/admin/views/settings-info.php:116 +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "" +"Opções de posicionamento do rótulo e da instrução foram adicionadas aos " +"grupos de campos" + +#: includes/admin/views/settings-info.php:122 +msgid "Better Front End Forms" +msgstr "Formulários Frontend aperfeiçoados" + +#: includes/admin/views/settings-info.php:123 +msgid "acf_form() can now create a new post on submission" +msgstr "A função acf_form() agora pode criar um novo post ao ser utilizada" + +#: includes/admin/views/settings-info.php:127 +msgid "Better Validation" +msgstr "Melhor Validação" + +#: includes/admin/views/settings-info.php:128 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "" +"A validação dos formulários agora é feita através de PHP + AJAX ao invés de " +"apenas JS" + +#: includes/admin/views/settings-info.php:132 +msgid "Relationship Field" +msgstr "Campo de Relação" + +#: includes/admin/views/settings-info.php:133 +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "" +"Nova função de ‘Filtro’ (Busca, Tipo de Post, Taxonomia) para o campo de " +"Relação" + +#: includes/admin/views/settings-info.php:139 +msgid "Moving Fields" +msgstr "Movimentação de Campos" + +#: includes/admin/views/settings-info.php:140 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" +msgstr "" +"O novo recurso agora permite que você mova um campo entre diferentes grupos " +"grupos (e até mesmo outros campos)" + +#: includes/admin/views/settings-info.php:144 +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Link da Página" + +#: includes/admin/views/settings-info.php:145 +msgid "New archives group in page_link field selection" +msgstr "Nova opção de selecionar Arquivos no campo de Link da Página" + +#: includes/admin/views/settings-info.php:149 +msgid "Better Options Pages" +msgstr "Páginas de Opções aperfeiçoadas" + +#: includes/admin/views/settings-info.php:150 +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" +msgstr "" +"Novas funções para as páginas de opções permitem a criação tanto de páginas " +"principais quanto de sub-páginas" + +#: includes/admin/views/settings-info.php:159 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Achamos que você vai adorar as mudanças na versão %s." + +#: includes/api/api-helpers.php:858 +msgid "Thumbnail" +msgstr "Miniatura" + +#: includes/api/api-helpers.php:859 +msgid "Medium" +msgstr "Média" + +#: includes/api/api-helpers.php:860 +msgid "Large" +msgstr "Grande" + +#: includes/api/api-helpers.php:909 +msgid "Full Size" +msgstr "Tamanho Original" + +#: includes/api/api-helpers.php:1250 includes/api/api-helpers.php:1823 +#: pro/fields/class-acf-field-clone.php:992 +msgid "(no title)" +msgstr "(sem título)" + +#: includes/api/api-helpers.php:3880 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "A largura da imagem deve ter pelo menos %dpx." + +#: includes/api/api-helpers.php:3885 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "A largura da imagem não pode ser maior que %dpx." + +#: includes/api/api-helpers.php:3901 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "A altura da imagem deve ter pelo menos %dpx." + +#: includes/api/api-helpers.php:3906 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "A altura da imagem não pode ser maior que %dpx." + +#: includes/api/api-helpers.php:3924 +#, php-format +msgid "File size must be at least %s." +msgstr "O tamanho do arquivo deve ter pelo menos %s." + +#: includes/api/api-helpers.php:3929 +#, php-format +msgid "File size must must not exceed %s." +msgstr "O tamanho do arquivo não pode ser maior que %s." + +#: includes/api/api-helpers.php:3963 +#, php-format +msgid "File type must be %s." +msgstr "O tipo de arquivo deve ser %s." + +#: includes/fields.php:144 +msgid "Basic" +msgstr "Básico" + +#: includes/fields.php:145 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Conteúdo" + +#: includes/fields.php:146 +msgid "Choice" +msgstr "Escolha" + +#: includes/fields.php:147 +msgid "Relational" +msgstr "Relacional" + +#: includes/fields.php:148 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:149 +#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:384 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:285 +#: pro/fields/class-acf-field-clone.php:839 +#: pro/fields/class-acf-field-flexible-content.php:552 +#: pro/fields/class-acf-field-flexible-content.php:601 +#: pro/fields/class-acf-field-repeater.php:450 +msgid "Layout" +msgstr "Layout" + +#: includes/fields.php:326 +msgid "Field type does not exist" +msgstr "Tipo de campo não existe" + +#: includes/fields.php:326 +msgid "Unknown" +msgstr "Desconhecido" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "Acordeão" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "Abrir" + +#: includes/fields/class-acf-field-accordion.php:100 +msgid "Display this accordion as open on page load." +msgstr "Exibe esse acordeão como aberto ao carregar a página." + +#: includes/fields/class-acf-field-accordion.php:109 +msgid "Multi-expand" +msgstr "Expansão-multipla" + +#: includes/fields/class-acf-field-accordion.php:110 +msgid "Allow this accordion to open without closing others. " +msgstr "Permite que esse acordeão abra sem fechar os outros." + +#: includes/fields/class-acf-field-accordion.php:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Ponto final" + +#: includes/fields/class-acf-field-accordion.php:120 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"Define um ponto final para que o acordeão anterior pare. Esse acordeão não " +"será visível." + +#: 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:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:368 +msgid "Choices" +msgstr "Escolhas" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "Enter each choice on a new line." +msgstr "Digite cada opção em uma nova linha." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +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:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "red : Red" +msgstr "vermelho : Vermelho" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:412 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-taxonomy.php:793 +#: includes/fields/class-acf-field-user.php:408 +msgid "Allow Null?" +msgstr "Permitir Nulo?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:276 +#: includes/fields/class-acf-field-range.php:148 +#: includes/fields/class-acf-field-select.php:377 +#: includes/fields/class-acf-field-text.php:119 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:410 +msgid "Default Value" +msgstr "Valor Padrão" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:277 +#: includes/fields/class-acf-field-range.php:149 +#: includes/fields/class-acf-field-text.php:120 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:411 +msgid "Appears when creating a new post" +msgstr "Aparece quando o novo post é criado" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:391 +#: includes/fields/class-acf-field-radio.php:292 +msgid "Horizontal" +msgstr "Horizontal" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:390 +#: includes/fields/class-acf-field-radio.php:291 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:408 +#: includes/fields/class-acf-field-file.php:204 +#: includes/fields/class-acf-field-image.php:188 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:299 +#: includes/fields/class-acf-field-taxonomy.php:833 +msgid "Return Value" +msgstr "Valor Retornado" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:409 +#: includes/fields/class-acf-field-file.php:205 +#: includes/fields/class-acf-field-image.php:189 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:300 +msgid "Specify the returned value on front end" +msgstr "Especifique a forma como os valores serão retornados no front-end" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-radio.php:305 +#: includes/fields/class-acf-field-select.php:431 +msgid "Value" +msgstr "Valor" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:416 +#: includes/fields/class-acf-field-radio.php:307 +#: includes/fields/class-acf-field-select.php:433 +msgid "Both (Array)" +msgstr "Ambos (Array)" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:780 +msgid "Checkbox" +msgstr "Checkbox" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Selecionar Tudo" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Adicionar nova opção" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "Permitir personalização" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "Permite adicionar valores personalizados" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "Salvar personalização" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "Salva valores personalizados nas opções do campo" + +#: includes/fields/class-acf-field-checkbox.php:376 +#: includes/fields/class-acf-field-select.php:378 +msgid "Enter each default value on a new line" +msgstr "Digite cada valor padrão em uma nova linha" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Toggle" +msgstr "Selecionar Tudo" + +#: includes/fields/class-acf-field-checkbox.php:399 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Incluir um checkbox adicional que marca (ou desmarca) todas as opções" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Seletor de Cor" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Limpar" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Padrão" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Selecionar Cor" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Cor Atual" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Seletor de Data" + +#: includes/fields/class-acf-field-date_picker.php:33 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Concluído" + +#: includes/fields/class-acf-field-date_picker.php:34 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Hoje" + +#: includes/fields/class-acf-field-date_picker.php:35 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Próximo" + +#: includes/fields/class-acf-field-date_picker.php:36 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:37 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Sem" + +#: includes/fields/class-acf-field-date_picker.php:207 +#: includes/fields/class-acf-field-date_time_picker.php:181 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Formato de Exibição" + +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:182 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "O formato que será exibido ao editar um post" + +#: includes/fields/class-acf-field-date_picker.php:216 +#: includes/fields/class-acf-field-date_picker.php:247 +#: includes/fields/class-acf-field-date_time_picker.php:191 +#: includes/fields/class-acf-field-date_time_picker.php:208 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "Customizado:" + +#: includes/fields/class-acf-field-date_picker.php:226 +msgid "Save Format" +msgstr "Salvar formato" + +#: includes/fields/class-acf-field-date_picker.php:227 +msgid "The format used when saving a value" +msgstr "O formato usado ao salvar um valor" + +#: includes/fields/class-acf-field-date_picker.php:237 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-post_object.php:432 +#: includes/fields/class-acf-field-relationship.php:697 +#: includes/fields/class-acf-field-select.php:426 +#: includes/fields/class-acf-field-time_picker.php:124 +msgid "Return Format" +msgstr "Formato dos Dados" + +#: includes/fields/class-acf-field-date_picker.php:238 +#: includes/fields/class-acf-field-date_time_picker.php:199 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "O formato que será retornado através das funções de template" + +#: includes/fields/class-acf-field-date_picker.php:256 +#: includes/fields/class-acf-field-date_time_picker.php:215 +msgid "Week Starts On" +msgstr "Semana começa em" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Seletor de Data e Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:33 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Selecione a hora" + +#: includes/fields/class-acf-field-date_time_picker.php:34 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:35 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Hora" + +#: includes/fields/class-acf-field-date_time_picker.php:36 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minuto" + +#: includes/fields/class-acf-field-date_time_picker.php:37 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Segundo" + +#: includes/fields/class-acf-field-date_time_picker.php:38 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milissegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:39 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microssegundo" + +#: includes/fields/class-acf-field-date_time_picker.php:40 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fuso Horário" + +#: includes/fields/class-acf-field-date_time_picker.php:41 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Agora" + +#: includes/fields/class-acf-field-date_time_picker.php:42 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Pronto" + +#: includes/fields/class-acf-field-date_time_picker.php:43 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Selecionar" + +#: includes/fields/class-acf-field-date_time_picker.php:45 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "AM" + +#: includes/fields/class-acf-field-date_time_picker.php:46 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:49 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "PM" + +#: includes/fields/class-acf-field-date_time_picker.php:50 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Email" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:128 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Texto Placeholder" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:129 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Texto que aparecerá dentro do campo (até que algo seja digitado)" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:187 +#: includes/fields/class-acf-field-text.php:137 +msgid "Prepend" +msgstr "Prefixo" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:188 +#: includes/fields/class-acf-field-text.php:138 +msgid "Appears before the input" +msgstr "Texto que aparecerá antes do campo" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:196 +#: includes/fields/class-acf-field-text.php:146 +msgid "Append" +msgstr "Sufixo" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:197 +#: includes/fields/class-acf-field-text.php:147 +msgid "Appears after the input" +msgstr "Texto que aparecerá após o campo" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Arquivo" + +#: includes/fields/class-acf-field-file.php:36 +msgid "Edit File" +msgstr "Editar Arquivo" + +#: includes/fields/class-acf-field-file.php:37 +msgid "Update File" +msgstr "Atualizar Arquivo" + +#: includes/fields/class-acf-field-file.php:38 +#: includes/fields/class-acf-field-image.php:43 includes/media.php:57 +#: pro/fields/class-acf-field-gallery.php:44 +msgid "Uploaded to this post" +msgstr "Anexado ao post" + +#: includes/fields/class-acf-field-file.php:130 +msgid "File name" +msgstr "Nome do arquivo" + +#: includes/fields/class-acf-field-file.php:134 +#: includes/fields/class-acf-field-file.php:237 +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-image.php:248 +#: includes/fields/class-acf-field-image.php:277 +#: pro/fields/class-acf-field-gallery.php:690 +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Tamanho" + +#: includes/fields/class-acf-field-file.php:143 +#: includes/fields/class-acf-field-image.php:124 +#: includes/fields/class-acf-field-link.php:140 includes/input.php:269 +#: pro/fields/class-acf-field-gallery.php:343 +#: pro/fields/class-acf-field-gallery.php:531 +msgid "Remove" +msgstr "Remover" + +#: includes/fields/class-acf-field-file.php:159 +msgid "Add File" +msgstr "Adicionar Arquivo" + +#: includes/fields/class-acf-field-file.php:210 +msgid "File Array" +msgstr "Array do arquivo" + +#: includes/fields/class-acf-field-file.php:211 +msgid "File URL" +msgstr "URL do Arquivo" + +#: includes/fields/class-acf-field-file.php:212 +msgid "File ID" +msgstr "ID do Arquivo" + +#: includes/fields/class-acf-field-file.php:219 +#: includes/fields/class-acf-field-image.php:213 +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Library" +msgstr "Biblioteca" + +#: includes/fields/class-acf-field-file.php:220 +#: includes/fields/class-acf-field-image.php:214 +#: pro/fields/class-acf-field-gallery.php:656 +msgid "Limit the media library choice" +msgstr "Limitar a escolha da biblioteca de mídia" + +#: includes/fields/class-acf-field-file.php:225 +#: includes/fields/class-acf-field-image.php:219 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:87 +#: includes/locations/class-acf-location-user-role.php:111 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:661 +msgid "All" +msgstr "Todos" + +#: includes/fields/class-acf-field-file.php:226 +#: includes/fields/class-acf-field-image.php:220 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Uploaded to post" +msgstr "Anexado ao post" + +#: includes/fields/class-acf-field-file.php:233 +#: includes/fields/class-acf-field-image.php:227 +#: pro/fields/class-acf-field-gallery.php:669 +msgid "Minimum" +msgstr "Mínimo" + +#: includes/fields/class-acf-field-file.php:234 +#: includes/fields/class-acf-field-file.php:245 +msgid "Restrict which files can be uploaded" +msgstr "Limita o tamanho dos arquivos que poderão ser carregados" + +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:256 +#: pro/fields/class-acf-field-gallery.php:698 +msgid "Maximum" +msgstr "Máximo" + +#: includes/fields/class-acf-field-file.php:255 +#: includes/fields/class-acf-field-image.php:285 +#: pro/fields/class-acf-field-gallery.php:727 +msgid "Allowed file types" +msgstr "Tipos de arquivos permitidos" + +#: includes/fields/class-acf-field-file.php:256 +#: includes/fields/class-acf-field-image.php:286 +#: pro/fields/class-acf-field-gallery.php:728 +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-google-map.php:25 +msgid "Google Map" +msgstr "Mapa do Google" + +#: includes/fields/class-acf-field-google-map.php:40 +msgid "Locating" +msgstr "Localizando" + +#: includes/fields/class-acf-field-google-map.php:41 +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:113 +msgid "Clear location" +msgstr "Limpar a localização" + +#: includes/fields/class-acf-field-google-map.php:114 +msgid "Find current location" +msgstr "Encontre a localização atual" + +#: includes/fields/class-acf-field-google-map.php:117 +msgid "Search for address..." +msgstr "Pesquisar endereço…" + +#: includes/fields/class-acf-field-google-map.php:147 +#: includes/fields/class-acf-field-google-map.php:158 +msgid "Center" +msgstr "Centro" + +#: includes/fields/class-acf-field-google-map.php:148 +#: includes/fields/class-acf-field-google-map.php:159 +msgid "Center the initial map" +msgstr "Centro inicial do mapa" + +#: includes/fields/class-acf-field-google-map.php:170 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:171 +msgid "Set the initial zoom level" +msgstr "Definir o nível do zoom inicial" + +#: includes/fields/class-acf-field-google-map.php:180 +#: includes/fields/class-acf-field-image.php:239 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-oembed.php:281 +#: pro/fields/class-acf-field-gallery.php:681 +#: pro/fields/class-acf-field-gallery.php:710 +msgid "Height" +msgstr "Altura" + +#: includes/fields/class-acf-field-google-map.php:181 +msgid "Customise the map height" +msgstr "Personalizar a altura do mapa" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Grupo" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:389 +msgid "Sub Fields" +msgstr "Sub Campos" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:840 +msgid "Specify the style used to render the selected fields" +msgstr "Especifique o estilo utilizado para exibir os campos selecionados" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:845 +#: pro/fields/class-acf-field-flexible-content.php:612 +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Block" +msgstr "Bloco" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:846 +#: pro/fields/class-acf-field-flexible-content.php:611 +#: pro/fields/class-acf-field-repeater.php:457 +msgid "Table" +msgstr "Tabela" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:847 +#: pro/fields/class-acf-field-flexible-content.php:613 +#: pro/fields/class-acf-field-repeater.php:459 +msgid "Row" +msgstr "Linha" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Imagem" + +#: includes/fields/class-acf-field-image.php:40 +msgid "Select Image" +msgstr "Selecionar Imagem" + +#: includes/fields/class-acf-field-image.php:41 +#: pro/fields/class-acf-field-gallery.php:42 +msgid "Edit Image" +msgstr "Editar Imagem" + +#: includes/fields/class-acf-field-image.php:42 +#: pro/fields/class-acf-field-gallery.php:43 +msgid "Update Image" +msgstr "Atualizar Imagem" + +#: includes/fields/class-acf-field-image.php:44 +msgid "All images" +msgstr "Todas as imagens" + +#: includes/fields/class-acf-field-image.php:140 +msgid "No image selected" +msgstr "Nenhuma imagem selecionada" + +#: includes/fields/class-acf-field-image.php:140 +msgid "Add Image" +msgstr "Adicionar Imagem" + +#: includes/fields/class-acf-field-image.php:194 +msgid "Image Array" +msgstr "Array da Imagem" + +#: includes/fields/class-acf-field-image.php:195 +msgid "Image URL" +msgstr "URL da Imagem" + +#: includes/fields/class-acf-field-image.php:196 +msgid "Image ID" +msgstr "ID da Imagem" + +#: includes/fields/class-acf-field-image.php:203 +msgid "Preview Size" +msgstr "Tamanho da Pré-visualização" + +#: includes/fields/class-acf-field-image.php:204 +msgid "Shown when entering data" +msgstr "Exibido ao inserir os dados" + +#: includes/fields/class-acf-field-image.php:228 +#: includes/fields/class-acf-field-image.php:257 +#: pro/fields/class-acf-field-gallery.php:670 +#: pro/fields/class-acf-field-gallery.php:699 +msgid "Restrict which images can be uploaded" +msgstr "Limita as imagens que poderão ser carregadas" + +#: includes/fields/class-acf-field-image.php:231 +#: includes/fields/class-acf-field-image.php:260 +#: includes/fields/class-acf-field-oembed.php:270 +#: pro/fields/class-acf-field-gallery.php:673 +#: pro/fields/class-acf-field-gallery.php:702 +msgid "Width" +msgstr "Largura" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Link" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Selecionar Link" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "Abre em uma nova janela/aba" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Array do Link" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "URL do Link" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Mensagem" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Novas Linhas" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Controla como as novas linhas são renderizadas" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Adicionar parágrafos automaticamente" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Adicionar <br> automaticamente" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Sem Formatação" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "Ignorar HTML" + +#: 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-number.php:25 +msgid "Number" +msgstr "Número" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:157 +msgid "Minimum Value" +msgstr "Valor Mínimo" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:167 +msgid "Maximum Value" +msgstr "Valor Máximo" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:177 +msgid "Step Size" +msgstr "Tamanho das frações" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "O valor deve ser um número" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +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:245 +#, php-format +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-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:219 +msgid "Enter URL" +msgstr "Digite a URL" + +#: includes/fields/class-acf-field-oembed.php:234 +#: includes/fields/class-acf-field-taxonomy.php:898 +msgid "Error." +msgstr "Erro." + +#: includes/fields/class-acf-field-oembed.php:234 +msgid "No embed found for the given URL." +msgstr "Nenhuma mídia incorporada encontrada na URL fornecida." + +#: includes/fields/class-acf-field-oembed.php:267 +#: includes/fields/class-acf-field-oembed.php:278 +msgid "Embed Size" +msgstr "Tamanho da Mídia incorporada" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Arquivos" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:268 +#: includes/fields/class-acf-field-taxonomy.php:986 +msgid "Parent" +msgstr "Página de Nível mais Alto (sem mãe)" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:384 +#: includes/fields/class-acf-field-relationship.php:623 +msgid "Filter by Post Type" +msgstr "Filtrar por Tipo de Post" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:392 +#: includes/fields/class-acf-field-relationship.php:631 +msgid "All post types" +msgstr "Todos os tipos de posts" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:398 +#: includes/fields/class-acf-field-relationship.php:637 +msgid "Filter by Taxonomy" +msgstr "Filtrar por Taxonomia" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:406 +#: includes/fields/class-acf-field-relationship.php:645 +msgid "All taxonomies" +msgstr "Todas as taxonomias" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "Permitir URLs do Arquivo" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:422 +#: includes/fields/class-acf-field-select.php:396 +#: includes/fields/class-acf-field-user.php:418 +msgid "Select multiple values?" +msgstr "Selecionar vários valores?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Senha" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:702 +msgid "Post Object" +msgstr "Objeto do Post" + +#: includes/fields/class-acf-field-post_object.php:438 +#: includes/fields/class-acf-field-relationship.php:703 +msgid "Post ID" +msgstr "ID do Post" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Botão de Rádio" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Outro" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "" +"Adicionar uma opção ‘Outro’ para permitir a inserção de valores " +"personalizados" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "Salvar Outro" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "" +"Salvar os valores personalizados inseridos na opção ‘Outros’ na lista de " +"escolhas do campo" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Faixa" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relação" + +#: includes/fields/class-acf-field-relationship.php:37 +msgid "Minimum values reached ( {min} values )" +msgstr "Quantidade mínima atingida ( {min} item(s) )" + +#: includes/fields/class-acf-field-relationship.php:38 +msgid "Maximum values reached ( {max} values )" +msgstr "Quantidade máxima atingida ( {max} item(s) )" + +#: includes/fields/class-acf-field-relationship.php:39 +msgid "Loading" +msgstr "Carregando" + +#: includes/fields/class-acf-field-relationship.php:40 +msgid "No matches found" +msgstr "Nenhuma correspondência encontrada" + +#: includes/fields/class-acf-field-relationship.php:423 +msgid "Select post type" +msgstr "Selecione o tipo de post" + +#: includes/fields/class-acf-field-relationship.php:449 +msgid "Select taxonomy" +msgstr "Selecione a taxonomia" + +#: includes/fields/class-acf-field-relationship.php:539 +msgid "Search..." +msgstr "Pesquisar…" + +#: includes/fields/class-acf-field-relationship.php:651 +msgid "Filters" +msgstr "Filtros" + +#: includes/fields/class-acf-field-relationship.php:657 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Tipo de Post" + +#: includes/fields/class-acf-field-relationship.php:658 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:763 +msgid "Taxonomy" +msgstr "Taxonomia" + +#: includes/fields/class-acf-field-relationship.php:665 +msgid "Elements" +msgstr "Elementos" + +#: includes/fields/class-acf-field-relationship.php:666 +msgid "Selected elements will be displayed in each result" +msgstr "Os elementos selecionados serão exibidos em cada resultado do filtro" + +#: includes/fields/class-acf-field-relationship.php:677 +msgid "Minimum posts" +msgstr "Qtde. mínima de posts" + +#: includes/fields/class-acf-field-relationship.php:686 +msgid "Maximum posts" +msgstr "Qtde. máxima de posts" + +#: includes/fields/class-acf-field-relationship.php:790 +#: pro/fields/class-acf-field-gallery.php:800 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s requer a seleção de ao menos %s item" +msgstr[1] "%s requer a seleção de ao menos %s itens" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:785 +msgctxt "noun" +msgid "Select" +msgstr "Seleção" + +#: includes/fields/class-acf-field-select.php:38 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Um resultado localizado, pressione Enter para selecioná-lo." + +#: includes/fields/class-acf-field-select.php:39 +#, php-format +msgctxt "Select2 JS matches_n" +msgid "%d results are available, use up and down arrow keys to navigate." +msgstr "" +"%d resultados localizados, utilize as setas para cima ou baixo para navegar." + +#: includes/fields/class-acf-field-select.php:40 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nenhuma correspondência encontrada" + +#: includes/fields/class-acf-field-select.php:41 +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:42 +#, php-format +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:43 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Apague 1 caractere" + +#: includes/fields/class-acf-field-select.php:44 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Apague %d caracteres" + +#: includes/fields/class-acf-field-select.php:45 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Você pode selecionar apenas 1 item" + +#: includes/fields/class-acf-field-select.php:46 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Você pode selecionar apenas %d itens" + +#: includes/fields/class-acf-field-select.php:47 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Carregando mais resultados…" + +#: includes/fields/class-acf-field-select.php:48 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Pesquisando…" + +#: includes/fields/class-acf-field-select.php:49 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Falha ao carregar" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:54 +msgctxt "verb" +msgid "Select" +msgstr "Selecionar" + +#: includes/fields/class-acf-field-select.php:406 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "Interface do campo aprimorada" + +#: includes/fields/class-acf-field-select.php:416 +msgid "Use AJAX to lazy load choices?" +msgstr "Utilizar AJAX para carregar opções?" + +#: includes/fields/class-acf-field-select.php:427 +msgid "Specify the value returned" +msgstr "Especifique a forma como os valores serão retornados" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Separador" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Aba" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Posicionamento" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" +"Utilizar este campo como um ponto final e iniciar um novo grupo de abas." + +#: includes/fields/class-acf-field-taxonomy.php:713 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "Sem %s" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "None" +msgstr "Nenhuma" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Select the taxonomy to be displayed" +msgstr "Selecione a taxonomia que será exibida" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Appearance" +msgstr "Aparência" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Select the appearance of this field" +msgstr "Selecione a aparência deste campo" + +#: includes/fields/class-acf-field-taxonomy.php:779 +msgid "Multiple Values" +msgstr "Vários valores" + +#: includes/fields/class-acf-field-taxonomy.php:781 +msgid "Multi Select" +msgstr "Seleção Múltipla" + +#: includes/fields/class-acf-field-taxonomy.php:783 +msgid "Single Value" +msgstr "Um único valor" + +#: includes/fields/class-acf-field-taxonomy.php:784 +msgid "Radio Buttons" +msgstr "Botões de Rádio" + +#: includes/fields/class-acf-field-taxonomy.php:803 +msgid "Create Terms" +msgstr "Criar Termos" + +#: includes/fields/class-acf-field-taxonomy.php:804 +msgid "Allow new terms to be created whilst editing" +msgstr "Permite que novos termos sejam criados diretamente na tela de edição" + +#: includes/fields/class-acf-field-taxonomy.php:813 +msgid "Save Terms" +msgstr "Salvar Termos" + +#: includes/fields/class-acf-field-taxonomy.php:814 +msgid "Connect selected terms to the post" +msgstr "Atribui e conecta os termos selecionados ao post" + +#: includes/fields/class-acf-field-taxonomy.php:823 +msgid "Load Terms" +msgstr "Carregar Termos" + +#: includes/fields/class-acf-field-taxonomy.php:824 +msgid "Load value from posts terms" +msgstr "Carrega os termos que estão atribuídos ao post" + +#: includes/fields/class-acf-field-taxonomy.php:838 +msgid "Term Object" +msgstr "Objeto do Termo" + +#: includes/fields/class-acf-field-taxonomy.php:839 +msgid "Term ID" +msgstr "ID do Termo" + +#: includes/fields/class-acf-field-taxonomy.php:898 +#, php-format +msgid "User unable to add new %s" +msgstr "Usuário incapaz de adicionar novo(a) %s" + +#: includes/fields/class-acf-field-taxonomy.php:911 +#, php-format +msgid "%s already exists" +msgstr "%s já existe" + +#: includes/fields/class-acf-field-taxonomy.php:952 +#, php-format +msgid "%s added" +msgstr "%s adicionado(a)" + +#: includes/fields/class-acf-field-taxonomy.php:997 +msgid "Add" +msgstr "Adicionar" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-text.php:155 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limite de Caracteres" + +#: includes/fields/class-acf-field-text.php:156 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Deixe em branco para nenhum limite" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Área de Texto" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Linhas" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Define a altura da área de texto" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Seletor de Hora" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Verdadeiro / Falso" + +#: includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Sim" + +#: includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "Não" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "Exibe texto ao lado da caixa de seleção" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "No Texto" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "Texto exibido quando ativo" + +#: includes/fields/class-acf-field-true_false.php:165 +msgid "Off Text" +msgstr "Fora do texto" + +#: includes/fields/class-acf-field-true_false.php:166 +msgid "Text shown when inactive" +msgstr "Texto exibido quando inativo" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "Você deve fornecer uma URL válida" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "Usuário" + +#: includes/fields/class-acf-field-user.php:393 +msgid "Filter by role" +msgstr "Filtrar por função" + +#: includes/fields/class-acf-field-user.php:401 +msgid "All user roles" +msgstr "Todas as funções de usuários" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Wysiwyg" + +#: includes/fields/class-acf-field-wysiwyg.php:359 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:360 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:366 +msgid "Click to initialize TinyMCE" +msgstr "Clique para inicializar o TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Tabs" +msgstr "Abas" + +#: includes/fields/class-acf-field-wysiwyg.php:424 +msgid "Visual & Text" +msgstr "Visual & Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:425 +msgid "Visual Only" +msgstr "Apenas Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:426 +msgid "Text Only" +msgstr "Apenas Texto" + +#: includes/fields/class-acf-field-wysiwyg.php:433 +msgid "Toolbar" +msgstr "Barra de Ferramentas" + +#: includes/fields/class-acf-field-wysiwyg.php:443 +msgid "Show Media Upload Buttons?" +msgstr "Mostrar Botões de Upload de Mídia?" + +#: includes/fields/class-acf-field-wysiwyg.php:453 +msgid "Delay initialization?" +msgstr "Atrasar a inicialização?" + +#: includes/fields/class-acf-field-wysiwyg.php:454 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "TinyMCE não será iniciado até que o campo seja clicado" + +#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 +#: pro/admin/admin-options-page.php:308 +msgid "Edit field group" +msgstr "Editar Grupo de Campos" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "Validar Email" + +#: includes/forms/form-front.php:103 +#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 +msgid "Update" +msgstr "Atualizar" + +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "Post atualizado" + +#: includes/forms/form-front.php:230 +msgid "Spam Detected" +msgstr "Spam Detectado" + +#: includes/input.php:259 +msgid "Expand Details" +msgstr "Expandir Detalhes" + +#: includes/input.php:260 +msgid "Collapse Details" +msgstr "Recolher Detalhes" + +#: includes/input.php:261 +msgid "Validation successful" +msgstr "Validação realizada com sucesso" + +#: includes/input.php:262 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Falha na validação" + +#: includes/input.php:263 +msgid "1 field requires attention" +msgstr "1 campo requer sua atenção" + +#: includes/input.php:264 +#, php-format +msgid "%d fields require attention" +msgstr "%d campos requerem sua atenção" + +#: includes/input.php:265 +msgid "Restricted" +msgstr "Restrito" + +#: includes/input.php:266 +msgid "Are you sure?" +msgstr "Você tem certeza?" + +#: includes/input.php:270 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Post" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Página" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "Formulários" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Anexo" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "Todos %s formatos" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Comentário" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Função do Usuário atual" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "Super Admin" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Usuário atual" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "Logado" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "Visualizando a parte pública do site (front-end)" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "Visualizando a parte administrativa do site (back-end)" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "Item do menu" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "Menu" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "Localização do menu" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "Menus" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Página Mãe" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Modelo de Página" + +#: includes/locations/class-acf-location-page-template.php:98 +#: includes/locations/class-acf-location-post-template.php:151 +msgid "Default Template" +msgstr "Modelo Padrão" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Tipo de Página" + +#: includes/locations/class-acf-location-page-type.php:145 +msgid "Front Page" +msgstr "Página Inicial" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Posts Page" +msgstr "Página de Posts" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Top Level Page (no parent)" +msgstr "Página de Nível mais Alto (sem mãe)" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Parent Page (has children)" +msgstr "Página Mãe (tem filhas)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Child Page (has parent)" +msgstr "Página Filha (possui mãe)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Categoria de Post" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Formato de Post" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Status do Post" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Taxonomia de Post" + +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "Modelo de Postagem" + +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy Term" +msgstr "Termo da Taxonomia" + +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "Formulário do Usuário" + +#: includes/locations/class-acf-location-user-form.php:88 +msgid "Add / Edit" +msgstr "Adicionar / Editar" + +#: includes/locations/class-acf-location-user-form.php:89 +msgid "Register" +msgstr "Registrar" + +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "Função do Usuário" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Widget" + +#: includes/media.php:55 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: includes/media.php:56 +msgctxt "verb" +msgid "Update" +msgstr "Atualizar" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "É necessário preencher o campo %s" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/admin/admin-options-page.php:200 +msgid "Publish" +msgstr "Publicar" + +#: pro/admin/admin-options-page.php:206 +#, php-format +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. " +"Criar um Grupo de Campos Personalizado" + +#: pro/admin/admin-settings-updates.php:78 +msgid "Error. Could not connect to update server" +msgstr "Erro. Não foi possível conectar ao servidor de atualização" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Atualizações" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Desativar Licença" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Ativar Licença" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "Informações da Licença" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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 atualizações, digite sua chave de licença abaixo. Se " +"você não possui uma licença, consulte os detalhes e preços." + +#: pro/admin/views/html-settings-updates.php:29 +msgid "License Key" +msgstr "Chave de Licença" + +#: pro/admin/views/html-settings-updates.php:61 +msgid "Update Information" +msgstr "Informações de 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:92 +msgid "Update Plugin" +msgstr "Atualizar Plugin" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "Digite sua chave de licença acima para desbloquear atualizações" + +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "Verificar Novamente" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "Aviso de Atualização" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Clone" + +#: pro/fields/class-acf-field-clone.php:808 +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:825 +msgid "Display" +msgstr "Exibição" + +#: pro/fields/class-acf-field-clone.php:826 +msgid "Specify the style used to render the clone field" +msgstr "Especifique o estilo utilizado para exibir o campo de clone" + +#: pro/fields/class-acf-field-clone.php:831 +msgid "Group (displays selected fields in a group within this field)" +msgstr "Grupo (mostra os campos selecionados em um grupo dentro deste campo)" + +#: pro/fields/class-acf-field-clone.php:832 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Sem bordas (substitui este campo pelos campos selecionados)" + +#: pro/fields/class-acf-field-clone.php:853 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "Os rótulos serão exibidos como %s" + +#: pro/fields/class-acf-field-clone.php:856 +msgid "Prefix Field Labels" +msgstr "Prefixo dos Rótulos dos Campos" + +#: pro/fields/class-acf-field-clone.php:867 +#, php-format +msgid "Values will be saved as %s" +msgstr "Valores serão salvos como %s" + +#: pro/fields/class-acf-field-clone.php:870 +msgid "Prefix Field Names" +msgstr "Prefixo dos Nomes dos Campos" + +#: pro/fields/class-acf-field-clone.php:988 +msgid "Unknown field" +msgstr "Campo desconhecido" + +#: pro/fields/class-acf-field-clone.php:1027 +msgid "Unknown field group" +msgstr "Grupo de campo desconhecido" + +#: pro/fields/class-acf-field-clone.php:1031 +#, php-format +msgid "All fields from %s field group" +msgstr "Todos os campos do grupo de campos %s" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:174 +#: pro/fields/class-acf-field-repeater.php:470 +msgid "Add Row" +msgstr "Adicionar Linha" + +#: pro/fields/class-acf-field-flexible-content.php:34 +msgid "layout" +msgstr "layout" + +#: pro/fields/class-acf-field-flexible-content.php:35 +msgid "layouts" +msgstr "layouts" + +#: pro/fields/class-acf-field-flexible-content.php:36 +msgid "remove {layout}?" +msgstr "remover {layout}?" + +#: pro/fields/class-acf-field-flexible-content.php:37 +msgid "This field requires at least {min} {identifier}" +msgstr "Este campo requer ao menos {min} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:38 +msgid "This field has a limit of {max} {identifier}" +msgstr "Este campo tem um limite de {max} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:39 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "Este campo requer ao menos {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:40 +msgid "Maximum {label} limit reached ({max} {identifier})" +msgstr "A quantidade máxima de {label} foi atingida ({max} {identifier})" + +#: pro/fields/class-acf-field-flexible-content.php:41 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} disponível (máx {max})" + +#: pro/fields/class-acf-field-flexible-content.php:42 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} obrigatório (mín {min})" + +#: pro/fields/class-acf-field-flexible-content.php:43 +msgid "Flexible Content requires at least 1 layout" +msgstr "O campo de Conteúdo Flexível requer pelo menos 1 layout" + +#: pro/fields/class-acf-field-flexible-content.php:273 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "Clique no botão “%s” abaixo para iniciar a criação do seu layout" + +#: pro/fields/class-acf-field-flexible-content.php:406 +msgid "Add layout" +msgstr "Adicionar layout" + +#: pro/fields/class-acf-field-flexible-content.php:407 +msgid "Remove layout" +msgstr "Remover layout" + +#: pro/fields/class-acf-field-flexible-content.php:408 +#: pro/fields/class-acf-field-repeater.php:298 +msgid "Click to toggle" +msgstr "Clique para alternar" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Reorder Layout" +msgstr "Reordenar Layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Reorder" +msgstr "Reordenar" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Delete Layout" +msgstr "Excluir Layout" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Duplicate Layout" +msgstr "Duplicar Layout" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Add New Layout" +msgstr "Adicionar Novo Layout" + +#: pro/fields/class-acf-field-flexible-content.php:628 +msgid "Min" +msgstr "Mín" + +#: pro/fields/class-acf-field-flexible-content.php:641 +msgid "Max" +msgstr "Máx" + +#: pro/fields/class-acf-field-flexible-content.php:668 +#: pro/fields/class-acf-field-repeater.php:466 +msgid "Button Label" +msgstr "Rótulo do Botão" + +#: pro/fields/class-acf-field-flexible-content.php:677 +msgid "Minimum Layouts" +msgstr "Qtde. Mínima de Layouts" + +#: pro/fields/class-acf-field-flexible-content.php:686 +msgid "Maximum Layouts" +msgstr "Qtde. Máxima de Layouts" + +#: pro/fields/class-acf-field-gallery.php:41 +msgid "Add Image to Gallery" +msgstr "Adicionar Imagem à Galeria" + +#: pro/fields/class-acf-field-gallery.php:45 +msgid "Maximum selection reached" +msgstr "A quantidade máxima de seleções foi atingida" + +#: pro/fields/class-acf-field-gallery.php:321 +msgid "Length" +msgstr "Duração" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Legenda" + +#: pro/fields/class-acf-field-gallery.php:373 +msgid "Alt Text" +msgstr "Texto Alternativo" + +#: pro/fields/class-acf-field-gallery.php:544 +msgid "Add to gallery" +msgstr "Adicionar à galeria" + +#: pro/fields/class-acf-field-gallery.php:548 +msgid "Bulk actions" +msgstr "Ações em massa" + +#: pro/fields/class-acf-field-gallery.php:549 +msgid "Sort by date uploaded" +msgstr "Ordenar por data de envio" + +#: pro/fields/class-acf-field-gallery.php:550 +msgid "Sort by date modified" +msgstr "Ordenar por data de modificação" + +#: pro/fields/class-acf-field-gallery.php:551 +msgid "Sort by title" +msgstr "Ordenar por título" + +#: pro/fields/class-acf-field-gallery.php:552 +msgid "Reverse current order" +msgstr "Inverter ordem atual" + +#: pro/fields/class-acf-field-gallery.php:570 +msgid "Close" +msgstr "Fechar" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Minimum Selection" +msgstr "Qtde. Mínima de Seleções" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Maximum Selection" +msgstr "Qtde. Máxima de Seleções" + +#: pro/fields/class-acf-field-gallery.php:642 +msgid "Insert" +msgstr "Inserir" + +#: pro/fields/class-acf-field-gallery.php:643 +msgid "Specify where new attachments are added" +msgstr "Especifique onde os novos anexos serão adicionados" + +#: pro/fields/class-acf-field-gallery.php:647 +msgid "Append to the end" +msgstr "Adicionar no final da galeria" + +#: pro/fields/class-acf-field-gallery.php:648 +msgid "Prepend to the beginning" +msgstr "Adicionar no início da galeria" + +#: pro/fields/class-acf-field-repeater.php:36 +msgid "Minimum rows reached ({min} rows)" +msgstr "Quantidade mínima atingida ( {min} linha(s) )" + +#: pro/fields/class-acf-field-repeater.php:37 +msgid "Maximum rows reached ({max} rows)" +msgstr "Quantidade máxima atingida ( {max} linha(s) )" + +#: pro/fields/class-acf-field-repeater.php:343 +msgid "Add row" +msgstr "Adicionar linha" + +#: pro/fields/class-acf-field-repeater.php:344 +msgid "Remove row" +msgstr "Remover linha" + +#: pro/fields/class-acf-field-repeater.php:419 +msgid "Collapsed" +msgstr "Recolher" + +#: pro/fields/class-acf-field-repeater.php:420 +msgid "Select a sub field to show when row is collapsed" +msgstr "Selecione um sub campo para exibir quando a linha estiver recolhida" + +#: pro/fields/class-acf-field-repeater.php:430 +msgid "Minimum Rows" +msgstr "Qtde. Mínima de Linhas" + +#: pro/fields/class-acf-field-repeater.php:440 +msgid "Maximum Rows" +msgstr "Qtde. Máxima de Linhas" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "Não existem Páginas de Opções disponíveis" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "Opções" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Opções Atualizadas" + +#: pro/updates.php:97 +#, php-format +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 atualizações, digite sua chave de licença na página Atualizações. Se você não possui uma licença, consulte os detalhes e preços." + +#. Plugin URI of the plugin/theme +msgid "https://www.advancedcustomfields.com/" +msgstr "https://www.advancedcustomfields.com/" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "Elliot Condon" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "http://www.elliotcondon.com/" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportar Grupos de Campos para PHP" + +#~ msgid "Download export file" +#~ msgstr "Download do arquivo JSON" + +#~ msgid "Generate export code" +#~ msgstr "Gerar código PHP" + +#~ msgid "Import" +#~ msgstr "Importar" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "O campo Aba será exibido incorretamente quando adicionado em um layout do " +#~ "tipo Tabela de campos repetidores ou de conteúdos flexíveis" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Utilize o campo “Aba” para agrupar seus campos e organizar melhor sua " +#~ "tela de edição." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Todos os campos que seguirem este campo “Aba” (ou até que outra “Aba” " +#~ "seja definida) ficarão juntos em um grupo que utilizará o rótulo deste " +#~ "campo como título da guia." + +#~ msgid "Getting Started" +#~ msgstr "Primeiros Passos" + +#~ msgid "Field Types" +#~ msgstr "Tipos de Campos" + +#~ msgid "Functions" +#~ msgstr "Funções" + +#~ msgid "Actions" +#~ msgstr "Ações" + +#~ msgid "Features" +#~ msgstr "Características" + +#~ msgid "How to" +#~ msgstr "Como" + +#~ msgid "Tutorials" +#~ msgstr "Tutoriais" + +#~ msgid "FAQ" +#~ msgstr "Perguntas Frequentes" + +#~ msgid "Error" +#~ msgstr "Erro" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "1 campo requer a sua atenção." +#~ msgstr[1] "%d campos requerem sua atenção." + +#~ msgid "Disabled" +#~ msgstr "Desabilitado" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Desabilitado (%s)" +#~ msgstr[1] "Desabilitados (%s)" + +#~ msgid "'How to' guides" +#~ msgstr "Guias práticos" + +#~ msgid "Created by" +#~ msgstr "Criado por" + +#~ msgid "Error loading update" +#~ msgstr "Erro ao carregar atualização" + +#~ msgid "See what's new" +#~ msgstr "Veja o que há de novo" + +#~ msgid "eg. Show extra content" +#~ msgstr "ex.: Mostrar conteúdo adicional" + +#~ msgid "Select" +#~ msgstr "Seleção" + +#~ msgctxt "Field label" +#~ msgid "Clone" +#~ msgstr "Clone" + +#~ msgctxt "Field instruction" +#~ msgid "Clone" +#~ msgstr "Clone" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Erro de Conexão. Tente novamente" diff --git a/lang/pro/acf-pt_PT.po b/lang/pro/acf-pt_PT.po new file mode 100644 index 0000000..4d89d1e --- /dev/null +++ b/lang/pro/acf-pt_PT.po @@ -0,0 +1,2565 @@ +# Copyright (C) 2014 +# This file is distributed under the same license as the package. +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields PRO\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:11+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Pedro Mendonça \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" +"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;" +"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SearchPathExcluded-1: tests\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "O nome do tipo de bloco é obrigatório." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "O tipo de bloco \"%s\" já está registado." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Mudar para o editor" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Mudar para pré-visualização" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Alterar o alinhamento do conteúdo" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "Definições de %s" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: pro/options-page.php:47 +msgid "Options" +msgstr "Opções" + +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Actualizar" + +#: 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 "" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Verificar de novo" + +#: pro/updates.php:561 +msgid "ACF Activation Error. Could not connect to activation server" +msgstr "" + +#: pro/admin/admin-options-page.php:195 +msgid "Publish" +msgstr "Publicado" + +#: 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 personalizado encontrado na página de opções. Criar um grupo de campos personalizado" + +#: pro/admin/admin-options-page.php:309 +msgid "Edit field group" +msgstr "Editar grupo de campos" + +#: 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Actualizações" + +#: pro/admin/admin-updates.php:209 +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:196 +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 "Clone" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Campos" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Visualização" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "Especifica o estilo usado para mostrar o campo de clone." + +#: pro/fields/class-acf-field-clone.php:840 +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:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Simples (substitui este campo pelos campos seleccionados)" + +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Especifica o estilo usado para mostrar os campos seleccionados." + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Bloco" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabela" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Linha" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "As legendas serão mostradas com %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefixo nas legendas dos campos" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Os valores serão guardados como %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefixos nos nomes dos campos" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Campo desconhecido" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(sem título)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Grupo de campos desconhecido" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Todos os campos do grupo de campos %s" + +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Conteúdo flexível" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Adicionar linha" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layouts" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layouts" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {identifier} {label} disponível (máx {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {identifier} {label} em falta (mín {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +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:276 +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:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Arraste para reordenar" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Adicionar layout" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Duplicar layout" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Remover layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Clique para alternar" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Reordenar layout" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Reordenar" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Eliminar layout" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Eliminar" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Duplicar layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Duplicar" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Adicionar novo layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Adicionar novo" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Legenda" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Nome" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Mín" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Máx" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Legenda do botão" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Mínimo de layouts" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Máximo de layouts" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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 "Galeria" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Adicionar imagem à galeria" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Máximo de selecção alcançado" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Comprimento" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Editar" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Remover" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Título" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Legenda" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Texto alternativo" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Descrição" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Adicionar à galeria" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Acções por lotes" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Ordenar por data de carregamento" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Ordenar por data de modificação" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Ordenar por título" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Inverter ordem actual" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Fechar" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Formato devolvido" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Array da imagem" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "URL da imagem" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "ID da imagem" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Tamanho da pré-visualização" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Inserir" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Especifica onde serão adicionados os novos anexos." + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "No fim" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "No início" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Biblioteca" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Limita a escolha da biblioteca de media." + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Todos" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Carregados no artigo" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Selecção mínima" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Selecção máxima" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Mínimo" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Restringe que imagens podem ser carregadas." + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Largura" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Altura" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Tamanho do ficheiro" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Máximo" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Tipos de ficheiros permitidos" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Lista separada por vírgulas. Deixe em branco para permitir todos os tipos." + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Repetidor" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Mínimo de linhas alcançado ({min} linhas)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Máximo de linhas alcançado ({max} linhas)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Subcampos" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Minimizado" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Mínimo de linhas" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Máximo de linhas" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "Nonce inválido." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Adicionar linha" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Duplicar linha" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Remover linha" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +#: 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:22 +msgid "Options Page" +msgstr "Página de opções" + +#: 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:41 +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 "" + +#: pro/admin/views/html-settings-updates.php:29 +msgid "Retry Activation" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:76 +msgid "Update Information" +msgstr "Informações de actualização" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Versão actual" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Última versão" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Actualização disponível" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Não" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Sim" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "" +"Por favor, insira acima a sua chave de licença para desbloquear as " +"actualizações" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "Actualizar plugin" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Registo de alterações" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Informações sobre a actualização" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Field Groups" +#~ msgstr "Grupos de campos" + +#~ msgid "Field Group" +#~ msgstr "Grupo de campos" + +#~ msgid "Add New Field Group" +#~ msgstr "Adicionar novo grupo de campos" + +#~ msgid "Edit Field Group" +#~ msgstr "Editar grupo de campos" + +#~ msgid "New Field Group" +#~ msgstr "Novo grupo de campos" + +#~ msgid "View Field Group" +#~ msgstr "Ver grupo de campos" + +#~ msgid "Search Field Groups" +#~ msgstr "Pesquisar grupos de campos" + +#~ msgid "No Field Groups found" +#~ msgstr "Nenhum grupo de campos encontrado" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Nenhum grupo de campos encontrado no lixo" + +#~ msgid "Field" +#~ msgstr "Campo" + +#~ msgid "Add New Field" +#~ msgstr "Adicionar novo campo" + +#~ msgid "Edit Field" +#~ msgstr "Editar campo" + +#~ msgid "New Field" +#~ msgstr "Novo campo" + +#~ msgid "View Field" +#~ msgstr "Ver campo" + +#~ msgid "Search Fields" +#~ msgstr "Pesquisar campos" + +#~ msgid "No Fields found" +#~ msgstr "Nenhum campo encontrado" + +#~ msgid "No Fields found in Trash" +#~ msgstr "Nenhum campo encontrado no lixo" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Desactivado" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Desactivado (%s)" +#~ msgstr[1] "Desactivados (%s)" + +#~ msgid "(no label)" +#~ msgstr "(sem legenda)" + +#~ msgid "copy" +#~ msgstr "cópia" + +#~ msgid "Posts" +#~ msgstr "Artigos" + +#~ msgid "Taxonomies" +#~ msgstr "Taxonomias" + +#~ msgid "Attachments" +#~ msgstr "Anexos" + +#~ msgid "Comments" +#~ msgstr "Comentários" + +#~ msgid "Widgets" +#~ msgstr "Widgets" + +#~ msgid "Menus" +#~ msgstr "Menus" + +#~ msgid "Menu items" +#~ msgstr "Itens de menu" + +#~ msgid "Users" +#~ msgstr "Utilizadores" + +#~ msgid "Blocks" +#~ msgstr "Blocos" + +#~ msgid "Field group updated." +#~ msgstr "Grupo de campos actualizado." + +#~ msgid "Field group deleted." +#~ msgstr "Grupo de campos eliminado." + +#~ msgid "Field group published." +#~ msgstr "Grupo de campos publicado." + +#~ msgid "Field group saved." +#~ msgstr "Grupo de campos guardado." + +#~ msgid "Field group submitted." +#~ msgstr "Grupo de campos enviado." + +#~ msgid "Field group scheduled for." +#~ msgstr "Grupo de campos agendado." + +#~ msgid "Field group draft updated." +#~ msgstr "Rascunho de grupo de campos actualizado." + +#~ 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." + +#~ 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." + +#~ msgid "Field group title is required" +#~ msgstr "O título do grupo de campos é obrigatório" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Mover para o lixo. Tem certeza?" + +#~ msgid "No toggle fields available" +#~ msgstr "Nenhum campo de opções disponível" + +#~ msgid "Move Custom Field" +#~ msgstr "Mover campo personalizado" + +#~ msgid "Checked" +#~ msgstr "Seleccionado" + +#~ msgid "(this field)" +#~ msgstr "(este campo)" + +#~ msgid "or" +#~ msgstr "ou" + +#~ msgid "Null" +#~ msgstr "Nulo" + +#~ msgid "Has any value" +#~ msgstr "Tem um valor qualquer" + +#~ msgid "Has no value" +#~ msgstr "Não tem valor" + +#~ msgid "Value is equal to" +#~ msgstr "O valor é igual a" + +#~ msgid "Value is not equal to" +#~ msgstr "O valor é diferente de" + +#~ msgid "Value matches pattern" +#~ msgstr "O valor corresponde ao padrão" + +#~ msgid "Value contains" +#~ msgstr "O valor contém" + +#~ msgid "Value is greater than" +#~ msgstr "O valor é maior do que" + +#~ msgid "Value is less than" +#~ msgstr "O valor é menor do que" + +#~ msgid "Selection is greater than" +#~ msgstr "A selecção é maior do que" + +#~ msgid "Selection is less than" +#~ msgstr "A selecção é menor do que" + +#~ msgid "Location" +#~ msgstr "Localização" + +#~ msgid "Settings" +#~ msgstr "Definições" + +#~ msgid "Field Keys" +#~ msgstr "Chaves dos campos" + +#~ msgid "Active" +#~ msgstr "Activo" + +#~ msgid "Inactive" +#~ msgstr "Inactivo" + +#~ msgid "Move Complete." +#~ msgstr "Movido com sucesso." + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "O campo %s pode agora ser encontrado no grupo de campos %s" + +#~ msgid "Close Window" +#~ msgstr "Fechar janela" + +#~ msgid "Please select the destination for this field" +#~ msgstr "Por favor seleccione o destinho para este campo" + +#~ msgid "Move Field" +#~ msgstr "Mover campo" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Activo (%s)" +#~ msgstr[1] "Activos (%s)" + +#~ msgid "Review local JSON changes" +#~ msgstr "Revisão das alterações do JSON local" + +#~ msgid "Loading diff" +#~ msgstr "A carregar diferenças" + +#~ msgid "Sync changes" +#~ msgstr "Sincronizar alterações" + +#~ msgid "Key" +#~ msgstr "Chave" + +#~ msgid "Local JSON" +#~ msgstr "JSON local" + +#~ msgid "Various" +#~ msgstr "Vários" + +#, php-format +#~ msgid "Located in theme: %s" +#~ msgstr "Localizado no tema: %s" + +#, php-format +#~ msgid "Located in plugin: %s" +#~ msgstr "Localizado no plugin: %s" + +#, php-format +#~ msgid "Located in: %s" +#~ msgstr "Localizado em: %s" + +#~ msgid "Sync available" +#~ msgstr "Sincronização disponível" + +#~ msgid "Sync" +#~ msgstr "Sincronizar" + +#~ msgid "Review changes" +#~ msgstr "Rever alterações" + +#~ msgid "Import" +#~ msgstr "Importar" + +#~ msgid "Saved" +#~ msgstr "Guardado" + +#~ msgid "Awaiting save" +#~ msgstr "Por guardar" + +#~ msgid "Duplicate this item" +#~ msgstr "Duplicar este item" + +#, php-format +#~ msgid "Field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "Grupo de campos duplicado." +#~ msgstr[1] "%s grupos de campos duplicados." + +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Grupo de campos sincronizado." +#~ msgstr[1] "%s grupos de campos sincronizados." + +#, php-format +#~ msgid "Select %s" +#~ msgstr "Seleccionar %s" + +#~ msgid "Tools" +#~ msgstr "Ferramentas" + +#~ msgid "Upgrade Database" +#~ msgstr "Actualizar base de dados" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Rever sites e actualizar" + +#~ msgid "Custom Fields" +#~ msgstr "Campos personalizados" + +#~ msgid "Overview" +#~ msgstr "Visão geral" + +#~ 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." + +#, php-format +#~ 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." + +#~ 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." + +#~ msgid "Help & Support" +#~ msgstr "Ajuda e suporte" + +#~ 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:" + +#, php-format +#~ 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." + +#, php-format +#~ 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." + +#, php-format +#~ msgid "" +#~ "Help Desk. The support professionals " +#~ "on our Help Desk will assist with your more in depth, technical " +#~ "challenges." +#~ msgstr "" +#~ "Help Desk. Os profissionais de " +#~ "suporte no nosso Help Desk ajudar-lhe-ão com os desafios técnicos mais " +#~ "complexos." + +#~ msgid "Information" +#~ msgstr "Informações" + +#, php-format +#~ msgid "Version %s" +#~ msgstr "Versão %s" + +#~ msgid "View details" +#~ msgstr "Ver detalhes" + +#~ msgid "Visit website" +#~ msgstr "Visitar site" + +#~ msgid "and" +#~ msgstr "e" + +#~ msgid "Export Field Groups" +#~ msgstr "Exportar grupos de campos" + +#~ msgid "Generate PHP" +#~ msgstr "Gerar PHP" + +#~ msgid "No field groups selected" +#~ msgstr "Nenhum grupo de campos seleccionado" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "Foi exportado 1 grupo de campos." +#~ msgstr[1] "Foram exportados %s grupos de campos." + +#~ msgid "Select Field Groups" +#~ msgstr "Seleccione os grupos de campos" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Seleccione os grupos de campos que deseja exportar e seleccione o método " +#~ "de exportação. Utilize o botão Descarregar para exportar um ficheiro ." +#~ "json que poderá depois importar para outra instalação do ACF. Utilize o " +#~ "botão Gerar para exportar o código PHP que poderá incorporar no seu tema." + +#~ msgid "Export File" +#~ msgstr "Exportar ficheiro" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "O código abaixo pode ser usado para registar uma versão local do(s) " +#~ "grupo(s) de campos seleccionado(s). Um grupo de campos local tem alguns " +#~ "benefícios, tais como maior velocidade de carregamento, controlo de " +#~ "versão, definições e campos dinâmicos. Copie e cole o código abaixo no " +#~ "ficheiro functions.php do seu tema, ou inclua-o num ficheiro externo." + +#~ msgid "Copy to clipboard" +#~ msgstr "Copiar para a área de transferência" + +#~ msgid "Copied" +#~ msgstr "Copiado" + +#~ msgid "Import Field Groups" +#~ msgstr "Importar grupos de campos" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Seleccione o ficheiro JSON do Advanced Custom Fields que deseja importar. " +#~ "Ao clicar no botão Importar abaixo, o ACF irá importar os grupos de " +#~ "campos." + +#~ msgid "Select File" +#~ msgstr "Seleccionar ficheiro" + +#~ msgid "Import File" +#~ msgstr "Importar ficheiro" + +#~ msgid "No file selected" +#~ msgstr "Nenhum ficheiro seleccionado" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Erro ao carregar ficheiro. Por favor tente de novo." + +#~ msgid "Incorrect file type" +#~ msgstr "Tipo de ficheiro incorrecto" + +#~ msgid "Import file empty" +#~ msgstr "Ficheiro de importação vazio" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "Foi importado 1 grupo de campos." +#~ msgstr[1] "Foram importados %s grupos de campos." + +#~ msgid "Conditional Logic" +#~ msgstr "Lógica condicional" + +#~ msgid "Show this field if" +#~ msgstr "Mostrar este campo se" + +#~ msgid "Add rule group" +#~ msgstr "Adicionar grupo de regras" + +#~ msgid "Edit field" +#~ msgstr "Editar campo" + +#~ msgid "Duplicate field" +#~ msgstr "Duplicar campo" + +#~ msgid "Move field to another group" +#~ msgstr "Mover campo para outro grupo" + +#~ msgid "Move" +#~ msgstr "Mover" + +#~ msgid "Delete field" +#~ msgstr "Eliminar campo" + +#~ msgid "Field Label" +#~ msgstr "Legenda do campo" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "Este é o nome que será mostrado na página EDITAR." + +#~ msgid "Field Name" +#~ msgstr "Nome do campo" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "" +#~ "Uma única palavra, sem espaços. São permitidos underscores (_) e traços " +#~ "(-)." + +#~ msgid "Field Type" +#~ msgstr "Tipo de campo" + +#~ msgid "Instructions" +#~ msgstr "Instruções" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "" +#~ "Instruções para os autores. São mostradas ao preencher e submeter dados." + +#~ msgid "Required?" +#~ msgstr "Obrigatório?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Atributos do wrapper" + +#~ msgid "width" +#~ msgstr "largura" + +#~ msgid "class" +#~ msgstr "classe" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "Fechar campo" + +#~ msgid "Order" +#~ msgstr "Ordem" + +#~ msgid "Type" +#~ msgstr "Tipo" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Nenhum campo. Clique no botão + Adicionar campo para " +#~ "criar seu primeiro campo." + +#~ msgid "+ Add Field" +#~ msgstr "+ Adicionar campo" + +#~ msgid "Rules" +#~ msgstr "Regras" + +#~ 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" + +#~ msgid "Style" +#~ msgstr "Estilo" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Predefinido (metabox do WP)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Simples (sem metabox)" + +#~ msgid "Position" +#~ msgstr "Posição" + +#~ msgid "High (after title)" +#~ msgstr "Acima (depois do título)" + +#~ msgid "Normal (after content)" +#~ msgstr "Normal (depois do conteúdo)" + +#~ msgid "Side" +#~ msgstr "Lateral" + +#~ msgid "Label placement" +#~ msgstr "Posição da legenda" + +#~ msgid "Top aligned" +#~ msgstr "Alinhado acima" + +#~ msgid "Left aligned" +#~ msgstr "Alinhado à esquerda" + +#~ msgid "Instruction placement" +#~ msgstr "Posição das instruções" + +#~ msgid "Below labels" +#~ msgstr "Abaixo das legendas" + +#~ msgid "Below fields" +#~ msgstr "Abaixo dos campos" + +#~ msgid "Order No." +#~ msgstr "Nº. de ordem" + +#~ 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." + +#~ msgid "Shown in field group list" +#~ msgstr "Mostrado na lista de grupos de campos" + +#~ msgid "Permalink" +#~ msgstr "Ligação permanente" + +#~ msgid "Content Editor" +#~ msgstr "Editor de conteúdo" + +#~ msgid "Excerpt" +#~ msgstr "Excerto" + +#~ msgid "Discussion" +#~ msgstr "Discussão" + +#~ msgid "Revisions" +#~ msgstr "Revisões" + +#~ msgid "Slug" +#~ msgstr "Slug" + +#~ msgid "Author" +#~ msgstr "Autor" + +#~ msgid "Format" +#~ msgstr "Formato" + +#~ msgid "Page Attributes" +#~ msgstr "Atributos da página" + +#~ msgid "Featured Image" +#~ msgstr "Imagem de destaque" + +#~ msgid "Categories" +#~ msgstr "Categorias" + +#~ msgid "Tags" +#~ msgstr "Etiquetas" + +#~ msgid "Send Trackbacks" +#~ msgstr "Enviar trackbacks" + +#~ msgid "Hide on screen" +#~ msgstr "Esconder no ecrã" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "Seleccione os itens a esconder do ecrã de edição." + +#~ 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)" + +#, php-format +#~ 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." + +#~ msgid "Upgrade Sites" +#~ msgstr "Actualizar sites" + +#~ msgid "Site" +#~ msgstr "Site" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "O site necessita de actualizar a base de dados de %s para %s" + +#~ msgid "Site is up to date" +#~ msgstr "O site está actualizado" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Actualização da base de dados concluída. Voltar ao painel " +#~ "da rede" + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "Por favor, seleccione pelo menos um site para actualizar." + +#~ 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?" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "A actualizar dados para a versão %s" + +#~ msgid "Upgrade complete." +#~ msgstr "Actualização concluída." + +#~ msgid "Upgrade failed." +#~ msgstr "Falhou ao actualizar." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "A ler tarefas de actualização..." + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "Actualização da base de dados concluída. Ver o que há de " +#~ "novo" + +#~ msgid "No updates available." +#~ msgstr "Nenhuma actualização disponível." + +#~ msgid "Back to all tools" +#~ msgstr "Voltar para todas as ferramentas" + +#~ msgid "Show this field group if" +#~ msgstr "Mostrar este grupo de campos se" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Actualização da base de dados necessária" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Obrigado por actualizar para o %s v%s!" + +#~ 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." + +#, php-format +#~ 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." + +#~ msgid "Invalid field group parameter(s)." +#~ msgstr "Os parâmetros do grupo de campos são inválidos." + +#~ msgid "Invalid field group ID." +#~ msgstr "O ID do grupo de campos é inválido." + +#~ msgid "Sorry, this field group is unavailable for diff comparison." +#~ msgstr "" +#~ "Desculpe, este grupo de campos não está disponível para comparação das " +#~ "diferenças." + +#, php-format +#~ msgid "Last updated: %s" +#~ msgstr "Última actualização: %s" + +#~ msgid "Original field group" +#~ msgstr "Grupo de campos original" + +#~ msgid "JSON field group (newer)" +#~ msgstr "Grupo de campos JSON (mais recente)" + +#~ msgid "Thumbnail" +#~ msgstr "Miniatura" + +#~ msgid "Medium" +#~ msgstr "Média" + +#~ msgid "Large" +#~ msgstr "Grande" + +#~ msgid "Full Size" +#~ msgstr "Tamanho original" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "A largura da imagem deve ser pelo menos de %dpx." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "A largura da imagem não deve exceder os %dpx." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "A altura da imagem deve ser pelo menos de %dpx." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "A altura da imagem não deve exceder os %dpx." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "O tamanho do ficheiro deve ser pelo menos de %s." + +#, php-format +#~ msgid "File size must not exceed %s." +#~ msgstr "O tamanho do ficheiro não deve exceder %s." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "O tipo de ficheiro deve ser %s." + +#~ msgid "Are you sure?" +#~ msgstr "Tem a certeza?" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ 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." + +#~ msgid "Validation successful" +#~ msgstr "Validação bem sucedida" + +#~ msgid "Validation failed" +#~ msgstr "A validação falhou" + +#~ msgid "1 field requires attention" +#~ msgstr "1 campo requer a sua atenção" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d campos requerem a sua atenção" + +#~ msgid "Field type does not exist" +#~ msgstr "Tipo de campo não existe" + +#~ msgid "Unknown" +#~ msgstr "Desconhecido" + +#~ msgid "Basic" +#~ msgstr "Básico" + +#~ msgid "Content" +#~ msgstr "Conteúdo" + +#~ msgid "Choice" +#~ msgstr "Opção" + +#~ msgid "Relational" +#~ msgstr "Relacional" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Accordion" +#~ msgstr "Acordeão" + +#~ msgid "Open" +#~ msgstr "Aberto" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "Mostrar este item de acordeão aberto ao carregar a página." + +#~ msgid "Multi-expand" +#~ msgstr "Expandir múltiplos" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Permite abrir este item de acordeão sem fechar os restantes." + +#~ msgid "Endpoint" +#~ msgstr "Fim" + +#~ 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." + +#~ msgid "Button Group" +#~ msgstr "Grupo de botões" + +#~ msgid "Choices" +#~ msgstr "Opções" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Insira cada opção numa linha separada." + +#~ 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:" + +#~ msgid "red : Red" +#~ msgstr "vermelho : Vermelho" + +#~ msgid "Allow Null?" +#~ msgstr "Permitir nulo?" + +#~ msgid "Default Value" +#~ msgstr "Valor por omissão" + +#~ msgid "Appears when creating a new post" +#~ msgstr "Mostrado ao criar um novo conteúdo" + +#~ msgid "Horizontal" +#~ msgstr "Horizontal" + +#~ msgid "Vertical" +#~ msgstr "Vertical" + +#~ msgid "Return Value" +#~ msgstr "Valor devolvido" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Especifica o valor devolvido na frente do site." + +#~ msgid "Value" +#~ msgstr "Valor" + +#~ msgid "Both (Array)" +#~ msgstr "Ambos (Array)" + +#~ msgid "Checkbox" +#~ msgstr "Caixa de selecção" + +#~ msgid "Toggle All" +#~ msgstr "Seleccionar tudo" + +#~ msgid "Add new choice" +#~ msgstr "Adicionar nova opção" + +#~ msgid "Allow Custom" +#~ msgstr "Permitir personalização" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Permite adicionar valores personalizados" + +#~ msgid "Save Custom" +#~ msgstr "Guardar personalização" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "Guarda valores personalizados nas opções do campo" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Insira cada valor por omissão numa linha separada" + +#~ msgid "Toggle" +#~ msgstr "Selecção" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "" +#~ "Preceder com caixa de selecção adicional para seleccionar todas as opções" + +#~ msgid "Color Picker" +#~ msgstr "Selecção de cor" + +#~ msgid "Clear" +#~ msgstr "Limpar" + +#~ msgid "Clear color" +#~ msgstr "Limpar cor" + +#~ msgid "Default" +#~ msgstr "Por omissão" + +#~ msgid "Select default color" +#~ msgstr "Seleccionar cor por omissão" + +#~ msgid "Select Color" +#~ msgstr "Seleccionar cor" + +#~ msgid "Color value" +#~ msgstr "Valor da cor" + +#~ msgid "Date Picker" +#~ msgstr "Selecção de data" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Concluído" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Hoje" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Seguinte" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Anterior" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "Sem" + +#~ msgid "Display Format" +#~ msgstr "Formato de visualização" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "O formato de visualização ao editar um conteúdo" + +#~ msgid "Custom:" +#~ msgstr "Personalizado:" + +#~ msgid "Save Format" +#~ msgstr "Formato guardado" + +#~ msgid "The format used when saving a value" +#~ msgstr "O formato usado ao guardar um valor" + +#~ msgid "The format returned via template functions" +#~ msgstr "O formato devolvido através das template functions" + +#~ msgid "Week Starts On" +#~ msgstr "Semana começa em" + +#~ msgid "Date Time Picker" +#~ msgstr "Selecção de data e hora" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Escolha a hora" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Hora" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Hora" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minuto" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Segundo" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Milissegundo" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Microsegundo" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Fuso horário" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Agora" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Concluído" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Seleccionar" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "A" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "P" + +#~ msgid "Email" +#~ msgstr "Email" + +#~ msgid "Placeholder Text" +#~ msgstr "Texto predefinido" + +#~ msgid "Appears within the input" +#~ msgstr "Mostrado dentro do campo" + +#~ msgid "Prepend" +#~ msgstr "Preceder" + +#~ msgid "Appears before the input" +#~ msgstr "Mostrado antes do campo" + +#~ msgid "Append" +#~ msgstr "Suceder" + +#~ msgid "Appears after the input" +#~ msgstr "Mostrado depois do campo" + +#, php-format +#~ msgid "'%s' is not a valid email address" +#~ msgstr "'%s' não é um endereço de email válido" + +#~ msgid "File" +#~ msgstr "Ficheiro" + +#~ msgid "Edit File" +#~ msgstr "Editar ficheiro" + +#~ msgid "Update File" +#~ msgstr "Actualizar ficheiro" + +#~ msgid "File name" +#~ msgstr "Nome do ficheiro" + +#~ msgid "Add File" +#~ msgstr "Adicionar ficheiro" + +#~ msgid "File Array" +#~ msgstr "Array do ficheiro" + +#~ msgid "File URL" +#~ msgstr "URL do ficheiro" + +#~ msgid "File ID" +#~ msgstr "ID do ficheiro" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Restringe que ficheiros podem ser carregados." + +#~ msgid "Google Map" +#~ msgstr "Mapa do Google" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Desculpe, este navegador não suporta geolocalização." + +#~ msgid "Search" +#~ msgstr "Pesquisa" + +#~ msgid "Clear location" +#~ msgstr "Limpar localização" + +#~ msgid "Find current location" +#~ msgstr "Encontrar a localização actual" + +#~ msgid "Search for address..." +#~ msgstr "Pesquisar endereço..." + +#~ msgid "Center" +#~ msgstr "Centrar" + +#~ msgid "Center the initial map" +#~ msgstr "Centrar o mapa inicial" + +#~ msgid "Zoom" +#~ msgstr "Zoom" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Definir o nível de zoom inicial" + +#~ msgid "Customize the map height" +#~ msgstr "Personalizar a altura do mapa" + +#~ msgid "Group" +#~ msgstr "Grupo" + +#~ msgid "Image" +#~ msgstr "Imagem" + +#~ msgid "Select Image" +#~ msgstr "Seleccionar imagem" + +#~ msgid "Edit Image" +#~ msgstr "Editar imagem" + +#~ msgid "Update Image" +#~ msgstr "Actualizar imagem" + +#~ msgid "All images" +#~ msgstr "Todas as imagens" + +#~ msgid "No image selected" +#~ msgstr "Nenhuma imagem seleccionada" + +#~ msgid "Add Image" +#~ msgstr "Adicionar imagem" + +#~ msgid "Link" +#~ msgstr "Ligação" + +#~ msgid "Select Link" +#~ msgstr "Seleccionar ligação" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "Abre numa nova janela/separador" + +#~ msgid "Link Array" +#~ msgstr "Array da ligação" + +#~ msgid "Link URL" +#~ msgstr "URL da ligação" + +#~ msgid "Message" +#~ msgstr "Mensagem" + +#~ msgid "New Lines" +#~ msgstr "Novas linhas" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Controla como serão visualizadas novas linhas." + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Adicionar parágrafos automaticamente" + +#~ msgid "Automatically add <br>" +#~ msgstr "Adicionar <br> automaticamente" + +#~ msgid "No Formatting" +#~ msgstr "Sem formatação" + +#~ msgid "Escape HTML" +#~ msgstr "Mostrar HTML" + +#~ 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." + +#~ msgid "Number" +#~ msgstr "Número" + +#~ msgid "Minimum Value" +#~ msgstr "Valor mínimo" + +#~ msgid "Maximum Value" +#~ msgstr "Valor máximo" + +#~ msgid "Step Size" +#~ msgstr "Valor dos passos" + +#~ msgid "Value must be a number" +#~ msgstr "O valor deve ser um número" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "O valor deve ser igual ou superior a %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "O valor deve ser igual ou inferior a %d" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "Insira o URL" + +#~ msgid "Embed Size" +#~ msgstr "Tamanho da incorporação" + +#~ msgid "Page Link" +#~ msgstr "Ligação de página" + +#~ msgid "Archives" +#~ msgstr "Arquivo" + +#~ msgid "Parent" +#~ msgstr "Superior" + +#~ msgid "Filter by Post Type" +#~ msgstr "Filtrar por tipo de conteúdo" + +#~ msgid "All post types" +#~ msgstr "Todos os tipos de conteúdo" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "Filtrar por taxonomia" + +#~ msgid "All taxonomies" +#~ msgstr "Todas as taxonomias" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Permitir URL do arquivo" + +#~ msgid "Select multiple values?" +#~ msgstr "Seleccionar valores múltiplos?" + +#~ msgid "Password" +#~ msgstr "Senha" + +#~ msgid "Post Object" +#~ msgstr "Conteúdo" + +#~ msgid "Post ID" +#~ msgstr "ID do conteúdo" + +#~ msgid "Radio Button" +#~ msgstr "Botão de opção" + +#~ msgid "Other" +#~ msgstr "Outro" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "" +#~ "Adicionar opção 'outros' para permitir a inserção de valores " +#~ "personalizados" + +#~ msgid "Save Other" +#~ msgstr "Guardar outros" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Guardar 'outros' valores nas opções do campo" + +#~ msgid "Range" +#~ msgstr "Intervalo" + +#~ msgid "Relationship" +#~ msgstr "Relação" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Valor máximo alcançado ( valor {max} )" + +#~ msgid "Loading" +#~ msgstr "A carregar" + +#~ msgid "No matches found" +#~ msgstr "Nenhuma correspondência encontrada" + +#~ msgid "Select post type" +#~ msgstr "Seleccione tipo de conteúdo" + +#~ msgid "Select taxonomy" +#~ msgstr "Seleccione taxonomia" + +#~ msgid "Search..." +#~ msgstr "Pesquisar..." + +#~ msgid "Filters" +#~ msgstr "Filtros" + +#~ msgid "Post Type" +#~ msgstr "Tipo de conteúdo" + +#~ msgid "Taxonomy" +#~ msgstr "Taxonomia" + +#~ msgid "Elements" +#~ msgstr "Elementos" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Os elementos seleccionados serão mostrados em cada resultado." + +#~ msgid "Minimum posts" +#~ msgstr "Mínimo de conteúdos" + +#~ msgid "Maximum posts" +#~ msgstr "Máximo de conteúdos" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s requer pelo menos %s selecção" +#~ msgstr[1] "%s requer pelo menos %s selecções" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Selecção" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "Um resultado encontrado, prima Enter para seleccioná-lo." + +#, php-format +#~ 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." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Nenhuma correspondência encontrada" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Por favor insira 1 ou mais caracteres" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Por favor insira %d ou mais caracteres" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Por favor elimine 1 caractere" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Por favor elimine %d caracteres" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Só pode seleccionar 1 item" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Só pode seleccionar %d itens" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "A carregar mais resultados…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "A pesquisar…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Falhou ao carregar" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Seleccionar" + +#~ msgid "Stylised UI" +#~ msgstr "Interface estilizada" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "Utilizar AJAX para carregar opções?" + +#~ msgid "Specify the value returned" +#~ msgstr "Especifica o valor devolvido." + +#~ msgid "Separator" +#~ msgstr "Divisória" + +#~ msgid "Tab" +#~ msgstr "Separador" + +#~ msgid "Placement" +#~ msgstr "Posição" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Define o fim dos separadores anteriores. Isto será o início de um novo " +#~ "grupo de separadores." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Sem %s" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Seleccione a taxonomia que será mostrada." + +#~ msgid "Appearance" +#~ msgstr "Apresentação" + +#~ msgid "Select the appearance of this field" +#~ msgstr "Seleccione a apresentação deste campo." + +#~ msgid "Multiple Values" +#~ msgstr "Valores múltiplos" + +#~ msgid "Multi Select" +#~ msgstr "Selecção múltipla" + +#~ msgid "Single Value" +#~ msgstr "Valor único" + +#~ msgid "Radio Buttons" +#~ msgstr "Botões de opções" + +#~ msgid "Create Terms" +#~ msgstr "Criar termos" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Permite a criação de novos termos durante a edição." + +#~ msgid "Save Terms" +#~ msgstr "Guardar termos" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Liga os termos seleccionados ao conteúdo." + +#~ msgid "Load Terms" +#~ msgstr "Carregar termos" + +#~ msgid "Load value from posts terms" +#~ msgstr "Carrega os termos a partir dos termos dos conteúdos." + +#~ msgid "Term Object" +#~ msgstr "Termo" + +#~ msgid "Term ID" +#~ msgstr "ID do termo" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "O utilizador não pôde adicionar novo(a) %s" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s já existe" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s adicionado(a)" + +#~ msgid "Add" +#~ msgstr "Adicionar" + +#~ msgid "Text" +#~ msgstr "Texto" + +#~ msgid "Character Limit" +#~ msgstr "Limite de caracteres" + +#~ msgid "Leave blank for no limit" +#~ msgstr "Deixe em branco para não limitar" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "O valor não deve exceder %d caracteres" + +#~ msgid "Text Area" +#~ msgstr "Área de texto" + +#~ msgid "Rows" +#~ msgstr "Linhas" + +#~ msgid "Sets the textarea height" +#~ msgstr "Define a altura da área de texto" + +#~ msgid "Time Picker" +#~ msgstr "Selecção de hora" + +#~ msgid "True / False" +#~ msgstr "Verdadeiro / Falso" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Texto mostrado ao lado da caixa de selecção" + +#~ msgid "On Text" +#~ msgstr "Texto ligado" + +#~ msgid "Text shown when active" +#~ msgstr "Texto mostrado quando activo" + +#~ msgid "Off Text" +#~ msgstr "Texto desligado" + +#~ msgid "Text shown when inactive" +#~ msgstr "Texto mostrado quando inactivo" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Value must be a valid URL" +#~ msgstr "O valor deve ser um URL válido" + +#~ msgid "User" +#~ msgstr "Utilizador" + +#~ msgid "Filter by role" +#~ msgstr "Filtrar por papel" + +#~ msgid "All user roles" +#~ msgstr "Todos os papéis de utilizador" + +#~ msgid "User Array" +#~ msgstr "Array do utilizador" + +#~ msgid "User Object" +#~ msgstr "Objecto do utilizador" + +#~ msgid "User ID" +#~ msgstr "ID do utilizador" + +#~ msgid "Error loading field." +#~ msgstr "Erro ao carregar o campo." + +#~ msgid "Wysiwyg Editor" +#~ msgstr "Editor wysiwyg" + +#~ msgid "Visual" +#~ msgstr "Visual" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "HTML" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Clique para inicializar o TinyMCE" + +#~ msgid "Tabs" +#~ msgstr "Separadores" + +#~ msgid "Visual & Text" +#~ msgstr "Visual e HTML" + +#~ msgid "Visual Only" +#~ msgstr "Apenas visual" + +#~ msgid "Text Only" +#~ msgstr "Apenas HTML" + +#~ msgid "Toolbar" +#~ msgstr "Barra de ferramentas" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Mostrar botões de carregar multimédia?" + +#~ msgid "Delay initialization?" +#~ msgstr "Atrasar a inicialização?" + +#~ msgid "TinyMCE will not be initialized until field is clicked" +#~ msgstr "O TinyMCE não será inicializado até que clique no campo" + +#~ msgid "Validate Email" +#~ msgstr "Validar email" + +#~ msgid "Post updated" +#~ msgstr "Artigo actualizado" + +#~ msgid "Spam Detected" +#~ msgstr "Spam detectado" + +#, php-format +#~ msgid "ERROR: %s" +#~ msgstr "ERRO: %s" + +#, php-format +#~ msgid "Class \"%s\" does not exist." +#~ msgstr "A classe \"%s\" não existe." + +#, php-format +#~ msgid "Location type \"%s\" is already registered." +#~ msgstr "O tipo de localização \"%s\" já está registado." + +#~ msgid "Post" +#~ msgstr "Artigo" + +#~ msgid "Page" +#~ msgstr "Página" + +#~ msgid "Forms" +#~ msgstr "Formulários" + +#~ msgid "is equal to" +#~ msgstr "é igual a" + +#~ msgid "is not equal to" +#~ msgstr "não é igual a" + +#~ msgid "Attachment" +#~ msgstr "Anexo" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Todos os formatos de %s" + +#~ msgid "Comment" +#~ msgstr "Comentário" + +#~ msgid "Current User Role" +#~ msgstr "Papel do utilizador actual" + +#~ msgid "Super Admin" +#~ msgstr "Super Administrador" + +#~ msgid "Current User" +#~ msgstr "Utilizador actual" + +#~ msgid "Logged in" +#~ msgstr "Sessão iniciada" + +#~ msgid "Viewing front end" +#~ msgstr "A visualizar a frente do site" + +#~ msgid "Viewing back end" +#~ msgstr "A visualizar a administração do site" + +#~ msgid "Menu Item" +#~ msgstr "Item de menu" + +#~ msgid "Menu" +#~ msgstr "Menu" + +#~ msgid "Menu Locations" +#~ msgstr "Localizações do menu" + +#~ msgid "Page Parent" +#~ msgstr "Página superior" + +#~ msgid "Page Template" +#~ msgstr "Modelo de página" + +#~ msgid "Default Template" +#~ msgstr "Modelo por omissão" + +#~ msgid "Page Type" +#~ msgstr "Tipo de página" + +#~ msgid "Front Page" +#~ msgstr "Página inicial" + +#~ msgid "Posts Page" +#~ msgstr "Página de artigos" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Página de topo (sem superior)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Página superior (tem dependentes)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Página dependente (tem superior)" + +#~ msgid "Post Category" +#~ msgstr "Categoria de artigo" + +#~ msgid "Post Format" +#~ msgstr "Formato de artigo" + +#~ msgid "Post Status" +#~ msgstr "Estado do conteúdo" + +#~ msgid "Post Taxonomy" +#~ msgstr "Taxonomia do artigo" + +#~ msgid "Post Template" +#~ msgstr "Modelo de conteúdo" + +#~ msgid "User Form" +#~ msgstr "Formulário de utilizador" + +#~ msgid "Add / Edit" +#~ msgstr "Adicionar / Editar" + +#~ msgid "Register" +#~ msgstr "Registar" + +#~ msgid "User Role" +#~ msgstr "Papel de utilizador" + +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Editar" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Actualizar" + +#~ msgid "Uploaded to this post" +#~ msgstr "Carregados neste artigo" + +#~ msgid "Expand Details" +#~ msgstr "Expandir detalhes" + +#~ msgid "Collapse Details" +#~ msgstr "Minimizar detalhes" + +#~ msgid "Restricted" +#~ msgstr "Restrito" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "O valor %s é obrigatório" + +#, php-format +#~ 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 permitir actualizações, por favor insira a sua chave de licença na " +#~ "página de Actualizações. Se não tiver uma chave de " +#~ "licença, por favor veja os detalhes e preços." + +#~ msgid "https://www.advancedcustomfields.com" +#~ msgstr "https://www.advancedcustomfields.com" + +#~ msgid "" +#~ "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "Personalize o WordPress com campos intuitivos, poderosos e profissionais." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" diff --git a/lang/pro/acf-ro_RO.po b/lang/pro/acf-ro_RO.po new file mode 100644 index 0000000..b546ae9 --- /dev/null +++ b/lang/pro/acf-ro_RO.po @@ -0,0 +1,3528 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2018-04-16 17:11+1000\n" +"PO-Revision-Date: 2019-11-12 08:00+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: Elliot Condon \n" +"Language: ro_RO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" +"X-Generator: Poedit 1.8.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:81 +msgid "Advanced Custom Fields" +msgstr "Câmpuri Personalizate Avansate" + +#: acf.php:388 includes/admin/admin.php:117 +msgid "Field Groups" +msgstr "Grupuri de câmpuri" + +#: acf.php:389 +msgid "Field Group" +msgstr "Grup de câmp" + +#: acf.php:390 acf.php:422 includes/admin/admin.php:118 +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Add New" +msgstr "Adaugă" + +#: acf.php:391 +msgid "Add New Field Group" +msgstr "Adaugă un nou grup de câmpuri" + +#: acf.php:392 +msgid "Edit Field Group" +msgstr "Editează grupul" + +#: acf.php:393 +msgid "New Field Group" +msgstr "Grup de câmp nou" + +#: acf.php:394 +msgid "View Field Group" +msgstr "Vizulaizează grupul de câmp" + +#: acf.php:395 +msgid "Search Field Groups" +msgstr "Caută în grupurile de câmp" + +#: acf.php:396 +msgid "No Field Groups found" +msgstr "Nu s-a găsit nici un câmp de grupuri" + +#: acf.php:397 +msgid "No Field Groups found in Trash" +msgstr "Nu s-a găsit nici un câmp de grupuri în coșul de gunoi" + +#: acf.php:420 includes/admin/admin-field-group.php:196 +#: includes/admin/admin-field-groups.php:510 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "Câmpuri" + +#: acf.php:421 +msgid "Field" +msgstr "Câmp" + +#: acf.php:423 +msgid "Add New Field" +msgstr "Adaugă un nou câmp" + +#: acf.php:424 +msgid "Edit Field" +msgstr "Editează câmpul" + +#: acf.php:425 includes/admin/views/field-group-fields.php:41 +#: includes/admin/views/settings-info.php:105 +msgid "New Field" +msgstr "Câmp nou" + +#: acf.php:426 +msgid "View Field" +msgstr "Vizualizează câmpul" + +#: acf.php:427 +msgid "Search Fields" +msgstr "Caută câmpuri" + +#: acf.php:428 +msgid "No Fields found" +msgstr "Nu s-au găsit câmpuri" + +#: acf.php:429 +msgid "No Fields found in Trash" +msgstr "Nu s-a găsit nici un câmp în coșul de gunoi" + +#: acf.php:468 includes/admin/admin-field-group.php:377 +#: includes/admin/admin-field-groups.php:567 +msgid "Inactive" +msgstr "Inactiv" + +#: acf.php:473 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactiv (%s)" +msgstr[1] "Inactive (%s)" +msgstr[2] "Inactivs (%s)" + +#: includes/admin/admin-field-group.php:68 +#: includes/admin/admin-field-group.php:69 +#: includes/admin/admin-field-group.php:71 +msgid "Field group updated." +msgstr "Grup actualizat." + +#: includes/admin/admin-field-group.php:70 +msgid "Field group deleted." +msgstr "Grup șters." + +#: includes/admin/admin-field-group.php:73 +msgid "Field group published." +msgstr "Grup publicat." + +#: includes/admin/admin-field-group.php:74 +msgid "Field group saved." +msgstr "Grup salvat." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group submitted." +msgstr "Grup trimis." + +#: includes/admin/admin-field-group.php:76 +msgid "Field group scheduled for." +msgstr "Grup programat pentru." + +#: includes/admin/admin-field-group.php:77 +msgid "Field group draft updated." +msgstr "Ciorna grup actualizat." + +#: includes/admin/admin-field-group.php:154 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "Textul \"field_\" nu poate fi folosit la începutul denumirii unui câmp" + +#: includes/admin/admin-field-group.php:155 +msgid "This field cannot be moved until its changes have been saved" +msgstr "Acest câmp nu poate fi mutat decât după salvarea modificărilor" + +#: includes/admin/admin-field-group.php:156 +msgid "Field group title is required" +msgstr "Titlul grupului este obligatoriu" + +#: includes/admin/admin-field-group.php:157 +msgid "Move to trash. Are you sure?" +msgstr "Mută în coșul de gunoi. Ești sigur?" + +#: includes/admin/admin-field-group.php:158 +msgid "Move Custom Field" +msgstr "Mută câmpul personalizat" + +#: includes/admin/admin-field-group.php:159 +msgid "checked" +msgstr "marcat" + +#: includes/admin/admin-field-group.php:160 +msgid "(no label)" +msgstr "(fără etichetă)" + +#: includes/admin/admin-field-group.php:161 +#: includes/api/api-field-group.php:751 +msgid "copy" +msgstr "copie" + +#: includes/admin/admin-field-group.php:162 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:139 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:4158 +msgid "or" +msgstr "sau" + +#: includes/admin/admin-field-group.php:163 +msgid "Null" +msgstr "Gol" + +#: includes/admin/admin-field-group.php:197 +msgid "Location" +msgstr "Locația" + +#: includes/admin/admin-field-group.php:198 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Setări" + +#: includes/admin/admin-field-group.php:347 +msgid "Field Keys" +msgstr "Cheile câmpulurilor" + +#: includes/admin/admin-field-group.php:377 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Activ" + +#: includes/admin/admin-field-group.php:753 +msgid "Move Complete." +msgstr "Mutare Completă." + +#: includes/admin/admin-field-group.php:754 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Acest %s câmp acum poate fi găsit în %s grupul de câmpuri" + +#: includes/admin/admin-field-group.php:755 +msgid "Close Window" +msgstr "Închide Fereastra" + +#: includes/admin/admin-field-group.php:796 +msgid "Please select the destination for this field" +msgstr "Selectează destinația pentru acest câmp" + +#: includes/admin/admin-field-group.php:803 +msgid "Move Field" +msgstr "Mută Câmpul" + +#: includes/admin/admin-field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "(%s) Activ" +msgstr[1] "(%s) Active" +msgstr[2] "(%s) Active" + +#: includes/admin/admin-field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "Grupul de câmpuri a fost duplicat. %s" + +#: includes/admin/admin-field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s grupul de câmpuri a fost duplicat." +msgstr[1] "%s grupurile de câmpuri au fost duplicate." +msgstr[2] "%s grupurile de câmpuri au fost duplicate." + +#: includes/admin/admin-field-groups.php:227 +#, php-format +msgid "Field group synchronised. %s" +msgstr "Grupul de câmpuri a fost sincronizat. %s" + +#: includes/admin/admin-field-groups.php:231 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s grupul de câmpuri a fost sincronizat." +msgstr[1] "%s grupurile de câmpuri au fost sincronizate." +msgstr[2] "%s grupurile de câmpuri au fost sincronizate." + +#: includes/admin/admin-field-groups.php:394 +#: includes/admin/admin-field-groups.php:557 +msgid "Sync available" +msgstr "Sincronizare disponibilă" + +#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:355 +msgid "Title" +msgstr "Titlu" + +#: includes/admin/admin-field-groups.php:508 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/install-network.php:21 +#: includes/admin/views/install-network.php:29 +#: pro/fields/class-acf-field-gallery.php:382 +msgid "Description" +msgstr "Descriere" + +#: includes/admin/admin-field-groups.php:509 +msgid "Status" +msgstr "Stare" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:607 +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "Adaugă câmpuri puternice și intuitive pentru a personaliza WordPress." + +#: includes/admin/admin-field-groups.php:609 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Catalog schimbări" + +#: includes/admin/admin-field-groups.php:614 +#, php-format +msgid "See what's new in version %s." +msgstr "Vezi ce este nou în versiunea %s." + +#: includes/admin/admin-field-groups.php:617 +msgid "Resources" +msgstr "Resurse" + +#: includes/admin/admin-field-groups.php:619 +msgid "Website" +msgstr "" + +#: includes/admin/admin-field-groups.php:620 +msgid "Documentation" +msgstr "Documentație" + +#: includes/admin/admin-field-groups.php:621 +msgid "Support" +msgstr "Suport Tehnic" + +#: includes/admin/admin-field-groups.php:623 +msgid "Pro" +msgstr "Pro" + +#: includes/admin/admin-field-groups.php:628 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "" + +#: includes/admin/admin-field-groups.php:667 +msgid "Duplicate this item" +msgstr "Copiază acest item" + +#: includes/admin/admin-field-groups.php:667 +#: includes/admin/admin-field-groups.php:683 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:550 +msgid "Duplicate" +msgstr "Copiază" + +#: includes/admin/admin-field-groups.php:700 +#: includes/fields/class-acf-field-google-map.php:113 +#: includes/fields/class-acf-field-relationship.php:657 +msgid "Search" +msgstr "Caută" + +#: includes/admin/admin-field-groups.php:759 +#, php-format +msgid "Select %s" +msgstr "Selectează %s" + +#: includes/admin/admin-field-groups.php:767 +msgid "Synchronise field group" +msgstr "Sincronizare grup de câmpuri" + +#: includes/admin/admin-field-groups.php:767 +#: includes/admin/admin-field-groups.php:797 +msgid "Sync" +msgstr "Sincronizare" + +#: includes/admin/admin-field-groups.php:779 +msgid "Apply" +msgstr "Salvează" + +#: includes/admin/admin-field-groups.php:797 +msgid "Bulk Actions" +msgstr "Acțiuni în masă" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Unelte" + +#: includes/admin/admin.php:113 +#: includes/admin/views/field-group-options.php:118 +msgid "Custom Fields" +msgstr "Câmpuri Personalizate" + +#: includes/admin/install-network.php:88 includes/admin/install.php:70 +#: includes/admin/install.php:121 +msgid "Upgrade Database" +msgstr "Actualizează baza de date" + +#: includes/admin/install-network.php:140 +msgid "Review sites & upgrade" +msgstr "" + +#: includes/admin/install.php:187 +msgid "Error validating request" +msgstr "" + +#: includes/admin/install.php:210 includes/admin/views/install.php:104 +msgid "No updates available." +msgstr "" + +#: includes/admin/settings-addons.php:51 +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "Suplimente" + +#: includes/admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "Eroare. Lista de suplimente nu poate fi încărcată" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Informații" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "Ce este nou" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Exportați Grupurile de Câmputri" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Generează PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "Nu a fost selectat nici un grup de câmpuri" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Un grup exportat." +msgstr[1] "%s grupuri exportate." +msgstr[2] "%s de grupuri exportate." + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Selectați Grupurile de Câmpuri" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Selectați grupurile de câmpuri pe care doriți să le exportați și apoi " +"selectați metoda de export. Folosiți butonul de descărcare pentru a exporta " +"într-un fișier .json pe care apoi îl puteți folosi pentru a importa într-o " +"altă instalare a ACF. Folosiți butonul Generare pentru a exporta totul în " +"cod PHP, pe care îl puteți pune apoi in tema voastră." + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "Exportă fișierul" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Următorul bloc de cod poate fi folosit pentru a înregistra o copie locală a " +"grupului(lor) de câmpuri selectat(e). Un grup de câmpuri local poate " +"facilita multe beneficii cum ar fi un timp de încărcare mai mic, control al " +"versiunii și câmpuri / setări dinamice. Pentru a beneficia de toate acestea " +"nu trebuie decât să copiați și să inserați următorul bloc de cod în fișierul " +"functions.php al temei sau să-l includeți într-un fișier extern." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "Copiază în clipboar" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "Copiat" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Importă Grupurile de câmpuri" + +#: includes/admin/tools/class-acf-admin-tool-import.php:61 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Alege fișierul JSON ACF pe care dorești să-l imporți. Când vei apăsa butonul " +"import de mai jos, ACF v-a importa toate grupurile de câmpuri." + +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +#: includes/fields/class-acf-field-file.php:37 +msgid "Select File" +msgstr "Selectează fișierul" + +#: includes/admin/tools/class-acf-admin-tool-import.php:76 +msgid "Import File" +msgstr "Importă fișier" + +#: includes/admin/tools/class-acf-admin-tool-import.php:100 +#: includes/fields/class-acf-field-file.php:154 +msgid "No file selected" +msgstr "Nu a fost selectat nici un fișier" + +#: includes/admin/tools/class-acf-admin-tool-import.php:113 +msgid "Error uploading file. Please try again" +msgstr "Eroare la încărcarea fișierului. Încearcă din nou" + +#: includes/admin/tools/class-acf-admin-tool-import.php:122 +msgid "Incorrect file type" +msgstr "Tipul fișierului este incorect" + +#: includes/admin/tools/class-acf-admin-tool-import.php:139 +msgid "Import file empty" +msgstr "Fișierul import este gol" + +#: includes/admin/tools/class-acf-admin-tool-import.php:247 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Un grup importat" +msgstr[1] "%s grupuri importate" +msgstr[2] "%s de grupuri importate" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Condiție Logică" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "Arată acest câmp dacă" + +#: includes/admin/views/field-group-field-conditional-logic.php:126 +#: includes/admin/views/html-location-rule.php:80 +msgid "and" +msgstr "și" + +#: includes/admin/views/field-group-field-conditional-logic.php:141 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Adaugă grup de reguli" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:403 +#: pro/fields/class-acf-field-repeater.php:296 +msgid "Drag to reorder" +msgstr "Trage pentru a reordona" + +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "Editează câmp" + +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:136 +#: includes/fields/class-acf-field-image.php:122 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:342 +msgid "Edit" +msgstr "Editeză" + +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "Copiază câmp" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "Mută acest câmp în alt grup" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "Mută" + +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "Șterge câmp" + +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:549 +msgid "Delete" +msgstr "Șterge" + +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "Etichetă Câmp" + +#: includes/admin/views/field-group-field.php:66 +msgid "This is the name which will appear on the EDIT page" +msgstr "Acesta este numele care va apărea în pagina de editare" + +#: includes/admin/views/field-group-field.php:75 +msgid "Field Name" +msgstr "Nume Câmp" + +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "" +"Un singur cuvânt, fără spații. Caracterele _ (underscore) și - (minus) sunt " +"permise" + +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "Tipul Câmpului" + +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "Instrucțiuni" + +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instrucțiuni pentru autor. Sunt afișate când se adaugă valori" + +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "Obligatoriu?" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Atributele Wrapper-ului" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "lățime" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "clasă" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "Închide Câmpul" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Ordine" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:418 +#: pro/fields/class-acf-field-flexible-content.php:576 +msgid "Label" +msgstr "Etichetă" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:964 +#: pro/fields/class-acf-field-flexible-content.php:589 +msgid "Name" +msgstr "Nume" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Tip" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Nici un câmp. Click pe butonul + Adaugă Câmp pentru a crea " +"primul câmp." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Adaugă Câmp" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Reguli" + +#: includes/admin/views/field-group-locations.php:10 +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Crează un set de reguli pentru a determina unde vor fi afișate aceste " +"câmpuri avansate personalizate" + +#: includes/admin/views/field-group-options.php:23 +msgid "Style" +msgstr "Stil" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Standard (asemănător WP, folosește metabox-uri)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Seamless (fără metabox-uri)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Poziție" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Mare (după titlul aricolului / paginii)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Normal (dupa conținutul articolului / paginii)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Lateral" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Poziționarea etichetei" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Aliniere Sus" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Aliniere Stanga" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Plasamentul instrucțiunilor" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Sub etichete" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Sub câmpuri" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Nr. crt." + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "" + +#: includes/admin/views/field-group-options.php:107 +msgid "Hide on screen" +msgstr "Ascunde pe ecran" + +#: includes/admin/views/field-group-options.php:108 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Selectează ce opțiuni să fie ascune din ecranul de editare al " +"articolului sau al paginii." + +#: includes/admin/views/field-group-options.php:108 +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 "" +"Daca în ecranul de editare al articolului / paginii apar mai multiple " +"grupuri de câmpuri, atunci opțiunile primul grup de câmpuri vor fi folosite " +"(cel cu numărul de ordine cel mai mic)" + +#: includes/admin/views/field-group-options.php:115 +msgid "Permalink" +msgstr "Legătură permanentă" + +#: includes/admin/views/field-group-options.php:116 +msgid "Content Editor" +msgstr "Editorul de conținut" + +#: includes/admin/views/field-group-options.php:117 +msgid "Excerpt" +msgstr "Descriere scurtă" + +#: includes/admin/views/field-group-options.php:119 +msgid "Discussion" +msgstr "Discuții" + +#: includes/admin/views/field-group-options.php:120 +msgid "Comments" +msgstr "Comentarii" + +#: includes/admin/views/field-group-options.php:121 +msgid "Revisions" +msgstr "Revizii" + +#: includes/admin/views/field-group-options.php:122 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/views/field-group-options.php:123 +msgid "Author" +msgstr "Autor" + +#: includes/admin/views/field-group-options.php:124 +msgid "Format" +msgstr "Format" + +#: includes/admin/views/field-group-options.php:125 +msgid "Page Attributes" +msgstr "Atributele Paginii" + +#: includes/admin/views/field-group-options.php:126 +#: includes/fields/class-acf-field-relationship.php:671 +msgid "Featured Image" +msgstr "Imagine Reprezentativă" + +#: includes/admin/views/field-group-options.php:127 +msgid "Categories" +msgstr "Categorii" + +#: includes/admin/views/field-group-options.php:128 +msgid "Tags" +msgstr "Etichete" + +#: includes/admin/views/field-group-options.php:129 +msgid "Send Trackbacks" +msgstr "Trackback-uri" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Arată acest grup de câmpuri dacă" + +#: includes/admin/views/install-network.php:4 +msgid "Upgrade Sites" +msgstr "" + +#: includes/admin/views/install-network.php:9 +#: includes/admin/views/install.php:3 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "" + +#: includes/admin/views/install-network.php:11 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" + +#: includes/admin/views/install-network.php:20 +#: includes/admin/views/install-network.php:28 +msgid "Site" +msgstr "" + +#: includes/admin/views/install-network.php:48 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "" + +#: includes/admin/views/install-network.php:50 +msgid "Site is up to date" +msgstr "" + +#: includes/admin/views/install-network.php:63 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" + +#: includes/admin/views/install-network.php:102 +#: includes/admin/views/install-notice.php:42 +msgid "" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" +msgstr "" +"Este puternic recomandat să faceți o copie de siguranța a bazei de date " +"înainte de a începe procesul de actualizare. Ești sigur că vrei să începi " +"actualizarea acum?" + +#: includes/admin/views/install-network.php:158 +msgid "Upgrade complete" +msgstr "" + +#: includes/admin/views/install-network.php:162 +#: includes/admin/views/install.php:9 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Actualizarea datelor la versiunea %s" + +#: includes/admin/views/install-notice.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Repeater" + +#: includes/admin/views/install-notice.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Conținut Flexibil" + +#: includes/admin/views/install-notice.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Galerie" + +#: includes/admin/views/install-notice.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Pagina de Opțiuni" + +#: includes/admin/views/install-notice.php:26 +msgid "Database Upgrade Required" +msgstr "Actualizare bazei de date este necesară" + +#: includes/admin/views/install-notice.php:28 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Îți mulțumim pentru actualizarea făcută la %s v%s!" + +#: includes/admin/views/install-notice.php:28 +msgid "" +"Before you start using the new awesome features, please update your database " +"to the newest version." +msgstr "" +"Înainte de a începe să folosești uimitoarele funcții noi, te rungăm să " +"actualizezi baza de date la o versiune mai recentă." + +#: includes/admin/views/install-notice.php:31 +#, php-format +msgid "" +"Please also ensure any premium add-ons (%s) have first been updated to the " +"latest version." +msgstr "" + +#: includes/admin/views/install.php:7 +msgid "Reading upgrade tasks..." +msgstr "Citirea sarcinilor necesare pentru actualizare..." + +#: includes/admin/views/install.php:11 +#, php-format +msgid "Database Upgrade complete. See what's new" +msgstr "" + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Descarcă & Instalează" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Instalat" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Bine ai venit la Câmpuri Personalizate Avansate" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Iți mulțumim pentru actualizare! ACF %s a devenit mai mare și mai bun. " +"Sperăm să-ți placă." + +#: includes/admin/views/settings-info.php:17 +msgid "A smoother custom field experience" +msgstr "O folosire mai ușoara a câmpurilor personalizate" + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Usability" +msgstr "Folosire Facilă" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"Includerea popularei librării Select2 a îmbunătățit folosirea dar și viteaza " +"pentru un număr ridicat de tipuri de câmpuri care includ, obiectele articol, " +"legătura paginii, taxonomia și selecția." + +#: includes/admin/views/settings-info.php:27 +msgid "Improved Design" +msgstr "Design îmbunătățit" + +#: includes/admin/views/settings-info.php:28 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Multe câmpuri au dobândit un nou design vizual pentru a face ACF un produs " +"mai ușor de folosit! Schimbările pot fi văzute în special, la câmpurile " +"Galerie, Relații și oEmbed(nou)!" + +#: includes/admin/views/settings-info.php:32 +msgid "Improved Data" +msgstr "Tipuri de Date imbunătățite" + +#: includes/admin/views/settings-info.php:33 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"Refacerea arhitecturii tipurilor de date a permis ca sub câmpurile să fie " +"independente de câmpurile părinte. Acest lucru vă permite să trageți și să " +"eliberați câmpurile în și în afara câmpurilor părinte!" + +#: includes/admin/views/settings-info.php:39 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "La revedere Add-onuri. Salut PRO" + +#: includes/admin/views/settings-info.php:44 +msgid "Introducing ACF PRO" +msgstr "Introducere în ACF PRO" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "Am schimbat modul în care funcționalitatea premium este transmisă!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Toate cele 4 add-onuri premium au fost combinate într-o nouă Versiune PRO a ACF. Putând alege licența personală sau licența de " +"developer, funcționalitatea premium este acum mai accesibilă ca niciodată!" + +#: includes/admin/views/settings-info.php:50 +msgid "Powerful Features" +msgstr "Caracteristici puternice" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"ACF PRO conține caracteristici puternice cum ar fi date repetabile, machete " +"de conținut flexibil, un frumos câmp pentru galerie și puterea de a crea " +"pagini administrative de opțiuni!" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "Citește mai mult despre Caracteristicile ACF PRO." + +#: includes/admin/views/settings-info.php:56 +msgid "Easy Upgrading" +msgstr "Actualizare ușoară" + +#: includes/admin/views/settings-info.php:57 +#, php-format +msgid "" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" +msgstr "" +"Pentru a facilita actualizarea într-un mod ușor, intră în " +"contul tău și obține o copie gratis a ACF PRO!" + +#: includes/admin/views/settings-info.php:58 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" +msgstr "" +"De asemenea am pus la dispoziția ta un ghid de actualizare pentru a răspunde tuturor întrebărilor, dar dacă totuși ai o întrebare, " +"te rog sa contactezi echipa noastră de suport, folosind help " +"desk" + +#: includes/admin/views/settings-info.php:66 +msgid "Under the Hood" +msgstr "Sub capată" + +#: includes/admin/views/settings-info.php:71 +msgid "Smarter field settings" +msgstr "Setări deștepte ale câmpurilor" + +#: includes/admin/views/settings-info.php:72 +msgid "ACF now saves its field settings as individual post objects" +msgstr "" +"ACF salvează acum setările câmpurilor ca fiind obiecte de tip articol " +"individuale" + +#: includes/admin/views/settings-info.php:76 +msgid "More AJAX" +msgstr "Mai mult AJAX" + +#: includes/admin/views/settings-info.php:77 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "" +"Mai multe câmpuri folosesc puterea de căutare AJAX pentru a micșora timpul " +"de încărcare al paginii" + +#: includes/admin/views/settings-info.php:81 +msgid "Local JSON" +msgstr "JSON local" + +#: includes/admin/views/settings-info.php:82 +msgid "New auto export to JSON feature improves speed" +msgstr "Noua funcționalitate de auto import în JSON îmbunătățește viteza" + +#: includes/admin/views/settings-info.php:88 +msgid "Better version control" +msgstr "Un control mai bun al versiunii" + +#: includes/admin/views/settings-info.php:89 +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" +msgstr "" +"Noua funcționalitate de auto export în JSON permite ca setările câmpurilor " +"să fie versionabile" + +#: includes/admin/views/settings-info.php:93 +msgid "Swapped XML for JSON" +msgstr "Am schimbat XML în favoarea JSON" + +#: includes/admin/views/settings-info.php:94 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "Importul / Exportul folosește acum JSON în defavoarea XML" + +#: includes/admin/views/settings-info.php:98 +msgid "New Forms" +msgstr "Noi formulare" + +#: includes/admin/views/settings-info.php:99 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "" +"Câmpurile pot fi acum mapate la comentarii, widget-uri sau orice alt " +"formular creat de user!" + +#: includes/admin/views/settings-info.php:106 +msgid "A new field for embedding content has been added" +msgstr "Un nou câmp pentru încorporarea conținutului a fost adaugat" + +#: includes/admin/views/settings-info.php:110 +msgid "New Gallery" +msgstr "Galerie Nouă" + +#: includes/admin/views/settings-info.php:111 +msgid "The gallery field has undergone a much needed facelift" +msgstr "Câmpul Galierie a suferit un facelift bine meritat" + +#: includes/admin/views/settings-info.php:115 +msgid "New Settings" +msgstr "Configurări noi" + +#: includes/admin/views/settings-info.php:116 +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "" +"Setările grupului de câmpuri a fost adăugat pentru poziționarea etichitelor " +"și a instrucțiunilor" + +#: includes/admin/views/settings-info.php:122 +msgid "Better Front End Forms" +msgstr "Formulare Front End mai bune" + +#: includes/admin/views/settings-info.php:123 +msgid "acf_form() can now create a new post on submission" +msgstr "" +"acf_form() poate crea acum un nou articol odată ce cererea a fost trimisă" + +#: includes/admin/views/settings-info.php:127 +msgid "Better Validation" +msgstr "O validare mai bună" + +#: includes/admin/views/settings-info.php:128 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "" +"Validarea formularelor se face acum via PHP + AJAX în defavoarea numai JS" + +#: includes/admin/views/settings-info.php:132 +msgid "Relationship Field" +msgstr "Câmp de realționare" + +#: includes/admin/views/settings-info.php:133 +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "" +"Setările noului câmp de relaționare pentru Filtre (Caută, Tipul Articolului, " +"Taxonomie)" + +#: includes/admin/views/settings-info.php:139 +msgid "Moving Fields" +msgstr "Câmpuri care pot fi mutate" + +#: includes/admin/views/settings-info.php:140 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" +msgstr "" +"Noua funcționalitate a grupului de câmpuri îți permite acum să muți " +"câmpurile între grupuri" + +#: includes/admin/views/settings-info.php:144 +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Legătura Paginii" + +#: includes/admin/views/settings-info.php:145 +msgid "New archives group in page_link field selection" +msgstr "Noua arhivă de grup în selecția page_link" + +#: includes/admin/views/settings-info.php:149 +msgid "Better Options Pages" +msgstr "Opțiuni mai bune pentru Pagini" + +#: includes/admin/views/settings-info.php:150 +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" +msgstr "" +"Noile funcții pentru opțiunile pagini îți permite acum create de pagini " +"meniu și submeniuri" + +#: includes/admin/views/settings-info.php:159 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Credem că vei îndrăgi shimbările în %s." + +#: includes/api/api-helpers.php:1039 +msgid "Thumbnail" +msgstr "Miniatură" + +#: includes/api/api-helpers.php:1040 +msgid "Medium" +msgstr "Mediu" + +#: includes/api/api-helpers.php:1041 +msgid "Large" +msgstr "Mare" + +#: includes/api/api-helpers.php:1090 +msgid "Full Size" +msgstr "Marime completă" + +#: includes/api/api-helpers.php:1431 includes/api/api-helpers.php:2004 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(fără titlu)" + +#: includes/api/api-helpers.php:4079 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "Lățimea imaginii trebuie să fie cel puțin %dpx." + +#: includes/api/api-helpers.php:4084 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "Lățimea imaginii nu trebuie să depășească %dpx." + +#: includes/api/api-helpers.php:4100 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "Înălțimea imaginii trebuie să fie cel puțin %dpx." + +#: includes/api/api-helpers.php:4105 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "Înălțimea imaginii nu trebuie să depășească %dpx." + +#: includes/api/api-helpers.php:4123 +#, php-format +msgid "File size must be at least %s." +msgstr "Mărimea fișierului trebuie să fie cel puțin %s." + +#: includes/api/api-helpers.php:4128 +#, php-format +msgid "File size must must not exceed %s." +msgstr "Mărimea fișierului nu trebuie să depășească %s." + +#: includes/api/api-helpers.php:4162 +#, php-format +msgid "File type must be %s." +msgstr "Tipul fișierului trebuie să fie %s." + +#: includes/assets.php:164 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "Modificările făcute vor fi pierdute dacă nu salvați" + +#: includes/assets.php:167 includes/fields/class-acf-field-select.php:257 +msgctxt "verb" +msgid "Select" +msgstr "Selectează" + +#: includes/assets.php:168 +msgctxt "verb" +msgid "Edit" +msgstr "Editeză" + +#: includes/assets.php:169 +msgctxt "verb" +msgid "Update" +msgstr "Actualizează" + +#: includes/assets.php:170 pro/fields/class-acf-field-gallery.php:44 +msgid "Uploaded to this post" +msgstr "Încărcate pentru acest articol" + +#: includes/assets.php:171 +msgid "Expand Details" +msgstr "Extinde Detaliile" + +#: includes/assets.php:172 +msgid "Collapse Details" +msgstr "Închide Detaliile" + +#: includes/assets.php:173 +msgid "Restricted" +msgstr "" + +#: includes/assets.php:174 +msgid "All images" +msgstr "Toate imaginiile" + +#: includes/assets.php:177 +msgid "Validation successful" +msgstr "Validare a fost făcută cu succes" + +#: includes/assets.php:178 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Validarea a eșuat" + +#: includes/assets.php:179 +msgid "1 field requires attention" +msgstr "" + +#: includes/assets.php:180 +#, php-format +msgid "%d fields require attention" +msgstr "" + +#: includes/assets.php:183 +msgid "Are you sure?" +msgstr "" + +#: includes/assets.php:184 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Da" + +#: includes/assets.php:185 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "Nu" + +#: includes/assets.php:186 includes/fields/class-acf-field-file.php:138 +#: includes/fields/class-acf-field-image.php:124 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:343 +#: pro/fields/class-acf-field-gallery.php:531 +msgid "Remove" +msgstr "Înlătură" + +#: includes/assets.php:187 +msgid "Cancel" +msgstr "" + +#: includes/assets.php:190 +msgid "Has any value" +msgstr "" + +#: includes/assets.php:191 +msgid "Has no value" +msgstr "" + +#: includes/assets.php:192 +msgid "Value is equal to" +msgstr "" + +#: includes/assets.php:193 +msgid "Value is not equal to" +msgstr "" + +#: includes/assets.php:194 +msgid "Value matches pattern" +msgstr "" + +#: includes/assets.php:195 +msgid "Value contains" +msgstr "" + +#: includes/assets.php:196 +msgid "Value is greater than" +msgstr "" + +#: includes/assets.php:197 +msgid "Value is less than" +msgstr "" + +#: includes/assets.php:198 +msgid "Selection is greater than" +msgstr "" + +#: includes/assets.php:199 +msgid "Selection is less than" +msgstr "" + +#: includes/fields.php:144 +msgid "Basic" +msgstr "De bază" + +#: includes/fields.php:145 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Conținut" + +#: includes/fields.php:146 +msgid "Choice" +msgstr "Alegere" + +#: includes/fields.php:147 +msgid "Relational" +msgstr "Relațional" + +#: includes/fields.php:148 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:149 +#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:546 +#: pro/fields/class-acf-field-flexible-content.php:595 +#: pro/fields/class-acf-field-repeater.php:442 +msgid "Layout" +msgstr "Schemă" + +#: includes/fields.php:326 +msgid "Field type does not exist" +msgstr "Tipul câmpului nu există" + +#: includes/fields.php:326 +msgid "Unknown" +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:100 +msgid "Display this accordion as open on page load." +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:109 +msgid "Multi-expand" +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:110 +msgid "Allow this accordion to open without closing others." +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "" + +#: includes/fields/class-acf-field-accordion.php:120 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:349 +msgid "Choices" +msgstr "Alegere" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:350 +msgid "Enter each choice on a new line." +msgstr "Pune fiecare alegere pe o linie nouă." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:350 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"Pentru un mai bun control, poți specifica o valoare și o etichetă ca de " +"exemplu:" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:350 +msgid "red : Red" +msgstr "roșu : Roșu" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:412 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:367 +#: includes/fields/class-acf-field-taxonomy.php:793 +#: includes/fields/class-acf-field-user.php:409 +msgid "Allow Null?" +msgstr "Permite valori nule?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:146 +#: includes/fields/class-acf-field-select.php:358 +#: includes/fields/class-acf-field-text.php:119 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:410 +msgid "Default Value" +msgstr "Valoare implicită" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:147 +#: includes/fields/class-acf-field-text.php:120 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:411 +msgid "Appears when creating a new post" +msgstr "Apare cănd creați un articol nou" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "Orizontal" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "Vertical" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:199 +#: includes/fields/class-acf-field-image.php:188 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:833 +msgid "Return Value" +msgstr "Valoarea returnată" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:200 +#: includes/fields/class-acf-field-image.php:189 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +msgid "Specify the returned value on front end" +msgstr "Specificați valoarea returnată în front end" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:417 +msgid "Value" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:419 +msgid "Both (Array)" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:780 +msgid "Checkbox" +msgstr "Checkbox" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Comută tot" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:381 +#: includes/fields/class-acf-field-select.php:359 +msgid "Enter each default value on a new line" +msgstr "Introdu fiecare valoare implicită pe o linie nouă" + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Alege Culoarea" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Curăță" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Implicit" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Alege Culoarea" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Alege data calendaristică" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Astăzi" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Următor" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Anterior" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Săpt" + +#: includes/fields/class-acf-field-date_picker.php:180 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Formatul de Afișare" + +#: includes/fields/class-acf-field-date_picker.php:181 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "Formatul afișat în momentul editării unui articol" + +#: includes/fields/class-acf-field-date_picker.php:189 +#: includes/fields/class-acf-field-date_picker.php:220 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:199 +msgid "Save Format" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:200 +msgid "The format used when saving a value" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:210 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-post_object.php:432 +#: includes/fields/class-acf-field-relationship.php:698 +#: includes/fields/class-acf-field-select.php:412 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:428 +msgid "Return Format" +msgstr "Formatul Returnat" + +#: includes/fields/class-acf-field-date_picker.php:211 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "Formatul rezultat via funcțiilor șablon" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "Săptămâna începe în ziua de" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Alege ora" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Ora" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Oră" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Minut" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Secundă" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Milisecundă" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Microsecundă" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Fus Orar" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Acum" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Gata" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +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 amText" +msgid "AM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "Adresă de email" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:128 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Textul afișat ca placeholder" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:129 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Apare în intrare" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:185 +#: includes/fields/class-acf-field-text.php:137 +msgid "Prepend" +msgstr "Prefixează" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:186 +#: includes/fields/class-acf-field-text.php:138 +msgid "Appears before the input" +msgstr "Apare înainte de intrare" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:194 +#: includes/fields/class-acf-field-text.php:146 +msgid "Append" +msgstr "Adaugă" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:195 +#: includes/fields/class-acf-field-text.php:147 +msgid "Appears after the input" +msgstr "Apare după intrare" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Fișier" + +#: includes/fields/class-acf-field-file.php:38 +msgid "Edit File" +msgstr "Editează fișierul" + +#: includes/fields/class-acf-field-file.php:39 +msgid "Update File" +msgstr "Actualizează fișierul" + +#: includes/fields/class-acf-field-file.php:125 +msgid "File name" +msgstr "" + +#: includes/fields/class-acf-field-file.php:129 +#: includes/fields/class-acf-field-file.php:232 +#: includes/fields/class-acf-field-file.php:243 +#: includes/fields/class-acf-field-image.php:248 +#: includes/fields/class-acf-field-image.php:277 +#: pro/fields/class-acf-field-gallery.php:690 +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Mărime fișier" + +#: includes/fields/class-acf-field-file.php:154 +msgid "Add File" +msgstr "Adaugă fișier" + +#: includes/fields/class-acf-field-file.php:205 +msgid "File Array" +msgstr "Mulțime de fișier" + +#: includes/fields/class-acf-field-file.php:206 +msgid "File URL" +msgstr "Cale Fișier" + +#: includes/fields/class-acf-field-file.php:207 +msgid "File ID" +msgstr "ID Fișier" + +#: includes/fields/class-acf-field-file.php:214 +#: includes/fields/class-acf-field-image.php:213 +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Library" +msgstr "Librărie" + +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-image.php:214 +#: pro/fields/class-acf-field-gallery.php:656 +msgid "Limit the media library choice" +msgstr "Limitați alegerea librăriei media" + +#: includes/fields/class-acf-field-file.php:220 +#: includes/fields/class-acf-field-image.php:219 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:87 +#: includes/locations/class-acf-location-user-role.php:111 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:661 +msgid "All" +msgstr "Toate" + +#: includes/fields/class-acf-field-file.php:221 +#: includes/fields/class-acf-field-image.php:220 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Uploaded to post" +msgstr "Încărcate pentru acest articol" + +#: includes/fields/class-acf-field-file.php:228 +#: includes/fields/class-acf-field-image.php:227 +#: pro/fields/class-acf-field-gallery.php:669 +msgid "Minimum" +msgstr "Minim" + +#: includes/fields/class-acf-field-file.php:229 +#: includes/fields/class-acf-field-file.php:240 +msgid "Restrict which files can be uploaded" +msgstr "Restricționați ce tipuri de fișiere pot fi încărcate" + +#: includes/fields/class-acf-field-file.php:239 +#: includes/fields/class-acf-field-image.php:256 +#: pro/fields/class-acf-field-gallery.php:698 +msgid "Maximum" +msgstr "Maxim" + +#: includes/fields/class-acf-field-file.php:250 +#: includes/fields/class-acf-field-image.php:285 +#: pro/fields/class-acf-field-gallery.php:727 +msgid "Allowed file types" +msgstr "Tipuri de fișiere permise" + +#: includes/fields/class-acf-field-file.php:251 +#: includes/fields/class-acf-field-image.php:286 +#: pro/fields/class-acf-field-gallery.php:728 +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-google-map.php:25 +msgid "Google Map" +msgstr "Hartă Google" + +#: includes/fields/class-acf-field-google-map.php:43 +msgid "Sorry, this browser does not support geolocation" +msgstr "Ne pare rău, acest broswer nu suportă geo locația" + +#: includes/fields/class-acf-field-google-map.php:114 +msgid "Clear location" +msgstr "Sterge Locația" + +#: includes/fields/class-acf-field-google-map.php:115 +msgid "Find current location" +msgstr "Găsește locația curentă" + +#: includes/fields/class-acf-field-google-map.php:118 +msgid "Search for address..." +msgstr "Caută adresa..." + +#: includes/fields/class-acf-field-google-map.php:148 +#: includes/fields/class-acf-field-google-map.php:159 +msgid "Center" +msgstr "Centru" + +#: includes/fields/class-acf-field-google-map.php:149 +#: includes/fields/class-acf-field-google-map.php:160 +msgid "Center the initial map" +msgstr "Centrează harta inițială" + +#: includes/fields/class-acf-field-google-map.php:171 +msgid "Zoom" +msgstr "Zoom" + +#: includes/fields/class-acf-field-google-map.php:172 +msgid "Set the initial zoom level" +msgstr "Setează nivelul de zoom inițial" + +#: includes/fields/class-acf-field-google-map.php:181 +#: includes/fields/class-acf-field-image.php:239 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:681 +#: pro/fields/class-acf-field-gallery.php:710 +msgid "Height" +msgstr "Înălțime" + +#: includes/fields/class-acf-field-google-map.php:182 +msgid "Customise the map height" +msgstr "Personalizați înălțimea hărții" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:381 +msgid "Sub Fields" +msgstr "Sub câmpuri" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:606 +#: pro/fields/class-acf-field-repeater.php:450 +msgid "Block" +msgstr "Bloc" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:605 +#: pro/fields/class-acf-field-repeater.php:449 +msgid "Table" +msgstr "Tabel" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:607 +#: pro/fields/class-acf-field-repeater.php:451 +msgid "Row" +msgstr "Linie" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Imagine" + +#: includes/fields/class-acf-field-image.php:42 +msgid "Select Image" +msgstr "Alege imaginea" + +#: includes/fields/class-acf-field-image.php:43 +#: pro/fields/class-acf-field-gallery.php:42 +msgid "Edit Image" +msgstr "Editează imaginea" + +#: includes/fields/class-acf-field-image.php:44 +#: pro/fields/class-acf-field-gallery.php:43 +msgid "Update Image" +msgstr "Actualizează imaginea" + +#: includes/fields/class-acf-field-image.php:140 +msgid "No image selected" +msgstr "Nu ai selectat nici o imagine" + +#: includes/fields/class-acf-field-image.php:140 +msgid "Add Image" +msgstr "Adaugă o imagine" + +#: includes/fields/class-acf-field-image.php:194 +msgid "Image Array" +msgstr "Mulțime de imagini" + +#: includes/fields/class-acf-field-image.php:195 +msgid "Image URL" +msgstr "URL-ul imaginii" + +#: includes/fields/class-acf-field-image.php:196 +msgid "Image ID" +msgstr "ID-ul imaginii" + +#: includes/fields/class-acf-field-image.php:203 +msgid "Preview Size" +msgstr "Dimensiunea previzualizării" + +#: includes/fields/class-acf-field-image.php:204 +msgid "Shown when entering data" +msgstr "Afișat la introducerea datelor" + +#: includes/fields/class-acf-field-image.php:228 +#: includes/fields/class-acf-field-image.php:257 +#: pro/fields/class-acf-field-gallery.php:670 +#: pro/fields/class-acf-field-gallery.php:699 +msgid "Restrict which images can be uploaded" +msgstr "Restricționează care imagini pot fi încărcate" + +#: includes/fields/class-acf-field-image.php:231 +#: includes/fields/class-acf-field-image.php:260 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:673 +#: pro/fields/class-acf-field-gallery.php:702 +msgid "Width" +msgstr "Lățime" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Mesaj" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Linii Noi" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Controlează cum sunt redate noile linii" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Adaugă automat paragrafe" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Adaugă automat <br>" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Nici o Formater" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "Scăpare HTML" + +#: includes/fields/class-acf-field-message.php:125 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "" +"Permite markup-ului HTML să fie afișat că text vizibil în loc să fie " +"interpretat" + +#: includes/fields/class-acf-field-number.php:25 +msgid "Number" +msgstr "Număr" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:155 +msgid "Minimum Value" +msgstr "Valoare minimă" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:165 +msgid "Maximum Value" +msgstr "Valoare maximă" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:175 +msgid "Step Size" +msgstr "Mărime pas" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "Valoarea trebuie să fie un număr" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +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:245 +#, php-format +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-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "Introduceți URL" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "Marimea Embed" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Arhive" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:268 +#: includes/fields/class-acf-field-taxonomy.php:986 +msgid "Parent" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:384 +#: includes/fields/class-acf-field-relationship.php:624 +msgid "Filter by Post Type" +msgstr "Filtur dupa Tipul Articolului" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:392 +#: includes/fields/class-acf-field-relationship.php:632 +msgid "All post types" +msgstr "Toate Tipurile Articolului" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:398 +#: includes/fields/class-acf-field-relationship.php:638 +msgid "Filter by Taxonomy" +msgstr "Filtru după Taxonomie" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:406 +#: includes/fields/class-acf-field-relationship.php:646 +msgid "All taxonomies" +msgstr "Toate Taxonomiile" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:422 +#: includes/fields/class-acf-field-select.php:377 +#: includes/fields/class-acf-field-user.php:419 +msgid "Select multiple values?" +msgstr "Permite selecția de valori multiple?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Parolă" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:703 +msgid "Post Object" +msgstr "Obiect Articol" + +#: includes/fields/class-acf-field-post_object.php:438 +#: includes/fields/class-acf-field-relationship.php:704 +msgid "Post ID" +msgstr "ID-ul Articolului" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Buton Radio" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Altceva" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "Adaugă 'Altceva' pentru a permite o valoare personalizată" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "Salvează Altceva" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "Salvează valoarea 'Altceva' la opțiunile câmpului" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Relație" + +#: includes/fields/class-acf-field-relationship.php:40 +msgid "Maximum values reached ( {max} values )" +msgstr "Valorile maxime atinse ( {max} valori )" + +#: includes/fields/class-acf-field-relationship.php:41 +msgid "Loading" +msgstr "Se încarcă" + +#: includes/fields/class-acf-field-relationship.php:42 +msgid "No matches found" +msgstr "Nici un rezultat" + +#: includes/fields/class-acf-field-relationship.php:424 +msgid "Select post type" +msgstr "Alegeți tipul articolului" + +#: includes/fields/class-acf-field-relationship.php:450 +msgid "Select taxonomy" +msgstr "Alegeți taxonomia" + +#: includes/fields/class-acf-field-relationship.php:540 +msgid "Search..." +msgstr "Caută..." + +#: includes/fields/class-acf-field-relationship.php:652 +msgid "Filters" +msgstr "Filtre" + +#: includes/fields/class-acf-field-relationship.php:658 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Tipul Articolului" + +#: includes/fields/class-acf-field-relationship.php:659 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:763 +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy" +msgstr "Taxonomie" + +#: includes/fields/class-acf-field-relationship.php:666 +msgid "Elements" +msgstr "Elemente" + +#: includes/fields/class-acf-field-relationship.php:667 +msgid "Selected elements will be displayed in each result" +msgstr "Elementele selectate vor apărea în fiecare rezultat" + +#: includes/fields/class-acf-field-relationship.php:678 +msgid "Minimum posts" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:687 +msgid "Maximum posts" +msgstr "Numărul maxim de articole" + +#: includes/fields/class-acf-field-relationship.php:791 +#: pro/fields/class-acf-field-gallery.php:800 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s necesită cel puțin %s selectie" +msgstr[1] "%s necesită cel puțin %s selecții" +msgstr[2] "%s necesită cel puțin %s selecții" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:785 +msgctxt "noun" +msgid "Select" +msgstr "Selectează" + +#: includes/fields/class-acf-field-select.php:40 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Un rezultat disponibil, apasă enter pentru a-l selecta." + +#: includes/fields/class-acf-field-select.php:41 +#, php-format +msgctxt "Select2 JS matches_n" +msgid "%d results are available, use up and down arrow keys to navigate." +msgstr "%d rezultate disponibile, apasă tastele sus/jos pentru a naviga." + +#: includes/fields/class-acf-field-select.php:42 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Nici un rezultat" + +#: includes/fields/class-acf-field-select.php:43 +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:44 +#, php-format +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:45 +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:46 +#, php-format +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:47 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Poți selecta un singur element" + +#: includes/fields/class-acf-field-select.php:48 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Poți selecta %d elemente" + +#: includes/fields/class-acf-field-select.php:49 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Se încarcă mai multe rezultate…" + +#: includes/fields/class-acf-field-select.php:50 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Se caută…" + +#: includes/fields/class-acf-field-select.php:51 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Încărcarea a eșuat" + +#: includes/fields/class-acf-field-select.php:387 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "UI stilizat" + +#: includes/fields/class-acf-field-select.php:397 +msgid "Use AJAX to lazy load choices?" +msgstr "Folosiți AJAX pentru a încărca alegerile în modul ”Lazy Load”?" + +#: includes/fields/class-acf-field-select.php:413 +msgid "Specify the value returned" +msgstr "" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Tab" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Plasament" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:713 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "Fără %s" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "None" +msgstr "Nici unul" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Select the taxonomy to be displayed" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Appearance" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Select the appearance of this field" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:779 +msgid "Multiple Values" +msgstr "Valori multiple" + +#: includes/fields/class-acf-field-taxonomy.php:781 +msgid "Multi Select" +msgstr "Selectie multiplă" + +#: includes/fields/class-acf-field-taxonomy.php:783 +msgid "Single Value" +msgstr "O singură valoare" + +#: includes/fields/class-acf-field-taxonomy.php:784 +msgid "Radio Buttons" +msgstr "Butoane radio" + +#: includes/fields/class-acf-field-taxonomy.php:803 +msgid "Create Terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:804 +msgid "Allow new terms to be created whilst editing" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:813 +msgid "Save Terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:814 +msgid "Connect selected terms to the post" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:823 +msgid "Load Terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:824 +msgid "Load value from posts terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:838 +msgid "Term Object" +msgstr "Obiectul Termen" + +#: includes/fields/class-acf-field-taxonomy.php:839 +msgid "Term ID" +msgstr "ID-ul Termenului" + +#: includes/fields/class-acf-field-taxonomy.php:898 +msgid "Error." +msgstr "Eroare." + +#: includes/fields/class-acf-field-taxonomy.php:898 +#, php-format +msgid "User unable to add new %s" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:911 +#, php-format +msgid "%s already exists" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:952 +#, php-format +msgid "%s added" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:998 +msgid "Add" +msgstr "" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-text.php:155 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Limită de caractere" + +#: includes/fields/class-acf-field-text.php:156 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Lasă gol pentru a nu a avea o limită" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Zonă de Text" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Linii" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Setează înălțimea zonei de text" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Adevărat / False" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Url" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "Valoarea trebuie să fie un URL valid" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "Utilizatorul" + +#: includes/fields/class-acf-field-user.php:394 +msgid "Filter by role" +msgstr "Filtrează după rol" + +#: includes/fields/class-acf-field-user.php:402 +msgid "All user roles" +msgstr "Toate rolurile de utilizator" + +#: includes/fields/class-acf-field-user.php:433 +msgid "User Array" +msgstr "" + +#: includes/fields/class-acf-field-user.php:434 +msgid "User Object" +msgstr "" + +#: includes/fields/class-acf-field-user.php:435 +msgid "User ID" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Editor Vizual" + +#: includes/fields/class-acf-field-wysiwyg.php:359 +msgid "Visual" +msgstr "Visual" + +#: includes/fields/class-acf-field-wysiwyg.php:360 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text" + +#: includes/fields/class-acf-field-wysiwyg.php:366 +msgid "Click to initialize TinyMCE" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Tabs" +msgstr "Taburi" + +#: includes/fields/class-acf-field-wysiwyg.php:424 +msgid "Visual & Text" +msgstr "Vizual & Text" + +#: includes/fields/class-acf-field-wysiwyg.php:425 +msgid "Visual Only" +msgstr "Doar Vizual" + +#: includes/fields/class-acf-field-wysiwyg.php:426 +msgid "Text Only" +msgstr "Doar Text" + +#: includes/fields/class-acf-field-wysiwyg.php:433 +msgid "Toolbar" +msgstr "Bară de instrumente" + +#: includes/fields/class-acf-field-wysiwyg.php:443 +msgid "Show Media Upload Buttons?" +msgstr "Arată Butoanele de Încărcare a fișierelor Media?" + +#: includes/fields/class-acf-field-wysiwyg.php:453 +msgid "Delay initialization?" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:454 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "" + +#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 +#: pro/admin/admin-options-page.php:308 +msgid "Edit field group" +msgstr "Editează Grupul de Câmpuri" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "" + +#: includes/forms/form-front.php:103 +#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 +msgid "Update" +msgstr "Actualizează" + +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "Articol Actualizat" + +#: includes/forms/form-front.php:230 +msgid "Spam Detected" +msgstr "" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Articol" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Pagina" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "Formulare" + +#: includes/locations.php:247 +msgid "is equal to" +msgstr "este egal cu" + +#: includes/locations.php:248 +msgid "is not equal to" +msgstr "nu este egal cu" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Atașament" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Comentariu" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Rolul Utilizatorului Curent" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "Super Admin" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Utilizatorul Curent" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "Autentifiat" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "Vezi front-end" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "Vezi back-end" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Pagina Părinte" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Macheta Pagini" + +#: includes/locations/class-acf-location-page-template.php:98 +#: includes/locations/class-acf-location-post-template.php:151 +msgid "Default Template" +msgstr "Format Implicit" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Tipul Pagini" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Front Page" +msgstr "Pagina principală" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Posts Page" +msgstr "Pagina Articolelor" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Top Level Page (no parent)" +msgstr "Pagina primului nivel (fără părinte)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Parent Page (has children)" +msgstr "Pagina părinte (are succesori)" + +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Child Page (has parent)" +msgstr "Pagina Succesor (are părinte)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Categoria Articolului" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Formatul Articolului" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Starea Articolui" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Taxonomia Articolului" + +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "" + +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "Formularul Utilizatorului" + +#: includes/locations/class-acf-location-user-form.php:88 +msgid "Add / Edit" +msgstr "Adaugă / Editează" + +#: includes/locations/class-acf-location-user-form.php:89 +msgid "Register" +msgstr "Înregistrează" + +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "Rolul Utilizatorului" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Piesă" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "%s valoarea este obligatorie" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Câmpuri Avansate Personalizate PRO" + +#: pro/admin/admin-options-page.php:200 +msgid "Publish" +msgstr "Publică" + +#: pro/admin/admin-options-page.php:206 +#, php-format +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-settings-updates.php:78 +msgid "Error. Could not connect to update server" +msgstr "Eroare. Conexiunea cu servărul a fost pierdută" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Actualizări" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Dezactivează Licența" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Activează Licența" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +msgstr "Cod de activare" + +#: 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:92 +msgid "Update Plugin" +msgstr "Actualizează Modulul" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above 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:100 +msgid "Check Again" +msgstr "Verifică din nou" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "Anunț Actualizări" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Clonează" + +#: pro/fields/class-acf-field-clone.php:812 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:829 +msgid "Display" +msgstr "Arată" + +#: pro/fields/class-acf-field-clone.php:830 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:836 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "Câmp necunoscut" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "Grup de câmpuri necunoscut" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:174 +#: pro/fields/class-acf-field-repeater.php:462 +msgid "Add Row" +msgstr "Adaugă o linie nouă" + +#: pro/fields/class-acf-field-flexible-content.php:34 +msgid "layout" +msgstr "schemă" + +#: pro/fields/class-acf-field-flexible-content.php:35 +msgid "layouts" +msgstr "scheme" + +#: pro/fields/class-acf-field-flexible-content.php:36 +msgid "remove {layout}?" +msgstr "înlătură {layout}?" + +#: pro/fields/class-acf-field-flexible-content.php:37 +msgid "This field requires at least {min} {identifier}" +msgstr "Acest câmp necesită cel puțin {min} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:38 +msgid "This field has a limit of {max} {identifier}" +msgstr "Acest câmp are o limită de {max} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:39 +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:40 +msgid "Maximum {label} limit reached ({max} {identifier})" +msgstr "Numărul maxim de {label} a fost atins ({max} {identifier})" + +#: pro/fields/class-acf-field-flexible-content.php:41 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} disponibile (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:42 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} obligatoriu (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:43 +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:273 +#, php-format +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:406 +msgid "Add layout" +msgstr "Adaugă Schema" + +#: pro/fields/class-acf-field-flexible-content.php:407 +msgid "Remove layout" +msgstr "Înlătură Schema" + +#: pro/fields/class-acf-field-flexible-content.php:408 +#: pro/fields/class-acf-field-repeater.php:298 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:548 +msgid "Reorder Layout" +msgstr "Reordonează Schema" + +#: pro/fields/class-acf-field-flexible-content.php:548 +msgid "Reorder" +msgstr "Reordonează" + +#: pro/fields/class-acf-field-flexible-content.php:549 +msgid "Delete Layout" +msgstr "Șterge Schema" + +#: pro/fields/class-acf-field-flexible-content.php:550 +msgid "Duplicate Layout" +msgstr "Copiază Schema" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Add New Layout" +msgstr "Adaugă o Nouă Schemă" + +#: pro/fields/class-acf-field-flexible-content.php:622 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:662 +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Button Label" +msgstr "Buton Etichetă" + +#: pro/fields/class-acf-field-flexible-content.php:671 +msgid "Minimum Layouts" +msgstr "Scheme Minime" + +#: pro/fields/class-acf-field-flexible-content.php:680 +msgid "Maximum Layouts" +msgstr "Scheme Maxime" + +#: pro/fields/class-acf-field-gallery.php:41 +msgid "Add Image to Gallery" +msgstr "Adaugă imagini în Galerie" + +#: pro/fields/class-acf-field-gallery.php:45 +msgid "Maximum selection reached" +msgstr "Selecția maximă atinsă" + +#: pro/fields/class-acf-field-gallery.php:321 +msgid "Length" +msgstr "Lungime" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:373 +msgid "Alt Text" +msgstr "Text alternativ" + +#: pro/fields/class-acf-field-gallery.php:544 +msgid "Add to gallery" +msgstr "Adaugă în galerie" + +#: pro/fields/class-acf-field-gallery.php:548 +msgid "Bulk actions" +msgstr "Acțiuni în masă" + +#: pro/fields/class-acf-field-gallery.php:549 +msgid "Sort by date uploaded" +msgstr "Sortează după data încărcării" + +#: pro/fields/class-acf-field-gallery.php:550 +msgid "Sort by date modified" +msgstr "Sortează după data modficării" + +#: pro/fields/class-acf-field-gallery.php:551 +msgid "Sort by title" +msgstr "Sortează după titlu" + +#: pro/fields/class-acf-field-gallery.php:552 +msgid "Reverse current order" +msgstr "Inversează ordinea curentă" + +#: pro/fields/class-acf-field-gallery.php:570 +msgid "Close" +msgstr "Închide" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Minimum Selection" +msgstr "Selecție minimă" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Maximum Selection" +msgstr "Selecție maximă" + +#: pro/fields/class-acf-field-gallery.php:642 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:643 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:647 +msgid "Append to the end" +msgstr "Adaugă la sfârșit" + +#: pro/fields/class-acf-field-gallery.php:648 +msgid "Prepend to the beginning" +msgstr "Adaugă la început" + +#: pro/fields/class-acf-field-repeater.php:36 +msgid "Minimum rows reached ({min} rows)" +msgstr "Numărul minim de linii a fost atins ({min} rows)" + +#: pro/fields/class-acf-field-repeater.php:37 +msgid "Maximum rows reached ({max} rows)" +msgstr "Numărul maxim de linii a fost atins ({max} rows)" + +#: pro/fields/class-acf-field-repeater.php:335 +msgid "Add row" +msgstr "Adaugă linie" + +#: pro/fields/class-acf-field-repeater.php:336 +msgid "Remove row" +msgstr "Înlătură linie" + +#: pro/fields/class-acf-field-repeater.php:411 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:412 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:422 +msgid "Minimum Rows" +msgstr "Numărul minim de Linii" + +#: pro/fields/class-acf-field-repeater.php:432 +msgid "Maximum Rows" +msgstr "Numărul maxim de Linii" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "Nu există nicio pagină de opțiuni" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "Opțiuni" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Opțiunile au fost actualizate" + +#: pro/updates.php:97 +#, php-format +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." + +#. Plugin URI of the plugin/theme +msgid "https://www.advancedcustomfields.com/" +msgstr "" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "" + +#~ msgid "No toggle fields available" +#~ msgstr "Nu sunt câmpuri de comutare disponibile" + +#~ msgid "Parent fields" +#~ msgstr "Câpuri parinte" + +#~ msgid "Sibling fields" +#~ msgstr "Câmpuri copil" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportă Grupurile de Câmpuri în PHP" + +#~ msgid "Download export file" +#~ msgstr "Descarcă fișierul de export" + +#~ msgid "Generate export code" +#~ msgstr "Generează codul de export" + +#~ msgid "Import" +#~ msgstr "Importă" + +#~ msgid "Locating" +#~ msgstr "Localizare" + +#~ msgid "No embed found for the given URL." +#~ msgstr "Nu a fost găsit nici un oembed pentru URL introdus." + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Câmpul Tab nu va fi afișat corect când vei adauga un Câmp de tipul Tabel " +#~ "de stiluri repetitiv sau un Câmp de tipul Schemă de Conținut Flexibil" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Folosește \"Tab Fields\" pentru o mai ușoară organizare și grupare a " +#~ "câmpurilor." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Toate câmpurile care urmează după acest \"tab field\" (sau până când un " +#~ "alt \"tab field\" este definit) vor fi grupate împreună folosind " +#~ "eticheta acestui câmp ca fiind Titlul Tabului." + +#~ msgid "Taxonomy Term" +#~ msgstr "Termenul Taxonomiei" + +#~ msgid "See what's new in" +#~ msgstr "Vezi ce este nou în" + +#~ msgid "version" +#~ msgstr "versiunea" + +#~ msgid "Getting Started" +#~ msgstr "Pentru început" + +#~ msgid "Field Types" +#~ msgstr "Tiurile Câmpului" + +#~ msgid "Functions" +#~ msgstr "Funcții" + +#~ msgid "Actions" +#~ msgstr "Acțiuni" + +#~ msgid "'How to' guides" +#~ msgstr "Ghiduri 'Cum să...'" + +#~ msgid "Tutorials" +#~ msgstr "Tutoriale" + +#~ msgid "Created by" +#~ msgstr "Creat de" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Suces. Unealta import a adaugat %s grupuri de câmpuri: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Atenție. Unealta import a detectat %s grupuri de câmpuri care " +#~ "exista deja și a ignorat: %s" + +#~ msgid "Upgrade" +#~ msgstr "Îmbunătățire" + +#~ msgid "Error" +#~ msgstr "Eroare" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Trage și eliberează pentru a ordona" + +#~ msgid "See what's new" +#~ msgstr "Află ce este nou" + +#~ msgid "Done" +#~ msgstr "Terminare" + +#~ msgid "Today" +#~ msgstr "Azi" + +#~ msgid "Show a different month" +#~ msgstr "Arată o altă lună" + +#~ msgid "Return format" +#~ msgstr "Fromatul rezultat" + +#~ msgid "uploaded to this post" +#~ msgstr "încărcate la acest articol" + +#~ msgid "File Name" +#~ msgstr "Numele fișierului" + +#~ msgid "File Size" +#~ msgstr "Mărimea fișierului" + +#~ msgid "No File selected" +#~ msgstr "Nu a fost selectat nici un fișier" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "" +#~ "Vă rugăm să rețineți că toate textele vor fi mai întâi trecute prin " +#~ "funcția wp" + +#~ msgid "Select" +#~ msgstr "Selectează" + +#~ msgid "Warning" +#~ msgstr "Atenție" + +#~ msgid "eg. Show extra content" +#~ msgstr "ex. Arată extra conținut" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Eroare de conexiune. Îmi pare rău, încearcă mai târziu" + +#~ msgid "Save Options" +#~ msgstr "Salvează Opțiuni" + +#~ msgid "License" +#~ msgstr "Licență" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Pentru a permite actualizări, te rog să introduci codul de activare în " +#~ "câmpul de mai jos. Dacă nu deții un cod de activare, te rog vizitează" + +#~ msgid "details & pricing" +#~ msgstr "detalii & prețuri" + +#~ 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, te rog să introduci codul de activare pe " +#~ "pagina Actualizări. Dacă nu ai un cod de activare, te " +#~ "rog sa vizitezi pagina detalii & prețuri" + +#~ msgid "Hide / Show All" +#~ msgstr "Selectează / Deselectează tot" + +#~ msgid "Show Field Keys" +#~ msgstr "Arată Cheile Câmpului" + +#~ msgid "Pending Review" +#~ msgstr "Așteaptă Revizuirea" + +#~ msgid "Draft" +#~ msgstr "Ciornă" + +#~ msgid "Future" +#~ msgstr "Viitor" + +#~ msgid "Private" +#~ msgstr "Privat" + +#~ msgid "Revision" +#~ msgstr "Revizie" + +#~ msgid "Trash" +#~ msgstr "Coșul de gunoi" + +#~ msgid "Import / Export" +#~ msgstr "Importă / Exportă" + +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "Grupurile de câmpuri sunt create în ordine crescătoare" + +#~ msgid "ACF PRO Required" +#~ msgstr "Este necesară versiunea ACF RPO" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "Am detectat o problemă care necesită atenția ta: Acest website folosește " +#~ "add-onuri premium (%s) care nu mai sunt compatibile cu ACF." + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Nu te panica, poți reveni oricând la o versiune anterioară și poți folosi " +#~ "în continuare ACF așa cum știi!" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Revenire la versiunea %s a ACF" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Află de ce ACF PRO este cerut pentru site-ul tău" + +#~ msgid "Update Database" +#~ msgstr "Actualizarea Bazei de Date" + +#~ msgid "Data Upgrade" +#~ msgstr "Actualizare Date" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Actualizarea datelor a fost făcută cu succes." + +#~ msgid "Data is at the latest version." +#~ msgstr "Datele sunt actualizate." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "1 câmp obligatoriu este gol" +#~ msgstr[1] "%s câmpuri obligatorii sunt goale" +#~ msgstr[2] "" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Încarcă și Salvează Termenii la Articol" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Încarcă valoarea pe baza termenilor articolului și actualizează termenii " +#~ "în momentul salvării" diff --git a/lang/pro/acf-ru_RU.po b/lang/pro/acf-ru_RU.po new file mode 100644 index 0000000..8f2e550 --- /dev/null +++ b/lang/pro/acf-ru_RU.po @@ -0,0 +1,4335 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2018-08-18 18:25+0300\n" +"PO-Revision-Date: 2019-01-05 10:08+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: \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: Poedit 1.8.1\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:80 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:392 includes/admin/admin.php:117 +msgid "Field Groups" +msgstr "Группы полей" + +#: acf.php:393 +msgid "Field Group" +msgstr "Группа полей" + +#: acf.php:394 acf.php:426 includes/admin/admin.php:118 +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Add New" +msgstr "Добавить" + +#: acf.php:395 +msgid "Add New Field Group" +msgstr "Создание новой группы полей" + +#: acf.php:396 +msgid "Edit Field Group" +msgstr "Редактирование группы полей" + +#: acf.php:397 +msgid "New Field Group" +msgstr "Новая группа полей" + +#: acf.php:398 +msgid "View Field Group" +msgstr "Просмотреть группу полей" + +#: acf.php:399 +msgid "Search Field Groups" +msgstr "Поиск групп полей" + +#: acf.php:400 +msgid "No Field Groups found" +msgstr "Группы полей не найдены." + +#: acf.php:401 +msgid "No Field Groups found in Trash" +msgstr "Группы полей не найдены в корзине." + +#: acf.php:424 includes/admin/admin-field-group.php:202 +#: includes/admin/admin-field-groups.php:510 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "Поля" + +#: acf.php:425 +msgid "Field" +msgstr "Поле" + +#: acf.php:427 +msgid "Add New Field" +msgstr "Добавить новое поле" + +#: acf.php:428 +msgid "Edit Field" +msgstr "Изменить поле" + +#: acf.php:429 includes/admin/views/field-group-fields.php:41 +#: includes/admin/views/settings-info.php:105 +msgid "New Field" +msgstr "Новое поле" + +#: acf.php:430 +msgid "View Field" +msgstr "Просмотреть поле" + +#: acf.php:431 +msgid "Search Fields" +msgstr "Поиск полей" + +#: acf.php:432 +msgid "No Fields found" +msgstr "Поля не найдены" + +#: acf.php:433 +msgid "No Fields found in Trash" +msgstr "Поля не найдены в Корзине" + +#: acf.php:472 includes/admin/admin-field-group.php:384 +#: includes/admin/admin-field-groups.php:567 +msgid "Inactive" +msgstr "Неактивно" + +#: acf.php:477 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Неактивен (%s)" +msgstr[1] "Неактивны (%s)" +msgstr[2] "Неактивно (%s)" + +#: includes/admin/admin-field-group.php:68 +#: includes/admin/admin-field-group.php:69 +#: includes/admin/admin-field-group.php:71 +msgid "Field group updated." +msgstr "Группа полей обновлена." + +#: includes/admin/admin-field-group.php:70 +msgid "Field group deleted." +msgstr "Группа полей удалена." + +#: includes/admin/admin-field-group.php:73 +msgid "Field group published." +msgstr "Группа полей опубликована." + +#: includes/admin/admin-field-group.php:74 +msgid "Field group saved." +msgstr "Группа полей сохранена." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group submitted." +msgstr "Группа полей отправлена." + +#: includes/admin/admin-field-group.php:76 +msgid "Field group scheduled for." +msgstr "Группа полей запланирована на" + +#: includes/admin/admin-field-group.php:77 +msgid "Field group draft updated." +msgstr "Черновик группы полей обновлен." + +#: includes/admin/admin-field-group.php:153 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "Имя поля не должно начинаться со строки \"field_\"" + +#: includes/admin/admin-field-group.php:154 +msgid "This field cannot be moved until its changes have been saved" +msgstr "Это поле не может быть перемещено до сохранения изменений" + +#: includes/admin/admin-field-group.php:155 +msgid "Field group title is required" +msgstr "Введите название для группы полей" + +#: includes/admin/admin-field-group.php:156 +msgid "Move to trash. Are you sure?" +msgstr "Отправить в корзину. Вы уверены?" + +#: includes/admin/admin-field-group.php:157 +msgid "No toggle fields available" +msgstr "Нет доступных полей с выбором значений." + +#: includes/admin/admin-field-group.php:158 +msgid "Move Custom Field" +msgstr "Переместить поле" + +# Maybe non-translateable too. +#: includes/admin/admin-field-group.php:159 +msgid "Checked" +msgstr "Выбрано" + +#: includes/admin/admin-field-group.php:160 includes/api/api-field.php:289 +msgid "(no label)" +msgstr "(нет заголовка)" + +#: includes/admin/admin-field-group.php:161 +msgid "(this field)" +msgstr " (текущее поле)" + +#: includes/admin/admin-field-group.php:162 +#: includes/api/api-field-group.php:751 +msgid "copy" +msgstr "копия" + +#: includes/admin/admin-field-group.php:163 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:4055 +msgid "or" +msgstr "или" + +#: includes/admin/admin-field-group.php:164 +msgid "Null" +msgstr "null" + +#: includes/admin/admin-field-group.php:203 +msgid "Location" +msgstr "Условия отображения" + +#: includes/admin/admin-field-group.php:204 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "Настройки" + +#: includes/admin/admin-field-group.php:354 +msgid "Field Keys" +msgstr "Ключи полей" + +#: includes/admin/admin-field-group.php:384 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Активные" + +#: includes/admin/admin-field-group.php:750 +msgid "Move Complete." +msgstr "Перемещение выполнено." + +#: includes/admin/admin-field-group.php:751 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Теперь поле %s может быть найдено в группе полей %s" + +#: includes/admin/admin-field-group.php:752 +msgid "Close Window" +msgstr "Закрыть окно" + +#: includes/admin/admin-field-group.php:793 +msgid "Please select the destination for this field" +msgstr "Пожалуйста выберите местоположение для этого поля" + +#: includes/admin/admin-field-group.php:800 +msgid "Move Field" +msgstr "Переместить поле" + +#: includes/admin/admin-field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Активна (%s)" +msgstr[1] "Активно (%s)" +msgstr[2] "Активны (%s)" + +#: includes/admin/admin-field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "Группа полей была дублирована. %s" + +#: includes/admin/admin-field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s группа полей дублирована." +msgstr[1] "%s группы полей дублировано." +msgstr[2] "%s групп полей дублировано." + +#: includes/admin/admin-field-groups.php:227 +#, php-format +msgid "Field group synchronised. %s" +msgstr "Группу полей было синхронизировано. %s" + +#: includes/admin/admin-field-groups.php:231 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s группа полей синхронизирована." +msgstr[1] "%s группы полей синхронизированы." +msgstr[2] "%s групп полей синхронизировано." + +#: includes/admin/admin-field-groups.php:394 +#: includes/admin/admin-field-groups.php:557 +msgid "Sync available" +msgstr "Синхронизация доступна" + +#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:370 +msgid "Title" +msgstr "Заголовок" + +#: includes/admin/admin-field-groups.php:508 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/install-network.php:21 +#: includes/admin/views/install-network.php:29 +#: pro/fields/class-acf-field-gallery.php:397 +msgid "Description" +msgstr "Описание" + +#: includes/admin/admin-field-groups.php:509 +msgid "Status" +msgstr "Статус" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:607 +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "" +"Настраивайте WordPress с помощью интуитивно понятных и мощных дополнительных " +"полей." + +#: includes/admin/admin-field-groups.php:609 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Журнал изменений" + +#: includes/admin/admin-field-groups.php:614 +#, php-format +msgid "See what's new in version %s." +msgstr "Что нового в версии %s." + +#: includes/admin/admin-field-groups.php:617 +msgid "Resources" +msgstr "Источники" + +#: includes/admin/admin-field-groups.php:619 +msgid "Website" +msgstr "Сайт" + +#: includes/admin/admin-field-groups.php:620 +msgid "Documentation" +msgstr "Документация" + +#: includes/admin/admin-field-groups.php:621 +msgid "Support" +msgstr "Поддержка" + +#: includes/admin/admin-field-groups.php:623 +msgid "Pro" +msgstr "Pro" + +#: includes/admin/admin-field-groups.php:628 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "Спасибо вам за использование ACF." + +#: includes/admin/admin-field-groups.php:667 +msgid "Duplicate this item" +msgstr "Дублировать элемент" + +#: includes/admin/admin-field-groups.php:667 +#: includes/admin/admin-field-groups.php:683 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Duplicate" +msgstr "Дублировать" + +#: includes/admin/admin-field-groups.php:700 +#: includes/fields/class-acf-field-google-map.php:164 +#: includes/fields/class-acf-field-relationship.php:674 +msgid "Search" +msgstr "Поиск" + +#: includes/admin/admin-field-groups.php:759 +#, php-format +msgid "Select %s" +msgstr "Выберите %s" + +#: includes/admin/admin-field-groups.php:767 +msgid "Synchronise field group" +msgstr "Синхронизировать группу полей" + +#: includes/admin/admin-field-groups.php:767 +#: includes/admin/admin-field-groups.php:797 +msgid "Sync" +msgstr "Синхронизация" + +#: includes/admin/admin-field-groups.php:779 +msgid "Apply" +msgstr "Применить" + +#: includes/admin/admin-field-groups.php:797 +msgid "Bulk Actions" +msgstr "Массовые операции" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "Инструменты" + +#: includes/admin/admin.php:113 +#: includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "Группы полей" + +#: includes/admin/install-network.php:88 includes/admin/install.php:70 +#: includes/admin/install.php:121 +msgid "Upgrade Database" +msgstr "Обновить базу данных" + +#: includes/admin/install-network.php:140 +msgid "Review sites & upgrade" +msgstr "Проверить сайт и обновить" + +#: includes/admin/install.php:187 +msgid "Error validating request" +msgstr "Возникла ошибка при обработке запроса" + +#: includes/admin/install.php:210 includes/admin/views/install.php:104 +msgid "No updates available." +msgstr "На данный момент обновлений нет." + +#: includes/admin/settings-addons.php:51 +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "Дополнения" + +#: includes/admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "Ошибка. Невозможно загрузить список дополнений" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Информация" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "Что нового" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "Экспорт групп полей" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +msgid "Generate PHP" +msgstr "Генерировать PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "Группы полей не выбраны" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "Импортировано %s группу полей." +msgstr[1] "Импортировано %s группы полей" +msgstr[2] "Импортировано %s групп полей" + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "Выберите группы полей" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Выберите группы полей, которые вы хотите экспортировать, а также метод " +"экспорта. Используйте кнопку Загрузить файл для загрузки JSON файла " +"или Генерировать код для получения кода, который можно интегрировать " +"в шаблон." + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +msgid "Export File" +msgstr "Экспорт файла" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"Указанный код может быть использован для регистрации группы полей " +"непосредственно в шаблоне. Локальная группа полей может предоставить много " +"преимуществ в виде большей скорости загрузки, упрощения контроля версий и " +"динамических полей. Просто скопируйте и вставьте указанный ниже код в файл " +"functions.php или подключите его через внешний файл." + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "Скопировать в буфер обмена" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "Скопировано" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "Импорт групп полей" + +#: includes/admin/tools/class-acf-admin-tool-import.php:61 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "Выберите файл конфигурации в формате JSON для импорта групп полей." + +#: includes/admin/tools/class-acf-admin-tool-import.php:66 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "Выбрать файл" + +#: includes/admin/tools/class-acf-admin-tool-import.php:76 +msgid "Import File" +msgstr "Импортировать файл" + +#: includes/admin/tools/class-acf-admin-tool-import.php:100 +#: includes/fields/class-acf-field-file.php:170 +msgid "No file selected" +msgstr "Файл не выбран" + +#: includes/admin/tools/class-acf-admin-tool-import.php:113 +msgid "Error uploading file. Please try again" +msgstr "Ошибка при загрузке файла. Попробуйте еще раз" + +#: includes/admin/tools/class-acf-admin-tool-import.php:122 +msgid "Incorrect file type" +msgstr "Неправильный тип файла" + +#: includes/admin/tools/class-acf-admin-tool-import.php:139 +msgid "Import file empty" +msgstr "Импортируемый файл пуст" + +#: includes/admin/tools/class-acf-admin-tool-import.php:247 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Импортировано %s группу полей" +msgstr[1] "Импортировано %s группы полей" +msgstr[2] "Импортировано %s групп полей" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "Условная логика" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "Показывать это поле, если" + +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:80 +msgid "and" +msgstr "и" + +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Добавить группу условий" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:424 +#: pro/fields/class-acf-field-repeater.php:294 +msgid "Drag to reorder" +msgstr "Потяните для изменения порядка" + +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "Редактировать поле" + +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:152 +#: includes/fields/class-acf-field-image.php:139 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:357 +msgid "Edit" +msgstr "Редактировать" + +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "Дублировать поле" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "Переместить поле в другую группу" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "Переместить" + +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "Удалить поле" + +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:570 +msgid "Delete" +msgstr "Удалить" + +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "Ярлык поля" + +#: includes/admin/views/field-group-field.php:66 +msgid "This is the name which will appear on the EDIT page" +msgstr "Имя поля на странице редактирования" + +#: includes/admin/views/field-group-field.php:75 +msgid "Field Name" +msgstr "Имя поля" + +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Допускаются буквы, цифры, а также символы _ и -" + +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "Тип поля" + +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "Инструкции" + +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Инструкции, которые отображаются при редактировании" + +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "Обязательное" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "Атрибуты" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "ширина" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "Закрыть поле" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Сортировка" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:428 +#: pro/fields/class-acf-field-flexible-content.php:596 +msgid "Label" +msgstr "Ярлык" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:939 +#: pro/fields/class-acf-field-flexible-content.php:610 +msgid "Name" +msgstr "Имя" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Ключ" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Тип" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Нет полей. Нажмите на кнопку + Добавить поле, чтобы создать " +"свое первое поле." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Добавить поле" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Условия" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "Стиль отображения" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Стандартный" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Минимальный" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Расположение группы полей" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Вверху под заголовком" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Внизу после содержимого" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "На боковой панели" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Расположение меток" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "Вверху" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "Слева" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Расположение подсказок" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Под метками" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Под полями" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Порядковый номер" + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "" +"Если на одной странице одновременно выводятся несколько групп полей, то они " +"сортируются по порядковому номеру в порядке возрастания" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Отображаемое описание в списке групп" + +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "Ссылка" + +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "Текстовый редактор" + +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "Цитата" + +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "Обсуждение" + +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "Комментарии" + +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "Редакции" + +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "Ярлык" + +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "Автор" + +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "Формат" + +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "Атрибуты страницы" + +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:688 +msgid "Featured Image" +msgstr "Миниатюра записи" + +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "Рубрики" + +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "Метки" + +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "Отправить обратные ссылки" + +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "Скрывание блоков" + +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "" +"Выберите блоки, которые необходимо скрыть на странице редактирования." + +#: includes/admin/views/field-group-options.php:129 +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/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Отображать группу полей, если" + +#: includes/admin/views/install-network.php:4 +msgid "Upgrade Sites" +msgstr "Обновить сайты" + +#: includes/admin/views/install-network.php:9 +#: includes/admin/views/install.php:3 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "Обновление базы данных Advanced Custom Fields" + +#: includes/admin/views/install-network.php:11 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" +"Следующие сайты требуют обновления базы данных. Выберите сайты для " +"обновления и нажмите %s." + +#: includes/admin/views/install-network.php:20 +#: includes/admin/views/install-network.php:28 +msgid "Site" +msgstr "Сайт" + +#: includes/admin/views/install-network.php:48 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "Сайт требует обновления базы данных с %s на %s" + +#: includes/admin/views/install-network.php:50 +msgid "Site is up to date" +msgstr "Сайт обновлен" + +#: includes/admin/views/install-network.php:63 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" +"Обновление базы данных закончено. Вернуться к панели " +"управления сетью" + +#: includes/admin/views/install-network.php:102 +#: includes/admin/views/install-notice.php:42 +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/install-network.php:158 +msgid "Upgrade complete" +msgstr "Обновление завершено" + +#: includes/admin/views/install-network.php:162 +#: includes/admin/views/install.php:9 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Обновление данных до версии %s" + +#: includes/admin/views/install-notice.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Повторитель" + +#: includes/admin/views/install-notice.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Гибкое содержание" + +#: includes/admin/views/install-notice.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Галерея" + +#: includes/admin/views/install-notice.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Страница с опциями" + +#: includes/admin/views/install-notice.php:26 +msgid "Database Upgrade Required" +msgstr "Необходимо обновление базы данных" + +#: includes/admin/views/install-notice.php:28 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Благодарим вас за обновление до %s v%s!" + +#: includes/admin/views/install-notice.php:28 +msgid "" +"Before you start using the new awesome features, please update your database " +"to the newest version." +msgstr "" +"Прежде чем вы начнете использовать классные новые функции, обновите " +"пожалуйста базу данных до последней версии." + +#: includes/admin/views/install-notice.php:31 +#, php-format +msgid "" +"Please also ensure any premium add-ons (%s) have first been updated to the " +"latest version." +msgstr "" +"Пожалуйста, убедитесь, что любые премиум-дополнения (%s) были предварительно " +"обновлены до последней версии." + +#: includes/admin/views/install.php:7 +msgid "Reading upgrade tasks..." +msgstr "Чтения задач обновления..." + +#: includes/admin/views/install.php:11 +#, php-format +msgid "Database Upgrade complete. See what's new" +msgstr "" +"Обновление базы данных завершено. Ознакомьтесь со списком " +"изменений" + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Загрузить и установить" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Установлено" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Добро пожаловать в Advanced Custom Fields" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"Спасибо за обновление! ACF %s стал больше и лучше. Надеемся, что вам " +"понравится." + +#: includes/admin/views/settings-info.php:17 +msgid "A smoother custom field experience" +msgstr "Максимум удобства и возможностей" + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Usability" +msgstr "Больше комфорта" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"Благодаря популярной библиотеке Select2 мы повысили удобство и скорость " +"работы многих типов полей, таких как Объект записи, Ссылка на страницу, " +"Таксономия и Выбор." + +#: includes/admin/views/settings-info.php:27 +msgid "Improved Design" +msgstr "Больше дизайна" + +#: includes/admin/views/settings-info.php:28 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"Многие поля поменяли свой внешний вид, чтобы сделать ACF действительно " +"красивым. Значительные изменения коснулись полей Галерея, Взаимоотношение и " +"oEmbed (новое поле)!" + +#: includes/admin/views/settings-info.php:32 +msgid "Improved Data" +msgstr "Больше данных" + +#: includes/admin/views/settings-info.php:33 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"Новая архитектура позволяет вложенным полям существовать независимо от " +"родительских. Просто перетаскивайте их из одного родительского поля в другое." + +#: includes/admin/views/settings-info.php:39 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Забудьте про дополнения. Встречайте PRO" + +#: includes/admin/views/settings-info.php:44 +msgid "Introducing ACF PRO" +msgstr "Знакомство с ACF PRO" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "Мы кардинально упрощаем внедрение премиального функционала!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Все 4 дополнения Premium включены в новой Pro-версии ACF " +"и в лицензии разработчика, и в персональной лицензии. Еще никогда функционал " +"Premium не был так доступен!" + +#: includes/admin/views/settings-info.php:50 +msgid "Powerful Features" +msgstr "Впечатляющий функционал" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"ACF PRO содержит ряд мощных инструментов, таких как Повторяющиеся данные, " +"Гибкое содержание и Галерея. Также есть возможность создавать дополнительные " +"страницы настроек в панели администратора." + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "Узнайте больше о возможностях ACF PRO." + +#: includes/admin/views/settings-info.php:56 +msgid "Easy Upgrading" +msgstr "Простое обновление" + +#: includes/admin/views/settings-info.php:57 +#, php-format +msgid "" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" +msgstr "" +"Для перехода на ACF PRO просто авторизуйтесь личном кабинете и получите бесплатную лицензию!" + +#: includes/admin/views/settings-info.php:58 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" +msgstr "" +"Мы также подготовили руководство по переходу, чтобы " +"ответить на все ваши вопросы. Но если все же они появятся, свяжитесь с нашей " +"командой поддержки через систему помощи." + +#: includes/admin/views/settings-info.php:66 +msgid "Under the Hood" +msgstr "Что под капотом" + +#: includes/admin/views/settings-info.php:71 +msgid "Smarter field settings" +msgstr "Умные настройки полей" + +#: includes/admin/views/settings-info.php:72 +msgid "ACF now saves its field settings as individual post objects" +msgstr "ACF теперь сохраняет настройки поля как отдельный объект записи" + +#: includes/admin/views/settings-info.php:76 +msgid "More AJAX" +msgstr "Больше AJAX" + +#: includes/admin/views/settings-info.php:77 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "Поиск на AJAX в полях значительно ускоряет загрузку страниц" + +#: includes/admin/views/settings-info.php:81 +msgid "Local JSON" +msgstr "Локальный JSON" + +#: includes/admin/views/settings-info.php:82 +msgid "New auto export to JSON feature improves speed" +msgstr "Новый автоматический экспорт в JSON повышает скорость работы" + +#: includes/admin/views/settings-info.php:88 +msgid "Better version control" +msgstr "Контроль версий" + +#: includes/admin/views/settings-info.php:89 +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" +msgstr "" +"Новый автоматический экспорт в JSON позволяет контролировать версию настроек " +"полей" + +#: includes/admin/views/settings-info.php:93 +msgid "Swapped XML for JSON" +msgstr "Swapped XML для JSON" + +#: includes/admin/views/settings-info.php:94 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "Импорт / Экспорт теперь использует JSON вместо XML" + +#: includes/admin/views/settings-info.php:98 +msgid "New Forms" +msgstr "Новые формы" + +#: includes/admin/views/settings-info.php:99 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "" +"Поля теперь могут быть отображены в комментариях, виджетах и " +"пользовательских формах!" + +#: includes/admin/views/settings-info.php:106 +msgid "A new field for embedding content has been added" +msgstr "Добавлено новое поле для встраиваемого контента" + +#: includes/admin/views/settings-info.php:110 +msgid "New Gallery" +msgstr "Новая галерея" + +#: includes/admin/views/settings-info.php:111 +msgid "The gallery field has undergone a much needed facelift" +msgstr "Поле галереи претерпело столь необходимое визуальное преображение" + +#: includes/admin/views/settings-info.php:115 +msgid "New Settings" +msgstr "Новые настройки" + +#: includes/admin/views/settings-info.php:116 +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "" +"В настройках группы полей теперь можно изменять расположение меток и " +"подсказок" + +#: includes/admin/views/settings-info.php:122 +msgid "Better Front End Forms" +msgstr "Улучшенные формы" + +#: includes/admin/views/settings-info.php:123 +msgid "acf_form() can now create a new post on submission" +msgstr "acf_form() теперь может создавать новую запись о представлении" + +#: includes/admin/views/settings-info.php:127 +msgid "Better Validation" +msgstr "Улучшенное подтверждение" + +#: includes/admin/views/settings-info.php:128 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "" +"Подтверждение форм теперь происходит через PHP + AJAX вместо простого JS" + +#: includes/admin/views/settings-info.php:132 +msgid "Relationship Field" +msgstr "Взаимоотношение" + +#: includes/admin/views/settings-info.php:133 +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "" +"Новая настройка поля Взаимоотношения для Фильтров (Поиск, Тип записи, " +"Таксономия)" + +#: includes/admin/views/settings-info.php:139 +msgid "Moving Fields" +msgstr "Перемещение полей" + +#: includes/admin/views/settings-info.php:140 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" +msgstr "" +"Новый функционал групп полей позволяет перемещать поля между группами и " +"родительскими полями" + +#: includes/admin/views/settings-info.php:144 +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Ссылка на страницу" + +#: includes/admin/views/settings-info.php:145 +msgid "New archives group in page_link field selection" +msgstr "Новая группа архивов в выборе поля page_link" + +#: includes/admin/views/settings-info.php:149 +msgid "Better Options Pages" +msgstr "Страницы настроек" + +#: includes/admin/views/settings-info.php:150 +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" +msgstr "" +"Новые функции для страницы настроек позволяют создавать и родительские, и " +"дочерние меню" + +#: includes/admin/views/settings-info.php:157 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Думаем, вам понравятся изменения в %s." + +#: includes/api/api-helpers.php:1028 +msgid "Thumbnail" +msgstr "Миниатюра" + +#: includes/api/api-helpers.php:1029 +msgid "Medium" +msgstr "Средний" + +#: includes/api/api-helpers.php:1030 +msgid "Large" +msgstr "Большой" + +#: includes/api/api-helpers.php:1079 +msgid "Full Size" +msgstr "Полный" + +#: includes/api/api-helpers.php:1321 includes/api/api-helpers.php:1894 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(нет заголовка)" + +#: includes/api/api-helpers.php:3976 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "Изображение не должно быть уже чем %d пикселей." + +#: includes/api/api-helpers.php:3981 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "Изображение не должно быть шире чем %d пикселей." + +#: includes/api/api-helpers.php:3997 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "Изображение должно иметь высоту как минимум %d пикселей." + +#: includes/api/api-helpers.php:4002 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "Изображение должно иметь высоту не более чем %d пикселей." + +#: includes/api/api-helpers.php:4020 +#, php-format +msgid "File size must be at least %s." +msgstr "Размер файла должен быть не менее чем %s." + +#: includes/api/api-helpers.php:4025 +#, php-format +msgid "File size must must not exceed %s." +msgstr "Размер файла должен быть не более чем %s." + +#: includes/api/api-helpers.php:4059 +#, php-format +msgid "File type must be %s." +msgstr "Файл должен иметь тип: %s." + +#: includes/assets.php:172 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "Внесенные вами изменения будут утеряны, если вы покинете эту страницу" + +#: includes/assets.php:175 includes/fields/class-acf-field-select.php:259 +msgctxt "verb" +msgid "Select" +msgstr "Выбрать" + +#: includes/assets.php:176 +msgctxt "verb" +msgid "Edit" +msgstr "Изменить" + +#: includes/assets.php:177 +msgctxt "verb" +msgid "Update" +msgstr "Обновить" + +#: includes/assets.php:178 +msgid "Uploaded to this post" +msgstr "Загружено для этой записи" + +#: includes/assets.php:179 +msgid "Expand Details" +msgstr "Показать детали" + +#: includes/assets.php:180 +msgid "Collapse Details" +msgstr "Скрыть детали" + +#: includes/assets.php:181 +msgid "Restricted" +msgstr "Ограничено" + +#: includes/assets.php:182 includes/fields/class-acf-field-image.php:67 +msgid "All images" +msgstr "Все изображения" + +#: includes/assets.php:185 +msgid "Validation successful" +msgstr "Проверка успешно выполнена" + +#: includes/assets.php:186 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "Проверка не пройдена" + +#: includes/assets.php:187 +msgid "1 field requires attention" +msgstr "1 поле требует вашего внимания" + +#: includes/assets.php:188 +#, php-format +msgid "%d fields require attention" +msgstr "%d полей требуют вашего внимания" + +#: includes/assets.php:191 +msgid "Are you sure?" +msgstr "Вы уверены?" + +#: includes/assets.php:192 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Да" + +#: includes/assets.php:193 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "Нет" + +#: includes/assets.php:194 includes/fields/class-acf-field-file.php:154 +#: includes/fields/class-acf-field-image.php:141 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:358 +#: pro/fields/class-acf-field-gallery.php:546 +msgid "Remove" +msgstr "Убрать" + +#: includes/assets.php:195 +msgid "Cancel" +msgstr "Отмена" + +#: includes/assets.php:198 +msgid "Has any value" +msgstr "заполнено" + +#: includes/assets.php:199 +msgid "Has no value" +msgstr "пустое" + +#: includes/assets.php:200 +msgid "Value is equal to" +msgstr "равно" + +#: includes/assets.php:201 +msgid "Value is not equal to" +msgstr "не равно" + +#: includes/assets.php:202 +msgid "Value matches pattern" +msgstr "соответствует выражению" + +#: includes/assets.php:203 +msgid "Value contains" +msgstr "содержит" + +#: includes/assets.php:204 +msgid "Value is greater than" +msgstr "больше чем" + +#: includes/assets.php:205 +msgid "Value is less than" +msgstr "меньше чем" + +#: includes/assets.php:206 +msgid "Selection is greater than" +msgstr "выбрано больше чем" + +#: includes/assets.php:207 +msgid "Selection is less than" +msgstr "выбрано меньше чем" + +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "Тип поля не существует" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "Неизвестно" + +#: includes/fields.php:349 +msgid "Basic" +msgstr "Основное" + +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Содержание" + +#: includes/fields.php:351 +msgid "Choice" +msgstr "Выбор" + +#: includes/fields.php:352 +msgid "Relational" +msgstr "Отношение" + +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:354 +#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:567 +#: pro/fields/class-acf-field-flexible-content.php:616 +#: pro/fields/class-acf-field-repeater.php:443 +msgid "Layout" +msgstr "Блок" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "Аккордеон" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "Развернуто" + +#: includes/fields/class-acf-field-accordion.php:100 +msgid "Display this accordion as open on page load." +msgstr "Отображать в развернутом виде при загрузке страницы" + +#: includes/fields/class-acf-field-accordion.php:109 +msgid "Multi-expand" +msgstr "Разворачивание нескольких секций" + +#: includes/fields/class-acf-field-accordion.php:110 +msgid "Allow this accordion to open without closing others." +msgstr "Разрешить одновременное разворачивание нескольких секций" + +#: includes/fields/class-acf-field-accordion.php:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "Разделитель" + +#: includes/fields/class-acf-field-accordion.php:120 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "" +"Определяет конечную точку предыдущего аккордеона. Данный аккордеон будет " +"невидим." + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Группа кнопок" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:359 +msgid "Choices" +msgstr "Варианты" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:360 +msgid "Enter each choice on a new line." +msgstr "Введите каждый вариант выбора на новую строку." + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:360 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"Для большего контроля, вы можете ввести значение и ярлык по следующему " +"формату:" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:360 +msgid "red : Red" +msgstr "red : Красный" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:412 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:377 +#: includes/fields/class-acf-field-taxonomy.php:784 +#: includes/fields/class-acf-field-user.php:409 +msgid "Allow Null?" +msgstr "Разрешить пустое значение?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:146 +#: includes/fields/class-acf-field-select.php:368 +#: includes/fields/class-acf-field-text.php:119 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:397 +msgid "Default Value" +msgstr "Значение по умолчанию" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:147 +#: includes/fields/class-acf-field-text.php:120 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:398 +msgid "Appears when creating a new post" +msgstr "Заполняется при создании новой записи" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "Горизонтальная" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "Вертикальная" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-image.php:205 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:829 +msgid "Return Value" +msgstr "Возвращаемое значение" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-image.php:206 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +msgid "Specify the returned value on front end" +msgstr "Укажите возвращаемое значение для поля" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:427 +msgid "Value" +msgstr "Значение" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:429 +msgid "Both (Array)" +msgstr "Оба (массив)" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Checkbox" +msgstr "Флажок (checkbox)" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Выбрать все" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Добавить новый вариант" + +#: includes/fields/class-acf-field-checkbox.php:353 +msgid "Allow Custom" +msgstr "Разрешить пользовательские" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "Разрешить добавление пользовательских вариантов" + +#: includes/fields/class-acf-field-checkbox.php:364 +msgid "Save Custom" +msgstr "Сохранить пользовательские" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "Сохранить пользовательские варианты в настройках поля" + +#: includes/fields/class-acf-field-checkbox.php:381 +#: includes/fields/class-acf-field-select.php:369 +msgid "Enter each default value on a new line" +msgstr "Введите каждое значение на новую строку." + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "Переключить" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "Добавить чекбокс для переключения всех чекбоксов" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Цвет" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Очистить" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "По умолчанию" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Выберите цвет" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Текущий цвет" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Дата" + +#: includes/fields/class-acf-field-date_picker.php:59 +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Готово" + +#: includes/fields/class-acf-field-date_picker.php:60 +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Сегодня" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "Дальше" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "Назад" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "Неделя" + +#: includes/fields/class-acf-field-date_picker.php:180 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Отображаемый формат" + +#: includes/fields/class-acf-field-date_picker.php:181 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "Формат во время редактирования поля" + +#: includes/fields/class-acf-field-date_picker.php:189 +#: includes/fields/class-acf-field-date_picker.php:220 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +msgid "Custom:" +msgstr "Пользовательский:" + +#: includes/fields/class-acf-field-date_picker.php:199 +msgid "Save Format" +msgstr "Формат сохраняемого значения" + +#: includes/fields/class-acf-field-date_picker.php:200 +msgid "The format used when saving a value" +msgstr "Формат для сохранения в базе данных" + +#: includes/fields/class-acf-field-date_picker.php:210 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-post_object.php:432 +#: includes/fields/class-acf-field-relationship.php:715 +#: includes/fields/class-acf-field-select.php:422 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:428 +msgid "Return Format" +msgstr "Возвращаемый формат" + +#: includes/fields/class-acf-field-date_picker.php:211 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "Формат возвращаемого значения" + +#: includes/fields/class-acf-field-date_picker.php:229 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "День начала недели" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Дата и время" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Выберите время" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "Время" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "Час" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "Минута" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "Секунда" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "Миллисекунда" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "Микросекунда" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "Часовой пояс" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Сейчас" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Готово" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Выбрать" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "ДП" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "Д" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "ПП" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "П" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "E-mail" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:128 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "Текст заглушки" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:129 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Появляется перед полем ввода" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:185 +#: includes/fields/class-acf-field-text.php:137 +msgid "Prepend" +msgstr "Текст перед полем" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:186 +#: includes/fields/class-acf-field-text.php:138 +msgid "Appears before the input" +msgstr "Текст перед полем ввода" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:194 +#: includes/fields/class-acf-field-text.php:146 +msgid "Append" +msgstr "Текст после поля" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:195 +#: includes/fields/class-acf-field-text.php:147 +msgid "Appears after the input" +msgstr "Текст после поля ввода" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Файл" + +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "Изменить файл" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "Обновить файл" + +#: includes/fields/class-acf-field-file.php:141 +msgid "File name" +msgstr "Имя файла" + +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-file.php:259 +#: includes/fields/class-acf-field-image.php:265 +#: includes/fields/class-acf-field-image.php:294 +#: pro/fields/class-acf-field-gallery.php:705 +#: pro/fields/class-acf-field-gallery.php:734 +msgid "File size" +msgstr "Размер файла" + +#: includes/fields/class-acf-field-file.php:170 +msgid "Add File" +msgstr "Добавить файл" + +#: includes/fields/class-acf-field-file.php:221 +msgid "File Array" +msgstr "Массив" + +#: includes/fields/class-acf-field-file.php:222 +msgid "File URL" +msgstr "Ссылка на файл" + +#: includes/fields/class-acf-field-file.php:223 +msgid "File ID" +msgstr "ID файла" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:230 +#: pro/fields/class-acf-field-gallery.php:670 +msgid "Library" +msgstr "Библиотека" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:231 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "Limit the media library choice" +msgstr "Ограничение количества выбранных элементов" + +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:236 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:87 +#: includes/locations/class-acf-location-user-role.php:111 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:676 +msgid "All" +msgstr "Все" + +#: includes/fields/class-acf-field-file.php:237 +#: includes/fields/class-acf-field-image.php:237 +#: pro/fields/class-acf-field-gallery.php:677 +msgid "Uploaded to post" +msgstr "Загружено в запись" + +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:244 +#: pro/fields/class-acf-field-gallery.php:684 +msgid "Minimum" +msgstr "Минимум" + +#: includes/fields/class-acf-field-file.php:245 +#: includes/fields/class-acf-field-file.php:256 +msgid "Restrict which files can be uploaded" +msgstr "Ограничить файлы, которые могут быть загружены" + +#: includes/fields/class-acf-field-file.php:255 +#: includes/fields/class-acf-field-image.php:273 +#: pro/fields/class-acf-field-gallery.php:713 +msgid "Maximum" +msgstr "Максимум" + +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:302 +#: pro/fields/class-acf-field-gallery.php:742 +msgid "Allowed file types" +msgstr "Допустимые типы файлов" + +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-image.php:303 +#: pro/fields/class-acf-field-gallery.php:743 +msgid "Comma separated list. Leave blank for all types" +msgstr "" +"Для разделения типов файлов используйте запятые. Оставьте поле пустым для " +"разрешения загрузки всех файлов" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Расположение на карте" + +#: includes/fields/class-acf-field-google-map.php:59 +msgid "Sorry, this browser does not support geolocation" +msgstr "Извините, но ваш браузер не поддерживает определение местоположения" + +#: includes/fields/class-acf-field-google-map.php:165 +msgid "Clear location" +msgstr "Очистить местоположение" + +#: includes/fields/class-acf-field-google-map.php:166 +msgid "Find current location" +msgstr "Определить текущее местоположение" + +#: includes/fields/class-acf-field-google-map.php:169 +msgid "Search for address..." +msgstr "Поиск по адресу..." + +#: includes/fields/class-acf-field-google-map.php:199 +#: includes/fields/class-acf-field-google-map.php:210 +msgid "Center" +msgstr "Центрировать" + +#: includes/fields/class-acf-field-google-map.php:200 +#: includes/fields/class-acf-field-google-map.php:211 +msgid "Center the initial map" +msgstr "Центрировать изначальную карту" + +#: includes/fields/class-acf-field-google-map.php:222 +msgid "Zoom" +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:232 +#: includes/fields/class-acf-field-image.php:256 +#: includes/fields/class-acf-field-image.php:285 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:696 +#: pro/fields/class-acf-field-gallery.php:725 +msgid "Height" +msgstr "Высота" + +#: includes/fields/class-acf-field-google-map.php:233 +msgid "Customise the map height" +msgstr "Настройка высоты карты" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Группа" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:379 +msgid "Sub Fields" +msgstr "Вложенные поля" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "Укажите способ отображения клонированных полей" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:627 +#: pro/fields/class-acf-field-repeater.php:451 +msgid "Block" +msgstr "Блок" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:626 +#: pro/fields/class-acf-field-repeater.php:450 +msgid "Table" +msgstr "Таблица" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:628 +#: pro/fields/class-acf-field-repeater.php:452 +msgid "Row" +msgstr "Строка" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Изображение" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Select Image" +msgstr "Выбрать изображение" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Edit Image" +msgstr "Редактировать изображение" + +#: includes/fields/class-acf-field-image.php:66 +msgid "Update Image" +msgstr "Обновить изображение" + +#: includes/fields/class-acf-field-image.php:157 +msgid "No image selected" +msgstr "Изображение не выбрано" + +#: includes/fields/class-acf-field-image.php:157 +msgid "Add Image" +msgstr "Добавить изображение" + +#: includes/fields/class-acf-field-image.php:211 +msgid "Image Array" +msgstr "Массив изображения" + +#: includes/fields/class-acf-field-image.php:212 +msgid "Image URL" +msgstr "Ссылка на изображение" + +#: includes/fields/class-acf-field-image.php:213 +msgid "Image ID" +msgstr "ID изображения" + +#: includes/fields/class-acf-field-image.php:220 +msgid "Preview Size" +msgstr "Размер изображения" + +#: includes/fields/class-acf-field-image.php:221 +msgid "Shown when entering data" +msgstr "Размер отображаемого изображения при редактировании" + +#: includes/fields/class-acf-field-image.php:245 +#: includes/fields/class-acf-field-image.php:274 +#: pro/fields/class-acf-field-gallery.php:685 +#: pro/fields/class-acf-field-gallery.php:714 +msgid "Restrict which images can be uploaded" +msgstr "Ограничить изображения, которые могут быть загружены" + +#: includes/fields/class-acf-field-image.php:248 +#: includes/fields/class-acf-field-image.php:277 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:688 +#: pro/fields/class-acf-field-gallery.php:717 +msgid "Width" +msgstr "Ширина" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Ссылка" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Выберите ссылку" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "Откроется на новой вкладке" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Массив ссылок" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "URL ссылки" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Сообщение" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Перевод строк" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Способ перевода строк" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Автоматически добавлять параграфы" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Автоматически добавлять <br>" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Без форматирования" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "Очистка HTML" + +#: 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-number.php:25 +msgid "Number" +msgstr "Число" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:155 +msgid "Minimum Value" +msgstr "Минимальное значение" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:165 +msgid "Maximum Value" +msgstr "Максимальное значение" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:175 +msgid "Step Size" +msgstr "Шаг изменения" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "Значение должно быть числом" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "Значение должно быть равным или больше чем %d" + +#: includes/fields/class-acf-field-number.php:245 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "Значение должно быть равным или меньшим чем %d" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "Медиа" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "Введите адрес ссылки" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "Размер медиа" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Архивы" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:268 +#: includes/fields/class-acf-field-taxonomy.php:961 +msgid "Parent" +msgstr "Родитель" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:384 +#: includes/fields/class-acf-field-relationship.php:641 +msgid "Filter by Post Type" +msgstr "Фильтрация по типу записей" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:392 +#: includes/fields/class-acf-field-relationship.php:649 +msgid "All post types" +msgstr "Все типы записей" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:398 +#: includes/fields/class-acf-field-relationship.php:655 +msgid "Filter by Taxonomy" +msgstr "Фильтрация по таксономии" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:406 +#: includes/fields/class-acf-field-relationship.php:663 +msgid "All taxonomies" +msgstr "Все таксономии" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "Разрешить ссылки на архивы" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:422 +#: includes/fields/class-acf-field-select.php:387 +#: includes/fields/class-acf-field-user.php:419 +msgid "Select multiple values?" +msgstr "Выбрать несколько значений?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Пароль" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:720 +msgid "Post Object" +msgstr "Объект записи" + +#: includes/fields/class-acf-field-post_object.php:438 +#: includes/fields/class-acf-field-relationship.php:721 +msgid "Post ID" +msgstr "ID записи" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "Переключатель (radio)" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Другое" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "Выберите значение \"Другое\", чтобы разрешить настраиваемые значения" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "Сохранить значения" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "Сохранить настраиваемые значения для поля выбора" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Диапазон" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "Записи" + +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "Максимальное количество значений достигнуто ({max} значений)" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "Загрузка" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "Совпадения не найдены" + +#: includes/fields/class-acf-field-relationship.php:441 +msgid "Select post type" +msgstr "Выберите тип записи" + +#: includes/fields/class-acf-field-relationship.php:467 +msgid "Select taxonomy" +msgstr "Выберите таксономию" + +#: includes/fields/class-acf-field-relationship.php:557 +msgid "Search..." +msgstr "Поиск..." + +#: includes/fields/class-acf-field-relationship.php:669 +msgid "Filters" +msgstr "Фильтры" + +#: includes/fields/class-acf-field-relationship.php:675 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Тип записи" + +#: includes/fields/class-acf-field-relationship.php:676 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:754 +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy" +msgstr "Таксономия" + +#: includes/fields/class-acf-field-relationship.php:683 +msgid "Elements" +msgstr "Элементы" + +#: includes/fields/class-acf-field-relationship.php:684 +msgid "Selected elements will be displayed in each result" +msgstr "Выбранные элементы будут отображены в каждом результате" + +#: includes/fields/class-acf-field-relationship.php:695 +msgid "Minimum posts" +msgstr "Минимум записей" + +#: includes/fields/class-acf-field-relationship.php:704 +msgid "Maximum posts" +msgstr "Максимум записей" + +#: includes/fields/class-acf-field-relationship.php:808 +#: pro/fields/class-acf-field-gallery.php:815 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s требует выбрать как минимум %s значение" +msgstr[1] "%s требует выбрать как минимум %s значения" +msgstr[2] "%s требует выбрать как минимум %s значений" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:776 +msgctxt "noun" +msgid "Select" +msgstr "Выбор (select)" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "Доступно одно значение, нажмите Enter для его выбора." + +#: includes/fields/class-acf-field-select.php:112 +#, php-format +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:113 +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Подходящие значения не найдены" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "Пожалуйста, введите 1 символ или больше" + +#: includes/fields/class-acf-field-select.php:115 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "Пожалуйста, введите %d или больше символов" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "Пожалуйста, удалите 1 символ" + +#: includes/fields/class-acf-field-select.php:117 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "Пожалуйста, удалите %d символов" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "Вы можете выбрать только одно значение" + +#: includes/fields/class-acf-field-select.php:119 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "Вы можете выбрать только %d значений" + +#: includes/fields/class-acf-field-select.php:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "Загрузка других значений…" + +#: includes/fields/class-acf-field-select.php:121 +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Поиск…" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Не получилось загрузить" + +#: includes/fields/class-acf-field-select.php:397 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "Стилизованный интерфейс" + +#: includes/fields/class-acf-field-select.php:407 +msgid "Use AJAX to lazy load choices?" +msgstr "Использовать AJAX для загрузки вариантов выбора?" + +#: includes/fields/class-acf-field-select.php:423 +msgid "Specify the value returned" +msgstr "Укажите возвращаемое значение" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Разделитель" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Вкладка" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "Расположение" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "Используйте это поле в качестве разделителя между группами вкладок" + +#: includes/fields/class-acf-field-taxonomy.php:714 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "Нет %s [нет терминов]" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Select the taxonomy to be displayed" +msgstr "Выберите таксономию для отображения" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Appearance" +msgstr "Отображение" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Select the appearance of this field" +msgstr "Выберите способ отображения поля" + +#: includes/fields/class-acf-field-taxonomy.php:770 +msgid "Multiple Values" +msgstr "Несколько значений" + +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Multi Select" +msgstr "Множественный выбор" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Single Value" +msgstr "Одно значение" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Radio Buttons" +msgstr "Радио-кнопки" + +#: includes/fields/class-acf-field-taxonomy.php:799 +msgid "Create Terms" +msgstr "Создание терминов" + +#: includes/fields/class-acf-field-taxonomy.php:800 +msgid "Allow new terms to be created whilst editing" +msgstr "Разрешнить создавать новые термины во время редактирования" + +#: includes/fields/class-acf-field-taxonomy.php:809 +msgid "Save Terms" +msgstr "Сохранение терминов" + +#: includes/fields/class-acf-field-taxonomy.php:810 +msgid "Connect selected terms to the post" +msgstr "Связать выбранные термины с записью" + +#: includes/fields/class-acf-field-taxonomy.php:819 +msgid "Load Terms" +msgstr "Загрузить термины" + +#: includes/fields/class-acf-field-taxonomy.php:820 +msgid "Load value from posts terms" +msgstr "Загрузить значения из терминов записей" + +#: includes/fields/class-acf-field-taxonomy.php:834 +msgid "Term Object" +msgstr "Объект термина" + +#: includes/fields/class-acf-field-taxonomy.php:835 +msgid "Term ID" +msgstr "ID термина" + +#: includes/fields/class-acf-field-taxonomy.php:885 +#, php-format +msgid "User unable to add new %s" +msgstr "У пользователя нет возможности добавить новый %s" + +#: includes/fields/class-acf-field-taxonomy.php:895 +#, php-format +msgid "%s already exists" +msgstr "%s уже существует" + +#: includes/fields/class-acf-field-taxonomy.php:927 +#, php-format +msgid "%s added" +msgstr "%s добавлен" + +#: includes/fields/class-acf-field-taxonomy.php:973 +msgid "Add" +msgstr "Добавить" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-text.php:155 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Ограничение количества символов" + +#: includes/fields/class-acf-field-text.php:156 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Оставьте пустым для снятия ограничений" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Область текста" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Строки" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Укажите высоту поля ввода" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Время" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Да / Нет" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "Отображать текст рядом с переключателем" + +#: includes/fields/class-acf-field-true_false.php:155 +msgid "On Text" +msgstr "Включено" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "Текст в активном состоянии" + +#: includes/fields/class-acf-field-true_false.php:170 +msgid "Off Text" +msgstr "Выключено" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "Текст в выключенном состоянии" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "Ссылка" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "Значение должно быть корректной ссылкой" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "Пользователь" + +#: includes/fields/class-acf-field-user.php:394 +msgid "Filter by role" +msgstr "Фильтровать по группе" + +#: includes/fields/class-acf-field-user.php:402 +msgid "All user roles" +msgstr "Все группы пользователей" + +#: includes/fields/class-acf-field-user.php:433 +msgid "User Array" +msgstr "Массив с данными" + +#: includes/fields/class-acf-field-user.php:434 +msgid "User Object" +msgstr "Объект пользователя" + +#: includes/fields/class-acf-field-user.php:435 +msgid "User ID" +msgstr "ID пользователя" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Редактор WordPress" + +#: includes/fields/class-acf-field-wysiwyg.php:346 +msgid "Visual" +msgstr "Визуально" + +#: includes/fields/class-acf-field-wysiwyg.php:347 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-wysiwyg.php:353 +msgid "Click to initialize TinyMCE" +msgstr "Нажмите для запуска TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:406 +msgid "Tabs" +msgstr "Вкладки" + +#: includes/fields/class-acf-field-wysiwyg.php:411 +msgid "Visual & Text" +msgstr "Визуально и текст" + +#: includes/fields/class-acf-field-wysiwyg.php:412 +msgid "Visual Only" +msgstr "Только визуальный редактор" + +#: includes/fields/class-acf-field-wysiwyg.php:413 +msgid "Text Only" +msgstr "Только текстовый редактор" + +#: includes/fields/class-acf-field-wysiwyg.php:420 +msgid "Toolbar" +msgstr "Панель инструментов" + +#: includes/fields/class-acf-field-wysiwyg.php:435 +msgid "Show Media Upload Buttons?" +msgstr "Кнопки загрузки медиа" + +#: includes/fields/class-acf-field-wysiwyg.php:445 +msgid "Delay initialization?" +msgstr "Отложенная инициализация" + +#: includes/fields/class-acf-field-wysiwyg.php:446 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "TinyMCE не будет инициализирован до клика по полю" + +#: includes/forms/form-comment.php:166 includes/forms/form-post.php:301 +#: pro/admin/admin-options-page.php:308 +msgid "Edit field group" +msgstr "Редактировать группу полей" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "Проверка Email" + +#: includes/forms/form-front.php:103 +#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81 +msgid "Update" +msgstr "Обновить" + +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "Запись обновлена" + +#: includes/forms/form-front.php:230 +msgid "Spam Detected" +msgstr "Обнаружен спам" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Запись" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Страница" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "Формы" + +#: includes/locations.php:247 +msgid "is equal to" +msgstr "равно" + +#: includes/locations.php:248 +msgid "is not equal to" +msgstr "не равно" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Медиафайл" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "Все %s форматы" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Комментарий" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Группа текущего пользователя" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "Администратор" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Текущий пользователь" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "Авторизирован" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "Просматривает лицевую часть сайта" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "Просматривает административную панель" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "Пункт меню" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "Меню" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "Расположение меню" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "Меню" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Родитель страницы" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Шаблон страницы" + +#: includes/locations/class-acf-location-page-template.php:98 +#: includes/locations/class-acf-location-post-template.php:151 +msgid "Default Template" +msgstr "Шаблон по умолчанию" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Тип страницы" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Front Page" +msgstr "Главная страница" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Posts Page" +msgstr "Страница записей" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Top Level Page (no parent)" +msgstr "Страница верхнего уровня (без родителя)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Parent Page (has children)" +msgstr "Родительская страница (есть дочерние страницы)" + +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Child Page (has parent)" +msgstr "Дочерняя страница (есть родительские страницы)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Рубрика записи" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Формат записи" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Статус записи" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Таксономия записи" + +#: includes/locations/class-acf-location-post-template.php:27 +msgid "Post Template" +msgstr "Шаблон записи" + +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "Пользователь" + +#: includes/locations/class-acf-location-user-form.php:88 +msgid "Add / Edit" +msgstr "Администратор или редактор" + +#: includes/locations/class-acf-location-user-form.php:89 +msgid "Register" +msgstr "Обычный пользователь" + +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "Группа пользователя" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Виджет" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "%s значение требуется" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/admin/admin-options-page.php:200 +msgid "Publish" +msgstr "Опубликовано" + +#: pro/admin/admin-options-page.php:206 +#, php-format +msgid "" +"No Custom Field Groups found for this options page. Create a " +"Custom Field Group" +msgstr "" +"С этой страницей настроек не связаны группы полей. Создать " +"группу полей" + +#: pro/admin/admin-settings-updates.php:78 +msgid "Error. Could not connect to update server" +msgstr "Ошибка. Не удалось подключиться к серверу обновлений" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Обновление" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Деактивировать лицензию" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Активировать лицензию" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "Информация о лицензии" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +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:92 +msgid "Update Plugin" +msgstr "Обновить плагин" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "Пожалуйста введите ваш номер лицензии для разблокировки обновлений" + +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "Проверить еще раз" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "Замечания по обновлению" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Клон" + +#: pro/fields/class-acf-field-clone.php:812 +msgid "Select one or more fields you wish to clone" +msgstr "Выберите одно или несколько полей, которые вы хотите клонировать" + +#: pro/fields/class-acf-field-clone.php:829 +msgid "Display" +msgstr "Способ отображения" + +#: pro/fields/class-acf-field-clone.php:830 +msgid "Specify the style used to render the clone field" +msgstr "Выберите стиль отображения клонированных полей" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" +"Группа (сгруппировать выбранные поля в одно и выводить вместо текущего)" + +#: pro/fields/class-acf-field-clone.php:836 +msgid "Seamless (replaces this field with selected fields)" +msgstr "Отдельно (выбранные поля выводятся отдельно вместо текущего)" + +#: pro/fields/class-acf-field-clone.php:857 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "Ярлыки будут отображаться как %s" + +#: pro/fields/class-acf-field-clone.php:860 +msgid "Prefix Field Labels" +msgstr "Префикс для ярлыков полей" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "Значения будут сохранены как %s" + +#: pro/fields/class-acf-field-clone.php:874 +msgid "Prefix Field Names" +msgstr "Префикс для названий полей" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "Неизвестное поле" + +#: pro/fields/class-acf-field-clone.php:1031 +msgid "Unknown field group" +msgstr "Неизвестная группа полей" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "Все поля группы %s" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:463 +msgid "Add Row" +msgstr "Добавить" + +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:938 +#: pro/fields/class-acf-field-flexible-content.php:1020 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "макет" +msgstr[1] "макета" +msgstr[2] "макетов" + +#: pro/fields/class-acf-field-flexible-content.php:74 +msgid "layouts" +msgstr "макеты" + +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:937 +#: pro/fields/class-acf-field-flexible-content.php:1019 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "Это поле требует как минимум {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:78 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "Это поле ограничено {max} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} доступно (максимум {max})" + +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} требуется (минимум {min})" + +#: pro/fields/class-acf-field-flexible-content.php:85 +msgid "Flexible Content requires at least 1 layout" +msgstr "Для гибкого содержания требуется как минимум один макет" + +#: pro/fields/class-acf-field-flexible-content.php:302 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "Нажмите на кнопку \"%s\" ниже для начала создания собственного макета" + +#: pro/fields/class-acf-field-flexible-content.php:427 +msgid "Add layout" +msgstr "Добавить макет" + +#: pro/fields/class-acf-field-flexible-content.php:428 +msgid "Remove layout" +msgstr "Удалить макет" + +#: pro/fields/class-acf-field-flexible-content.php:429 +#: pro/fields/class-acf-field-repeater.php:296 +msgid "Click to toggle" +msgstr "Нажмите для переключения" + +#: pro/fields/class-acf-field-flexible-content.php:569 +msgid "Reorder Layout" +msgstr "Переместить макет" + +#: pro/fields/class-acf-field-flexible-content.php:569 +msgid "Reorder" +msgstr "Переместить" + +#: pro/fields/class-acf-field-flexible-content.php:570 +msgid "Delete Layout" +msgstr "Удалить макет" + +#: pro/fields/class-acf-field-flexible-content.php:571 +msgid "Duplicate Layout" +msgstr "Дублировать макет" + +#: pro/fields/class-acf-field-flexible-content.php:572 +msgid "Add New Layout" +msgstr "Добавить новый макет" + +#: pro/fields/class-acf-field-flexible-content.php:643 +msgid "Min" +msgstr "Минимум" + +#: pro/fields/class-acf-field-flexible-content.php:656 +msgid "Max" +msgstr "Максимум" + +#: pro/fields/class-acf-field-flexible-content.php:683 +#: pro/fields/class-acf-field-repeater.php:459 +msgid "Button Label" +msgstr "Текст кнопки добавления" + +#: pro/fields/class-acf-field-flexible-content.php:692 +msgid "Minimum Layouts" +msgstr "Мин. количество блоков" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Макс. количество блоков" + +#: pro/fields/class-acf-field-gallery.php:71 +msgid "Add Image to Gallery" +msgstr "Добавление изображений в галерею" + +#: pro/fields/class-acf-field-gallery.php:72 +msgid "Maximum selection reached" +msgstr "Выбрано максимальное количество изображений" + +#: pro/fields/class-acf-field-gallery.php:336 +msgid "Length" +msgstr "Длина" + +#: pro/fields/class-acf-field-gallery.php:379 +msgid "Caption" +msgstr "Подпись" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Alt Text" +msgstr "Текст в ALT" + +#: pro/fields/class-acf-field-gallery.php:559 +msgid "Add to gallery" +msgstr "Добавить изображения" + +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Bulk actions" +msgstr "Сортировка" + +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Sort by date uploaded" +msgstr "По дате загрузки" + +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Sort by date modified" +msgstr "По дате изменения" + +#: pro/fields/class-acf-field-gallery.php:566 +msgid "Sort by title" +msgstr "По названию" + +#: pro/fields/class-acf-field-gallery.php:567 +msgid "Reverse current order" +msgstr "Инвертировать" + +#: pro/fields/class-acf-field-gallery.php:585 +msgid "Close" +msgstr "Закрыть" + +#: pro/fields/class-acf-field-gallery.php:639 +msgid "Minimum Selection" +msgstr "Мин. количество изображений" + +#: pro/fields/class-acf-field-gallery.php:648 +msgid "Maximum Selection" +msgstr "Макс. количество изображений" + +#: pro/fields/class-acf-field-gallery.php:657 +msgid "Insert" +msgstr "Добавить" + +#: pro/fields/class-acf-field-gallery.php:658 +msgid "Specify where new attachments are added" +msgstr "Укажите куда добавлять новые вложения" + +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Append to the end" +msgstr "Добавлять в конец" + +#: pro/fields/class-acf-field-gallery.php:663 +msgid "Prepend to the beginning" +msgstr "Добавлять в начало" + +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:656 +msgid "Minimum rows reached ({min} rows)" +msgstr "Достигнуто минимальное количество ({min} элементов)" + +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "Достигнуто максимальное количество ({max} элементов)" + +#: pro/fields/class-acf-field-repeater.php:333 +msgid "Add row" +msgstr "Добавить" + +#: pro/fields/class-acf-field-repeater.php:334 +msgid "Remove row" +msgstr "Удалить" + +#: pro/fields/class-acf-field-repeater.php:412 +msgid "Collapsed" +msgstr "Сокращенный заголовок" + +#: pro/fields/class-acf-field-repeater.php:413 +msgid "Select a sub field to show when row is collapsed" +msgstr "" +"Выберите поле, которое будет отображаться в качестве заголовка при " +"сворачивании блока" + +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum Rows" +msgstr "Мин. количество элементов" + +#: pro/fields/class-acf-field-repeater.php:433 +msgid "Maximum Rows" +msgstr "Макс. количество элементов" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "Страницы с настройками отсуствуют" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "Опции" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Настройки были обновлены" + +#: pro/updates.php:97 +#, php-format +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 "" +"Для разблокировки обновлений введите ваш лицензионный ключ на странице Обновление. Если у вас его нет, то ознакомьтесь с деталями." + +#. Plugin URI of the plugin/theme +msgid "https://www.advancedcustomfields.com/" +msgstr "https://www.advancedcustomfields.com/" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "Эллиот Кондон" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "http://www.elliotcondon.com/" + +#~ msgid "Parent fields" +#~ msgstr "Родительские поля" + +#~ msgid "Sibling fields" +#~ msgstr "Поля одного уровня вложенности" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Экспортировать группы полей в PHP" + +#~ msgid "Download export file" +#~ msgstr "Загрузить файл" + +#~ msgid "Generate export code" +#~ msgstr "Генерировать код" + +#~ msgid "Import" +#~ msgstr "Импорт" + +#~ msgid "Locating" +#~ msgstr "Определение местоположение" + +#~ msgid "Error." +#~ msgstr "Ошибка." + +#~ msgid "No embed found for the given URL." +#~ msgstr "По указанной вами ссылке медиаконтент не обнаружен." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Минимальное количество значений достигнуто ({min} значений)" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Вкладка может отображаться неправильно при добавлении в поля гибкого " +#~ "содержания и повторителя в табличном стиле" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Используйте вкладки для лучшей организации редактирования групп полей." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Все поля после поля со вкладкой группируются на отдельной вкладке с " +#~ "соответствующим названием." + +#~ msgid "None" +#~ msgstr "Ничего" + +#~ msgid "Taxonomy Term" +#~ msgstr "Таксономия" + +#~ msgid "remove {layout}?" +#~ msgstr "удалить {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Это поле требует как минимум {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Максимальное ограничение {label} достигнуто ({max} {identifier})" + +#~ msgid "Getting Started" +#~ msgstr "Приступаем к работе" + +#~ msgid "Field Types" +#~ msgstr "Типы полей" + +#~ msgid "Functions" +#~ msgstr "Функции" + +#~ msgid "Actions" +#~ msgstr "Действия" + +#~ msgid "Features" +#~ msgstr "Возможности" + +#~ msgid "How to" +#~ msgstr "Гайды" + +#~ msgid "Tutorials" +#~ msgstr "Уроки и туториалы" + +#~ msgid "FAQ" +#~ msgstr "Вопросы и ответы" + +#~ msgid "Term meta upgrade not possible (termmeta table does not exist)" +#~ msgstr "" +#~ "Метаданные для терминов не удалось обновить (таблица termmeta не " +#~ "существует)" + +#~ msgid "Error" +#~ msgstr "Ошибка" + +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "%d поле требует внимания." +#~ msgstr[1] "%d поля требует внимания." +#~ msgstr[2] "%d полей требует внимания." + +#~ msgid "" +#~ "Error validating ACF PRO license URL (website does not match). Please re-" +#~ "activate your license" +#~ msgstr "" +#~ "Ошибка при проверке лицензии ACF PRO (адрес сайта не совпадает). " +#~ "Пожалуйста, переактивируйте лицензию" + +#~ msgid "Customise WordPress with powerful, professional and intuitive fields" +#~ msgstr "" +#~ "Плагин для упрощения настройки и взаимодействия с дополнительными полями " +#~ "для содержимого" + +#~ msgid "Disabled" +#~ msgstr "Отключено" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Отключено (%s)" +#~ msgstr[1] "Отключено (%s)" +#~ msgstr[2] "Отключено (%s)" + +#~ msgid "'How to' guides" +#~ msgstr "Руководства \"Как...\"" + +#~ msgid "Created by" +#~ msgstr "Создано" + +#~ msgid "Error loading update" +#~ msgstr "Возникла ошибка при загрузке обновления" + +#~ msgid "See what's new" +#~ msgstr "Посмотрите, что изменилось" + +#~ msgid "eg. Show extra content" +#~ msgstr "Пример: Отображать дополнительное содержание" + +#~ msgid "" +#~ "Error validating license URL (website does not match). Please re-activate " +#~ "your license" +#~ msgstr "" +#~ "Во время проверки лицензии, которая связана с адресом сайта, возникла " +#~ "ошибка. Пожалуйста, выполните активацию снова" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Импорт успешно завершен. Было добавлено %s групп полей: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Предупреждение. Было обнаружено %s групп полей, которые уже " +#~ "существуют и были пропущены: %s" + +#~ msgid "Upgrade ACF" +#~ msgstr "Обновить ACF" + +#~ msgid "Upgrade" +#~ msgstr "Обновить" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "" +#~ "Следующие сайты требуют обновления базы данных. Выберите необходимые и " +#~ "нажмите на кнопку \"Обновить базу данных\"" + +#~ msgid "Select" +#~ msgstr "Выбор" + +#~ msgid "Done" +#~ msgstr "Готово" + +#~ msgid "Today" +#~ msgstr "Сегодня" + +#~ msgid "Show a different month" +#~ msgstr "Показать другой месяц" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Ошибка подключения. Извините, попробуйте еще раз" + +#~ msgid "See what's new in" +#~ msgstr "Узнайте, что нового в" + +#~ msgid "version" +#~ msgstr "версии" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Перетащите поле для смены очередности" + +#~ msgid "Return format" +#~ msgstr "Возвращаемый формат" + +#~ msgid "uploaded to this post" +#~ msgstr "загружено для этой записи" + +#~ msgid "File Name" +#~ msgstr "Имя файла" + +#~ msgid "File Size" +#~ msgstr "Размер файла" + +#~ msgid "No File selected" +#~ msgstr "Файл не выбран" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "Пожалуйста, заметьте, что весь текст пройдет через WP функцию" + +#~ msgid "Warning" +#~ msgstr "Предупреждение" + +#~ msgid "Save Options" +#~ msgstr "Сохранить настройки" + +#~ msgid "License" +#~ msgstr "Лицензия" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Для раблокировки обновлений введите ваш номер лицензии ниже. Если у вас " +#~ "его нет, то ознакомьтесь с рекомендациями" + +#~ msgid "details & pricing" +#~ msgstr "детали и цены" + +#~ 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 "" +#~ "Для получения обновлений введите номер лицензии на странице Обновление. Вы можете его или приобрести на сайте " +#~ "автора плагина." + +#~ msgid "Field Groups" +#~ msgstr "Группы полей" + +#~ msgid "Hide / Show All" +#~ msgstr "Скрыть / Показать все" + +#~ msgid "Show Field Keys" +#~ msgstr "Показать ключи полей" + +#~ msgid "Pending Review" +#~ msgstr "На утверждении" + +#~ msgid "Draft" +#~ msgstr "Черновик" + +#~ msgid "Future" +#~ msgstr "Отложенная публикация" + +#~ msgid "Private" +#~ msgstr "Частная" + +#~ msgid "Revision" +#~ msgstr "Редакция" + +#~ msgid "Trash" +#~ msgstr "Корзина" + +#~ msgid "Top Level Page (parent of 0)" +#~ msgstr "Самая верхняя страница (родитель 0)" + +#~ msgid "Import / Export" +#~ msgstr "Импорт и экспорт" + +#~ msgid "Logged in User Type" +#~ msgstr "Тип пользователя" + +#~ msgid "Field groups are created in order
                              from lowest to highest" +#~ msgstr "" +#~ "Порядок отображения полей, начиная с самого меньшего значения и " +#~ "заканчивая самым большим" + +#~ msgid "Select items to hide them from the edit screen" +#~ msgstr "" +#~ "Выберите элементы, которые необходимо скрыть на экране " +#~ "редактирования." + +#~ 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 "" +#~ "Если на экране редактирования выводятся несколько групп полей, то группа " +#~ "c меньшим значением порядка очередности будет отображаться выше" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exiting " +#~ "way!" +#~ msgstr "Мы поменяли способ представления возможностей Premium!" + +#~ msgid "ACF PRO Required" +#~ msgstr "Необходим ACF PRO" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "Мы обнаружили ситуацию, требующую вашего внимания: Этот сайт использует " +#~ "дополнения Premium (%s), которые больше не поддерживаются ACF." + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Не волнуйтесь, вы можете просто откатить плагин и продолжить использовать " +#~ "знакомый вам ACF." + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Вернуться к ACF v%s" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Узнать, почему ACF PRO необходим моему сайту" + +#~ msgid "Update Database" +#~ msgstr "Обновление базы данных" + +#~ msgid "Data Upgrade" +#~ msgstr "Обновление данных" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Данные успешно обновлены." + +#~ msgid "Data is at the latest version." +#~ msgstr "Версия данных является последней." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "%s обязательное поле не заполнено" +#~ msgstr[1] "%s обязательных поля не заполнено" +#~ msgstr[2] "%s обязательных полей не заполнено" + +#~ msgid "No taxonomy filter" +#~ msgstr "Фильтрация по таксономии отсутствует" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Загрузить и сохранить термины в запись" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Загрузить значение основываясь на терминах записи и обновить термины " +#~ "записи при сохранении." + +#~ msgid "Attachment Details" +#~ msgstr "Информация о вложении" + +#~ msgid "Custom field updated." +#~ msgstr "Произвольное поле обновлено." + +#~ msgid "Custom field deleted." +#~ msgstr "Произвольное поле удалено." + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "Группа полей восстановлена из редакции %s" + +#~ msgid "Full" +#~ msgstr "Полный" + +#~ msgid "No ACF groups selected" +#~ msgstr "Группы ACF не выбраны" + +#~ msgid "Repeater Field" +#~ msgstr "Повторающееся поле" + +#~ msgid "" +#~ "Create infinite rows of repeatable data with this versatile interface!" +#~ msgstr "Создавайте повторающиеся поля с этим многофунциональным аддоном!" + +#~ msgid "Gallery Field" +#~ msgstr "Поле галереи" + +#~ msgid "Create image galleries in a simple and intuitive interface!" +#~ msgstr "Создавайте галереи с этим простым и интуитивным интерфейсом!" + +#~ msgid "Create global data to use throughout your website!" +#~ msgstr "" +#~ "Создайте глобальные данные, которые можно будет использовать по всему " +#~ "сайту." + +#~ msgid "Flexible Content Field" +#~ msgstr "Гибкое содержание" + +#~ msgid "Create unique designs with a flexible content layout manager!" +#~ msgstr "Создавайте уникальные дизайны с настраиваемым гибким макетом." + +#~ msgid "Gravity Forms Field" +#~ msgstr "Поле \"Gravity Forms\"" + +#~ msgid "Creates a select field populated with Gravity Forms!" +#~ msgstr "Создает поля использующие Gravity Forms." + +#~ msgid "Date & Time Picker" +#~ msgstr "Выбор даты и времени" + +#~ msgid "jQuery date & time picker" +#~ msgstr "jQuery плагин выбора даты и времени" + +#~ msgid "Location Field" +#~ msgstr "Поле местоположения" + +#~ msgid "Find addresses and coordinates of a desired location" +#~ msgstr "Найдите адреса и координаты выбраного места." + +#~ msgid "Contact Form 7 Field" +#~ msgstr "Поле \"Contact Form 7\"" + +#~ msgid "Assign one or more contact form 7 forms to a post" +#~ msgstr "Добавьте одно или больше форм \"Contact Form 7\" в запись." + +#~ msgid "Advanced Custom Fields Add-Ons" +#~ msgstr "Расширенные произвольные поля. Аддоны" + +#~ msgid "" +#~ "The following Add-ons are available to increase the functionality of the " +#~ "Advanced Custom Fields plugin." +#~ msgstr "" +#~ "Следующие аддоны могут увеличить функционал плагина \"Advanced Custom " +#~ "Fields\"." + +#~ msgid "" +#~ "Each Add-on can be installed as a separate plugin (receives updates) or " +#~ "included in your theme (does not receive updates)." +#~ msgstr "" +#~ "Каждый аддон может быть установлен, как отдельный плагин (который " +#~ "обновляется), или же может быть включен в вашу тему (обновляться не " +#~ "будет)." + +#~ msgid "Purchase & Install" +#~ msgstr "Купить и установить" + +#~ msgid "Download" +#~ msgstr "Скачать" + +#~ msgid "Select the field groups to be exported" +#~ msgstr "Выберите группы полей, которые надо экспортировать." + +#~ msgid "Export to XML" +#~ msgstr "Экспортировать в XML файл" + +#~ msgid "Export to PHP" +#~ msgstr "Экспортировать в PHP файл" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "ACF создат .xml файл, который совместим с WP Import плагином." + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "Импортированные группы полей появятся в списке " +#~ "редактируемых групп полей. Эта функция очень полезна в случае переезда с " +#~ "одного WP сайта на другой." + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "" +#~ "Выберите группу(-ы) полей из списка и нажмите на кнопку \"Экспортировать " +#~ "в XML файл\"." + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "Сохраните .xml файл при запросе сохранить файл." + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "" +#~ "Зайдите во \"Инструменты\" » \"Импорт\", и выберите \"WordPress\"." + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "Установите WP Import плагин." + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "Загрузите и импортируйте ваш экспортированный .xml файл." + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "Выберите вашего пользователя и не импортируйте вложенные файлы." + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "Вот и все. Удачной работы с WordPress!" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACF создат код PHP, который можно будет включить в вашу тему." + +#~ msgid "" +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." +#~ msgstr "" +#~ "Импортированные группы полей не появятся в списке " +#~ "редактируемых групп полей. Данный способ удобен при необходимости " +#~ "включить поля в темы." + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "Пожалуйста, заметьте, если вы экспортируете а затем импортируете группы " +#~ "полей в один и тот же сайт WP, вы увидите дублированные поля на экране " +#~ "редактирования. Чтобы исправить это, перенесите оригинальную группы полей " +#~ "в корзину или удалите код из вашего \"functions.php\" файла." + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "" +#~ "Выберите группу(-ы) полей из списка, затем нажмите на кнопку " +#~ "\"Экспортировать в PHP файл\"." + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Скопируйте сгенерированный PHP код." + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Вставьте его в ваш \"functions.php\" файл." + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "" +#~ "Чтобы активировать аддоны, отредактируйте и вставьте код в первые " +#~ "несколько строк." + +#~ msgid "Notes" +#~ msgstr "Заметки" + +#~ msgid "Include in theme" +#~ msgstr "Включить в тему" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin can be included within a theme. To do " +#~ "so, move the ACF plugin inside your theme and add the following code to " +#~ "your functions.php file:" +#~ msgstr "" +#~ "Плагин \"Advanced Custom Fields\" может быть включен в тему. Для этого, " +#~ "переместите плагин ACF в папку вашей темы, и добавьте следующий код в ваш " +#~ "\"functions.php\" файл:" + +#~ msgid "" +#~ "To remove all visual interfaces from the ACF plugin, you can use a " +#~ "constant to enable lite mode. Add the following code to you functions.php " +#~ "file before the include_once code:" +#~ msgstr "" +#~ "Чтобы убрать весь визуальный интерфейс из плагина ACF, вы можете " +#~ "использовать константу, чтобы включить \"Режим Lite\". Добавьте следующий " +#~ "код в ваш \"functions.php\" файл перед " +#~ "include_once:" + +#~ msgid "Back to export" +#~ msgstr "Вернуться к экспорту" + +#~ msgid "" +#~ "/**\n" +#~ " * Install Add-ons\n" +#~ " * \n" +#~ " * The following code will include all 4 premium Add-Ons in your theme.\n" +#~ " * Please do not attempt to include a file which does not exist. This " +#~ "will produce an error.\n" +#~ " * \n" +#~ " * All fields must be included during the 'acf/register_fields' action.\n" +#~ " * Other types of Add-ons (like the options page) can be included " +#~ "outside of this action.\n" +#~ " * \n" +#~ " * The following code assumes you have a folder 'add-ons' inside your " +#~ "theme.\n" +#~ " *\n" +#~ " * IMPORTANT\n" +#~ " * Add-ons may be included in a premium theme as outlined in the terms " +#~ "and conditions.\n" +#~ " * However, they are NOT to be included in a premium / free plugin.\n" +#~ " * For more information, please read http://www.advancedcustomfields.com/" +#~ "terms-conditions/\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Установка аддонов\n" +#~ " * \n" +#~ " * Следующий код включит все 4 премиум аддона в вашу тему.\n" +#~ " * Пожалуйста, не пытайтесь включить файл, который не существует. Это " +#~ "вызовет ошибку.\n" +#~ " * \n" +#~ " * Все поля должны быть включены во время 'acf/register_fields' " +#~ "действия.\n" +#~ " * Другие типы аддонов (такие, как страница с опциями) могут быть " +#~ "включены вне этого действия.\n" +#~ " * \n" +#~ " * Следующий код предполагает, что у вас есть папка 'add-ons' в вашей " +#~ "теме.\n" +#~ " *\n" +#~ " * ВАЖНО\n" +#~ " * Аддоны могут быть включены в премиум темы, как указано в Правилах и " +#~ "условиях.\n" +#~ " * Тем не менее, они не будут включены в бесплатный или премиум плагин.\n" +#~ " * Для большей информации, пожалуйста, прочтите http://www." +#~ "advancedcustomfields.com/terms-conditions/\n" +#~ " */" + +#~ msgid "" +#~ "/**\n" +#~ " * Register Field Groups\n" +#~ " *\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * Регистрация группы полей\n" +#~ " *\n" +#~ " * Функция 'register_field_group' принимает один массив, который держит " +#~ "соответственные данные, чтобы зарегистрировать группу полей.\n" +#~ " * Вы можете редактировать этот массив, как посчитаете нужным. Однако, " +#~ "это может вызвать ошибки, если массив не совмествим с ACF.\n" +#~ " */" + +#~ msgid "No field groups were selected" +#~ msgstr "Группы полей не выбраны" + +#~ msgid "Show Field Key:" +#~ msgstr "Отображать ключ поля:" + +#~ msgid "Vote" +#~ msgstr "Оценить" + +#~ msgid "Follow" +#~ msgstr "Следить" + +#~ msgid "Thank you for updating to the latest version!" +#~ msgstr "Благодарим за обновление до последней версии!" + +#~ msgid "" +#~ "is more polished and enjoyable than ever before. We hope you like it." +#~ msgstr "" +#~ "еще более улучшен и интересен, чем когда либо. Мы надеемся, что вам он " +#~ "понравится." + +#~ msgid "What’s New" +#~ msgstr "Что нового" + +#~ msgid "Download Add-ons" +#~ msgstr "Скачать аддоны" + +#~ msgid "Activation codes have grown into plugins!" +#~ msgstr "Коды активации выросли до плагинов!" + +#~ msgid "" +#~ "Add-ons are now activated by downloading and installing individual " +#~ "plugins. Although these plugins will not be hosted on the wordpress.org " +#~ "repository, each Add-on will continue to receive updates in the usual way." +#~ msgstr "" +#~ "Аддоны теперь активируются скачивая и устанавливая индивидуальные " +#~ "плагины. Не смотря на то, что эти плагины не будут загружены на WordPress." +#~ "org, каждый аддон будет обновляться обычным способом." + +#~ msgid "All previous Add-ons have been successfully installed" +#~ msgstr "Все предыдущие аддоны были успешно установлены." + +#~ msgid "This website uses premium Add-ons which need to be downloaded" +#~ msgstr "Этот сайт использует премиум аддоны, которые должны быть скачаны." + +#~ msgid "Download your activated Add-ons" +#~ msgstr "Скачайте свои активированные аддоны." + +#~ msgid "" +#~ "This website does not use premium Add-ons and will not be affected by " +#~ "this change." +#~ msgstr "" +#~ "Этот сайт не использует премиум аддоны и не будет затронут этим " +#~ "изменением." + +#~ msgid "Easier Development" +#~ msgstr "Упрощенная разработка" + +#~ msgid "New Field Types" +#~ msgstr "Новые типы полей" + +#~ msgid "Taxonomy Field" +#~ msgstr "Поле таксономии" + +#~ msgid "User Field" +#~ msgstr "Поле пользователя" + +#~ msgid "Email Field" +#~ msgstr "Поле email" + +#~ msgid "Password Field" +#~ msgstr "Поле пароля" + +#~ msgid "Custom Field Types" +#~ msgstr "Произвольные типы полей" + +#~ msgid "" +#~ "Creating your own field type has never been easier! Unfortunately, " +#~ "version 3 field types are not compatible with version 4." +#~ msgstr "" +#~ "Создание собственного типа полей никогда не было проще! К сожалению, типы " +#~ "полей 3-ей версии не совместимы с версией 4." + +#~ msgid "Migrating your field types is easy, please" +#~ msgstr "Миграция ваших типов полей очень проста, пожалуйста," + +#~ msgid "follow this tutorial" +#~ msgstr "следуйте этому уроку," + +#~ msgid "to learn more." +#~ msgstr "чтобы узнать больше." + +#~ msgid "Actions & Filters" +#~ msgstr "Действия и фильтры" + +#~ msgid "" +#~ "All actions & filters have recieved a major facelift to make customizing " +#~ "ACF even easier! Please" +#~ msgstr "" +#~ "Все действия и фильтры получили крупное внешне обновление, чтобы сделать " +#~ "настраивание ACF еще более простым! Пожалуйста, " + +#~ msgid "read this guide" +#~ msgstr "прочитайте этот гид," + +#~ msgid "to find the updated naming convention." +#~ msgstr "чтобы найти обновленное собрание названий." + +#~ msgid "Preview draft is now working!" +#~ msgstr "Предпросмотр черновика теперь работает!" + +#~ msgid "This bug has been squashed along with many other little critters!" +#~ msgstr "" +#~ "Эта ошибка была раздавленна наряду со многими другими мелкими тварями!" + +#~ msgid "See the full changelog" +#~ msgstr "Посмотреть весь журнал изменений" + +#~ msgid "Important" +#~ msgstr "Важно" + +#~ msgid "Database Changes" +#~ msgstr "Изменения в базе данных" + +#~ msgid "" +#~ "Absolutely no changes have been made to the database " +#~ "between versions 3 and 4. This means you can roll back to version 3 " +#~ "without any issues." +#~ msgstr "" +#~ "Не было абсолютно никаких изменений в базе данных между " +#~ "3-ьей и 4-ой версиями. Это значит, вы можете откатиться до 3-ьей версии " +#~ "без каких либо проблем." + +#~ msgid "Potential Issues" +#~ msgstr "Потенциальные проблемы" + +#~ msgid "" +#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "filters, your website may not operate correctly. It is important that you " +#~ "read the full" +#~ msgstr "" +#~ "В связи со значительными изменениями в аддонах, типах полей и действиях/" +#~ "фильтрах, ваш сайт может не работать корректно. Очень важно, чтобы вы " +#~ "прочитали полный гид" + +#~ msgid "Migrating from v3 to v4" +#~ msgstr "Переезд с версии 3 до версии 4" + +#~ msgid "guide to view the full list of changes." +#~ msgstr "для полного списка изменений." + +#~ msgid "Really Important!" +#~ msgstr "Очень важно!" + +#~ msgid "" +#~ "If you updated the ACF plugin without prior knowledge of such changes, " +#~ "Please roll back to the latest" +#~ msgstr "" +#~ "Если вы обновили плагин ACF без предварительных знаний об изменениях, " +#~ "пожалуйста, откатитесь до последней" + +#~ msgid "version 3" +#~ msgstr "версиай 3" + +#~ msgid "of this plugin." +#~ msgstr "этого плагина." + +#~ msgid "Thank You" +#~ msgstr "Благодарим вас" + +#~ msgid "" +#~ "A BIG thank you to everyone who has helped test the " +#~ "version 4 beta and for all the support I have received." +#~ msgstr "" +#~ "БОЛЬШОЕ спасибо всем, кто помог протестировать версию 4 " +#~ "бета и за всю поддержку, которую мне оказали." + +#~ msgid "Without you all, this release would not have been possible!" +#~ msgstr "Без вас всех, этот релиз был бы невозможен!" + +#~ msgid "Changelog for" +#~ msgstr "Журнал изменений по" + +#~ msgid "Learn more" +#~ msgstr "Узнать больше" + +#~ msgid "Overview" +#~ msgstr "Обзор" + +#~ msgid "" +#~ "Previously, all Add-ons were unlocked via an activation code (purchased " +#~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " +#~ "plugins which need to be individually downloaded, installed and updated." +#~ msgstr "" +#~ "Раньше, все аддоны разблокировались с помощью когда активации (купленные " +#~ "в магазине аддонов ACF). Новинка в версии 4, все аддоны работают, как " +#~ "отдельные плагины, которые должны быть скачаны, установлены и обновлены " +#~ "отдельно." + +#~ msgid "" +#~ "This page will assist you in downloading and installing each available " +#~ "Add-on." +#~ msgstr "" +#~ "Эта страница поможет вам скачать и установить каждый доступный аддон." + +#~ msgid "Available Add-ons" +#~ msgstr "Доступные аддоны" + +#~ msgid "" +#~ "The following Add-ons have been detected as activated on this website." +#~ msgstr "Следующие аддоны были обнаружены активированными на этом сайте." + +#~ msgid "Activation Code" +#~ msgstr "Код активации" + +#~ msgid "Installation" +#~ msgstr "Установка" + +#~ msgid "For each Add-on available, please perform the following:" +#~ msgstr "Для каждого доступно аддона, выполните, пожалуйста, следующее:" + +#~ msgid "Download the Add-on plugin (.zip file) to your desktop" +#~ msgstr "Скачайте плагин аддона (.zip файл) на ваш компьютер." + +#~ msgid "Navigate to" +#~ msgstr "Перейти в" + +#~ msgid "Plugins > Add New > Upload" +#~ msgstr "" +#~ "Откройте \"Плагины\" » \"Добавить новый\" » \"Загрузить\"." + +#~ msgid "" +#~ "Use the uploader to browse, select and install your Add-on (.zip file)" +#~ msgstr "Найдите скачанный .zip файл, выберите его и установите." + +#~ msgid "" +#~ "Once the plugin has been uploaded and installed, click the 'Activate " +#~ "Plugin' link" +#~ msgstr "" +#~ "Как только плагин будет загружен и установлен, нажмите на ссылку " +#~ "\"Активировать плагин\"." + +#~ msgid "The Add-on is now installed and activated!" +#~ msgstr "Аддон теперь установлен и активирован!" + +#~ msgid "Awesome. Let's get to work" +#~ msgstr "Превосходно! Приступим к работе." + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "" +#~ "Проверка не удалась. Один или больше полей ниже обязательны к заполнению." + +#~ msgid "Modifying field group options 'show on page'" +#~ msgstr "Изменение опций \"отображать на странице\" группы полей" + +#~ msgid "Modifying field option 'taxonomy'" +#~ msgstr "Изменение опции \"таксономия\" поля" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "" +#~ "Перенос пользовательских произвольных полей из \"wp_options\" в " +#~ "\"wp_usermeta\"" + +#~ msgid "blue : Blue" +#~ msgstr "blue : Blue" + +#~ msgid "eg: #ffffff" +#~ msgstr "Пример: #ffffff" + +#~ msgid "Save format" +#~ msgstr "Сохранить формат" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "" +#~ "Этот формат определит значение сохраненное в базе данных и возвращенное " +#~ "через API." + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "\"yymmdd\" самоый практичный формат. Прочитать больше о" + +#~ msgid "jQuery date formats" +#~ msgstr "jQuery форматах дат" + +#~ msgid "This format will be seen by the user when entering a value" +#~ msgstr "Этот формат будет виден пользователям при вводе значения." + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "" +#~ "\"dd/mm/yy\" или \"mm/dd/yy\" самые используемые форматы отображения. " +#~ "Прочитать больше о" + +#~ msgid "Dummy" +#~ msgstr "Макет" + +#~ msgid "No File Selected" +#~ msgstr "Файл не выбран" + +#~ msgid "File Object" +#~ msgstr "Файловый объект" + +#~ msgid "File Updated." +#~ msgstr "Файл обновлен." + +#~ msgid "Media attachment updated." +#~ msgstr "Вложение медиа обновлено." + +#~ msgid "No files selected" +#~ msgstr "Файлы не выбраны" + +#~ msgid "Add Selected Files" +#~ msgstr "Добавить выбранные файлы" + +#~ msgid "Image Object" +#~ msgstr "Изображаемый объект" + +#~ msgid "Image Updated." +#~ msgstr "Изображение обновлено." + +#~ msgid "No images selected" +#~ msgstr "Изображение не выбраны" + +#~ msgid "Add Selected Images" +#~ msgstr "Добавить выбранные изображения" + +#~ msgid "Text & HTML entered here will appear inline with the fields" +#~ msgstr "Текст и HTML введенный сюда появится на одной строке с полями." + +#~ msgid "Filter from Taxonomy" +#~ msgstr "Фильтровать по таксономии" + +#~ msgid "Enter your choices one per line" +#~ msgstr "Введите каждый вариант выбора на новую строку." + +#~ msgid "Red" +#~ msgstr "Red" + +#~ msgid "Blue" +#~ msgstr "Blue" + +#~ msgid "Post Type Select" +#~ msgstr "Выбор типа записи" + +#~ msgid "Post Title" +#~ msgstr "Заголовок записи" + +#~ msgid "" +#~ "All fields proceeding this \"tab field\" (or until another \"tab field\" " +#~ "is defined) will appear grouped on the edit screen." +#~ msgstr "" +#~ "Все поля, которые следуют перед этим полем будут находиться в данной " +#~ "вкладке (или пока другое поле-вкладка не будет создано)." + +#~ msgid "You can use multiple tabs to break up your fields into sections." +#~ msgstr "" +#~ "Вы можете использовать несколько вкладок, чтобы разделить свои поля на " +#~ "разделы." + +#~ msgid "Formatting" +#~ msgstr "Форматирование" + +#~ msgid "Define how to render html tags" +#~ msgstr "Определите, как отображать HTML теги." + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Определите, как отображать HTML теги и новые строки." + +#~ msgid "auto <br />" +#~ msgstr "автоматические <br />" + +# Must be non-translateable. +#~ msgid "new_field" +#~ msgstr "new_field" + +#~ msgid "Field Order" +#~ msgstr "Очередность поля" + +#~ msgid "Field Key" +#~ msgstr "Ключ поля" + +#~ msgid "Edit this Field" +#~ msgstr "Редактировать это поле." + +#~ msgid "Read documentation for this field" +#~ msgstr "Прочитайте документацию по этому полю." + +#~ msgid "Docs" +#~ msgstr "Документация" + +#~ msgid "Duplicate this Field" +#~ msgstr "Копировать это поле" + +#~ msgid "Delete this Field" +#~ msgstr "Удалить это поле" + +#~ msgid "Field Instructions" +#~ msgstr "Инструкции по полю" + +#~ msgid "Show this field when" +#~ msgstr "Отображать это поле, когда" + +#~ msgid "all" +#~ msgstr "все" + +#~ msgid "any" +#~ msgstr "любое" + +#~ msgid "these rules are met" +#~ msgstr "из этих условий придерживаются" + +#~ msgid "Taxonomy Term (Add / Edit)" +#~ msgstr "Термин таксономии (Добавить / Редактировать)" + +#~ msgid "User (Add / Edit)" +#~ msgstr "Пользователь (Добавить / Редактировать)" + +#~ msgid "Media Attachment (Edit)" +#~ msgstr "Вложение медиа (Редактировать)" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "Разблокировать опции аддона с помощью кода активации." + +#~ msgid "Normal" +#~ msgstr "Обычно" + +#~ msgid "No Metabox" +#~ msgstr "Без метабокса" + +#~ msgid "Standard Metabox" +#~ msgstr "Стандартный метабокс" diff --git a/lang/pro/acf-sk_SK.po b/lang/pro/acf-sk_SK.po new file mode 100644 index 0000000..e7913b6 --- /dev/null +++ b/lang/pro/acf-sk_SK.po @@ -0,0 +1,2601 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2015-08-11 23:45+0200\n" +"PO-Revision-Date: 2018-02-06 10:07+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: wp.sk \n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Poedit 1.8.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;" +"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:63 +msgid "Advanced Custom Fields" +msgstr "Rozšírené vlastné polia" + +#: acf.php:205 admin/admin.php:61 +msgid "Field Groups" +msgstr "Skupiny polí" + +#: acf.php:206 +msgid "Field Group" +msgstr "Skupina polí" + +#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517 +msgid "Add New" +msgstr "Pridať novú" + +#: acf.php:208 +msgid "Add New Field Group" +msgstr "Pridať novú skupinu polí " + +#: acf.php:209 +msgid "Edit Field Group" +msgstr "Upraviť skupinu polí " + +#: acf.php:210 +msgid "New Field Group" +msgstr "Pridať novú skupinu polí " + +#: acf.php:211 +msgid "View Field Group" +msgstr "Zobraziť skupinu polí " + +#: acf.php:212 +msgid "Search Field Groups" +msgstr "Hľadať skupinu polí " + +#: acf.php:213 +msgid "No Field Groups found" +msgstr "Nenašla sa skupina polí " + +#: acf.php:214 +msgid "No Field Groups found in Trash" +msgstr "V koši sa nenašla skupina polí " + +#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519 +msgid "Fields" +msgstr "Polia " + +#: acf.php:238 +msgid "Field" +msgstr "Pole" + +#: acf.php:240 +msgid "Add New Field" +msgstr "Pridať nové pole" + +#: acf.php:241 +msgid "Edit Field" +msgstr "Upraviť pole" + +#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111 +msgid "New Field" +msgstr "Nové pole " + +#: acf.php:243 +msgid "View Field" +msgstr "Zobraziť pole" + +#: acf.php:244 +msgid "Search Fields" +msgstr "Hľadať polia" + +#: acf.php:245 +msgid "No Fields found" +msgstr "Nenašli sa polia" + +#: acf.php:246 +msgid "No Fields found in Trash" +msgstr "V koši sa nenašli polia" + +#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 admin/views/field-group-options.php:18 +msgid "Disabled" +msgstr "" + +#: acf.php:273 +#, php-format +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin/admin.php:57 admin/views/field-group-options.php:120 +msgid "Custom Fields" +msgstr "Vlastné polia " + +#: admin/field-group.php:68 admin/field-group.php:69 admin/field-group.php:71 +msgid "Field group updated." +msgstr "Skupina polí aktualizovaná. " + +#: admin/field-group.php:70 +msgid "Field group deleted." +msgstr "Skupina polí aktualizovaná. " + +#: admin/field-group.php:73 +msgid "Field group published." +msgstr "Skupina polí aktualizovaná. " + +#: admin/field-group.php:74 +msgid "Field group saved." +msgstr "Skupina polí uložená. " + +#: admin/field-group.php:75 +msgid "Field group submitted." +msgstr "Skupina polí odoslaná. " + +#: admin/field-group.php:76 +msgid "Field group scheduled for." +msgstr "Skupina polí naplánovaná na. " + +#: admin/field-group.php:77 +msgid "Field group draft updated." +msgstr "Koncept skupiny polí uložený. " + +#: admin/field-group.php:176 +msgid "Move to trash. Are you sure?" +msgstr "Presunúť do koša. Naozaj? " + +#: admin/field-group.php:177 +msgid "checked" +msgstr "zaškrtnuté " + +#: admin/field-group.php:178 +msgid "No toggle fields available" +msgstr "Prepínacie polia nenájdené" + +#: admin/field-group.php:179 +msgid "Field group title is required" +msgstr "Nadpis skupiny poľa je povinný " + +#: admin/field-group.php:180 api/api-field-group.php:607 +msgid "copy" +msgstr "kopírovať " + +#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67 +#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23 +#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262 +msgid "or" +msgstr "alebo" + +#: admin/field-group.php:183 +msgid "Parent fields" +msgstr "Nadradené polia " + +#: admin/field-group.php:184 +msgid "Sibling fields" +msgstr "Podobné polia " + +#: admin/field-group.php:185 +msgid "Move Custom Field" +msgstr "Presunúť pole do inej skupiny " + +#: admin/field-group.php:186 +msgid "This field cannot be moved until its changes have been saved" +msgstr "Kým nebudú uložené zmeny, pole nemôže byť presunuté" + +#: admin/field-group.php:187 +msgid "Null" +msgstr "Nulová hodnota" + +#: admin/field-group.php:188 core/input.php:128 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "Ak odítete zo stránky, zmeny nebudú uložené" + +#: admin/field-group.php:189 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "Reťazec \"field_\" nesmie byť použitý na začiatku názvu poľa" + +#: admin/field-group.php:214 +msgid "Location" +msgstr "Umiestnenie " + +#: admin/field-group.php:215 +msgid "Settings" +msgstr "" + +#: admin/field-group.php:253 +msgid "Field Keys" +msgstr "" + +#: admin/field-group.php:283 admin/views/field-group-options.php:17 +msgid "Active" +msgstr "" + +#: admin/field-group.php:744 +msgid "Front Page" +msgstr "Úvodná stránka " + +#: admin/field-group.php:745 +msgid "Posts Page" +msgstr "Stránka príspevkov " + +#: admin/field-group.php:746 +msgid "Top Level Page (no parent)" +msgstr "Najvyššia úroveň stránok (nemá nadradené stránky) " + +#: admin/field-group.php:747 +msgid "Parent Page (has children)" +msgstr "Nadradená stránka (má odvodené) " + +#: admin/field-group.php:748 +msgid "Child Page (has parent)" +msgstr "Odvodená stránka (má nadradené) " + +#: admin/field-group.php:764 +msgid "Default Template" +msgstr "Základná šablóna " + +#: admin/field-group.php:786 +msgid "Logged in" +msgstr "Typ prihláseného používatela " + +#: admin/field-group.php:787 +msgid "Viewing front end" +msgstr "Zobrazenie stránok" + +#: admin/field-group.php:788 +msgid "Viewing back end" +msgstr "Zobrazenie administrácie" + +#: admin/field-group.php:807 +msgid "Super Admin" +msgstr "Super Admin " + +#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840 admin/field-group.php:847 +#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 fields/image.php:226 pro/fields/gallery.php:653 +msgid "All" +msgstr "Všetky " + +#: admin/field-group.php:827 +msgid "Add / Edit" +msgstr "Pridať/ Upraviť" + +#: admin/field-group.php:828 +msgid "Register" +msgstr "Registrovať" + +#: admin/field-group.php:1059 +msgid "Move Complete." +msgstr "Presunutie dokončené" + +#: admin/field-group.php:1060 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Pole %s teraz nájdete v poli skupiny %s" + +#: admin/field-group.php:1062 +msgid "Close Window" +msgstr "Zatvoriť okno" + +#: admin/field-group.php:1097 +msgid "Please select the destination for this field" +msgstr "Vyberte cielové umietnenie poľa" + +#: admin/field-group.php:1104 +msgid "Move Field" +msgstr "Presunúť pole" + +#: admin/field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: admin/field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "Skupina polí duplikovaná. %s" + +#: admin/field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s skupina polí bola duplikovaná." +msgstr[1] "%s skupiny polí boli duplikované." +msgstr[2] "%s skupín polí bolo duplikovaných." + +#: admin/field-groups.php:228 +#, php-format +msgid "Field group synchronised. %s" +msgstr "Skupina polí bola synchronizovaná. %s" + +#: admin/field-groups.php:232 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s skupina polí bola synchronizovaná." +msgstr[1] "%s skupiny polí boli synchronizované." +msgstr[2] "%s skupín polí bolo synchronizovaných." + +#: admin/field-groups.php:403 admin/field-groups.php:573 +msgid "Sync available" +msgstr "Dostupná aktualizácia " + +#: admin/field-groups.php:516 +msgid "Title" +msgstr "Názov" + +#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20 +#: admin/views/update-network.php:28 +msgid "Description" +msgstr "" + +#: admin/field-groups.php:518 admin/views/field-group-options.php:10 +msgid "Status" +msgstr "" + +#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111 +msgid "Changelog" +msgstr "Záznam zmien " + +#: admin/field-groups.php:617 +msgid "See what's new in" +msgstr "Pozrite sa, čo je nové:" + +#: admin/field-groups.php:617 +msgid "version" +msgstr "verzia " + +#: admin/field-groups.php:619 +msgid "Resources" +msgstr "Zdroje " + +#: admin/field-groups.php:621 +msgid "Getting Started" +msgstr "Začíname " + +#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17 +msgid "Updates" +msgstr "Aktualizácie" + +#: admin/field-groups.php:623 +msgid "Field Types" +msgstr "Typy polí " + +#: admin/field-groups.php:624 +msgid "Functions" +msgstr "Funkcie " + +#: admin/field-groups.php:625 +msgid "Actions" +msgstr "Akcie " + +#: admin/field-groups.php:626 fields/relationship.php:718 +msgid "Filters" +msgstr "Filtre " + +#: admin/field-groups.php:627 +msgid "'How to' guides" +msgstr "Návody \"Ako na to\" " + +#: admin/field-groups.php:628 +msgid "Tutorials" +msgstr "Návody " + +#: admin/field-groups.php:633 +msgid "Created by" +msgstr "Vytvoril " + +#: admin/field-groups.php:673 +msgid "Duplicate this item" +msgstr "Duplikovať toto pole " + +#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58 +#: pro/fields/flexible-content.php:516 +msgid "Duplicate" +msgstr "Duplikovať " + +#: admin/field-groups.php:724 +#, php-format +msgid "Select %s" +msgstr "Vybrať %s" + +#: admin/field-groups.php:730 +msgid "Synchronise field group" +msgstr "Zobraziť túto skupinu poľa, ak" + +#: admin/field-groups.php:730 admin/field-groups.php:750 +msgid "Sync" +msgstr "Synchronizácia" + +#: admin/settings-addons.php:51 admin/views/settings-addons.php:9 +msgid "Add-ons" +msgstr "Doplnky " + +#: admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "Chyba. Nie je možné načítať zoznam doplnkov" + +#: admin/settings-info.php:50 +msgid "Info" +msgstr "Info" + +#: admin/settings-info.php:75 +msgid "What's New" +msgstr "Čo je nové " + +#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31 +msgid "Tools" +msgstr "" + +#: admin/settings-tools.php:151 admin/settings-tools.php:365 +msgid "No field groups selected" +msgstr "Nezvolili ste skupiny poľa " + +#: admin/settings-tools.php:188 +msgid "No file selected" +msgstr "Nevybrali ste súbor " + +#: admin/settings-tools.php:201 +msgid "Error uploading file. Please try again" +msgstr "Chyba pri nahrávaní súbora. Prosím skúste to znova" + +#: admin/settings-tools.php:210 +msgid "Incorrect file type" +msgstr "Typ nahraného súboru nie je povolený " + +#: admin/settings-tools.php:227 +msgid "Import file empty" +msgstr "Nahraný súbor bol prázdny" + +#: admin/settings-tools.php:323 +#, php-format +msgid "Success. Import tool added %s field groups: %s" +msgstr "Úspech. Nástroj importu pridal %s skupiny polí: %s" + +#: admin/settings-tools.php:332 +#, php-format +msgid "Warning. Import tool detected %s field groups already exist and have been ignored: %s" +msgstr "Varovanie. Nástroj importu zistil, že už exsituje %s polí skupín, ktoré boli ignorované: %s" + +#: admin/update.php:113 +msgid "Upgrade ACF" +msgstr "" + +#: admin/update.php:143 +msgid "Review sites & upgrade" +msgstr "" + +#: admin/update.php:298 +msgid "Upgrade" +msgstr "Aktualizovať " + +#: admin/update.php:328 +msgid "Upgrade Database" +msgstr "" + +#: admin/views/field-group-field-conditional-logic.php:29 +msgid "Conditional Logic" +msgstr "Podmienená logika " + +#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137 fields/checkbox.php:246 +#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 fields/post_object.php:434 +#: fields/post_object.php:448 fields/select.php:411 fields/select.php:425 fields/select.php:439 fields/select.php:453 +#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 +#: fields/user.php:457 fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93 +msgid "Yes" +msgstr "Áno " + +#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138 fields/checkbox.php:247 +#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 fields/post_object.php:435 +#: fields/post_object.php:449 fields/select.php:412 fields/select.php:426 fields/select.php:440 fields/select.php:454 +#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 +#: fields/taxonomy.php:813 fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385 +#: pro/admin/views/settings-updates.php:103 +msgid "No" +msgstr "Nie" + +#: admin/views/field-group-field-conditional-logic.php:65 +msgid "Show this field if" +msgstr "Zobraziť toto pole ak" + +#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88 +msgid "is equal to" +msgstr "sa rovná " + +#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89 +msgid "is not equal to" +msgstr "sa nerovná" + +#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118 +msgid "and" +msgstr "a" + +#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133 +msgid "Add rule group" +msgstr "Pridať skupinu pravidiel " + +#: admin/views/field-group-field.php:54 admin/views/field-group-field.php:57 +msgid "Edit field" +msgstr "Upraviť pole" + +#: admin/views/field-group-field.php:57 pro/fields/gallery.php:355 +msgid "Edit" +msgstr "Upraviť" + +#: admin/views/field-group-field.php:58 +msgid "Duplicate field" +msgstr "Duplikovať pole" + +#: admin/views/field-group-field.php:59 +msgid "Move field to another group" +msgstr "Presunúť pole do inej skupiny" + +#: admin/views/field-group-field.php:59 +msgid "Move" +msgstr "Presunúť" + +#: admin/views/field-group-field.php:60 +msgid "Delete field" +msgstr "Vymazať pole" + +#: admin/views/field-group-field.php:60 pro/fields/flexible-content.php:515 +msgid "Delete" +msgstr "Vymazať" + +#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886 +msgid "Error" +msgstr "Chyba " + +#: fields/oembed.php:220 fields/taxonomy.php:900 +msgid "Error." +msgstr "Chyba." + +#: admin/views/field-group-field.php:68 +msgid "Field type does not exist" +msgstr "Typ poľa neexistuje " + +#: admin/views/field-group-field.php:81 +msgid "Field Label" +msgstr "Označenie poľa " + +#: admin/views/field-group-field.php:82 +msgid "This is the name which will appear on the EDIT page" +msgstr "Toto je meno, ktoré sa zobrazí na stránke úprav " + +#: admin/views/field-group-field.php:93 +msgid "Field Name" +msgstr "Meno poľa " + +#: admin/views/field-group-field.php:94 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Jedno slovo, žiadne medzery. Podčiarknutie a pomlčky sú povolené " + +#: admin/views/field-group-field.php:105 +msgid "Field Type" +msgstr "Typ poľa" + +#: admin/views/field-group-field.php:118 fields/tab.php:143 +msgid "Instructions" +msgstr "Pokyny " + +#: admin/views/field-group-field.php:119 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Pokyny pre autorov. Zobrazia sa pri zadávaní dát " + +#: admin/views/field-group-field.php:130 +msgid "Required?" +msgstr "Povinné? " + +#: admin/views/field-group-field.php:158 +msgid "Wrapper Attributes" +msgstr "Hodnoty bloku polí v administrácii" + +#: admin/views/field-group-field.php:164 +msgid "width" +msgstr "Šírka" + +#: admin/views/field-group-field.php:178 +msgid "class" +msgstr "trieda" + +#: admin/views/field-group-field.php:191 +msgid "id" +msgstr "id " + +#: admin/views/field-group-field.php:203 +msgid "Close Field" +msgstr "Zavrieť pole " + +#: admin/views/field-group-fields.php:29 +msgid "Order" +msgstr "Poradie" + +#: admin/views/field-group-fields.php:30 pro/fields/flexible-content.php:541 +msgid "Label" +msgstr "Označenie " + +#: admin/views/field-group-fields.php:31 pro/fields/flexible-content.php:554 +msgid "Name" +msgstr "Meno" + +#: admin/views/field-group-fields.php:32 +msgid "Type" +msgstr "Typ" + +#: admin/views/field-group-fields.php:44 +msgid "No fields. Click the + Add Field button to create your first field." +msgstr "Žiadne polia. Kliknite na tlačidlo + Pridať pole pre vytvorenie prvého poľa. " + +#: admin/views/field-group-fields.php:51 +msgid "Drag and drop to reorder" +msgstr "Zmeňte poradie pomocou funkcie ťahaj a pusť" + +#: admin/views/field-group-fields.php:54 +msgid "+ Add Field" +msgstr "+ Pridať pole " + +#: admin/views/field-group-locations.php:5 +msgid "Rules" +msgstr "Pravidlá " + +#: admin/views/field-group-locations.php:6 +msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" +msgstr "Vytvorte súbor pravidiel určujúcich, ktoré obrazovky úprav budú používať Vlastné polia" + +#: admin/views/field-group-locations.php:21 +msgid "Show this field group if" +msgstr "Zobraziť túto skupinu poľa ak " + +#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47 +msgid "Post" +msgstr "Príspevok " + +#: admin/views/field-group-locations.php:42 fields/relationship.php:724 +msgid "Post Type" +msgstr "Typ príspevku " + +#: admin/views/field-group-locations.php:43 +msgid "Post Status" +msgstr "Stav príspevku " + +#: admin/views/field-group-locations.php:44 +msgid "Post Format" +msgstr "Formát príspevku " + +#: admin/views/field-group-locations.php:45 +msgid "Post Category" +msgstr "Kategória príspevku " + +#: admin/views/field-group-locations.php:46 +msgid "Post Taxonomy" +msgstr "Taxonómia príspevku " + +#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53 +msgid "Page" +msgstr "Stránka " + +#: admin/views/field-group-locations.php:50 +msgid "Page Template" +msgstr "Šablóna stránky " + +#: admin/views/field-group-locations.php:51 +msgid "Page Type" +msgstr "Typ stránky " + +#: admin/views/field-group-locations.php:52 +msgid "Page Parent" +msgstr "Nadradená stránka " + +#: admin/views/field-group-locations.php:55 fields/user.php:36 +msgid "User" +msgstr "Používateľ " + +#: admin/views/field-group-locations.php:56 +msgid "Current User" +msgstr "Aktuálny používateľ" + +#: admin/views/field-group-locations.php:57 +msgid "Current User Role" +msgstr "Aktuálne oprávnenia" + +#: admin/views/field-group-locations.php:58 +msgid "User Form" +msgstr "Formulár používatela" + +#: admin/views/field-group-locations.php:59 +msgid "User Role" +msgstr "Oprávnenia " + +#: admin/views/field-group-locations.php:61 pro/admin/options-page.php:48 +msgid "Forms" +msgstr "Formuláre" + +#: admin/views/field-group-locations.php:62 +msgid "Attachment" +msgstr "Príloha " + +#: admin/views/field-group-locations.php:63 +msgid "Taxonomy Term" +msgstr "Výraz taxonómie " + +#: admin/views/field-group-locations.php:64 +msgid "Comment" +msgstr "Komentár" + +#: admin/views/field-group-locations.php:65 +msgid "Widget" +msgstr "Widget" + +#: admin/views/field-group-options.php:25 +msgid "Style" +msgstr "Štýl " + +#: admin/views/field-group-options.php:32 +msgid "Standard (WP metabox)" +msgstr "Štandardný metabox " + +#: admin/views/field-group-options.php:33 +msgid "Seamless (no metabox)" +msgstr "Žiadny metabox " + +#: admin/views/field-group-options.php:40 +msgid "Position" +msgstr "Pozícia " + +#: admin/views/field-group-options.php:47 +msgid "High (after title)" +msgstr "Hore (pod nadpisom) " + +#: admin/views/field-group-options.php:48 +msgid "Normal (after content)" +msgstr "Normálne (po obsahu) " + +#: admin/views/field-group-options.php:49 +msgid "Side" +msgstr "Strana " + +#: admin/views/field-group-options.php:57 +msgid "Label placement" +msgstr "Umiestnenie inštrukcií " + +#: admin/views/field-group-options.php:64 fields/tab.php:159 +msgid "Top aligned" +msgstr "Zarovnané dohora" + +#: admin/views/field-group-options.php:65 fields/tab.php:160 +msgid "Left aligned" +msgstr "Zarovnané vľavo" + +#: admin/views/field-group-options.php:72 +msgid "Instruction placement" +msgstr "Umiestnenie inštrukcií" + +#: admin/views/field-group-options.php:79 +msgid "Below labels" +msgstr "Pod označením" + +#: admin/views/field-group-options.php:80 +msgid "Below fields" +msgstr "Pod poliami" + +#: admin/views/field-group-options.php:87 +msgid "Order No." +msgstr "Poradové číslo" + +#: admin/views/field-group-options.php:88 +msgid "Field groups with a lower order will appear first" +msgstr "" + +#: admin/views/field-group-options.php:99 +msgid "Shown in field group list" +msgstr "" + +#: admin/views/field-group-options.php:109 +msgid "Hide on screen" +msgstr "Schovať na obrazovke " + +#: admin/views/field-group-options.php:110 +msgid "Select items to hide them from the edit screen." +msgstr "Vybrať položky pre ich skrytie pred obrazovkou úprav." + +#: admin/views/field-group-options.php:110 +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 "" +"Ak viaceré skupiny polí sa zobrazia na obrazovke úprav, nastavenia prvej skupiny budú použité (tá s najnižším poradovým " +"číslom)" + +#: admin/views/field-group-options.php:117 +msgid "Permalink" +msgstr "Trvalý odkaz" + +#: admin/views/field-group-options.php:118 +msgid "Content Editor" +msgstr "Úpravca obsahu" + +#: admin/views/field-group-options.php:119 +msgid "Excerpt" +msgstr "Zhrnutie " + +#: admin/views/field-group-options.php:121 +msgid "Discussion" +msgstr "Diskusia " + +#: admin/views/field-group-options.php:122 +msgid "Comments" +msgstr "Komentáre " + +#: admin/views/field-group-options.php:123 +msgid "Revisions" +msgstr "Revízie " + +#: admin/views/field-group-options.php:124 +msgid "Slug" +msgstr "Slug " + +#: admin/views/field-group-options.php:125 +msgid "Author" +msgstr "Autor " + +#: admin/views/field-group-options.php:126 +msgid "Format" +msgstr "Formát " + +#: admin/views/field-group-options.php:127 +msgid "Page Attributes" +msgstr "Vlastnosti stránky" + +#: admin/views/field-group-options.php:128 fields/relationship.php:737 +msgid "Featured Image" +msgstr "Prezentačný obrázok " + +#: admin/views/field-group-options.php:129 +msgid "Categories" +msgstr "Kategórie " + +#: admin/views/field-group-options.php:130 +msgid "Tags" +msgstr "Značky " + +#: admin/views/field-group-options.php:131 +msgid "Send Trackbacks" +msgstr "Odoslať spätné odkazy " + +#: admin/views/settings-addons.php:23 +msgid "Download & Install" +msgstr "Stiahnuť a nainštalovať" + +#: admin/views/settings-addons.php:42 +msgid "Installed" +msgstr "Nainštalované " + +#: admin/views/settings-info.php:9 +msgid "Welcome to Advanced Custom Fields" +msgstr "Víta vás Advanced Custom Fields " + +#: admin/views/settings-info.php:10 +#, php-format +msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it." +msgstr "Vďaka za zakutalizáciu! ACF %s je väčšie a lepšie než kedykoľvek predtým. Dúfame, že sa vám páči." + +#: admin/views/settings-info.php:23 +msgid "A smoother custom field experience" +msgstr "Jednoduchšie používanie polí" + +#: admin/views/settings-info.php:28 +msgid "Improved Usability" +msgstr "Vylepšená použiteľnosť" + +#: admin/views/settings-info.php:29 +msgid "" +"Including the popular Select2 library has improved both usability and speed across a number of field types including " +"post object, page link, taxonomy and select." +msgstr "" +"Populárna knižnica Select2 obsahuje vylepšenú použiteľnosť a rýchlosť medzi všetkými poliami vrátane objektov, odkazov " +"taxonómie a výberov." + +#: admin/views/settings-info.php:33 +msgid "Improved Design" +msgstr "Vylepšený dizajn" + +#: admin/views/settings-info.php:34 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are seen on the " +"gallery, relationship and oEmbed (new) fields!" +msgstr "" +"Vela polí prebehlo grafickou úpravou. Teraz ACF vyzerá oveľa lepšie! Zmeny uvidíte v galérii, vzťahoch a OEmbed " +"(vložených) poliach!" + +#: admin/views/settings-info.php:38 +msgid "Improved Data" +msgstr "Vylepšené dáta" + +#: admin/views/settings-info.php:39 +msgid "" +"Redesigning the data architecture has allowed sub fields to live independently from their parents. This allows you to " +"drag and drop fields in and out of parent fields!" +msgstr "" +"Zmena dátovej architektúry priniesla nezávislosť odvodených polí od nadradených. Toto vám dovoľuje prenášat polia mimo " +"nadradených polí!" + +#: admin/views/settings-info.php:45 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "Dovidenia doplnky. Vitaj PRO" + +#: admin/views/settings-info.php:50 +msgid "Introducing ACF PRO" +msgstr "Pro verzia " + +#: admin/views/settings-info.php:51 +msgid "We're changing the way premium functionality is delivered in an exciting way!" +msgstr "Prémiové funkcie modulu sme sa rozhodli poskytnúť vzrušujúcejším spôsobom!" + +#: admin/views/settings-info.php:52 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro version of ACF. With both personal and " +"developer licenses available, premium functionality is more affordable and accessible than ever before!" +msgstr "" +"Všetky prémiové doplnky boli spojené do Pro verzie ACF. Prémiové funkcie sú dostupnejšie a " +"prístupnejšie aj pomocou personálnych a firemmných licencií!" + +#: admin/views/settings-info.php:56 +msgid "Powerful Features" +msgstr "Výkonné funkcie" + +#: admin/views/settings-info.php:57 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful gallery field and the " +"ability to create extra admin options pages!" +msgstr "" +"ACF PRO obsahuje opakovanie zadaných dát, flexibilné rozloženie obsahu, prekrásnu galériu a extra administračné stránky!" + +#: admin/views/settings-info.php:58 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "Prečítajte si viac o vlastnostiach ACF PRO." + +#: admin/views/settings-info.php:62 +msgid "Easy Upgrading" +msgstr "Ľahká aktualizácia" + +#: admin/views/settings-info.php:63 +#, php-format +msgid "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +msgstr "Pre uľahčenie aktualizácie, prihláste sa do obchodu a získajte zdarma ACF PRO!" + +#: admin/views/settings-info.php:64 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, but if you do have one, please contact our " +"support team via the help desk" +msgstr "" +"Napísali sme príručku k aktualizácii. Zodpovedali sme väčšinu otázok, ak však máte nejaké ďaľšie " +"kontaktuje našu podporu" + +#: admin/views/settings-info.php:72 +msgid "Under the Hood" +msgstr "Pod kapotou" + +#: admin/views/settings-info.php:77 +msgid "Smarter field settings" +msgstr "Vylepšené nastavenia polí" + +#: admin/views/settings-info.php:78 +msgid "ACF now saves its field settings as individual post objects" +msgstr "ACF ukladá nastavenia polí ako jednotlivé objekty" + +#: admin/views/settings-info.php:82 +msgid "More AJAX" +msgstr "Viac AJAXu" + +#: admin/views/settings-info.php:83 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "Pre rýchlejšie načítanie, používame AJAX vyhľadávanie" + +#: admin/views/settings-info.php:87 +msgid "Local JSON" +msgstr "Local JSON" + +#: admin/views/settings-info.php:88 +msgid "New auto export to JSON feature improves speed" +msgstr "Nový auto export JSON vylepšuje rýchlosť" + +#: admin/views/settings-info.php:94 +msgid "Better version control" +msgstr "Lepšia správa verzií" + +#: admin/views/settings-info.php:95 +msgid "New auto export to JSON feature allows field settings to be version controlled" +msgstr "Nový auto export JSON obsahuje kontrolu verzií povolených polí" + +#: admin/views/settings-info.php:99 +msgid "Swapped XML for JSON" +msgstr "Vymenené XML za JSON" + +#: admin/views/settings-info.php:100 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "Import / Export teraz používa JSON miesto XML" + +#: admin/views/settings-info.php:104 +msgid "New Forms" +msgstr "Nové formuláre" + +#: admin/views/settings-info.php:105 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "Polia môžu patriť komentárom, widgetom a všetkým formulárom!" + +#: admin/views/settings-info.php:112 +msgid "A new field for embedding content has been added" +msgstr "Bolo pridané nové pole pre vložený obsah" + +#: admin/views/settings-info.php:116 +msgid "New Gallery" +msgstr "Nová galéria" + +#: admin/views/settings-info.php:117 +msgid "The gallery field has undergone a much needed facelift" +msgstr "Pole galérie vážne potrebovalo upraviť vzhľad" + +#: admin/views/settings-info.php:121 +msgid "New Settings" +msgstr "Nové nastavenia" + +#: admin/views/settings-info.php:122 +msgid "Field group settings have been added for label placement and instruction placement" +msgstr "Boli pridané nastavenie skupiny pola pre umiestnenie oznčenia a umietsntenie inštrukcií" + +#: admin/views/settings-info.php:128 +msgid "Better Front End Forms" +msgstr "Lepšie vidieľné formuláre" + +#: admin/views/settings-info.php:129 +msgid "acf_form() can now create a new post on submission" +msgstr "acf_form() teraz po odoslaní môže vytvoriť nový príspevok" + +#: admin/views/settings-info.php:133 +msgid "Better Validation" +msgstr "Lepšie overovanie" + +#: admin/views/settings-info.php:134 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "Overovanie formulára sa deje pomocou PHP a AJAX namiesto JS" + +#: admin/views/settings-info.php:138 +msgid "Relationship Field" +msgstr "Vzťah polí" + +#: admin/views/settings-info.php:139 +msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "Nový nastavenie vťahov pola 'FIltre' (vyhľadávanie, typ článku, taxonómia)" + +#: admin/views/settings-info.php:145 +msgid "Moving Fields" +msgstr "Hýbajúce polia" + +#: admin/views/settings-info.php:146 +msgid "New field group functionality allows you to move a field between groups & parents" +msgstr "Nová skupinová funkcionalita vám dovolí presúvať polia medzi skupinami a nadradenými poliami" + +#: admin/views/settings-info.php:150 fields/page_link.php:36 +msgid "Page Link" +msgstr "Odkaz stránky " + +#: admin/views/settings-info.php:151 +msgid "New archives group in page_link field selection" +msgstr "Nová skupina archívov vo výbere pola page_link" + +#: admin/views/settings-info.php:155 +msgid "Better Options Pages" +msgstr "Lepšie nastavenia stránok" + +#: admin/views/settings-info.php:156 +msgid "New functions for options page allow creation of both parent and child menu pages" +msgstr "Nové funkcie nastavenia stránky vám dovolí vytvorenie vytvorenie menu nadradených aj odvodených stránok" + +#: admin/views/settings-info.php:165 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Myslíme, že si zamilujete zmeny v %s." + +#: admin/views/settings-tools-export.php:13 +msgid "Export Field Groups to PHP" +msgstr "Export skupiny poľa do PHP " + +#: admin/views/settings-tools-export.php:17 +msgid "" +"The following code can be used to register a local version of the selected field group(s). A local field group 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." +msgstr "" +"Nasledujúci kód môže byť použitý pre miestnu veru vybraných polí skupín. Lokálna skupina polí poskytuje rýchlejšie " +"načítanie, lepšiu kontrolu verzií a dynamické polia a ich nastavenia. Jednoducho skopírujte nasledujúci kód do súboru " +"funkcií vašej témy functions.php alebo ich zahrňte v externom súbore." + +#: admin/views/settings-tools.php:5 +msgid "Select Field Groups" +msgstr "Vyberte skupiny poľa na export " + +#: admin/views/settings-tools.php:35 +msgid "Export Field Groups" +msgstr "Export skupín polí " + +#: admin/views/settings-tools.php:38 +msgid "" +"Select the field groups you would like to export and then select your export method. Use the download button to export " +"to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code " +"which you can place in your theme." +msgstr "" +"Vyberte skupiny polí, ktoré chcete exportovať. Vyberte vhodnú metódu exportu. Tlačidlo Stiahnuť vám exportuje dáta do ." +"json súboru. Tento súbor môžete použiť v inej ACF inštalácii. Tlačidlo Generovať vám vyvtorí PHP kód, ktorý použijete vo " +"vašej téme." + +#: admin/views/settings-tools.php:50 +msgid "Download export file" +msgstr "Stiahnuť súbor na export" + +#: admin/views/settings-tools.php:51 +msgid "Generate export code" +msgstr "Vytvoriť exportný kód" + +#: admin/views/settings-tools.php:64 +msgid "Import Field Groups" +msgstr "Importovať skupiny poľa" + +#: admin/views/settings-tools.php:67 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will " +"import the field groups." +msgstr "Vyberte JSON súbor ACF na import. Po kliknutí na tlačidlo import sa nahrajú všetky skupiny polí ACF." + +#: admin/views/settings-tools.php:77 fields/file.php:46 +msgid "Select File" +msgstr "Vybrať subor " + +#: admin/views/settings-tools.php:86 +msgid "Import" +msgstr "Import " + +#: admin/views/update-network.php:8 admin/views/update.php:8 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "" + +#: admin/views/update-network.php:10 +msgid "The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade Database”." +msgstr "" + +#: admin/views/update-network.php:19 admin/views/update-network.php:27 +msgid "Site" +msgstr "" + +#: admin/views/update-network.php:47 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "" + +#: admin/views/update-network.php:49 +msgid "Site is up to date" +msgstr "" + +#: admin/views/update-network.php:62 admin/views/update.php:16 +msgid "Database Upgrade complete. Return to network dashboard" +msgstr "" + +#: admin/views/update-network.php:101 admin/views/update-notice.php:35 +msgid "" +"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" +msgstr "Pred aktualizáciou odporúčame zálohovať databázu. Želáte si aktualizáciu spustiť teraz?" + +#: admin/views/update-network.php:157 +msgid "Upgrade complete" +msgstr "" + +#: admin/views/update-network.php:161 +msgid "Upgrading data to" +msgstr "" + +#: admin/views/update-notice.php:23 +msgid "Database Upgrade Required" +msgstr "Je potrebná aktualizácia databázy" + +#: admin/views/update-notice.php:25 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "Vďaka za aktualizáciu %s v%s!" + +#: admin/views/update-notice.php:25 +msgid "Before you start using the new awesome features, please update your database to the newest version." +msgstr "Než začnete používať nové funkcie, prosím najprv aktualizujte vašu databázu na najnovšiu verziu." + +#: admin/views/update.php:12 +msgid "Reading upgrade tasks..." +msgstr "Čítanie aktualizačných úloh..." + +#: admin/views/update.php:14 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Aktualizácia dát na verziu %s" + +#: admin/views/update.php:16 +msgid "See what's new" +msgstr "Pozrite sa, čo je nové" + +#: admin/views/update.php:110 +msgid "No updates available." +msgstr "" + +#: api/api-helpers.php:821 +msgid "Thumbnail" +msgstr "Náhľad " + +#: api/api-helpers.php:822 +msgid "Medium" +msgstr "Stredný " + +#: api/api-helpers.php:823 +msgid "Large" +msgstr "Veľký " + +#: api/api-helpers.php:871 +msgid "Full Size" +msgstr "Úplný " + +#: api/api-helpers.php:1581 +msgid "(no title)" +msgstr "(bez názvu)" + +#: api/api-helpers.php:3183 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "Šírka obrázku musí byť aspoň %dpx." + +#: api/api-helpers.php:3188 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "Šírka obrázku nesmie prekročiť %dpx." + +#: api/api-helpers.php:3204 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "Výška obrázku musí byť aspoň %dpx." + +#: api/api-helpers.php:3209 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "Výška obrázku nesmie prekročiť %dpx." + +#: api/api-helpers.php:3227 +#, php-format +msgid "File size must be at least %s." +msgstr "Veľkosť súboru musí byť aspoň %s." + +#: api/api-helpers.php:3232 +#, php-format +msgid "File size must must not exceed %s." +msgstr "Veľkosť súboru nesmie prekročiť %s." + +#: api/api-helpers.php:3266 +#, php-format +msgid "File type must be %s." +msgstr "Typ súboru musí byť %s." + +#: api/api-template.php:1289 pro/fields/gallery.php:564 +msgid "Update" +msgstr "Aktualizovať " + +#: api/api-template.php:1290 +msgid "Post updated" +msgstr "Príspevok akutalizovaný " + +#: core/field.php:131 +msgid "Basic" +msgstr "Základné " + +#: core/field.php:132 +msgid "Content" +msgstr "Obsah " + +#: core/field.php:133 +msgid "Choice" +msgstr "Voľba " + +#: core/field.php:134 +msgid "Relational" +msgstr "Relačný " + +#: core/field.php:135 +msgid "jQuery" +msgstr "jQuery " + +#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512 +#: pro/fields/repeater.php:392 +msgid "Layout" +msgstr "Rozmiestnenie" + +#: core/input.php:129 +msgid "Expand Details" +msgstr "Zväčšiť detaily " + +#: core/input.php:130 +msgid "Collapse Details" +msgstr "Zmenšiť detaily " + +#: core/input.php:131 +msgid "Validation successful" +msgstr "Overenie bolo úspešné" + +#: core/input.php:132 +msgid "Validation failed" +msgstr "Overenie zlyhalo. " + +#: core/input.php:133 +msgid "1 field requires attention" +msgstr "" + +#: core/input.php:134 +#, php-format +msgid "%d fields require attention" +msgstr "" + +#: core/input.php:135 +msgid "Restricted" +msgstr "" + +#: core/input.php:533 +#, php-format +msgid "%s value is required" +msgstr "vyžaduje sa hodnota %s" + +#: fields/checkbox.php:36 fields/taxonomy.php:752 +msgid "Checkbox" +msgstr "Zaškrtávacie políčko " + +#: fields/checkbox.php:144 +msgid "Toggle All" +msgstr "Prepnúť všetky" + +#: fields/checkbox.php:208 fields/radio.php:193 fields/select.php:388 +msgid "Choices" +msgstr "Voľby " + +#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 +msgid "Enter each choice on a new line." +msgstr "Zadajte každú voľbu do nového riadku. " + +#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 +msgid "For more control, you may specify both a value and label like this:" +msgstr "Pre lepšiu kontrolu, môžete určiť hodnotu a popis takto:" + +#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389 +msgid "red : Red" +msgstr "červená : Červená " + +#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150 fields/radio.php:222 +#: fields/select.php:397 fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115 fields/url.php:117 +#: fields/wysiwyg.php:345 +msgid "Default Value" +msgstr "Základná hodnota " + +#: fields/checkbox.php:218 fields/select.php:398 +msgid "Enter each default value on a new line" +msgstr "Zadajte každú základnú hodnotu na nový riadok " + +#: fields/checkbox.php:232 fields/radio.php:237 +msgid "Vertical" +msgstr "Vertikálne " + +#: fields/checkbox.php:233 fields/radio.php:238 +msgid "Horizontal" +msgstr "Horizontálne " + +#: fields/checkbox.php:240 +msgid "Toggle" +msgstr "" + +#: fields/checkbox.php:241 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" + +#: fields/color_picker.php:36 +msgid "Color Picker" +msgstr "Výber farby " + +#: fields/color_picker.php:94 +msgid "Clear" +msgstr "Vyčistiť" + +#: fields/color_picker.php:95 +msgid "Default" +msgstr "Predvolené " + +#: fields/color_picker.php:96 +msgid "Select Color" +msgstr "Farba" + +#: fields/date_picker.php:36 +msgid "Date Picker" +msgstr "Výber dátumu " + +#: fields/date_picker.php:72 +msgid "Done" +msgstr "Hotovo " + +#: fields/date_picker.php:73 +msgid "Today" +msgstr "Dnes " + +#: fields/date_picker.php:76 +msgid "Show a different month" +msgstr "Zobraziť iný mesiac " + +#: fields/date_picker.php:149 +msgid "Display Format" +msgstr "Formát zobrazenia " + +#: fields/date_picker.php:150 +msgid "The format displayed when editing a post" +msgstr "Formát zobrazený pri úprave článku" + +#: fields/date_picker.php:164 +msgid "Return format" +msgstr "Formát odpoveďe " + +#: fields/date_picker.php:165 +msgid "The format returned via template functions" +msgstr "Formát vrátený pomocou funkcii šablóny" + +#: fields/date_picker.php:180 +msgid "Week Starts On" +msgstr "Týždeň začína " + +#: fields/email.php:36 +msgid "Email" +msgstr "E-Mail " + +#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 fields/textarea.php:146 +#: fields/url.php:118 fields/wysiwyg.php:346 +msgid "Appears when creating a new post" +msgstr "Zobrazí sa pri vytvorení nového príspevku " + +#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 fields/textarea.php:154 +#: fields/url.php:126 +msgid "Placeholder Text" +msgstr "Zástupný text " + +#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 fields/textarea.php:155 +#: fields/url.php:127 +msgid "Appears within the input" +msgstr "Zobrazí sa vo vstupe" + +#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166 +msgid "Prepend" +msgstr "Predpona" + +#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167 +msgid "Appears before the input" +msgstr "Zobrazí sa pred vstupom" + +#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175 +msgid "Append" +msgstr "Prípona" + +#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176 +msgid "Appears after the input" +msgstr "Zobrazí sa po vstupe" + +#: fields/file.php:36 +msgid "File" +msgstr "Súbor " + +#: fields/file.php:47 +msgid "Edit File" +msgstr "Upraviť súbor " + +#: fields/file.php:48 +msgid "Update File" +msgstr "Aktualizovať súbor " + +#: fields/file.php:49 pro/fields/gallery.php:55 +msgid "uploaded to this post" +msgstr "Nahrané do príspevku " + +#: fields/file.php:142 +msgid "File Name" +msgstr "Názov súboru" + +#: fields/file.php:146 +msgid "File Size" +msgstr "Veľkosť súboru" + +#: fields/file.php:169 +msgid "No File selected" +msgstr "Nevybrali ste súbor " + +#: fields/file.php:169 +msgid "Add File" +msgstr "Pridať súbor " + +#: fields/file.php:214 fields/image.php:195 fields/taxonomy.php:821 +msgid "Return Value" +msgstr "Vrátiť hodnotu " + +#: fields/file.php:215 fields/image.php:196 +msgid "Specify the returned value on front end" +msgstr "Zadajte hodnotu, ktorá sa objaví na stránke" + +#: fields/file.php:220 +msgid "File Array" +msgstr "Súbor " + +#: fields/file.php:221 +msgid "File URL" +msgstr "URL adresa súboru " + +#: fields/file.php:222 +msgid "File ID" +msgstr "ID súboru " + +#: fields/file.php:229 fields/image.php:220 pro/fields/gallery.php:647 +msgid "Library" +msgstr "Knižnica " + +#: fields/file.php:230 fields/image.php:221 pro/fields/gallery.php:648 +msgid "Limit the media library choice" +msgstr "Obmedziť výber knižnice médií " + +#: fields/file.php:236 fields/image.php:227 pro/fields/gallery.php:654 +msgid "Uploaded to post" +msgstr "Nahrané do príspevku " + +#: fields/file.php:243 fields/image.php:234 pro/fields/gallery.php:661 +msgid "Minimum" +msgstr "Minimálny počet" + +#: fields/file.php:244 fields/file.php:255 +msgid "Restrict which files can be uploaded" +msgstr "Vymedzte, ktoré súbory je možné nahrať" + +#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 pro/fields/gallery.php:684 +#: pro/fields/gallery.php:717 +msgid "File size" +msgstr "Veľkosť súboru " + +#: fields/file.php:254 fields/image.php:267 pro/fields/gallery.php:694 +msgid "Maximum" +msgstr "Maximálny počet" + +#: fields/file.php:265 fields/image.php:300 pro/fields/gallery.php:727 +msgid "Allowed file types" +msgstr "Povolené typy súborov" + +#: fields/file.php:266 fields/image.php:301 pro/fields/gallery.php:728 +msgid "Comma separated list. Leave blank for all types" +msgstr "Zoznam, oddelený čiarkou. Nechajte prázdne pre všetky typy" + +#: fields/google-map.php:36 +msgid "Google Map" +msgstr "Google Mapa " + +#: fields/google-map.php:51 +msgid "Locating" +msgstr "Poloha" + +#: fields/google-map.php:52 +msgid "Sorry, this browser does not support geolocation" +msgstr "Ľutujeme, tento prehliadač nepodporuje geo hľadanie polohy " + +#: fields/google-map.php:135 +msgid "Clear location" +msgstr "Vymazať polohu " + +#: fields/google-map.php:140 +msgid "Find current location" +msgstr "Nájsť aktuálnu polohu " + +#: fields/google-map.php:141 +msgid "Search for address..." +msgstr "Hľadať adresu... " + +#: fields/google-map.php:173 fields/google-map.php:184 +msgid "Center" +msgstr "Stred " + +#: fields/google-map.php:174 fields/google-map.php:185 +msgid "Center the initial map" +msgstr "Vycentrovať úvodnú mapu " + +#: fields/google-map.php:198 +msgid "Zoom" +msgstr "Zoom" + +#: fields/google-map.php:199 +msgid "Set the initial zoom level" +msgstr "Nastavte základnú úroveň priblíženia" + +#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262 pro/fields/gallery.php:673 +#: pro/fields/gallery.php:706 +msgid "Height" +msgstr "Výška " + +#: fields/google-map.php:209 +msgid "Customise the map height" +msgstr "Upraviť výšku mapy " + +#: fields/image.php:36 +msgid "Image" +msgstr "Obrázok " + +#: fields/image.php:51 +msgid "Select Image" +msgstr "Vybrať obrázok " + +#: fields/image.php:52 pro/fields/gallery.php:53 +msgid "Edit Image" +msgstr "Upraviť obrázok " + +#: fields/image.php:53 pro/fields/gallery.php:54 +msgid "Update Image" +msgstr "Aktualizovať obrázok " + +#: fields/image.php:54 +msgid "Uploaded to this post" +msgstr "Nahrané do príspevku " + +#: fields/image.php:55 +msgid "All images" +msgstr "Všetky obrázky" + +#: fields/image.php:147 +msgid "No image selected" +msgstr "Nevybrali ste obrázok " + +#: fields/image.php:147 +msgid "Add Image" +msgstr "Pridať obrázok " + +#: fields/image.php:201 +msgid "Image Array" +msgstr "Obrázok " + +#: fields/image.php:202 +msgid "Image URL" +msgstr "URL adresa obrázka " + +#: fields/image.php:203 +msgid "Image ID" +msgstr "ID obrázka " + +#: fields/image.php:210 pro/fields/gallery.php:637 +msgid "Preview Size" +msgstr "Veľkosť náhľadu " + +#: fields/image.php:211 pro/fields/gallery.php:638 +msgid "Shown when entering data" +msgstr "Zobrazené pri zadávaní dát " + +#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695 +msgid "Restrict which images can be uploaded" +msgstr "Určite, ktoré typy obrázkov môžu byť nahraté" + +#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665 pro/fields/gallery.php:698 +msgid "Width" +msgstr "Šírka" + +#: fields/message.php:36 fields/message.php:103 fields/true_false.php:106 +msgid "Message" +msgstr "Správa " + +#: fields/message.php:104 +msgid "Please note that all text will first be passed through the wp function " +msgstr "Všetky texty najprv prejdú cez funkciu wp " + +#: fields/message.php:112 +msgid "Escape HTML" +msgstr "Eskapovať HTML (€ za €)" + +#: fields/message.php:113 +msgid "Allow HTML markup to display as visible text instead of rendering" +msgstr "Povoliť zobrazenie HTML značiek vo forme viditeľného textu namiesto ich vykreslenia" + +#: fields/number.php:36 +msgid "Number" +msgstr "Číslo " + +#: fields/number.php:186 +msgid "Minimum Value" +msgstr "Minimálna hodnota " + +#: fields/number.php:195 +msgid "Maximum Value" +msgstr "Maximálna hodnota " + +#: fields/number.php:204 +msgid "Step Size" +msgstr "Veľkosť kroku " + +#: fields/number.php:242 +msgid "Value must be a number" +msgstr "Hodnota musí byť číslo" + +#: fields/number.php:260 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "Hodnota musí byť rovná alebo väčšia ako %d" + +#: fields/number.php:268 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "Hodnota musí byť rovná alebo nižšia ako %d" + +#: fields/oembed.php:36 +msgid "oEmbed" +msgstr "oEmbed" + +#: fields/oembed.php:199 +msgid "Enter URL" +msgstr "Vložiť URL" + +#: fields/oembed.php:212 +msgid "No embed found for the given URL." +msgstr "Nebol nájdený obsah na zadanej URL adrese." + +#: fields/oembed.php:248 fields/oembed.php:259 +msgid "Embed Size" +msgstr "Veľkosť vloženého obsahu" + +#: fields/page_link.php:206 +msgid "Archives" +msgstr "Archívy " + +#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690 +msgid "Filter by Post Type" +msgstr "Filtrovať podľa typu príspevku " + +#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698 +msgid "All post types" +msgstr "Všetky typy príspevkov " + +#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704 +msgid "Filter by Taxonomy" +msgstr "Filter z taxonómie " + +#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712 +msgid "All taxonomies" +msgstr "Žiadny filter taxonómie " + +#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765 fields/user.php:452 +msgid "Allow Null?" +msgstr "Povoliť nulovú hodnotu? " + +#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466 +msgid "Select multiple values?" +msgstr "Vybrať viac hodnôt? " + +#: fields/password.php:36 +msgid "Password" +msgstr "Heslo " + +#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769 +msgid "Post Object" +msgstr "Objekt príspevku " + +#: fields/post_object.php:457 fields/relationship.php:764 +msgid "Return Format" +msgstr "Formát odpovede" + +#: fields/post_object.php:463 fields/relationship.php:770 +msgid "Post ID" +msgstr "ID príspevku" + +#: fields/radio.php:36 +msgid "Radio Button" +msgstr "Prepínač " + +#: fields/radio.php:202 +msgid "Other" +msgstr "Iné " + +#: fields/radio.php:206 +msgid "Add 'other' choice to allow for custom values" +msgstr "Pridať možnosť 'iné' pre povolenie vlastných hodnôt" + +#: fields/radio.php:212 +msgid "Save Other" +msgstr "Uložiť hodnoty iné" + +#: fields/radio.php:216 +msgid "Save 'other' values to the field's choices" +msgstr "Uložiť hodnoty 'iné' do výberu poľa" + +#: fields/relationship.php:36 +msgid "Relationship" +msgstr "Vzťah " + +#: fields/relationship.php:48 +msgid "Minimum values reached ( {min} values )" +msgstr "" + +#: fields/relationship.php:49 +msgid "Maximum values reached ( {max} values )" +msgstr "Maximálne dosiahnuté hodnoty ( {max} values ) " + +#: fields/relationship.php:50 +msgid "Loading" +msgstr "Nahrávanie" + +#: fields/relationship.php:51 +msgid "No matches found" +msgstr "Nebola nenájdená zhoda" + +#: fields/relationship.php:571 +msgid "Search..." +msgstr "Hľadanie... " + +#: fields/relationship.php:580 +msgid "Select post type" +msgstr "Vybrať typ príspevku " + +#: fields/relationship.php:593 +msgid "Select taxonomy" +msgstr "Vyberte ktorá taxonómiu" + +#: fields/relationship.php:723 +msgid "Search" +msgstr "Hľadanie" + +#: fields/relationship.php:725 fields/taxonomy.php:36 fields/taxonomy.php:735 +msgid "Taxonomy" +msgstr "Taxonómia" + +#: fields/relationship.php:732 +msgid "Elements" +msgstr "Prvky " + +#: fields/relationship.php:733 +msgid "Selected elements will be displayed in each result" +msgstr "Vybraté prvky budú zobrazené v každom výsledku " + +#: fields/relationship.php:744 +msgid "Minimum posts" +msgstr "" + +#: fields/relationship.php:753 +msgid "Maximum posts" +msgstr "Maximálny počet príspevkov " + +#: fields/select.php:36 fields/select.php:174 fields/taxonomy.php:757 +msgid "Select" +msgstr "Vybrať " + +#: fields/select.php:434 +msgid "Stylised UI" +msgstr "Štýlované používateľské rozhranie" + +#: fields/select.php:448 +msgid "Use AJAX to lazy load choices?" +msgstr "Použiť AJAX pre výber pomalšieho načítania?" + +#: fields/tab.php:36 +msgid "Tab" +msgstr "Záložka " + +#: fields/tab.php:128 +msgid "Warning" +msgstr "Varovanie" + +#: fields/tab.php:133 +msgid "The tab field will display incorrectly when added to a Table style repeater field or flexible content field layout" +msgstr "" +"Pole záložky nebude správne zobrazené ak bude pridané do opakovacieho pola štýlu tabuľky alebo flexibilného rozloženia " +"pola." + +#: fields/tab.php:146 +msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together." +msgstr "Pre lepšiu organizáciu na obrazovke úpravý polí použite \"Polia záložiek\"." + +#: fields/tab.php:148 +msgid "" +"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." +msgstr "" +"Všetky polia nasledujúce \"pole záložky\" (pokým nebude definované nové \"pole záložky\") budú zoskupené a pod jedným " +"nadpisom a označením." + +#: fields/tab.php:155 +msgid "Placement" +msgstr "Umiestnenie" + +#: fields/tab.php:167 +msgid "End-point" +msgstr "" + +#: fields/tab.php:168 +msgid "Use this field as an end-point and start a new group of tabs" +msgstr "" + +#: fields/taxonomy.php:565 +#, php-format +msgid "Add new %s " +msgstr "" + +#: fields/taxonomy.php:704 +msgid "None" +msgstr "Žiadna " + +#: fields/taxonomy.php:736 +msgid "Select the taxonomy to be displayed" +msgstr "" + +#: fields/taxonomy.php:745 +msgid "Appearance" +msgstr "" + +#: fields/taxonomy.php:746 +msgid "Select the appearance of this field" +msgstr "" + +#: fields/taxonomy.php:751 +msgid "Multiple Values" +msgstr "Viaceré hodnoty" + +#: fields/taxonomy.php:753 +msgid "Multi Select" +msgstr "Viacnásobný výber " + +#: fields/taxonomy.php:755 +msgid "Single Value" +msgstr "Jedna hodnota " + +#: fields/taxonomy.php:756 +msgid "Radio Buttons" +msgstr "Prepínače " + +#: fields/taxonomy.php:779 +msgid "Create Terms" +msgstr "" + +#: fields/taxonomy.php:780 +msgid "Allow new terms to be created whilst editing" +msgstr "" + +#: fields/taxonomy.php:793 +msgid "Save Terms" +msgstr "" + +#: fields/taxonomy.php:794 +msgid "Connect selected terms to the post" +msgstr "" + +#: fields/taxonomy.php:807 +msgid "Load Terms" +msgstr "" + +#: fields/taxonomy.php:808 +msgid "Load value from posts terms" +msgstr "" + +#: fields/taxonomy.php:826 +msgid "Term Object" +msgstr "Objekt výrazu " + +#: fields/taxonomy.php:827 +msgid "Term ID" +msgstr "ID výrazu " + +#: fields/taxonomy.php:886 +#, php-format +msgid "User unable to add new %s" +msgstr "" + +#: fields/taxonomy.php:899 +#, php-format +msgid "%s already exists" +msgstr "" + +#: fields/taxonomy.php:940 +#, php-format +msgid "%s added" +msgstr "" + +#: fields/taxonomy.php:985 +msgid "Add" +msgstr "" + +#: fields/text.php:36 +msgid "Text" +msgstr "Text " + +#: fields/text.php:184 fields/textarea.php:163 +msgid "Character Limit" +msgstr "Limit znakov " + +#: fields/text.php:185 fields/textarea.php:164 +msgid "Leave blank for no limit" +msgstr "Nechajte prázdne pre neobmedzený počet" + +#: fields/textarea.php:36 +msgid "Text Area" +msgstr "Textové pole " + +#: fields/textarea.php:172 +msgid "Rows" +msgstr "Riadky" + +#: fields/textarea.php:173 +msgid "Sets the textarea height" +msgstr "Nastaví výšku textovej oblasti" + +#: fields/textarea.php:182 +msgid "New Lines" +msgstr "Nové riadky" + +#: fields/textarea.php:183 +msgid "Controls how new lines are rendered" +msgstr "Ovláda ako sú tvorené nové riadky" + +#: fields/textarea.php:187 +msgid "Automatically add paragraphs" +msgstr "Automaticky pridá odseky" + +#: fields/textarea.php:188 +msgid "Automatically add <br>" +msgstr "Automaticky pridáva <br>" + +#: fields/textarea.php:189 +msgid "No Formatting" +msgstr "Žiadne formátovanie" + +#: fields/true_false.php:36 +msgid "True / False" +msgstr "Správne / nesprávne " + +#: fields/true_false.php:107 +msgid "eg. Show extra content" +msgstr "napr. zobraziť extra obsah " + +#: fields/url.php:36 +msgid "Url" +msgstr "URL adresa" + +#: fields/url.php:160 +msgid "Value must be a valid URL" +msgstr "Hodnota musí obsahovať platnú URL adresu" + +#: fields/user.php:437 +msgid "Filter by role" +msgstr "Filtrovať podla role " + +#: fields/user.php:445 +msgid "All user roles" +msgstr "Všekty používatelské role" + +#: fields/wysiwyg.php:37 +msgid "Wysiwyg Editor" +msgstr "Vizuálny úpravca" + +#: fields/wysiwyg.php:297 +msgid "Visual" +msgstr "Vizuálny" + +#: fields/wysiwyg.php:298 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "Text " + +#: fields/wysiwyg.php:354 +msgid "Tabs" +msgstr "Záložky" + +#: fields/wysiwyg.php:359 +msgid "Visual & Text" +msgstr "Vizuálny a textový" + +#: fields/wysiwyg.php:360 +msgid "Visual Only" +msgstr "Iba vizuálny" + +#: fields/wysiwyg.php:361 +msgid "Text Only" +msgstr "Iba textový" + +#: fields/wysiwyg.php:368 +msgid "Toolbar" +msgstr "Panel nástrojov " + +#: fields/wysiwyg.php:378 +msgid "Show Media Upload Buttons?" +msgstr "Zobraziť tlačidlá nahrávania médií? " + +#: forms/post.php:297 pro/admin/options-page.php:373 +msgid "Edit field group" +msgstr "Upraviť skupinu polí " + +#: pro/acf-pro.php:24 +msgid "Advanced Custom Fields PRO" +msgstr "ACF PRO" + +#: pro/acf-pro.php:175 +msgid "Flexible Content requires at least 1 layout" +msgstr "Flexibilný obsah vyžaduje aspoň jedno rozloženie" + +#: pro/admin/options-page.php:48 +msgid "Options Page" +msgstr "Stránka nastavení " + +#: pro/admin/options-page.php:83 +msgid "No options pages exist" +msgstr "Neexistujú nastavenia stránok" + +#: pro/admin/options-page.php:298 +msgid "Options Updated" +msgstr "Nastavenia aktualizované" + +#: pro/admin/options-page.php:304 +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/settings-updates.php:137 +msgid "Error. Could not connect to update server" +msgstr "Chyba. Nie je možné sa spojiť so serverom" + +#: pro/admin/settings-updates.php:267 pro/admin/settings-updates.php:338 +msgid "Connection Error. Sorry, please try again" +msgstr "Chyba spojenia. Prosím skúste pokus opakovať." + +#: pro/admin/views/options-page.php:48 +msgid "Publish" +msgstr "Publikovať " + +#: pro/admin/views/options-page.php:54 +msgid "Save Options" +msgstr "Uložiť nastavenia" + +#: pro/admin/views/settings-updates.php:11 +msgid "Deactivate License" +msgstr "Deaktivovať licenciu" + +#: pro/admin/views/settings-updates.php:11 +msgid "Activate License" +msgstr "Aktivovať licenciu" + +#: pro/admin/views/settings-updates.php:21 +msgid "License" +msgstr "Licencia" + +#: pro/admin/views/settings-updates.php:24 +msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see" +msgstr "Pre odblokovanie aktualizácii, sem zadajte váš licenčný kľúč. Ak ešte licenčný kľúč nemáte, pozrite si" + +#: pro/admin/views/settings-updates.php:24 +msgid "details & pricing" +msgstr "detaily a ceny" + +#: pro/admin/views/settings-updates.php:33 +msgid "License Key" +msgstr "Licenčný kľúč" + +#: pro/admin/views/settings-updates.php:65 +msgid "Update Information" +msgstr "Aktualizovať infromácie" + +#: pro/admin/views/settings-updates.php:72 +msgid "Current Version" +msgstr "Aktuálna verzia" + +#: pro/admin/views/settings-updates.php:80 +msgid "Latest Version" +msgstr "Posledná verzia" + +#: pro/admin/views/settings-updates.php:88 +msgid "Update Available" +msgstr "Dostupná aktualizácia" + +#: pro/admin/views/settings-updates.php:96 +msgid "Update Plugin" +msgstr "Aktualizovať modul" + +#: pro/admin/views/settings-updates.php:98 +msgid "Please enter your license key above to unlock updates" +msgstr "Pre odblokovanie aktualizácii, prosím zadajte váš licenčný kľúč" + +#: pro/admin/views/settings-updates.php:104 +msgid "Check Again" +msgstr "Skontrolovať znova" + +#: pro/admin/views/settings-updates.php:121 +msgid "Upgrade Notice" +msgstr "Oznam o aktualizácii" + +#: pro/api/api-options-page.php:22 pro/api/api-options-page.php:23 +msgid "Options" +msgstr "Nastavenia " + +#: pro/core/updates.php:186 +#, php-format +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/fields/flexible-content.php:36 +msgid "Flexible Content" +msgstr "Flexibilný obsah " + +#: pro/fields/flexible-content.php:42 pro/fields/repeater.php:43 +msgid "Add Row" +msgstr "Pridať riadok" + +#: pro/fields/flexible-content.php:45 +msgid "layout" +msgstr "rozloženie" + +#: pro/fields/flexible-content.php:46 +msgid "layouts" +msgstr "rozloženia" + +#: pro/fields/flexible-content.php:47 +msgid "remove {layout}?" +msgstr "odstrániť {layout}?" + +#: pro/fields/flexible-content.php:48 +msgid "This field requires at least {min} {identifier}" +msgstr "Toto pole vyžaduje najmenej {min} {identifier}" + +#: pro/fields/flexible-content.php:49 +msgid "This field has a limit of {max} {identifier}" +msgstr "Toto pole vyžaduje najviac {max} {identifier}" + +#: pro/fields/flexible-content.php:50 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "Toto pole vyžaduje najmenej {min} {label} {identifier}" + +#: pro/fields/flexible-content.php:51 +msgid "Maximum {label} limit reached ({max} {identifier})" +msgstr "Maximálny {label} limit dosiahnutý ({max} {identifier})" + +#: pro/fields/flexible-content.php:52 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} dostupné (max {max})" + +#: pro/fields/flexible-content.php:53 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} vyžadované (min {min})" + +#: pro/fields/flexible-content.php:211 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "Pre vytvorenie rozloženia kliknite na tlačidlo \"%s\"" + +#: pro/fields/flexible-content.php:369 +msgid "Add layout" +msgstr "Pridať rozloženie" + +#: pro/fields/flexible-content.php:372 +msgid "Remove layout" +msgstr "Odstrániť rozloženie" + +#: pro/fields/flexible-content.php:514 +msgid "Reorder Layout" +msgstr "Usporiadať rozloženie" + +#: pro/fields/flexible-content.php:514 +msgid "Reorder" +msgstr "Zmeniť poradie" + +#: pro/fields/flexible-content.php:515 +msgid "Delete Layout" +msgstr "Vymazať rozloženie" + +#: pro/fields/flexible-content.php:516 +msgid "Duplicate Layout" +msgstr "Duplikovať rozloženie" + +#: pro/fields/flexible-content.php:517 +msgid "Add New Layout" +msgstr "Pridať nové rozloženie" + +#: pro/fields/flexible-content.php:561 +msgid "Display" +msgstr "Zobrazenie" + +#: pro/fields/flexible-content.php:572 pro/fields/repeater.php:399 +msgid "Table" +msgstr "Tabuľka" + +#: pro/fields/flexible-content.php:573 pro/fields/repeater.php:400 +msgid "Block" +msgstr "Blok" + +#: pro/fields/flexible-content.php:574 pro/fields/repeater.php:401 +msgid "Row" +msgstr "Riadok" + +#: pro/fields/flexible-content.php:589 +msgid "Min" +msgstr "Min" + +#: pro/fields/flexible-content.php:602 +msgid "Max" +msgstr "Max" + +#: pro/fields/flexible-content.php:630 pro/fields/repeater.php:408 +msgid "Button Label" +msgstr "Označenie tlačidla" + +#: pro/fields/flexible-content.php:639 +msgid "Minimum Layouts" +msgstr "Minimálne rozloženie" + +#: pro/fields/flexible-content.php:648 +msgid "Maximum Layouts" +msgstr "Maximálne rozloženie" + +#: pro/fields/gallery.php:36 +msgid "Gallery" +msgstr "Galéria" + +#: pro/fields/gallery.php:52 +msgid "Add Image to Gallery" +msgstr "Pridať obrázok do galérie" + +#: pro/fields/gallery.php:56 +msgid "Maximum selection reached" +msgstr "Maximálne dosiahnuté hodnoty" + +#: pro/fields/gallery.php:335 +msgid "Length" +msgstr "Dĺžka" + +#: pro/fields/gallery.php:355 +msgid "Remove" +msgstr "Odstrániť" + +#: pro/fields/gallery.php:535 +msgid "Add to gallery" +msgstr "Pridať do galérie" + +#: pro/fields/gallery.php:539 +msgid "Bulk actions" +msgstr "Hromadné akcie" + +#: pro/fields/gallery.php:540 +msgid "Sort by date uploaded" +msgstr "Triediť podľa dátumu nahrania" + +#: pro/fields/gallery.php:541 +msgid "Sort by date modified" +msgstr "Triediť podľa poslednej úpravy" + +#: pro/fields/gallery.php:542 +msgid "Sort by title" +msgstr "Triediť podľa názvu" + +#: pro/fields/gallery.php:543 +msgid "Reverse current order" +msgstr "Zvrátiť aktuálnu objednávku" + +#: pro/fields/gallery.php:561 +msgid "Close" +msgstr "Zatvoriť " + +#: pro/fields/gallery.php:619 +msgid "Minimum Selection" +msgstr "Minimálny výber" + +#: pro/fields/gallery.php:628 +msgid "Maximum Selection" +msgstr "Maximálny výber" + +#: pro/fields/gallery.php:809 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %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/repeater.php:36 +msgid "Repeater" +msgstr "Opakovač" + +#: pro/fields/repeater.php:46 +msgid "Minimum rows reached ({min} rows)" +msgstr "Dosiahnutý počet minimálneho počtu riadkov ({min} rows)" + +#: pro/fields/repeater.php:47 +msgid "Maximum rows reached ({max} rows)" +msgstr "Maximálny počet riadkov ({max} rows)" + +#: pro/fields/repeater.php:259 +msgid "Drag to reorder" +msgstr "Zmeňte poradie pomocou funkcie ťahaj a pusť" + +#: pro/fields/repeater.php:301 +msgid "Add row" +msgstr "Pridať riadok" + +#: pro/fields/repeater.php:302 +msgid "Remove row" +msgstr "Odstrániť riadok" + +#: pro/fields/repeater.php:350 +msgid "Sub Fields" +msgstr "Podpolia" + +#: pro/fields/repeater.php:372 +msgid "Minimum Rows" +msgstr "Minimálny počet riadkov" + +#: pro/fields/repeater.php:382 +msgid "Maximum Rows" +msgstr "Maximálny počet riadkov" + +#. Plugin Name of the plugin/theme +msgid "Advanced Custom Fields Pro" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "http://www.advancedcustomfields.com/" +msgstr "" + +#. Description of the plugin/theme +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "" + +#. Author of the plugin/theme +msgid "elliot condon" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "" + +#~ msgid "Hide / Show All" +#~ msgstr "Schovať / Zobraziť všetky " + +#~ msgid "Show Field Keys" +#~ msgstr "Zobraziť kľúč poľa" + +#~ msgid "Pending Review" +#~ msgstr "Recenzia čaká na schválenie " + +#~ msgid "Draft" +#~ msgstr "Koncept " + +#~ msgid "Future" +#~ msgstr "Budúce " + +#~ msgid "Private" +#~ msgstr "Súkromné " + +#~ msgid "Revision" +#~ msgstr "Revízia " + +#~ msgid "Trash" +#~ msgstr "Kôš " + +#~ msgid "Import / Export" +#~ msgstr "Import / Export" + +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "Skupiny polí sú vytvorené v poradí
                              od najnižšej po najvyššiu " + +#~ msgid "ACF PRO Required" +#~ msgstr "Musíte mať Pro verziu" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons (%s) which are no " +#~ "longer compatible with ACF." +#~ msgstr "" +#~ "Zistili sme problém vyžadujúci vašu pozornosť. Táto stránka využíva doplnky (%s), ktoré už nie sú komaptibilné s ACF." + +#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!" +#~ msgstr "Nemusíte sa báť! Môžete sa vrátiť k používaniu predchádzajúcej verzii ACF!" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "Vrátiť sa k ACF v%s" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "Zistite prečo by ste mali používať ACF PRO" + +#~ msgid "Update Database" +#~ msgstr "Aktualizácia databázy " + +#~ msgid "Data Upgrade" +#~ msgstr "Aktualizovať dáta" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Úspešne aktualizované data." + +#~ msgid "Data is at the latest version." +#~ msgstr "Dáta sú aktuálne." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "1 povinné pole je prázdne" +#~ msgstr[1] "%s povinné polia sú prázdne" +#~ msgstr[2] "%s povinných polí je prázdnych" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Nahrať & uložiť podmienky k prispievaniu " + +#~ msgid "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "Nahrať hodnoty založené na podmienkach prispievania, aktualizovať akrutálne podmienky a uložiť " + +#~ msgid "file" +#~ msgstr "subor" + +#~ msgid "image" +#~ msgstr "obrazok" + +#~ msgid "expand_details" +#~ msgstr "zvacsit_detaily" + +#~ msgid "collapse_details" +#~ msgstr "zmensit_detaily" + +#~ msgid "relationship" +#~ msgstr "vztah" + +#~ msgid "unload" +#~ msgstr "unload" + +#~ msgid "title_is_required" +#~ msgstr "nadpis_je_povinny" + +#~ msgid "move_to_trash" +#~ msgstr "move_to_trash" + +#~ msgid "move_field_warning" +#~ msgstr "move_field_warning" + +#~ msgid "move_field" +#~ msgstr "presunut_pole" + +#~ msgid "field_name_start" +#~ msgstr "field_name_start" + +#~ msgid "null" +#~ msgstr "null" + +#~ msgid "hide_show_all" +#~ msgstr "skryt_zobrazit_vsetko" + +#~ msgid "flexible_content" +#~ msgstr "flexibilny_obsah" + +#~ msgid "gallery" +#~ msgstr "galeria" + +#~ msgid "repeater" +#~ msgstr "opakovac" + +#, fuzzy +#~ msgid "Custom field updated." +#~ msgstr "Vlastné pole aktualizované." + +#, fuzzy +#~ msgid "Custom field deleted." +#~ msgstr "Vlastné pole vymazané." + +#~ msgid "Field group duplicated! Edit the new \"%s\" field group." +#~ msgstr "Pole skupiny bolo duplikované! Upravnte novú pole \"%s\"" + +#~ msgid "Import/Export" +#~ msgstr "Import/Export" + +#~ msgid "Column Width" +#~ msgstr "Šírka stĺpca" + +#~ msgid "Attachment Details" +#~ msgstr "Detialy prílohy" diff --git a/lang/pro/acf-sv_SE.po b/lang/pro/acf-sv_SE.po new file mode 100644 index 0000000..08d82e0 --- /dev/null +++ b/lang/pro/acf-sv_SE.po @@ -0,0 +1,2916 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-24 19:40+0200\n" +"Last-Translator: Erik Betshammar \n" +"Language-Team: Swedish\n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-Bookmarks: -1,-1,-1,-1,29,-1,-1,-1,-1,-1\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Blocktypsnamn är obligatoriskt." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Blocktypen \"%s\" är redan registrerad." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Växla till Redigera" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Växla till förhandsgranskning" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "Ändra innehållsjustering" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s-inställningar" + +#: pro/blocks.php:949 +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:955 +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:47 +msgid "Options" +msgstr "Alternativ" + +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Uppdatera" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Kontrollera igen" + +#: pro/updates.php:561 +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-options-page.php:309 +msgid "Edit field group" +msgstr "Redigera 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Uppdateringar" + +#: pro/admin/admin-updates.php:209 +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:196 +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:25 +msgctxt "noun" +msgid "Clone" +msgstr "Klon" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Fält" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Visning" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +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:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Layout" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Specificera stilen för att rendera valda fält" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Block" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tabell" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Rad" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Etiketter kommer att visas som %s" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Prefix för fältetiketter" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Värden sparas som %s" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Prefix för fältnamn" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Okänt fält" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(ingen rubrik)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Okänd fältgrupp" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "Alla fält från %s fältgrupp" + +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Flexibelt innehåll" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Lägg till rad" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "layout" +msgstr[1] "layouter" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "layouter" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} tillgänglig (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} krävs (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +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:276 +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:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Dra och släpp för att ändra ordning" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Lägg till layout" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Duplicera layout" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Ta bort layout" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Klicka för att växla" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Ändra layoutens ordning" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Ändra ordning" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Ta bort layout" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Ta bort" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Duplicera layout" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Duplicera" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Lägg till ny layout" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Lägg till ny" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Etikett" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "Namn" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "Min" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "Max" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Knappetikett" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "Lägsta tillåtna antal layouter" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "Högsta tillåtna antal layouter" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +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:1715 +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:1731 +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:25 +msgid "Gallery" +msgstr "Galleri" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Lägg till bild i galleriet" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "Högsta tillåtna antal val uppnått" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Längd" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Redigera" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Ta bort" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Rubrik" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Bildtext" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alternativ text" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Beskrivning" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Lägg till i galleri" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Massåtgärder" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Sortera efter uppladdningsdatum" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Sortera efter redigeringsdatum" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Sortera efter rubrik" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Omvänd nuvarande ordning" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Stäng" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Returvärde" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Bild-array" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Bild-URL" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Bildens ID" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Förhandsvisningens storlek" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Infoga" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Specifiera var nya bilagor läggs till" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Lägg till i slutet" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "Lägg till början" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Bibliotek" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Begränsa urvalet i mediabiblioteket" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Alla" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Uppladdade till detta inlägg" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "Minsta tillåtna antal val" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "Högsta tillåtna antal val" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "Minimalt" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Begränsa vilka bilder som kan laddas upp" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Bredd" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Höjd" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Filstorlek" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "Maximalt" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "Tillåtna filtyper" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "Kommaseparerad lista. Lämna blankt för alla typer" + +#: pro/fields/class-acf-field-gallery.php:832 +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" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Upprepningsfält" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "Minsta tillåtna antal rader uppnått ({min} rader)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "Högsta tillåtna antal rader uppnått ({max} rader)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "Kunde inte ladda in sida" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Underfält" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Ihopfälld" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "Minsta tillåtna antal rader" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "Högsta tillåtna antal rader" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "Sidnumrering" + +#: pro/fields/class-acf-field-repeater.php:229 +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:240 +msgid "Rows Per Page" +msgstr "Rader per sida" + +#: pro/fields/class-acf-field-repeater.php:241 +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:945 +msgid "Invalid nonce." +msgstr "Ogiltig nonce." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "Ogiltig fältnyckel." + +#: pro/fields/class-acf-field-repeater.php:968 +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:389 +msgid "Add row" +msgstr "Lägg till rad" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Duplicera rad" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Ta bort rad" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "Nuvarande sida" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "Första sidan" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "Föregående sida" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s av %2$s" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "Nästa sida" + +#: pro/fields/class-acf-repeater-table.php:469 +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:22 +msgid "Options Page" +msgstr "Alternativsida" + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Uppdateringsinformation" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Nuvarande version" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "Senaste version" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Uppdatering tillgänglig" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Nej" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Ja" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above 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:109 +msgid "Update Plugin" +msgstr "Uppdatera tillägg" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "Återaktivera din licens för att låsa upp uppdateringar" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Ändringslogg" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Uppgraderingsnotering" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Field Groups" +#~ msgstr "Fältgrupper" + +#~ msgid "Field Group" +#~ msgstr "Fältgrupp" + +#~ msgid "Add New Field Group" +#~ msgstr "Lägg till ny fältgrupp" + +#~ msgid "Edit Field Group" +#~ msgstr "Redigera fältgrupp" + +#~ msgid "New Field Group" +#~ msgstr "Skapa fältgrupp" + +#~ msgid "View Field Group" +#~ msgstr "Visa fältgrupp" + +#~ msgid "Search Field Groups" +#~ msgstr "Sök fältgrupp" + +#~ msgid "No Field Groups found" +#~ msgstr "Inga fältgrupper hittades" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Inga fältgrupper hittades i papperskorgen" + +#~ msgid "Field" +#~ msgstr "Fält" + +#~ msgid "Add New Field" +#~ msgstr "Skapa nytt fält" + +#~ msgid "Edit Field" +#~ msgstr "Redigera fält" + +#~ msgid "New Field" +#~ msgstr "Nytt fält" + +#~ msgid "View Field" +#~ msgstr "Visa fält" + +#~ msgid "Search Fields" +#~ msgstr "Sök fält" + +#~ msgid "No Fields found" +#~ msgstr "Inga fält hittades" + +#~ msgid "No Fields found in Trash" +#~ msgstr "Inga fält hittades i papperskorgen" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Inaktiverad" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Inaktiverad (%s)" +#~ msgstr[1] "Inaktiverade (%s)" + +#~ msgid "(no label)" +#~ msgstr "(ingen etikett)" + +#~ msgid "copy" +#~ msgstr "kopiera" + +#~ msgid "Posts" +#~ msgstr "Inlägg" + +#~ msgid "Taxonomies" +#~ msgstr "Taxonomier" + +#~ msgid "Attachments" +#~ msgstr "Bilagor" + +#~ msgid "Comments" +#~ msgstr "Kommentarer" + +#~ msgid "Widgets" +#~ msgstr "Widgetar" + +#~ msgid "Menus" +#~ msgstr "Menyer" + +#~ msgid "Menu items" +#~ msgstr "Menyobjekt" + +#~ msgid "Users" +#~ msgstr "Användare" + +#~ msgid "Blocks" +#~ msgstr "Block" + +#~ msgid "Field group updated." +#~ msgstr "Fältgrupper uppdaterades." + +#~ msgid "Field group deleted." +#~ msgstr "Fältgrupper togs bort." + +#~ msgid "Field group published." +#~ msgstr "Fältgrupper publicerades." + +#~ msgid "Field group saved." +#~ msgstr "Fältgrupper sparades." + +#~ msgid "Field group submitted." +#~ msgstr "Fältgruppen skickades." + +#~ msgid "Field group scheduled for." +#~ msgstr "Fältgruppen schemalades för." + +#~ msgid "Field group draft updated." +#~ msgstr "Utkastet till fältgrupp uppdaterades." + +#~ 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" + +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "Detta fält kan inte flyttas förrän ändringarna har sparats" + +#~ msgid "Field group title is required" +#~ msgstr "Fältgruppen behöver en rubrik" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Flytta till papperskorgen. Är du säker?" + +#~ msgid "No toggle fields available" +#~ msgstr "Inga växlingsfält är tillgängliga" + +#~ msgid "Move Custom Field" +#~ msgstr "Flytta anpassat fält" + +#~ msgid "Checked" +#~ msgstr "Markerat" + +#~ msgid "(this field)" +#~ msgstr "(detta fält)" + +#~ msgid "or" +#~ msgstr "eller" + +#~ msgid "Null" +#~ msgstr "Nollvärde" + +#~ msgid "Has any value" +#~ msgstr "Har något värde" + +#~ msgid "Has no value" +#~ msgstr "Har inget värde" + +#~ msgid "Value is equal to" +#~ msgstr "Värde är lika med" + +#~ msgid "Value is not equal to" +#~ msgstr "Värde är inte lika med" + +#~ msgid "Value matches pattern" +#~ msgstr "Värde matchar mönstret" + +#~ msgid "Value contains" +#~ msgstr "Värde innehåller" + +#~ msgid "Value is greater than" +#~ msgstr "Värde är större än" + +#~ msgid "Value is less than" +#~ msgstr "Värde är mindre än" + +#~ msgid "Selection is greater than" +#~ msgstr "Markeringen är större än" + +#~ msgid "Selection is less than" +#~ msgstr "Markeringen är mindre än" + +#~ msgid "Location" +#~ msgstr "Plats" + +#~ msgid "Settings" +#~ msgstr "Inställningar" + +#~ msgid "Field Keys" +#~ msgstr "Fältnycklar" + +#~ msgctxt "post status" +#~ msgid "Active" +#~ msgstr "Aktiv" + +#~ msgid "Move Complete." +#~ msgstr "Flytt färdig." + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "Fältet %s kan nu hittas i fältgruppen %s" + +#~ msgid "Close Window" +#~ msgstr "Stäng fönster" + +#~ msgid "Please select the destination for this field" +#~ msgstr "Välj målet (destinationen) för detta fält" + +#~ msgid "Move Field" +#~ msgstr "Flytta fält" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Aktiv (%s)" +#~ msgstr[1] "Aktiva (%s)" + +#~ msgid "Review local JSON changes" +#~ msgstr "Granska lokala JSON-ändringar" + +#~ msgid "Loading diff" +#~ msgstr "Laddar diff" + +#~ msgid "Sync changes" +#~ msgstr "Synkronisera ändringar" + +#~ msgid "Key" +#~ msgstr "Nyckel" + +#~ msgid "Local JSON" +#~ msgstr "Lokal JSON" + +#~ msgid "Various" +#~ msgstr "Olika" + +#, php-format +#~ msgid "Located in theme: %s" +#~ msgstr "Finns i temat: %s" + +#, php-format +#~ msgid "Located in plugin: %s" +#~ msgstr "Finns i tillägget: %s" + +#, php-format +#~ msgid "Located in: %s" +#~ msgstr "Finns i: %s" + +#~ msgid "Sync available" +#~ msgstr "Synkronisering tillgänglig" + +#~ msgid "Sync" +#~ msgstr "Synkronisera" + +#~ msgid "Review changes" +#~ msgstr "Granska ändringar" + +#~ msgid "Import" +#~ msgstr "Importera" + +#~ msgid "Saved" +#~ msgstr "Sparat" + +#~ msgid "Awaiting save" +#~ msgstr "Väntar på sparande" + +#~ msgid "Duplicate this item" +#~ msgstr "Duplicera detta objekt" + +#, php-format +#~ msgid "Field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "Fältgrupp duplicerad." +#~ msgstr[1] "%s fältgrupper duplicerade." + +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Fältgrupp synkroniserad." +#~ msgstr[1] "%s fältgrupper synkroniserade." + +#, php-format +#~ msgid "Select %s" +#~ msgstr "Välj %s" + +#~ msgid "Tools" +#~ msgstr "Verktyg" + +#~ msgid "Upgrade Database" +#~ msgstr "Uppgradera databas" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Kontrollera webbplatser och uppgradera" + +#~ msgid "Custom Fields" +#~ msgstr "Anpassade fält" + +#~ msgid "Overview" +#~ msgstr "Översikt" + +#~ 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." + +#, php-format +#~ 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." + +#~ 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 komma i kontakt om du behöver " +#~ "hjälp." + +#~ msgid "Help & Support" +#~ msgstr "Hjälp och support" + +#, php-format +#~ 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å." + +#, php-format +#~ 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." + +#, php-format +#~ msgid "" +#~ "Help Desk. The support professionals " +#~ "on our Help Desk will assist with your more in depth, technical " +#~ "challenges." +#~ msgstr "" +#~ "Helpdesk. Supportpersonalen på vår " +#~ "helpdesk hjälper dig med dina mer djupgående tekniska utmaningar." + +#~ msgid "Information" +#~ msgstr "Information" + +#, php-format +#~ msgid "Version %s" +#~ msgstr "Version %s" + +#~ msgid "View details" +#~ msgstr "Visa detaljer" + +#~ msgid "Visit website" +#~ msgstr "Besök webbplatsen" + +#~ msgid "and" +#~ msgstr "och" + +#~ msgid "Export Field Groups" +#~ msgstr "Exportera fältgrupper" + +#~ msgid "Generate PHP" +#~ msgstr "Generera PHP" + +#~ msgid "No field groups selected" +#~ msgstr "Inga fältgrupper valda" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "Exporterade 1 fältgrupp." +#~ msgstr[1] "Exporterade %s fältgrupper." + +#~ msgid "Select Field Groups" +#~ msgstr "Välj fältgrupp" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Välj de fältgrupper som du vill exportera och sedan välj din exportmetod. " +#~ "Använd knappen för exportera till en .json fil som du sedan kan importera " +#~ "till en annan ACF installation. Använd generera-knappen för att exportera " +#~ "PHP kod som du kan lägga till i ditt tema." + +#~ msgid "Export File" +#~ msgstr "Exportera fil" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Följande kod kan användas för att registrera en lokal version av valda " +#~ "fältgrupp(er). Ett lokal fältgrupp kan ge många fördelar som snabbare " +#~ "laddningstider, versionshantering & dynamiska fält/inställningar. Det är " +#~ "bara att kopiera och klistra in följande kod till ditt temas functions." +#~ "php fil eller att inkludera det i en extern fil." + +#~ msgid "Copy to clipboard" +#~ msgstr "Kopiera till urklipp" + +#~ msgid "Copied" +#~ msgstr "Kopierat" + +#~ msgid "Import Field Groups" +#~ msgstr "Importera fältgrupper" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "Välj den Advanced Custom Fields JSON-fil som du vill importera. När du " +#~ "klickar på import-knappen så kommer ACF importera fältgrupperna." + +#~ msgid "Select File" +#~ msgstr "Välj fil" + +#~ msgid "Import File" +#~ msgstr "Importera fil" + +#~ msgid "No file selected" +#~ msgstr "Ingen fil vald" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Fel vid uppladdning av fil. Försök igen" + +#~ msgid "Incorrect file type" +#~ msgstr "Felaktig filtyp" + +#~ msgid "Import file empty" +#~ msgstr "Importfilen är tom" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "Importerade 1 fältgrupp" +#~ msgstr[1] "Importerade %s fältgrupper" + +#~ msgid "Conditional Logic" +#~ msgstr "Visningsvillkor" + +#~ msgid "Show this field if" +#~ msgstr "Visa detta fält när" + +#~ msgid "Add rule group" +#~ msgstr "Lägg till regelgrupp" + +#~ msgid "Edit field" +#~ msgstr "Redigera fält" + +#~ msgid "Duplicate field" +#~ msgstr "Duplicera fält" + +#~ msgid "Move field to another group" +#~ msgstr "Flytta fält till en annan grupp" + +#~ msgid "Move" +#~ msgstr "Flytta" + +#~ msgid "Delete field" +#~ msgstr "Ta bort fält" + +#~ msgid "Field Label" +#~ msgstr "Fältetikett" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "Detta namn kommer att visas på REDIGERINGS-sidan" + +#~ msgid "Field Name" +#~ msgstr "Fältnamn" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "" +#~ "Ett enda ord, utan mellanslag. Understreck och bindestreck är tillåtna" + +#~ msgid "Field Type" +#~ msgstr "Fälttyp" + +#~ msgid "Instructions" +#~ msgstr "Instruktioner" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "Instruktioner för författarna. Visas vid publicering" + +#~ msgid "Required?" +#~ msgstr "Obligatorisk?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Attribut för det omslutande elementet (wrappern)" + +#~ msgid "width" +#~ msgstr "bredd" + +#~ msgid "class" +#~ msgstr "class" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "Stäng fält" + +#~ msgid "Order" +#~ msgstr "Ordning" + +#~ msgid "Type" +#~ msgstr "Typ" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Inga fält. Klicka på knappen + Lägg till fält för att " +#~ "skapa ditt första fält." + +#~ msgid "+ Add Field" +#~ msgstr "+ Lägg till fält" + +#~ msgid "Rules" +#~ msgstr "Regler" + +#~ 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 bestämma vilka redigeringsvyer som " +#~ "ska använda dessa avancerade anpassade fält" + +#~ msgid "Active" +#~ msgstr "Aktiv" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Standard (WP-metaruta)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Sömlös (ingen metaruta)" + +#~ msgid "Position" +#~ msgstr "Position" + +#~ msgid "High (after title)" +#~ msgstr "Hög (efter rubrik)" + +#~ msgid "Normal (after content)" +#~ msgstr "Normal (efter innehåll)" + +#~ msgid "Side" +#~ msgstr "Sidopanel" + +#~ msgid "Label placement" +#~ msgstr "Etikettsplacering" + +#~ msgid "Top aligned" +#~ msgstr "Toppjusterad" + +#~ msgid "Left aligned" +#~ msgstr "Vänsterjusterad" + +#~ msgid "Instruction placement" +#~ msgstr "Placering av instruktion" + +#~ msgid "Below labels" +#~ msgstr "Under ettiketer" + +#~ msgid "Below fields" +#~ msgstr "Under fält" + +#~ msgid "Order No." +#~ msgstr "Ordningsnummer" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "Fältgrupper med lägre ordningsnummer kommer synas först" + +#~ msgid "Shown in field group list" +#~ msgstr "Visas i fältgruppslistan" + +#~ msgid "Permalink" +#~ msgstr "Permalänk" + +#~ msgid "Content Editor" +#~ msgstr "Innehållsredigerare" + +#~ msgid "Excerpt" +#~ msgstr "Utdrag" + +#~ msgid "Discussion" +#~ msgstr "Diskussion" + +#~ msgid "Revisions" +#~ msgstr "Versioner" + +#~ msgid "Slug" +#~ msgstr "Slug" + +#~ msgid "Author" +#~ msgstr "Författare" + +#~ msgid "Format" +#~ msgstr "Format" + +#~ msgid "Page Attributes" +#~ msgstr "Sidattribut" + +#~ msgid "Featured Image" +#~ msgstr "Utvald bild" + +#~ msgid "Categories" +#~ msgstr "Kategorier" + +#~ msgid "Tags" +#~ msgstr "Etiketter" + +#~ msgid "Send Trackbacks" +#~ msgstr "Skicka trackbacks" + +#~ msgid "Hide on screen" +#~ msgstr "Dölj på skärmen" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "Välj objekt för att dölja dem från redigeringsvyn." + +#~ 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 i redigeringsvyn, kommer första gruppens " +#~ "inställningar att användas (den med lägst ordningsnummer)" + +#, php-format +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click %s." +#~ msgstr "" +#~ "Följande webbplatser behöver en databasuppdatering. Marker de du vill " +#~ "uppdatera och klicka sedan på %s." + +#~ msgid "Upgrade Sites" +#~ msgstr "Uppgradera webbplatser" + +#~ msgid "Site" +#~ msgstr "Webbplats" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "Webbplatsen kräver en databasuppgradering från %s till %s" + +#~ msgid "Site is up to date" +#~ msgstr "Webbplatsen är uppdaterad" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Uppgradering av databas slutförd. Återgå till nätverkets " +#~ "adminpanel" + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "Välj minst en webbplats att uppgradera." + +#~ 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 vill köra uppdateringen nu?" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Uppgradera data till version %s" + +#~ msgid "Upgrade complete." +#~ msgstr "Uppgradering genomförd." + +#~ msgid "Upgrade failed." +#~ msgstr "Uppgradering misslyckades." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Läser in uppgifter för uppgradering..." + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "Databasuppgraderingen genomförd. Se vad som är nytt" + +#~ msgid "No updates available." +#~ msgstr "Inga uppdateringar tillgängliga." + +#~ msgid "Back to all tools" +#~ msgstr "Tillbaka till alla verktyg" + +#~ msgid "Show this field group if" +#~ msgstr "Visa detta fält om" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Uppgradering av databasen krävs" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "Tack för du uppdaterade till %s v%s!" + +#~ msgid "" +#~ "This version contains improvements to your database and requires an " +#~ "upgrade." +#~ msgstr "" +#~ "Denna version innehåller förbättringar av databasen och kräver en " +#~ "uppgradering." + +#, php-format +#~ msgid "" +#~ "Please also check all premium add-ons (%s) are updated to the latest " +#~ "version." +#~ msgstr "" +#~ "Kontrollera att alla premium-utökningar (%s) har uppdaterats till den " +#~ "senaste versionen." + +#~ msgid "Invalid field group parameter(s)." +#~ msgstr "Ogiltiga fältgruppsparametrer." + +#~ msgid "Invalid field group ID." +#~ msgstr "Ogiltigt fältgrupps-ID." + +#~ msgid "Sorry, this field group is unavailable for diff comparison." +#~ msgstr "Denna fältgrupp är inte tillgänglig för diff-jämförelse." + +#, php-format +#~ msgid "Last updated: %s" +#~ msgstr "Senast uppdaterad: %s" + +#~ msgid "Original field group" +#~ msgstr "Ursprunglig fältgrupp" + +#~ msgid "JSON field group (newer)" +#~ msgstr "JSON-fältgrupp (nyare)" + +#~ msgid "Thumbnail" +#~ msgstr "Tumnagel" + +#~ msgid "Medium" +#~ msgstr "Mellan" + +#~ msgid "Large" +#~ msgstr "Stor" + +#~ msgid "Full Size" +#~ msgstr "Full storlek" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Bildens bredd måste vara åtminstone %dpx." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Bildens bredd får inte överskrida %dpx." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Bildens höjd måste vara åtminstone %dpx." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Bildens höjd får inte överskrida %dpx." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Filstorlek måste vara åtminstone %s." + +#, php-format +#~ msgid "File size must not exceed %s." +#~ msgstr "Filstorlek får inte överskrida %s." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Filtyp måste vara %s." + +#~ msgid "Are you sure?" +#~ msgstr "Är du säker?" + +#~ msgid "Cancel" +#~ msgstr "Avbryt" + +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "" +#~ "De ändringar som du gjort kommer att förloras om du navigerar bort från " +#~ "denna sida" + +#~ msgid "Validation successful" +#~ msgstr "Validering lyckades" + +#~ msgid "Validation failed" +#~ msgstr "Validering misslyckades" + +#~ msgid "1 field requires attention" +#~ msgstr "1 fält kräver din uppmärksamhet" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d fält kräver din uppmärksamhet" + +#~ msgid "Field type does not exist" +#~ msgstr "Fälttyp existerar inte" + +#~ msgid "Unknown" +#~ msgstr "Okänd fältgrupp" + +#~ msgid "Basic" +#~ msgstr "Enkel" + +#~ msgid "Content" +#~ msgstr "Innehåll" + +#~ msgid "Choice" +#~ msgstr "Alternativ" + +#~ msgid "Relational" +#~ msgstr "Relation" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Accordion" +#~ msgstr "Expanderbar lista" + +#~ msgid "Open" +#~ msgstr "Öppen" + +#~ msgid "Display this accordion as open on page load." +#~ msgstr "Visa denna lista som öppen vid sidladdning." + +#~ msgid "Multi-expand" +#~ msgstr "Multi-expandera" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Tillåt denna expanderbara lista att öppnas utan att stänga övriga." + +#~ msgid "Endpoint" +#~ msgstr "Ändpunkt" + +#~ msgid "" +#~ "Define an endpoint for the previous accordion to stop. This accordion " +#~ "will not be visible." +#~ msgstr "" +#~ "Definiera en ändpunkt för där den tidigare expanderbara listan ska " +#~ "stoppa. Denna expanderbara lista kommer inte synas." + +#~ msgid "Button Group" +#~ msgstr "Knappgrupp" + +#~ msgid "Choices" +#~ msgstr "Alternativ" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Ange varje alternativ på en ny rad." + +#~ 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 etikett såhär:" + +#~ msgid "red : Red" +#~ msgstr "röd : Röd" + +#~ msgid "Allow Null?" +#~ msgstr "Tillått nollvärde?" + +#~ msgid "Default Value" +#~ msgstr "Standardvärde" + +#~ msgid "Appears when creating a new post" +#~ msgstr "Visas när ett nytt inlägg skapas" + +#~ msgid "Horizontal" +#~ msgstr "Horisontell" + +#~ msgid "Vertical" +#~ msgstr "Vertikal" + +#~ msgid "Return Value" +#~ msgstr "Returvärde" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Välj vilken typ av värde som ska returneras på front-end" + +#~ msgid "Value" +#~ msgstr "Värde" + +#~ msgid "Both (Array)" +#~ msgstr "Båda (array)" + +#~ msgid "Checkbox" +#~ msgstr "Kryssruta" + +#~ msgid "Toggle All" +#~ msgstr "Markera alla" + +#~ msgid "Add new choice" +#~ msgstr "Skapa nytt val" + +#~ msgid "Allow Custom" +#~ msgstr "Tillåt annat val" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "Tillåter ”annat val” att väljas" + +#~ msgid "Save Custom" +#~ msgstr "Spara annat val" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "Spara ”annat val”-värdet till fältets val" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Ange varje standardvärde på en ny rad" + +#~ msgid "Toggle" +#~ msgstr "Slå på/av" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "Visa en extra kryssruta för att markera alla val" + +#~ msgid "Color Picker" +#~ msgstr "Färgväljare" + +#~ msgid "Clear" +#~ msgstr "Rensa" + +#~ msgid "Clear color" +#~ msgstr "Rensa färg" + +#~ msgid "Default" +#~ msgstr "Standard" + +#~ msgid "Select default color" +#~ msgstr "Välj standardfärg" + +#~ msgid "Select Color" +#~ msgstr "Välj färg" + +#~ msgid "Color value" +#~ msgstr "Färgvärde" + +#~ msgid "Date Picker" +#~ msgstr "Datumväljare" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Färdig" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Idag" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "Nästa" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Föregående" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "V" + +#~ msgid "Display Format" +#~ msgstr "Visa format" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "Visningsformatet vid ändring av inlägg" + +#~ msgid "Custom:" +#~ msgstr "Anpassat:" + +#~ msgid "Save Format" +#~ msgstr "Spara i format" + +#~ msgid "The format used when saving a value" +#~ msgstr "Formatet som används när ett värde sparas" + +#~ msgid "The format returned via template functions" +#~ msgstr "Formatet som returneras av mallfunktioner" + +#~ msgid "Week Starts On" +#~ msgstr "Veckan börjar på" + +#~ msgid "Date Time Picker" +#~ msgstr "Datum/tidväljare" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Välj tid" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Tid" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Timme" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Minut" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Sekund" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Millisekund" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Mikrosekund" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Tidszon" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Nu" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Klar" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Välj" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "fm" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "fm" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "em" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "E" + +#~ msgid "Email" +#~ msgstr "E-post" + +#~ msgid "Placeholder Text" +#~ msgstr "Platshållartext" + +#~ msgid "Appears within the input" +#~ msgstr "Visas inuti fältet" + +#~ msgid "Prepend" +#~ msgstr "Lägg till före" + +#~ msgid "Appears before the input" +#~ msgstr "Visas före fältet" + +#~ msgid "Append" +#~ msgstr "Lägg till efter" + +#~ msgid "Appears after the input" +#~ msgstr "Visas efter fältet" + +#, php-format +#~ msgid "'%s' is not a valid email address" +#~ msgstr "\"%s\" är inte en giltig e-postadress" + +#~ msgid "File" +#~ msgstr "Fil" + +#~ msgid "Edit File" +#~ msgstr "Redigera fil" + +#~ msgid "Update File" +#~ msgstr "Uppdatera fil" + +#~ msgid "File name" +#~ msgstr "Filnamn" + +#~ msgid "Add File" +#~ msgstr "Lägg till fil" + +#~ msgid "File Array" +#~ msgstr "Fil-array" + +#~ msgid "File URL" +#~ msgstr "Fil-URL" + +#~ msgid "File ID" +#~ msgstr "Filens ID" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Begränsa vilka filer som kan laddas upp" + +#~ msgid "Google Map" +#~ msgstr "Google-karta" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Denna webbläsare saknar stöd för platsinformation" + +#~ msgid "Search" +#~ msgstr "Sök" + +#~ msgid "Clear location" +#~ msgstr "Rensa plats" + +#~ msgid "Find current location" +#~ msgstr "Hitta nuvarande plats" + +#~ msgid "Search for address..." +#~ msgstr "Sök efter adress..." + +#~ msgid "Center" +#~ msgstr "Centrera" + +#~ msgid "Center the initial map" +#~ msgstr "Kartans initiala centrum" + +#~ msgid "Zoom" +#~ msgstr "Zoom" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Ange kartans initiala zoom-nivå" + +#~ msgid "Customize the map height" +#~ msgstr "Ställ in kartans höjd" + +#~ msgid "Group" +#~ msgstr "Grupp" + +#~ msgid "Image" +#~ msgstr "Bild" + +#~ msgid "Select Image" +#~ msgstr "Välj bild" + +#~ msgid "Edit Image" +#~ msgstr "Redigera bild" + +#~ msgid "Update Image" +#~ msgstr "Uppdatera bild" + +#~ msgid "All images" +#~ msgstr "Alla bilder" + +#~ msgid "No image selected" +#~ msgstr "Ingen bild vald" + +#~ msgid "Add Image" +#~ msgstr "Lägg till bild" + +#~ msgid "Link" +#~ msgstr "Länk" + +#~ msgid "Select Link" +#~ msgstr "Välj länk" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "Öppnas i ett nytt fönster/flik" + +#~ msgid "Link Array" +#~ msgstr "Länk-array" + +#~ msgid "Link URL" +#~ msgstr "Länk-URL" + +#~ msgid "Message" +#~ msgstr "Meddelande" + +#~ msgid "New Lines" +#~ msgstr "Nya rader" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Reglerar hur nya rader renderas" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Lägg till styckesindelning automatiskt" + +#~ msgid "Automatically add <br>" +#~ msgstr "Lägg till automatiskt <br>" + +#~ msgid "No Formatting" +#~ msgstr "Ingen formattering" + +#~ msgid "Escape HTML" +#~ msgstr "Inaktivera HTML-rendering" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "Tillåt HTML-kod att visas som synlig text istället för att renderas" + +#~ msgid "Number" +#~ msgstr "Nummer" + +#~ msgid "Minimum Value" +#~ msgstr "Minsta värde" + +#~ msgid "Maximum Value" +#~ msgstr "Högsta värde" + +#~ msgid "Step Size" +#~ msgstr "Stegvärde" + +#~ msgid "Value must be a number" +#~ msgstr "Värdet måste vara ett nummer" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "Värdet måste vara lika med eller högre än %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Värdet måste vara lika med eller lägre än %d" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "Fyll i URL" + +#~ msgid "Embed Size" +#~ msgstr "Embed-storlek" + +#~ msgid "Page Link" +#~ msgstr "Sidlänk" + +#~ msgid "Archives" +#~ msgstr "Arkiv" + +#~ msgid "Parent" +#~ msgstr "Överordnad" + +#~ msgid "Filter by Post Type" +#~ msgstr "Filtrera efter inläggstyp" + +#~ msgid "All post types" +#~ msgstr "Alla inläggstyper" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "Filtrera efter taxonomi" + +#~ msgid "All taxonomies" +#~ msgstr "Alla taxonomier" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Tillåt arkiv-URL:er" + +#~ msgid "Select multiple values?" +#~ msgstr "Välj flera värden?" + +#~ msgid "Password" +#~ msgstr "Lösenord" + +#~ msgid "Post Object" +#~ msgstr "Inläggsobjekt" + +#~ msgid "Post ID" +#~ msgstr "Inläggs-ID" + +#~ msgid "Radio Button" +#~ msgstr "Alternativknapp" + +#~ msgid "Other" +#~ msgstr "Annat" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "Lägg till värdet 'annat' för att tillåta egna värden" + +#~ msgid "Save Other" +#~ msgstr "Spara annat" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "Spara 'annat'-värden till fältets alternativ" + +#~ msgid "Range" +#~ msgstr "Intervall" + +#~ msgid "Relationship" +#~ msgstr "Relation" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "Högsta tillåtna antal värden uppnått ( {max} värden )" + +#~ msgid "Loading" +#~ msgstr "Laddar" + +#~ msgid "No matches found" +#~ msgstr "Inga träffar" + +#~ msgid "Select post type" +#~ msgstr "Välj inläggstyp" + +#~ msgid "Select taxonomy" +#~ msgstr "Välj taxonomi" + +#~ msgid "Search..." +#~ msgstr "Sök..." + +#~ msgid "Filters" +#~ msgstr "Filter" + +#~ msgid "Post Type" +#~ msgstr "Inläggstyp" + +#~ msgid "Taxonomy" +#~ msgstr "Taxonomi" + +#~ msgid "Elements" +#~ msgstr "Element" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Valda element visas i varje resultat" + +#~ msgid "Minimum posts" +#~ msgstr "Minsta antal inlägg" + +#~ msgid "Maximum posts" +#~ msgstr "Högsta antal inlägg" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s kräver minst %s val" +#~ msgstr[1] "%s kräver minst %s val" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Flerväljare" + +#~ msgctxt "Select2 JS matches_1" +#~ msgid "One result is available, press enter to select it." +#~ msgstr "Ett resultat, tryck enter för att välja det." + +#, php-format +#~ msgctxt "Select2 JS matches_n" +#~ msgid "%d results are available, use up and down arrow keys to navigate." +#~ msgstr "%d resultat, använd upp och ned pilarna för att navigera." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Inget resultat" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Skriv in 1 eller fler tecken" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Skriv in %d eller fler tecken" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Ta bort 1 tecken" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Ta bort %d tecken" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Du kan bara välja 1 resultat" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Du kan bara välja %d resultat" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Laddar fler resultat …" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Söker …" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Laddning misslyckades" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Välj" + +#~ msgid "Stylised UI" +#~ msgstr "Stylat utseende" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "Använda AJAX för att ladda alternativ efter att sidan laddats?" + +#~ msgid "Specify the value returned" +#~ msgstr "Specificera värdet att returnera" + +#~ msgid "Separator" +#~ msgstr "Avgränsare" + +#~ msgid "Tab" +#~ msgstr "Flik" + +#~ msgid "Placement" +#~ msgstr "Placering" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Definiera en ändpunkt där de föregående flikarna att stoppas. Detta " +#~ "kommer starta en ny grupp med flikar." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "Inga %s" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Välj taxonomin som ska visas" + +#~ msgid "Appearance" +#~ msgstr "Utseende" + +#~ msgid "Select the appearance of this field" +#~ msgstr "Välj utseende för detta fält" + +#~ msgid "Multiple Values" +#~ msgstr "Flera värden" + +#~ msgid "Multi Select" +#~ msgstr "Flerval" + +#~ msgid "Single Value" +#~ msgstr "Enstaka värde" + +#~ msgid "Radio Buttons" +#~ msgstr "Alternativknappar" + +#~ msgid "Create Terms" +#~ msgstr "Skapa termer" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Tillåt att nya termer läggs till under redigering" + +#~ msgid "Save Terms" +#~ msgstr "Spara termer" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Koppla valda termer till inlägget" + +#~ msgid "Load Terms" +#~ msgstr "Ladda termer" + +#~ msgid "Load value from posts terms" +#~ msgstr "Ladda term från ett inläggs termer" + +#~ msgid "Term Object" +#~ msgstr "Termobjekt" + +#~ msgid "Term ID" +#~ msgstr "Term-ID" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Användare kan inte lägga till ny %s" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s finns redan" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s tillagt" + +#~ msgid "Add" +#~ msgstr "Lägg till" + +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Character Limit" +#~ msgstr "Maximalt antal tecken" + +#~ msgid "Leave blank for no limit" +#~ msgstr "Lämna tomt för att ha utan begränsning" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "Värdet får inte överstiga %d tecken" + +#~ msgid "Text Area" +#~ msgstr "Textfält" + +#~ msgid "Rows" +#~ msgstr "Rader" + +#~ msgid "Sets the textarea height" +#~ msgstr "Välj textfältets höjd" + +#~ msgid "Time Picker" +#~ msgstr "Tidväljare" + +#~ msgid "True / False" +#~ msgstr "Sant/Falskt" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "Visar text bredvid kryssrutan" + +#~ msgid "On Text" +#~ msgstr "”På”-text" + +#~ msgid "Text shown when active" +#~ msgstr "Text som visas när valet är aktivt" + +#~ msgid "Off Text" +#~ msgstr "”Av”-text" + +#~ msgid "Text shown when inactive" +#~ msgstr "Text som visas när valet är inaktivt" + +#~ msgid "Url" +#~ msgstr "URL" + +#~ msgid "Value must be a valid URL" +#~ msgstr "Värdet måste vara en giltig URL" + +#~ msgid "User" +#~ msgstr "Användare" + +#~ msgid "Filter by role" +#~ msgstr "Filtrera efter roll" + +#~ msgid "All user roles" +#~ msgstr "Alla användarroller" + +#~ msgid "User Array" +#~ msgstr "Användar-array" + +#~ msgid "User Object" +#~ msgstr "Användarobjekt" + +#~ msgid "User ID" +#~ msgstr "Användar-ID" + +#~ msgid "Error loading field." +#~ msgstr "Fel vid inläsning av fält." + +#~ msgid "Wysiwyg Editor" +#~ msgstr "WYSIWYG-editor" + +#~ msgid "Visual" +#~ msgstr "Visuellt" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "Klicka för att initialisera tinyMCE" + +#~ msgid "Tabs" +#~ msgstr "Flikar" + +#~ msgid "Visual & Text" +#~ msgstr "Visuell och text" + +#~ msgid "Visual Only" +#~ msgstr "Endast visuellt" + +#~ msgid "Text Only" +#~ msgstr "Endast text" + +#~ msgid "Toolbar" +#~ msgstr "Verktygsfält" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Visa knappar för uppladdning av media?" + +#~ msgid "Delay initialization?" +#~ msgstr "Fördröj initialisering?" + +#~ msgid "TinyMCE will not be initialized until field is clicked" +#~ msgstr "TinyMCE initialiseras inte förrän fältet klickas på" + +#~ msgid "Validate Email" +#~ msgstr "Validera e-post" + +#~ msgid "Post updated" +#~ msgstr "Inlägg uppdaterat" + +#~ msgid "Spam Detected" +#~ msgstr "Skräppost upptäckt" + +#, php-format +#~ msgid "Error: %s" +#~ msgstr "Fel: %s" + +#, php-format +#~ msgid "Class \"%s\" does not exist." +#~ msgstr "Klassen ”%s” finns inte." + +#, php-format +#~ msgid "Location type \"%s\" is already registered." +#~ msgstr "Platstypen ”%s” är redan registrerad." + +#~ msgid "Post" +#~ msgstr "Inlägg" + +#~ msgid "Page" +#~ msgstr "Sida" + +#~ msgid "Forms" +#~ msgstr "Formulär" + +#~ msgid "is equal to" +#~ msgstr "är lika med" + +#~ msgid "is not equal to" +#~ msgstr "inte är lika med" + +#~ msgid "Attachment" +#~ msgstr "Bilaga" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Alla %s-format" + +#~ msgid "Comment" +#~ msgstr "Kommentar" + +#~ msgid "Current User Role" +#~ msgstr "Inloggad användarroll" + +#~ msgid "Super Admin" +#~ msgstr "Superadministratör" + +#~ msgid "Current User" +#~ msgstr "Nuvarande användare" + +#~ msgid "Logged in" +#~ msgstr "Inloggad" + +#~ msgid "Viewing front end" +#~ msgstr "Visar framsida" + +#~ msgid "Viewing back end" +#~ msgstr "Visar back-end" + +#~ msgid "Menu Item" +#~ msgstr "Menyobjekt" + +#~ msgid "Menu" +#~ msgstr "Meny" + +#~ msgid "Menu Locations" +#~ msgstr "Menyplatser" + +#~ msgid "Page Parent" +#~ msgstr "Överordnad sida" + +#~ msgid "Page Template" +#~ msgstr "Sidmall" + +#~ msgid "Default Template" +#~ msgstr "Standardmall" + +#~ msgid "Page Type" +#~ msgstr "Sidtyp" + +#~ msgid "Front Page" +#~ msgstr "Startsida" + +#~ msgid "Posts Page" +#~ msgstr "Sida för inlägg" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Toppsida (Ingen förälder)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Överordnad sida (har underordnade)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Undersida (har överordnad)" + +#~ msgid "Post Category" +#~ msgstr "Inläggskategori" + +#~ msgid "Post Format" +#~ msgstr "Inläggsformat" + +#~ msgid "Post Status" +#~ msgstr "Inläggsstatus" + +#~ msgid "Post Taxonomy" +#~ msgstr "Inläggstaxonomi" + +#~ msgid "Post Template" +#~ msgstr "Inläggsmall" + +#~ msgid "User Form" +#~ msgstr "Användarformulär" + +#~ msgid "Add / Edit" +#~ msgstr "Skapa/Redigera" + +#~ msgid "Register" +#~ msgstr "Registrera" + +#~ msgid "User Role" +#~ msgstr "Användarroll" + +#~ msgid "Widget" +#~ msgstr "Widget" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Ändra" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Uppdatera" + +#~ msgid "Uploaded to this post" +#~ msgstr "Uppladdade till detta inlägg" + +#~ msgid "Expand Details" +#~ msgstr "Visa detaljer" + +#~ msgid "Collapse Details" +#~ msgstr "Dölj detaljer" + +#~ msgid "Restricted" +#~ msgstr "Begränsad" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s värde är obligatorisk" + +#, php-format +#~ 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 "" +#~ "För att aktivera uppdateringar, fyll i din licensnyckel på sidan uppdateringar. Om du inte har en licensnyckel, gå till sidan " +#~ "detaljer och priser." + +#~ msgid "https://www.advancedcustomfields.com" +#~ msgstr "https://www.advancedcustomfields.com" + +#~ msgid "" +#~ "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "Anpassa Wordpress med kraftfulla, professionella och intuitiva fält." + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "Inactive" +#~ msgstr "Inaktiv" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Inaktiv (%s)" +#~ msgstr[1] "Inaktiva (%s)" + +#~ msgid "Parent fields" +#~ msgstr "Överordnade fält" + +#~ msgid "Sibling fields" +#~ msgstr "Syskonfält" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s fältgrupp synkroniserad." +#~ msgstr[1] "%s fältgrupper synkroniserade." + +#~ msgid "Status" +#~ msgstr "Status" + +#, php-format +#~ msgid "See what's new in version %s." +#~ msgstr "Se vad som är nytt i version %s." + +#~ msgid "Resources" +#~ msgstr "Resurser" + +#~ msgid "Documentation" +#~ msgstr "Dokumentation" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#, php-format +#~ msgid "Thank you for creating with ACF." +#~ msgstr "Tack för att du skapar med ACF." + +#~ msgid "Synchronise field group" +#~ msgstr "Synkronisera fältgrupp" + +#~ msgid "Apply" +#~ msgstr "Utför" + +#~ msgid "Bulk Actions" +#~ msgstr "Massåtgärder" + +#~ msgid "Error validating request" +#~ msgstr "Fel vid validering av begäran" + +#~ msgid "Add-ons" +#~ msgstr "Utökningar" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Fel. Kunde inte ladda listan med utökningar" + +#~ msgid "Info" +#~ msgstr "Information" + +#~ msgid "What's New" +#~ msgstr "Vad är nytt" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Databasuppgradering för Advanced Custom Fields" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Innan du börjar använda de nya fantastiska funktionerna, uppdatera din " +#~ "databas till den senaste versionen." + +#~ msgid "Download & Install" +#~ msgstr "Ladda ner och installera" + +#~ msgid "Installed" +#~ msgstr "Installerad" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Välkommen till Advanced Custom Fields" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Tack för att du uppdaterar! ACF %s är större och bättre än någonsin " +#~ "tidigare. Vi hoppas att du gillar det." + +#~ msgid "A smoother custom field experience" +#~ msgstr "En smidigare fältupplevelse" + +#~ msgid "Improved Usability" +#~ msgstr "Förbättrad användarvänlighet" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Vi har inkluderat det populära biblioteket Select2 som har förbättrat " +#~ "både användbarhet och laddningstid för ett antal fälttyper såsom " +#~ "inläggsobjekt, sidlänk, taxonomi och val." + +#~ msgid "Improved Design" +#~ msgstr "Förbättrad design" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "Många fält har genomgått en visuell förbättring för att låta ACF se " +#~ "bättre ut än någonsin! Märkbara förändringar syns på fälten galleri, " +#~ "relation och oEmbed (nytt)!" + +#~ msgid "Improved Data" +#~ msgstr "Förbättrad data" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Omdesignen av dataarkitekturen har tillåtit underfält att leva " +#~ "självständigt från deras föräldrar. Detta gör att du kan dra och släppa " +#~ "fält in och ut från förälderfälten!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Adjö tillägg. Hej PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Introduktion av ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Vi ändrar hur premium-funktionalitet levereras, på ett spännande sätt!" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Samtliga 4 premiumutökningar har kombineras till en ny Pro " +#~ "version av ACF. Med både personlig- och utvecklarlicens tillgängliga, " +#~ "så är premium-funktionalitet billigare och tillgängligare än någonsin!" + +#~ msgid "Powerful Features" +#~ msgstr "Kraftfulla funktioner" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO innehåller kraftfulla funktioner som upprepningsfält, flexibelt " +#~ "innehåll, ett vackert gallerifält och möjligheten att skapa extra " +#~ "inställningssidor!" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "Läs mer om ACF PRO funktioner." + +#~ msgid "Easy Upgrading" +#~ msgstr "Enkelt att uppgradera" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "För att göra uppgraderingen enkel, logga in till ditt " +#~ "konto och få en gratis kopia av ACF PRO!" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "Vi skrev även en uppgraderingsguideför svara på " +#~ "eventuella frågor, men om du har en, kontakta vårt supportteam via help desk" + +#~ msgid "Under the Hood" +#~ msgstr "Under huven" + +#~ msgid "Smarter field settings" +#~ msgstr "Smartare fältinställningar" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF sparar nu sina fältinställningar som individuella inläggsobjekt" + +#~ msgid "More AJAX" +#~ msgstr "Mer AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "Fler fält använder AJAX-sök för snabbare laddning" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "Ny automatisk export till JSON funktion förbättrar snabbheten" + +#~ msgid "Better version control" +#~ msgstr "Bättre versionshantering" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Ny automatisk export till JSON-funktion möjliggör versionshantering av " +#~ "fältinställningar" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "Bytte XML till JSON" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "Importera/exportera använder nu JSON istället för XML" + +#~ msgid "New Forms" +#~ msgstr "Nya formulär" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "" +#~ "Fält kan nu kopplas till kommentarer, widgetar och alla användarformulär!" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Ett nytt fält för inbäddning av innehåll (embed) har lagts till" + +#~ msgid "New Gallery" +#~ msgstr "Nytt galleri" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Gallerifältet har genomgått en välbehövlig ansiktslyftning" + +#~ msgid "New Settings" +#~ msgstr "Nya inställningar" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "" +#~ "Fältgruppsinställningar har lagts till för placering av rubrik och " +#~ "instruktioner" + +#~ msgid "Better Front End Forms" +#~ msgstr "Bättre front-end formulär" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() kan nu skapa ett nytt inlägg när det skickas" + +#~ msgid "Better Validation" +#~ msgstr "Bättre validering" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "" +#~ "Validering av formulär görs nu via PHP + AJAX istället för enbart JS" + +#~ msgid "Relationship Field" +#~ msgstr "Relationsfält" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "" +#~ "Ny inställning för relationsfält för ”Filter” (Sök, Inläggstyp, Taxonomi)" + +#~ msgid "Moving Fields" +#~ msgstr "Flytta runt fält" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "" +#~ "Ny fältgrupp funktionalitet tillåter dig att flytta ett fält mellan " +#~ "grupper och föräldrar" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Ny arkivgrupp i page_link fältval" + +#~ msgid "Better Options Pages" +#~ msgstr "Bättre inställningssidor" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Nya funktioner för inställningssidor tillåter skapande av både föräldra- " +#~ "och undersidor" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "Vi tror att du kommer uppskatta förändringarna i %s." + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Exportera fältgrupper till PHP" + +#~ msgid "Download export file" +#~ msgstr "Ladda ner exportfil" + +#~ msgid "Generate export code" +#~ msgstr "Generera exportkod" + +#~ msgid "Current Color" +#~ msgstr "Nuvarande färg" + +#~ msgid "Locating" +#~ msgstr "Söker plats" + +#~ msgid "Shown when entering data" +#~ msgstr "Visas vid inmatning av data" + +#~ msgid "Error." +#~ msgstr "Fel." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Ingen embed hittades för angiven URL." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "Lägsta tillåtna antal värden nått ( {min} värden )" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Flikfältet kommer att visas felaktigt om de läggs till i ett " +#~ "upprepningsfält med tabellutseende eller ett innehållsfält med flexibel " +#~ "layout" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "Använd ”Flikfält” för att bättre organisera din redigeringsvy genom att " +#~ "gruppera fälten tillsammans." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Alla fält efter detta ”flikfält” (eller fram till nästa ”flikfält”) " +#~ "kommer att grupperas tillsammans genom fältets rubrik som flikrubrik." + +#~ msgid "None" +#~ msgstr "Ingen" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taxonomivärde" + +#~ msgid "remove {layout}?" +#~ msgstr "ta bort {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Detta fält kräver minst {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "Maximal {label} gräns nåtts ({max} {identifier})" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" diff --git a/lang/pro/acf-tr_TR.po b/lang/pro/acf-tr_TR.po new file mode 100644 index 0000000..6e34620 --- /dev/null +++ b/lang/pro/acf-tr_TR.po @@ -0,0 +1,3364 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:15+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Emre Erkan \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "Blok türü adı gereklidir." + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "Blok türü \"%s\" zaten kayıtlı." + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "Düzenlemeye geç" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "Önizlemeye geç" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "İçerik hizalamasını değiştir" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "%s ayarları" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +msgid "" +"Assign a field group to add fields to " +"this block." +msgstr "" + +#: pro/options-page.php:47 +msgid "Options" +msgstr "Seçenekler" + +#: pro/options-page.php:77, pro/fields/class-acf-field-gallery.php:523 +msgid "Update" +msgstr "Güncelle" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "Tekrar kontrol et" + +#: pro/updates.php:561 +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-options-page.php:309 +msgid "Edit field group" +msgstr "Alan grubunu düzenle" + +#: 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:122, +#: pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "Güncellemeler" + +#: pro/admin/admin-updates.php:209 +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:196 +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:25 +msgctxt "noun" +msgid "Clone" +msgstr "Kopyala" + +#: pro/fields/class-acf-field-clone.php:814 +msgid "Fields" +msgstr "Alanlar" + +#: pro/fields/class-acf-field-clone.php:815 +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:834 +msgid "Display" +msgstr "Görüntüle" + +#: pro/fields/class-acf-field-clone.php:835 +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:840 +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:841 +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:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "Yerleşim" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "Seçili alanları görüntülemek için kullanılacak stili belirtin" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "Blok" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "Tablo" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "Satır" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "Etiketler %s olarak görüntülenir" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "Alan etiketlerine ön ek ekle" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "Değerler %s olarak kaydedilecek" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "Alan isimlerine ön ek ekle" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "Bilinmeyen alan" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(başlıksız)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "Bilinmeyen alan grubu" + +#: pro/fields/class-acf-field-clone.php:1042 +msgid "All fields from %s field group" +msgstr "%s alan grubundaki tüm alanlar" + +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Esnek içerik" + +#: pro/fields/class-acf-field-flexible-content.php:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "Satır ekle" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "yerleşim" +msgstr[1] "yerleşimler" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "yerleşimler" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +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:76 +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:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} kullanılabilir (en fazla {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} gerekli (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +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:276 +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:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "Yeniden düzenlemek için sürükleyin" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "Yerleşim ekle" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "Düzeni çoğalt" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "Yerleşimi çıkar" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "Geçiş yapmak için tıklayın" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "Yerleşimi yeniden sırala" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "Yeniden sırala" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "Yerleşimi sil" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "Sil" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "Yerleşimi çoğalt" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "Çoğalt" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "Yeni yerleşim ekle" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "Yeni ekle" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "Etiket" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "İsim" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "En düşük" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "En yüksek" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "Tuş etiketi" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "En az yerleşim" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "En fazla yerleşim" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +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:1715 +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:1731 +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:25 +msgid "Gallery" +msgstr "Galeri" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "Galeriye görsel ekle" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "En fazla seçim aşıldı" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "Uzunluk" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "Düzenle" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "Kaldır" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "Başlık" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Başlık" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "Alternatif metin" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "Açıklama" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "Galeriye ekle" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "Toplu eylemler" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "Yüklenme tarihine göre sırala" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "Değiştirme tarihine göre sırala" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "Başlığa göre sırala" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "Sıralamayı ters çevir" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "Kapat" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "Dönüş biçimi" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "Görsel dizisi" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "Görsel adresi" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "Görsel no" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "Önizleme boyutu" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "Ekle" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "Yeni eklerin nereye ekleneceğini belirtin" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "Sona ekle" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "En başa ekleyin" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "Kitaplık" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "Ortam kitaplığı seçimini sınırlayın" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "Tümü" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "Yazıya yüklendi" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "En az seçim" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "En fazla seçim" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "En az" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "Hangi görsellerin yüklenebileceğini sınırlandırın" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "Genişlik" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "Yükseklik" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Dosya boyutu" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "En fazla" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "İzin verilen dosya tipleri" + +#: pro/fields/class-acf-field-gallery.php:730 +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" + +#: pro/fields/class-acf-field-gallery.php:832 +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" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "Tekrarlayıcı" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "En az satır sayısına ulaşıldı ({min} satır)" + +#: pro/fields/class-acf-field-repeater.php:54 +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:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "Alt alanlar" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "Daraltılmış" + +#: pro/fields/class-acf-field-repeater.php:175 +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:187 +msgid "Minimum Rows" +msgstr "En az satır" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "En fazla satır" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "Geçersiz nonce." + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "Satır ekle" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "Satırı çoğalt" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "Satır çıkar" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +msgid "Last page" +msgstr "" + +#: 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:22 +msgid "Options Page" +msgstr "Seçenekler sayfası" + +#: 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:41 +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:76 +msgid "Update Information" +msgstr "Güncelleme bilgisi" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "Mevcut sürüm" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "En son sürüm" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "Güncelleme mevcut" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "Hayır" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "Evet" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above 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:109 +msgid "Update Plugin" +msgstr "Eklentiyi güncelle" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" +"Güncellemelerin kilidini açmak için lütfen lisansınızı yeniden etkinleştirin" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "Değişiklik kayıtları" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "Yükseltme bildirimi" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields" + +#~ msgid "Field Groups" +#~ msgstr "Alan grupları" + +#~ msgid "Field Group" +#~ msgstr "Alan grubu" + +#~ msgid "Add New Field Group" +#~ msgstr "Yeni alan grubu ekle" + +#~ msgid "Edit Field Group" +#~ msgstr "Alan grubunu düzenle" + +#~ msgid "New Field Group" +#~ msgstr "Yeni alan grubu" + +#~ msgid "View Field Group" +#~ msgstr "Alan grubunu görüntüle" + +#~ msgid "Search Field Groups" +#~ msgstr "Alan gruplarında ara" + +#~ msgid "No Field Groups found" +#~ msgstr "Hiç alan grubu bulunamadı" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "Çöpte alan grubu bulunamadı" + +#~ msgid "Field" +#~ msgstr "Alan" + +#~ msgid "Add New Field" +#~ msgstr "Yeni elan ekle" + +#~ msgid "Edit Field" +#~ msgstr "Alanı düzenle" + +#~ msgid "New Field" +#~ msgstr "Yeni alan" + +#~ msgid "View Field" +#~ msgstr "Alanı görüntüle" + +#~ msgid "Search Fields" +#~ msgstr "Alanlarda ara" + +#~ msgid "No Fields found" +#~ msgstr "Hiç alan bulunamadı" + +#~ msgid "No Fields found in Trash" +#~ msgstr "Çöpte alan bulunamadı" + +#~ msgctxt "post status" +#~ msgid "Inactive" +#~ msgstr "Etkin değil" + +#, php-format +#~ msgid "Inactive (%s)" +#~ msgid_plural "Inactive (%s)" +#~ msgstr[0] "Etkin olmayan (%s)" +#~ msgstr[1] "Etkin olmayan (%s)" + +#~ 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 ve Advanced Custom Fields PRO aynı anda etkin " +#~ "olmamalıdır. Advanced Custom Fields eklentisini otomatik olarak devre " +#~ "dışı bıraktık." + +#~ 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 ve Advanced Custom Fields PRO aynı anda etkin " +#~ "olmamalıdır. Advanced Custom Fields PRO eklentisini otomatik olarak devre " +#~ "dışı bıraktık." + +#~ msgid "(no label)" +#~ msgstr "(etiket yok)" + +#~ msgid "copy" +#~ msgstr "kopyala" + +#, php-format +#~ 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 desteklenmemektedir ve " +#~ "hatalı biçimlendirilmiş veya eksik verilere neden olabilir. Bunu nasıl düzelteceğinizi öğrenin." + +#~ msgid "Posts" +#~ msgstr "Yazılar" + +#~ msgid "Taxonomies" +#~ msgstr "Taksonomiler" + +#~ msgid "Attachments" +#~ msgstr "Ekler" + +#~ msgid "Comments" +#~ msgstr "Yorumlar" + +#~ msgid "Widgets" +#~ msgstr "Bileşenler" + +#~ msgid "Menus" +#~ msgstr "Menüler" + +#~ msgid "Menu items" +#~ msgstr "Menü ögeleri" + +#~ msgid "Users" +#~ msgstr "Kullanıcılar" + +#~ msgid "Blocks" +#~ msgstr "Bloklar" + +#~ msgid "Field group updated." +#~ msgstr "Alan grubu güncellendi." + +#~ msgid "Field group deleted." +#~ msgstr "Alan grubu silindi." + +#~ msgid "Field group published." +#~ msgstr "Alan grubu yayımlandı." + +#~ msgid "Field group saved." +#~ msgstr "Alan grubu kaydedildi." + +#~ msgid "Field group submitted." +#~ msgstr "Alan grubu gönderildi." + +#~ msgid "Field group scheduled for." +#~ msgstr "Alan grubu zamanlandı." + +#~ msgid "Field group draft updated." +#~ msgstr "Alan grubu taslağı güncellendi." + +#~ 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" + +#~ 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" + +#~ msgid "Field group title is required" +#~ msgstr "Alan grubu başlığı gerekli" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "Çöpe taşımak istediğinizden emin misiniz?" + +#~ msgid "No toggle fields available" +#~ msgstr "Kullanılabilir aç-kapa alan yok" + +#~ msgid "Move Custom Field" +#~ msgstr "Özel alanı taşı" + +#~ msgid "Checked" +#~ msgstr "İşaretlendi" + +#~ msgid "(this field)" +#~ msgstr "(bu alan)" + +#~ msgid "or" +#~ msgstr "veya" + +#~ msgid "Show this field group if" +#~ msgstr "Bu alan grubunu şu koşulda göster" + +#~ msgid "Null" +#~ msgstr "Boş" + +#~ msgid "Has any value" +#~ msgstr "Herhangi bir değer" + +#~ msgid "Has no value" +#~ msgstr "Hiçbir değer" + +#~ msgid "Value is equal to" +#~ msgstr "Değer eşitse" + +#~ msgid "Value is not equal to" +#~ msgstr "Değer eşit değilse" + +#~ msgid "Value matches pattern" +#~ msgstr "Değer bir desenle eşleşir" + +#~ msgid "Value contains" +#~ msgstr "Değer içeriyor" + +#~ msgid "Value is greater than" +#~ msgstr "Değer daha büyük" + +#~ msgid "Value is less than" +#~ msgstr "Değer daha az" + +#~ msgid "Selection is greater than" +#~ msgstr "Seçin daha büyük" + +#~ msgid "Selection is less than" +#~ msgstr "Seçim daha az" + +#~ msgid "Repeater (Pro only)" +#~ msgstr "Yineleyici (Yalnızca pro)" + +#~ msgid "Flexible Content (Pro only)" +#~ msgstr "Esnek i̇çerik (yalnızca pro)" + +#~ msgid "Clone (Pro only)" +#~ msgstr "Çoğalt (Yalnızca pro)" + +#~ msgid "Gallery (Pro only)" +#~ msgstr "Galeri (Yalnızca pro)" + +#~ msgid "Location" +#~ msgstr "Konum" + +#~ msgid "Settings" +#~ msgstr "Ayarlar" + +#~ msgid "Field Keys" +#~ msgstr "Alan anahtarları" + +#~ msgctxt "post status" +#~ msgid "Active" +#~ msgstr "Etkin" + +#~ msgid "Move Complete." +#~ msgstr "Taşıma tamamlandı." + +#, php-format +#~ msgid "The %1$s field can now be found in the %2$s field group" +#~ msgstr "%1$s alanı artık %2$s alan grubu altında bulunabilir" + +#~ msgid "Close Window" +#~ msgstr "Pencereyi kapat" + +#~ msgid "Please select the destination for this field" +#~ msgstr "Lütfen bu alan için bir hedef seçin" + +#~ msgid "Move Field" +#~ msgstr "Alanı taşı" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "Etkin (%s)" +#~ msgstr[1] "Etkin (%s)" + +#~ msgid "Review local JSON changes" +#~ msgstr "Yerel JSON değişikliklerini incele" + +#~ msgid "Loading diff" +#~ msgstr "Fark yükleniyor" + +#~ msgid "Sync changes" +#~ msgstr "Değişiklikleri eşitle" + +#~ msgid "Key" +#~ msgstr "Anahtar" + +#~ msgid "Local JSON" +#~ msgstr "Yerel JSON" + +#~ msgid "Various" +#~ msgstr "Çeşitli" + +#, php-format +#~ msgid "Located in theme: %s" +#~ msgstr "Tema içinde konumlu: %s" + +#, php-format +#~ msgid "Located in plugin: %s" +#~ msgstr "Eklenti içinde konumlu: %s" + +#, php-format +#~ msgid "Located in: %s" +#~ msgstr "Konumu: %s" + +#~ msgid "Sync available" +#~ msgstr "Eşitleme mevcut" + +#~ msgid "Sync" +#~ msgstr "Eşitle" + +#~ msgid "Review changes" +#~ msgstr "Değişiklikleri incele" + +#~ msgid "Import" +#~ msgstr "İçe aktar" + +#~ msgid "Saved" +#~ msgstr "Kaydedildi" + +#~ msgid "Awaiting save" +#~ msgstr "Kayıt edilmeyi bekliyor" + +#~ msgid "Duplicate this item" +#~ msgstr "Bu ögeyi çoğalt" + +#~ msgid "Activate this item" +#~ msgstr "Bu öğeyi etkinleştir" + +#~ msgid "Activate" +#~ msgstr "Etkinleştir" + +#~ msgid "Deactivate this item" +#~ msgstr "Bu öğeyi devre dışı bırak" + +#~ msgid "Deactivate" +#~ msgstr "Devre dışı bırak" + +#, php-format +#~ msgid "Field group activated." +#~ msgid_plural "%s field groups activated." +#~ msgstr[0] "Alan grubu kaydedildi." +#~ msgstr[1] "%s alan grubu kaydedildi." + +#, php-format +#~ msgid "Field group deactivated." +#~ msgid_plural "%s field groups deactivated." +#~ msgstr[0] "Alan grubu silindi." +#~ msgstr[1] "%s alan grubu silindi." + +#, php-format +#~ 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ı." + +#, php-format +#~ msgid "Field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "Alan grubu eşitlendi." +#~ msgstr[1] "%s alan grubu eşitlendi." + +#, php-format +#~ msgid "Select %s" +#~ msgstr "Seç %s" + +#~ msgid "Tools" +#~ msgstr "Araçlar" + +#~ msgid "Upgrade Database" +#~ msgstr "Veritabanını güncelle" + +#~ msgid "Review sites & upgrade" +#~ msgstr "Siteleri incele ve güncelle" + +#~ msgid "Custom Fields" +#~ msgstr "Özel alanlar" + +#~ msgid "Overview" +#~ msgstr "Genel bakış" + +#~ 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." + +#, php-format +#~ 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." + +#~ 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." + +#~ msgid "Help & Support" +#~ msgstr "Yardım ve destek" + +#~ 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:" + +#, php-format +#~ 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." + +#, php-format +#~ 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 "" +#~ "Tartışmalar. Topluluk forumlarımızda " +#~ "etkin ve dost canlısı bir topluluğumuz var, sizi ACF dünyasının 'nasıl " +#~ "yaparım'ları ile ilgili yardımcı olabilirler." + +#, php-format +#~ 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." + +#~ msgid "Information" +#~ msgstr "Bilgi" + +#, php-format +#~ msgid "Version %s" +#~ msgstr "Sürüm %s" + +#~ msgid "View details" +#~ msgstr "Ayrıntıları görüntüle" + +#~ msgid "Visit website" +#~ msgstr "Web sitesini ziyaret et" + +#~ msgid "and" +#~ msgstr "ve" + +#~ msgid "Export Field Groups" +#~ msgstr "Alan gruplarını dışarı aktar" + +#~ msgid "Generate PHP" +#~ msgstr "PHP oluştur" + +#~ msgid "No field groups selected" +#~ msgstr "Hiç alan grubu seçilmemiş" + +#, php-format +#~ msgid "Exported 1 field group." +#~ msgid_plural "Exported %s field groups." +#~ msgstr[0] "1 alan grubu içeri aktarıldı." +#~ msgstr[1] "%s alan grubu içeri aktarıldı." + +#~ msgid "Select Field Groups" +#~ msgstr "Alan gruplarını seç" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "Dışa aktarma ve sonra dışa aktarma yöntemini seçtikten sonra alan " +#~ "gruplarını seçin. Sonra başka bir ACF yükleme içe bir .json dosyaya " +#~ "vermek için indirme düğmesini kullanın. Tema yerleştirebilirsiniz PHP " +#~ "kodu aktarma düğmesini kullanın." + +#~ msgid "Export File" +#~ msgstr "Dışarı aktarım dosyası" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "Aşağıdaki kod seçilmiş alan grubu/grupları için yerel bir sürüm kaydetmek " +#~ "için kullanılır. Yerel alan grubu daha hızlı yüklenme süreleri, sürüm " +#~ "yönetimi ve dinamik alanlar/ayarlar gibi faydalar sağlar. Yapmanız " +#~ "gereken bu kodu kopyalayıp temanızın functions.php dosyasına eklemek ya " +#~ "da harici bir dosya olarak temanıza dahil etmek." + +#~ msgid "Copy to clipboard" +#~ msgstr "Panoya kopyala" + +#~ msgid "Copied" +#~ msgstr "Kopyalandı" + +#~ msgid "Import Field Groups" +#~ msgstr "Alan gruplarını içeri aktar" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "İçeri aktarmak istediğiniz Advanced Custom Fields JSON dosyasını seçin. " +#~ "Aşağıdaki içeri aktar tuşuna bastığınızda ACF alan gruplarını içeri " +#~ "aktaracak." + +#~ msgid "Select File" +#~ msgstr "Dosya seç" + +#~ msgid "Import File" +#~ msgstr "Dosyayı içeri aktar" + +#~ msgid "No file selected" +#~ msgstr "Dosya seçilmedi" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "Dosya yüklenirken hata oluştu. Lütfen tekrar deneyin" + +#~ msgid "Incorrect file type" +#~ msgstr "Geçersiz dosya tipi" + +#~ msgid "Import file empty" +#~ msgstr "İçe aktarılan dosya boş" + +#, php-format +#~ msgid "Imported 1 field group" +#~ msgid_plural "Imported %s field groups" +#~ msgstr[0] "1 alan grubu içeri aktarıldı" +#~ msgstr[1] "%s alan grubu içeri aktarıldı" + +#~ msgid "Conditional Logic" +#~ msgstr "Koşullu mantık" + +#~ msgid "Show this field if" +#~ msgstr "Alanı bu şart gerçekleşirse göster" + +#~ msgid "Add rule group" +#~ msgstr "Kural grubu ekle" + +#~ msgid "Edit field" +#~ msgstr "Alanı düzenle" + +#~ msgid "Duplicate field" +#~ msgstr "Alanı çoğalt" + +#~ msgid "Move field to another group" +#~ msgstr "Alanı başka gruba taşı" + +#~ msgid "Move" +#~ msgstr "Taşı" + +#~ msgid "Delete field" +#~ msgstr "Alanı sil" + +#~ msgid "Field Label" +#~ msgstr "Alan etiketi" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "Bu isim DÜZENLEME sayfasında görüntülenecek isimdir" + +#~ msgid "Field Name" +#~ msgstr "Alan adı" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "Tek kelime, boşluksuz. Alt çizgi ve tireye izin var" + +#~ msgid "Field Type" +#~ msgstr "Alan tipi" + +#~ msgid "Instructions" +#~ msgstr "Yönergeler" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "Yazarlara gösterilecek talimatlar. Veri gönderirken gösterilir" + +#~ msgid "Required?" +#~ msgstr "Gerekli mi?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "Kapsayıcı öznitelikleri" + +#~ msgid "width" +#~ msgstr "genişlik" + +#~ msgid "class" +#~ msgstr "sınıf" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "Alanı kapat" + +#~ msgid "Order" +#~ msgstr "Sırala" + +#~ msgid "Type" +#~ msgstr "Tip" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "" +#~ "Hiç alan yok. İlk alanınızı oluşturmak için + Alan ekle " +#~ "düğmesine tıklayın." + +#~ msgid "+ Add Field" +#~ msgstr "+ Alan ekle" + +#~ msgid "Rules" +#~ msgstr "Kurallar" + +#~ 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" + +#~ msgid "Active" +#~ msgstr "Etkin" + +#~ msgid "Show in REST API" +#~ msgstr "REST API'da göster" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "Standart (WP metabox)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "Pürüzsüz (metabox yok)" + +#~ msgid "Position" +#~ msgstr "Pozisyon" + +#~ msgid "High (after title)" +#~ msgstr "Yüksek (başlıktan sonra)" + +#~ msgid "Normal (after content)" +#~ msgstr "Normal (içerikten sonra)" + +#~ msgid "Side" +#~ msgstr "Yan" + +#~ msgid "Label placement" +#~ msgstr "Etiket yerleştirme" + +#~ msgid "Top aligned" +#~ msgstr "Üste hizalı" + +#~ msgid "Left aligned" +#~ msgstr "Sola hizalı" + +#~ msgid "Instruction placement" +#~ msgstr "Yönerge yerleştirme" + +#~ msgid "Below labels" +#~ msgstr "Etiketlerin altında" + +#~ msgid "Below fields" +#~ msgstr "Alanlarının altında" + +#~ msgid "Order No." +#~ msgstr "Sıra no." + +#~ 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" + +#~ msgid "Shown in field group list" +#~ msgstr "Alan grubu listesinde görüntülenir" + +#~ msgid "Permalink" +#~ msgstr "Kalıcı bağlantı" + +#~ msgid "Content Editor" +#~ msgstr "İçerik düzenleyici" + +#~ msgid "Excerpt" +#~ msgstr "Özet" + +#~ msgid "Discussion" +#~ msgstr "Tartışma" + +#~ msgid "Revisions" +#~ msgstr "Sürümler" + +#~ msgid "Slug" +#~ msgstr "Kısa isim" + +#~ msgid "Author" +#~ msgstr "Yazar" + +#~ msgid "Format" +#~ msgstr "Biçim" + +#~ msgid "Page Attributes" +#~ msgstr "Sayfa öznitelikleri" + +#~ msgid "Featured Image" +#~ msgstr "Öne çıkarılmış görsel" + +#~ msgid "Categories" +#~ msgstr "Kategoriler" + +#~ msgid "Tags" +#~ msgstr "Etiketler" + +#~ msgid "Send Trackbacks" +#~ msgstr "Geri izlemeleri gönder" + +#~ msgid "Hide on screen" +#~ msgstr "Ekranda gizle" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "" +#~ "Düzenleme ekranından gizlemek istediğiniz ögeleri seçin." + +#~ 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)" + +#~ msgid "Upgrade to Pro" +#~ msgstr "Pro sürüme yükselt" + +#, php-format +#~ 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." + +#~ msgid "Upgrade Sites" +#~ msgstr "Siteleri yükselt" + +#~ msgid "Site" +#~ msgstr "Site" + +#, php-format +#~ msgid "Site requires database upgrade from %1$s to %2$s" +#~ msgstr "" +#~ "Site için %1$s sürümünden %2$s sürümüne veritabanı güncellemesi gerekiyor" + +#~ msgid "Site is up to date" +#~ msgstr "Site güncel" + +#, php-format +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "" +#~ "Veritabanı güncellemesi tamamlandı. Ağ panosuna geri dön" + +#~ msgid "Please select at least one site to upgrade." +#~ msgstr "Lütfen yükseltmek için en az site seçin." + +#~ 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?" + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "Veri %s sürümüne yükseltiliyor" + +#~ msgid "Upgrade complete." +#~ msgstr "Yükseltme başarılı." + +#~ msgid "Upgrade failed." +#~ msgstr "Yükseltme başarısız oldu." + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "Yükseltme görevlerini okuyor..." + +#, php-format +#~ msgid "Database upgrade complete. See what's new" +#~ msgstr "" +#~ "Veritabanı güncellemesi tamamlandı. Neler yeni bir göz " +#~ "atın" + +#~ msgid "No updates available." +#~ msgstr "Güncelleme yok." + +#~ msgid "Back to all tools" +#~ msgstr "Tüm araçlara geri dön" + +#~ msgid "Database Upgrade Required" +#~ msgstr "Veritabanı yükseltmesi gerekiyor" + +#, php-format +#~ 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!" + +#~ 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." + +#, php-format +#~ 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." + +#~ msgid "Invalid field group parameter(s)." +#~ msgstr "Geçersiz alan grubu parametresi/leri." + +#~ msgid "Invalid field group ID." +#~ msgstr "Geçersiz alan grup no." + +#~ msgid "Sorry, this field group is unavailable for diff comparison." +#~ msgstr "Üzgünüz, bu alan grubu fark karşılaştırma için uygun değil." + +#, php-format +#~ msgid "Last updated: %s" +#~ msgstr "Son güncellenme: %s" + +#~ msgid "Original field group" +#~ msgstr "Orijinal alan grubu" + +#~ msgid "JSON field group (newer)" +#~ msgstr "JSON alan grubu (daha yeni)" + +#~ msgid "Thumbnail" +#~ msgstr "Küçük görsel" + +#~ msgid "Medium" +#~ msgstr "Orta" + +#~ msgid "Large" +#~ msgstr "Büyük" + +#~ msgid "Full Size" +#~ msgstr "Tam boyut" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "Görsel genişliği en az %dpx olmalı." + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "Görsel genişliği %dpx değerini geçmemeli." + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "Görsel yüksekliği en az %dpx olmalı." + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "Görsel yüksekliği %dpx değerini geçmemeli." + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "Dosya boyutu en az %s olmalı." + +#, php-format +#~ msgid "File size must not exceed %s." +#~ msgstr "Dosya boyutu %s boyutunu geçmemeli." + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "Dosya tipi %s olmalı." + +#~ msgid "Are you sure?" +#~ msgstr "Emin misiniz?" + +#~ msgid "Cancel" +#~ msgstr "İptal" + +#~ 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" + +#~ msgid "Validation successful" +#~ msgstr "Doğrulama başarılı" + +#~ msgid "Validation failed" +#~ msgstr "Doğrulama başarısız" + +#~ msgid "1 field requires attention" +#~ msgstr "1 alan dikkatinizi gerektiriyor" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d alan dikkatinizi gerektiriyor" + +#~ msgid "Field type does not exist" +#~ msgstr "Var olmayan alan tipi" + +#~ msgid "Unknown" +#~ msgstr "Bilinmiyor" + +#~ msgid "Basic" +#~ msgstr "Basit" + +#~ msgid "Content" +#~ msgstr "İçerik" + +#~ msgid "Choice" +#~ msgstr "Seçim" + +#~ msgid "Relational" +#~ msgstr "İlişkisel" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Accordion" +#~ msgstr "Akordeon" + +#~ msgid "Open" +#~ msgstr "Açık" + +#~ 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." + +#~ msgid "Multi-expand" +#~ msgstr "Çoklu genişletme" + +#~ msgid "Allow this accordion to open without closing others." +#~ msgstr "Bu akordeonun diğerlerini kapatmadan açılmasını sağla." + +#~ msgid "Endpoint" +#~ msgstr "Uç nokta" + +#~ 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." + +#~ msgid "Button Group" +#~ msgstr "Tuş grubu" + +#~ msgid "Choices" +#~ msgstr "Seçimler" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "Her seçeneği yeni bir satıra girin." + +#~ 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:" + +#~ msgid "red : Red" +#~ msgstr "kirmizi : Kırmızı" + +#~ msgid "Allow Null?" +#~ msgstr "Boş geçilebilir mi?" + +#~ msgid "Default Value" +#~ msgstr "Varsayılan değer" + +#~ msgid "Appears when creating a new post" +#~ msgstr "Yeni bir yazı oluştururken görünür" + +#~ msgid "Horizontal" +#~ msgstr "Yatay" + +#~ msgid "Vertical" +#~ msgstr "Dikey" + +#~ msgid "Return Value" +#~ msgstr "Dönüş değeri" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "Ön yüzden dönecek değeri belirleyin" + +#~ msgid "Value" +#~ msgstr "Değer" + +#~ msgid "Both (Array)" +#~ msgstr "İkisi de (Dizi)" + +#~ msgid "Checkbox" +#~ msgstr "İşaret kutusu" + +#~ msgid "Toggle All" +#~ msgstr "Tümünü aç/kapat" + +#~ msgid "Add new choice" +#~ msgstr "Yeni seçenek ekle" + +#~ msgid "Allow Custom" +#~ msgstr "Özel değere izin ver" + +#~ msgid "Allow 'custom' values to be added" +#~ msgstr "‘Özel’ alanların eklenebilmesine izin ver" + +#~ msgid "Save Custom" +#~ msgstr "Özel alanı kaydet" + +#~ msgid "Save 'custom' values to the field's choices" +#~ msgstr "‘Özel’ değerleri alanın seçenekleri arasına kaydet" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "Her varsayılan değeri yeni bir satıra girin" + +#~ msgid "Toggle" +#~ msgstr "Aç - kapat" + +#~ 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" + +#~ msgid "Color Picker" +#~ msgstr "Renk seçici" + +#~ msgid "Clear" +#~ msgstr "Temizle" + +#~ msgid "Clear color" +#~ msgstr "Rengi temizle" + +#~ msgid "Default" +#~ msgstr "Varsayılan" + +#~ msgid "Select default color" +#~ msgstr "Varsayılan rengi seç" + +#~ msgid "Select Color" +#~ msgstr "Renk seç" + +#~ msgid "Color value" +#~ msgstr "Renk değeri" + +#~ msgid "Hex String" +#~ msgstr "Hex metin" + +#~ msgid "RGBA String" +#~ msgstr "RGBA metin" + +#~ msgid "Enable Transparency" +#~ msgstr "Saydamlığı etkinleştir" + +#~ msgid "RGBA Array" +#~ msgstr "RGBA dizisi" + +#~ msgid "Date Picker" +#~ msgstr "Tarih seçici" + +#~ msgctxt "Date Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Tamam" + +#~ msgctxt "Date Picker JS currentText" +#~ msgid "Today" +#~ msgstr "Bugün" + +#~ msgctxt "Date Picker JS nextText" +#~ msgid "Next" +#~ msgstr "İleri" + +#~ msgctxt "Date Picker JS prevText" +#~ msgid "Prev" +#~ msgstr "Önceki" + +#~ msgctxt "Date Picker JS weekHeader" +#~ msgid "Wk" +#~ msgstr "Hf" + +#~ msgid "Display Format" +#~ msgstr "Gösterim biçimi" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "Bir yazı düzenlenirken görüntülenecek biçim" + +#~ msgid "Custom:" +#~ msgstr "Özel:" + +#~ msgid "Save Format" +#~ msgstr "Biçimi kaydet" + +#~ msgid "The format used when saving a value" +#~ msgstr "Bir değer kaydedilirken kullanılacak biçim" + +#~ msgid "The format returned via template functions" +#~ msgstr "Tema işlevlerinden dönen biçim" + +#~ msgid "Week Starts On" +#~ msgstr "Hafta başlangıcı" + +#~ msgid "Date Time Picker" +#~ msgstr "Tarih zaman seçici" + +#~ msgctxt "Date Time Picker JS timeOnlyTitle" +#~ msgid "Choose Time" +#~ msgstr "Zamanı se" + +#~ msgctxt "Date Time Picker JS timeText" +#~ msgid "Time" +#~ msgstr "Zaman" + +#~ msgctxt "Date Time Picker JS hourText" +#~ msgid "Hour" +#~ msgstr "Saat" + +#~ msgctxt "Date Time Picker JS minuteText" +#~ msgid "Minute" +#~ msgstr "Dakika" + +#~ msgctxt "Date Time Picker JS secondText" +#~ msgid "Second" +#~ msgstr "Saniye" + +#~ msgctxt "Date Time Picker JS millisecText" +#~ msgid "Millisecond" +#~ msgstr "Milisaniye" + +#~ msgctxt "Date Time Picker JS microsecText" +#~ msgid "Microsecond" +#~ msgstr "Mikrosaniye" + +#~ msgctxt "Date Time Picker JS timezoneText" +#~ msgid "Time Zone" +#~ msgstr "Zaman Dilimi" + +#~ msgctxt "Date Time Picker JS currentText" +#~ msgid "Now" +#~ msgstr "Şimdi" + +#~ msgctxt "Date Time Picker JS closeText" +#~ msgid "Done" +#~ msgstr "Tamam" + +#~ msgctxt "Date Time Picker JS selectText" +#~ msgid "Select" +#~ msgstr "Seç" + +#~ msgctxt "Date Time Picker JS amText" +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgctxt "Date Time Picker JS amTextShort" +#~ msgid "A" +#~ msgstr "A" + +#~ msgctxt "Date Time Picker JS pmText" +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgctxt "Date Time Picker JS pmTextShort" +#~ msgid "P" +#~ msgstr "P" + +#~ msgid "Email" +#~ msgstr "E-posta" + +#~ msgid "Placeholder Text" +#~ msgstr "Yer tutucu metin" + +#~ msgid "Appears within the input" +#~ msgstr "Girdi alanının içinde görünür" + +#~ msgid "Prepend" +#~ msgstr "Önüne ekle" + +#~ msgid "Appears before the input" +#~ msgstr "Girdi alanından önce görünür" + +#~ msgid "Append" +#~ msgstr "Sonuna ekle" + +#~ msgid "Appears after the input" +#~ msgstr "Girdi alanından sonra görünür" + +#, php-format +#~ msgid "'%s' is not a valid email address" +#~ msgstr "'%s' geçerli bir e-posta adresi değil" + +#~ msgid "File" +#~ msgstr "Dosya" + +#~ msgid "Edit File" +#~ msgstr "Dosya düzenle" + +#~ msgid "Update File" +#~ msgstr "Dosyayı güncelle" + +#~ msgid "File name" +#~ msgstr "Dosya adı" + +#~ msgid "Add File" +#~ msgstr "Dosya ekle" + +#~ msgid "File Array" +#~ msgstr "Dosya dizisi" + +#~ msgid "File URL" +#~ msgstr "Dosya adresi" + +#~ msgid "File ID" +#~ msgstr "Dosya no" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "Yüklenebilecek dosyaları sınırlandırın" + +#, php-format +#~ msgid "%s requires a valid attachment ID." +#~ msgstr "%s geçerli bir ek kimliği gerektirir." + +#~ msgid "Google Map" +#~ msgstr "Google haritası" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "Üzgünüz, bu tarayıcı konumlandırma desteklemiyor" + +#~ msgid "Search" +#~ msgstr "Ara" + +#~ msgid "Clear location" +#~ msgstr "Konumu temizle" + +#~ msgid "Find current location" +#~ msgstr "Şu anki konumu bul" + +#~ msgid "Search for address..." +#~ msgstr "Adres arayın…" + +#~ msgid "Center" +#~ msgstr "Merkez" + +#~ msgid "Center the initial map" +#~ msgstr "Haritayı ortala" + +#~ msgid "Zoom" +#~ msgstr "Yaklaş" + +#~ msgid "Set the initial zoom level" +#~ msgstr "Temel yaklaşma seviyesini belirle" + +#~ msgid "Customize the map height" +#~ msgstr "Harita yüksekliğini özelleştir" + +#~ msgid "Group" +#~ msgstr "Grup" + +#~ msgid "Image" +#~ msgstr "Görsel" + +#~ msgid "Select Image" +#~ msgstr "Görsel seç" + +#~ msgid "Edit Image" +#~ msgstr "Görseli düzenle" + +#~ msgid "Update Image" +#~ msgstr "Görseli güncelle" + +#~ msgid "All images" +#~ msgstr "Tüm görseller" + +#~ msgid "No image selected" +#~ msgstr "Görsel seçilmedi" + +#~ msgid "Add Image" +#~ msgstr "Görsel ekle" + +#~ msgid "Link" +#~ msgstr "Bağlantı" + +#~ msgid "Select Link" +#~ msgstr "Bağlantı seç" + +#~ msgid "Opens in a new window/tab" +#~ msgstr "Yeni pencerede/sekmede açılır" + +#~ msgid "Link Array" +#~ msgstr "Bağlantı dizisi" + +#~ msgid "Link URL" +#~ msgstr "Bağlantı adresi" + +#~ msgid "Message" +#~ msgstr "Mesaj" + +#~ msgid "New Lines" +#~ msgstr "Yeni satırlar" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "Yeni satırların nasıl görüntüleneceğini denetler" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "Otomatik paragraf ekle" + +#~ msgid "Automatically add <br>" +#~ msgstr "Otomatik ekle <br>" + +#~ msgid "No Formatting" +#~ msgstr "Biçimlendirme yok" + +#~ msgid "Escape HTML" +#~ msgstr "HTML’i güvenli hale getir" + +#~ 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" + +#~ msgid "Number" +#~ msgstr "Sayı" + +#~ msgid "Minimum Value" +#~ msgstr "En az değer" + +#~ msgid "Maximum Value" +#~ msgstr "En fazla değer" + +#~ msgid "Step Size" +#~ msgstr "Adım boyutu" + +#~ msgid "Value must be a number" +#~ msgstr "Değer bir sayı olmalı" + +#, php-format +#~ 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ı" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "Değer %d değerine eşit ya da daha küçük olmalı" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "Adres girin" + +#~ msgid "Embed Size" +#~ msgstr "Gömme boyutu" + +#~ msgid "Page Link" +#~ msgstr "Sayfa bağlantısı" + +#~ msgid "Archives" +#~ msgstr "Arşivler" + +#~ msgid "Parent" +#~ msgstr "Ebeveyn" + +#~ msgid "Filter by Post Type" +#~ msgstr "Yazı tipine göre filtre" + +#~ msgid "All post types" +#~ msgstr "Tüm yazı tipleri" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "Taksonomiye göre filtre" + +#~ msgid "All taxonomies" +#~ msgstr "Tüm taksonomiler" + +#~ msgid "Allow Archives URLs" +#~ msgstr "Arşivler adresine izin ver" + +#~ msgid "Select multiple values?" +#~ msgstr "Birden çok değer seçilsin mi?" + +#~ msgid "Password" +#~ msgstr "Parola" + +#~ msgid "Post Object" +#~ msgstr "Yazı nesnesi" + +#~ msgid "Post ID" +#~ msgstr "Yazı No" + +#, php-format +#~ msgid "%1$s must have a valid post ID." +#~ msgstr "%1$s geçerli bir yazı kimliği olmalıdır." + +#, php-format +#~ 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" + +#, php-format +#~ 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ıdır." +#~ msgstr[1] "%1$s şu terimlerden birine sahip olmalıdır: %2$s" + +#~ msgid "Radio Button" +#~ msgstr "Radyo düğmesi" + +#~ msgid "Other" +#~ msgstr "Diğer" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "Özel değerlere izin vermek için 'diğer' seçeneği ekle" + +#~ msgid "Save Other" +#~ msgstr "Diğerini kaydet" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "‘Diğer’ değerlerini alanın seçenekleri arasına kaydet" + +#~ msgid "Range" +#~ msgstr "Aralık" + +#~ msgid "Relationship" +#~ msgstr "İlişkili" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "En yüksek değerlere ulaşıldı ({max} değerleri)" + +#~ msgid "Loading" +#~ msgstr "Yükleniyor" + +#~ msgid "No matches found" +#~ msgstr "Eşleşme yok" + +#~ msgid "Select post type" +#~ msgstr "Yazı tipi seç" + +#~ msgid "Select taxonomy" +#~ msgstr "Taksonomi seç" + +#~ msgid "Search..." +#~ msgstr "Ara…" + +#~ msgid "Filters" +#~ msgstr "Filtreler" + +#~ msgid "Post Type" +#~ msgstr "Yazı tipi" + +#~ msgid "Taxonomy" +#~ msgstr "Taksonomi" + +#~ msgid "Elements" +#~ msgstr "Elemanlar" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "Her sonuç içinde seçilmiş elemanlar görüntülenir" + +#~ msgid "Minimum posts" +#~ msgstr "En az gönderi" + +#~ msgid "Maximum posts" +#~ msgstr "En fazla yazı" + +#~ msgctxt "noun" +#~ msgid "Select" +#~ msgstr "Seçim" + +#~ 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." + +#, php-format +#~ 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." + +#~ msgctxt "Select2 JS matches_0" +#~ msgid "No matches found" +#~ msgstr "Eşleşme yok" + +#~ msgctxt "Select2 JS input_too_short_1" +#~ msgid "Please enter 1 or more characters" +#~ msgstr "Lütfen 1 veya daha fazla karakter girin" + +#, php-format +#~ msgctxt "Select2 JS input_too_short_n" +#~ msgid "Please enter %d or more characters" +#~ msgstr "Lütfen %d veya daha fazla karakter girin" + +#~ msgctxt "Select2 JS input_too_long_1" +#~ msgid "Please delete 1 character" +#~ msgstr "Lütfen 1 karakter silin" + +#, php-format +#~ msgctxt "Select2 JS input_too_long_n" +#~ msgid "Please delete %d characters" +#~ msgstr "Lütfen %d karakter silin" + +#~ msgctxt "Select2 JS selection_too_long_1" +#~ msgid "You can only select 1 item" +#~ msgstr "Sadece 1 öğe seçebilirsiniz" + +#, php-format +#~ msgctxt "Select2 JS selection_too_long_n" +#~ msgid "You can only select %d items" +#~ msgstr "Sadece %d öge seçebilirsiniz" + +#~ msgctxt "Select2 JS load_more" +#~ msgid "Loading more results…" +#~ msgstr "Daha fazla sonuç yükleniyor…" + +#~ msgctxt "Select2 JS searching" +#~ msgid "Searching…" +#~ msgstr "Aranıyor…" + +#~ msgctxt "Select2 JS load_fail" +#~ msgid "Loading failed" +#~ msgstr "Yükleme başarısız oldu" + +#~ msgctxt "verb" +#~ msgid "Select" +#~ msgstr "Seç" + +#~ msgid "Stylised UI" +#~ msgstr "Stilize edilmiş kullanıcı arabirimi" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "Seçimlerin tembel yüklenmesi için AJAX kullanılsın mı?" + +#~ msgid "Specify the value returned" +#~ msgstr "Dönecek değeri belirt" + +#, php-format +#~ msgid "%1$s is not one of %2$s" +#~ msgstr "%1$s bir %2$s değil" + +#~ msgid "Separator" +#~ msgstr "Ayraç" + +#~ msgid "Tab" +#~ msgstr "Sekme" + +#~ msgid "Placement" +#~ msgstr "Konumlandırma" + +#~ msgid "" +#~ "Define an endpoint for the previous tabs to stop. This will start a new " +#~ "group of tabs." +#~ msgstr "" +#~ "Önceki sekmelerin durması için bir uç nokta tanımlayın. Bu yeni sekmeler " +#~ "için bir grup başlatacaktır." + +#, php-format +#~ msgctxt "No terms" +#~ msgid "No %s" +#~ msgstr "%s yok" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "Görüntülenecek taksonomiyi seçin" + +#~ msgid "Appearance" +#~ msgstr "Görünüm" + +#~ msgid "Select the appearance of this field" +#~ msgstr "Bu alanın görünümünü seçin" + +#~ msgid "Multiple Values" +#~ msgstr "Çoklu değer" + +#~ msgid "Multi Select" +#~ msgstr "Çoklu seçim" + +#~ msgid "Single Value" +#~ msgstr "Tek değer" + +#~ msgid "Radio Buttons" +#~ msgstr "Radyo düğmeleri" + +#~ msgid "Create Terms" +#~ msgstr "Terimleri oluştur" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "Düzenlenirken yeni terimlerin oluşabilmesine izin ver" + +#~ msgid "Save Terms" +#~ msgstr "Terimleri kaydet" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "Seçilmiş terimleri yazıya bağla" + +#~ msgid "Load Terms" +#~ msgstr "Terimleri yükle" + +#~ msgid "Load value from posts terms" +#~ msgstr "Yazının terimlerinden değerleri yükle" + +#~ msgid "Term Object" +#~ msgstr "Terim nesnesi" + +#~ msgid "Term ID" +#~ msgstr "Terim no" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "Kullanıcı yeni %s ekleyemiyor" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s zaten mevcut" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s eklendi" + +#~ msgid "Add" +#~ msgstr "Ekle" + +#~ msgid "Text" +#~ msgstr "Metin" + +#~ msgid "Character Limit" +#~ msgstr "Karakter limiti" + +#~ msgid "Leave blank for no limit" +#~ msgstr "Limit olmaması için boş bırakın" + +#, php-format +#~ msgid "Value must not exceed %d characters" +#~ msgstr "Değer %d karakteri geçmemelidir" + +#~ msgid "Text Area" +#~ msgstr "Metin alanı" + +#~ msgid "Rows" +#~ msgstr "Satırlar" + +#~ msgid "Sets the textarea height" +#~ msgstr "Metin alanı yüksekliğini ayarla" + +#~ msgid "Time Picker" +#~ msgstr "Zaman seçici" + +#~ msgid "True / False" +#~ msgstr "Doğru / yanlış" + +#~ msgid "Displays text alongside the checkbox" +#~ msgstr "İşaret kutusunun yanında görüntülenen metin" + +#~ msgid "On Text" +#~ msgstr "Açık metni" + +#~ msgid "Text shown when active" +#~ msgstr "Etkinken görüntülenen metin" + +#~ msgid "Off Text" +#~ msgstr "Kapalı metni" + +#~ msgid "Text shown when inactive" +#~ msgstr "Etkin değilken görüntülenen metin" + +#~ msgid "Url" +#~ msgstr "Web adresi" + +#~ msgid "Value must be a valid URL" +#~ msgstr "Değer geçerli bir web adresi olmalı" + +#~ msgid "User" +#~ msgstr "Kullanıcı" + +#~ msgid "Filter by role" +#~ msgstr "Kurala göre filtrele" + +#~ msgid "All user roles" +#~ msgstr "Bütün kullanıcı rolleri" + +#~ msgid "User Array" +#~ msgstr "Kullanıcı dizisi" + +#~ msgid "User Object" +#~ msgstr "Kullanıcı nesnesi" + +#~ msgid "User ID" +#~ msgstr "Kullanıcı No" + +#~ msgid "Error loading field." +#~ msgstr "Alan yükleme sırasında hata." + +#~ msgid "Invalid request." +#~ msgstr "Geçersiz istek." + +#, php-format +#~ msgid "%1$s must have a valid user ID." +#~ msgstr "%1$s geçerli bir kullanıcı kimliğine sahip olmalıdır." + +#, php-format +#~ 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 sahip bir kullanıcıya sahip olmalıdır: %2$s" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "Wysiwyg düzenleyici" + +#~ msgid "Visual" +#~ msgstr "Görsel" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "Metin" + +#~ msgid "Click to initialize TinyMCE" +#~ msgstr "TinyMCE hazırlamak için tıklayın" + +#~ msgid "Tabs" +#~ msgstr "Sekmeler" + +#~ msgid "Visual & Text" +#~ msgstr "Görsel ve metin" + +#~ msgid "Visual Only" +#~ msgstr "Sadece görsel" + +#~ msgid "Text Only" +#~ msgstr "Sadece metin" + +#~ msgid "Toolbar" +#~ msgstr "Araç çubuğu" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "Ortam yükleme tuşları gösterilsin mi?" + +#~ msgid "Delay initialization?" +#~ msgstr "Hazırlık geciktirilsin mi?" + +#~ msgid "TinyMCE will not be initialized until field is clicked" +#~ msgstr "Alan tıklanana kadar TinyMCE hazırlanmayacaktır" + +#~ msgid "Validate Email" +#~ msgstr "E-postayı doğrula" + +#~ msgid "Post updated" +#~ msgstr "Yazı güncellendi" + +#~ msgid "Spam Detected" +#~ msgstr "İstenmeyen tespit edildi" + +#, php-format +#~ msgid "Error: %s" +#~ msgstr "Hata: %s" + +#, php-format +#~ msgid "Class \"%s\" does not exist." +#~ msgstr "\"%s\" sınıfı mevcut değil." + +#, php-format +#~ msgid "Location type \"%s\" is already registered." +#~ msgstr "Konum türü \"%s\" zaten kayıtlı." + +#~ msgid "Post" +#~ msgstr "Yazı" + +#~ msgid "Page" +#~ msgstr "Sayfa" + +#~ msgid "Forms" +#~ msgstr "Formlar" + +#~ msgid "is equal to" +#~ msgstr "eşitse" + +#~ msgid "is not equal to" +#~ msgstr "eşit değilse" + +#~ msgid "Attachment" +#~ msgstr "Ek" + +#, php-format +#~ msgid "All %s formats" +#~ msgstr "Tüm %s biçimleri" + +#~ msgid "Comment" +#~ msgstr "Yorum" + +#~ msgid "Current User Role" +#~ msgstr "Şu anki kullanıcı rolü" + +#~ msgid "Super Admin" +#~ msgstr "Süper yönetici" + +#~ msgid "Current User" +#~ msgstr "Şu anki kullanıcı" + +#~ msgid "Logged in" +#~ msgstr "Giriş yapıldı" + +#~ msgid "Viewing front end" +#~ msgstr "Ön yüz görüntüleniyor" + +#~ msgid "Viewing back end" +#~ msgstr "Arka yüz görüntüleniyor" + +#~ msgid "Menu Item" +#~ msgstr "Menü ögesi" + +#~ msgid "Menu" +#~ msgstr "Menü" + +#~ msgid "Menu Locations" +#~ msgstr "Menü konumları" + +#~ msgid "Page Parent" +#~ msgstr "Sayfa ebeveyni" + +#~ msgid "Page Template" +#~ msgstr "Sayfa şablonu" + +#~ msgid "Default Template" +#~ msgstr "Varsayılan şablon" + +#~ msgid "Page Type" +#~ msgstr "Sayfa tipi" + +#~ msgid "Front Page" +#~ msgstr "Ön sayfa" + +#~ msgid "Posts Page" +#~ msgstr "Yazılar sayfası" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "Üst düzey sayfa (ebeveynsiz)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "Üst sayfa (alt sayfası olan)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "Alt sayfa (ebeveyni olan)" + +#~ msgid "Post Category" +#~ msgstr "Yazı kategorisi" + +#~ msgid "Post Format" +#~ msgstr "Yazı biçimi" + +#~ msgid "Post Status" +#~ msgstr "Yazı durumu" + +#~ msgid "Post Taxonomy" +#~ msgstr "Yazı taksonomisi" + +#~ msgid "Post Template" +#~ msgstr "Yazı şablonu" + +#~ msgid "User Form" +#~ msgstr "Kullanıcı formu" + +#~ msgid "Add / Edit" +#~ msgstr "Ekle / düzenle" + +#~ msgid "Register" +#~ msgstr "Kaydet" + +#~ msgid "User Role" +#~ msgstr "Kullanıcı kuralı" + +#~ msgid "Widget" +#~ msgstr "Bileşen" + +#~ msgctxt "verb" +#~ msgid "Edit" +#~ msgstr "Düzenle" + +#~ msgctxt "verb" +#~ msgid "Update" +#~ msgstr "Güncelle" + +#~ msgid "Uploaded to this post" +#~ msgstr "Bu yazıya yüklenmiş" + +#~ msgid "Expand Details" +#~ msgstr "Ayrıntıları genişlet" + +#~ msgid "Collapse Details" +#~ msgstr "Detayları daralt" + +#~ msgid "Restricted" +#~ msgstr "Kısıtlı" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s değeri gerekli" + +#~ msgid "https://www.advancedcustomfields.com" +#~ msgstr "https://www.advancedcustomfields.com" + +#~ msgid "" +#~ "Customize WordPress with powerful, professional and intuitive fields." +#~ msgstr "" +#~ "Güçlü, profesyonel ve sezgisel alanlar ile WordPress'i özelleştirin." + +#~ msgid "Delicious Brains" +#~ msgstr "Delicious Brains" + +#~ msgctxt "post status" +#~ msgid "Disabled" +#~ msgstr "Devre dışı" + +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "Devre dışı (%s)" +#~ msgstr[1] "Devre dışı (%s)" + +#~ msgid "Hero" +#~ msgstr "Manşet" + +#~ msgid "Display a random hero image." +#~ msgstr "Rastgele bir manşet görseli göster." + +#~ msgid "Test JS" +#~ msgstr "JS test et" + +#~ msgid "A block for testing JS." +#~ msgstr "JS test etmek için bir blok." + +#~ msgid "Current Color" +#~ msgstr "Şu anki renk" + +#~ msgid "Elliot Condon" +#~ msgstr "Elliot Condon" + +#~ msgid "Status" +#~ msgstr "Durum" + +#~ msgid "See what's new in version %s." +#~ msgstr "%s sürümünde neler yeni bir göz atın." + +#~ msgid "Resources" +#~ msgstr "Kaynaklar" + +#~ msgid "Documentation" +#~ msgstr "Belgeler" + +#~ msgid "Pro" +#~ msgstr "Pro" + +#~ msgid "Thank you for creating with ACF." +#~ msgstr "ACF ile oluşturduğunuz için teşekkürler." + +#~ msgid "Synchronise field group" +#~ msgstr "Alan grubunu eşitle" + +#~ msgid "Apply" +#~ msgstr "Uygula" + +#~ msgid "Bulk Actions" +#~ msgstr "Toplu eylemler" + +#~ msgid "Info" +#~ msgstr "Bilgi" + +#~ msgid "What's New" +#~ msgstr "Neler yeni" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "Advanced Custom Fields eklentisine hoş geldiniz" + +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "" +#~ "Güncelleme için teşekkür ederiz! ACF %s zamankinden daha büyük ve daha " +#~ "iyi. Umarız beğenirsiniz." + +#~ msgid "A Smoother Experience" +#~ msgstr "Daha pürüzsüz bir deneyim" + +#~ msgid "Improved Usability" +#~ msgstr "Geliştirilmiş kullanılabilirlik" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Popüler Select2 kütüphanesini ekleyerek yazı nesnesi, sayfa bağlantısı, " +#~ "taksonomi ve seçim kutusu gibi bir çok alan tipinde hem kullanışlılık hem " +#~ "de hız iyileştirmeleri gerçekleşti." + +#~ msgid "Improved Design" +#~ msgstr "Geliştirilmiş tasarım" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "" +#~ "ACF daha iyi görünsün diye bir çok alan görsel yenilemeden geçirildi! " +#~ "Gözle görülür değişiklikler galeri, ilişki ve oEmbed (yeni) alanlarında!" + +#~ msgid "Improved Data" +#~ msgstr "Geliştirilmiş veri" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "Veri mimarisinin yeniden düzenlenmesi sayesinde alt alanlar üst alanlara " +#~ "bağlı olmadan var olabiliyorlar. Bu da üst alanların dışına sürükle bırak " +#~ "yapılabilmesine olanak sağlıyor!" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "Elveda eklentiler. Merhaba PRO" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "Karşınızda ACF PRO" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "" +#~ "Premium işlevlerin size ulaştırılmasını daha heyecanlı bir hale " +#~ "getiriyoruz!" + +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "Yeni ACF Pro sürümününe 4 premium eklenti dahil " +#~ "edildi. Hem kişisel hem geliştirici lisansında, özel beceriler hiç " +#~ "olmadığı kadar edinilebilir ve erişilebilir!" + +#~ msgid "Powerful Features" +#~ msgstr "Güçlü özellikler" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF PRO, tekrarlanabilir veri, esnek içerik yerleşimleri, harika bir " +#~ "galeri alanı ve ekstra yönetim seçenekleri sayfaları oluşturma gibi güçlü " +#~ "özellikler içerir!" + +#~ msgid "Read more about ACF PRO features." +#~ msgstr "" +#~ "ACF PRO özellikleri hakkında daha fazlasını okuyun." + +#~ msgid "Easy Upgrading" +#~ msgstr "Kolay yükseltme" + +#~ msgid "" +#~ "Upgrading to ACF PRO is easy. Simply purchase a license online and " +#~ "download the plugin!" +#~ msgstr "" +#~ "ACF PRO’ya yükseltmek çok kolay. Çevrimiçi bir lisans satın alın ve " +#~ "eklentiyi indirin!" + +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk." +#~ msgstr "" +#~ "Her türlü soruya cevap verebilecek bir yükseltme rehberi hazırladık, fakat yine de bir sorunuz varsa lütfen yardım masasını kullanarak destek ekibimize danışın." + +#~ msgid "New Features" +#~ msgstr "Yeni özellikler" + +#~ msgid "Link Field" +#~ msgstr "Bağlantı alanı" + +#~ msgid "" +#~ "The Link field provides a simple way to select or define a link (url, " +#~ "title, target)." +#~ msgstr "" +#~ "Bağlantı alanı bir bağlantı (adres, başlık, hedef) seçmek ya da " +#~ "tanımlamak için basit bir yol sunar." + +#~ msgid "Group Field" +#~ msgstr "Grup alanı" + +#~ msgid "The Group field provides a simple way to create a group of fields." +#~ msgstr "Grup alanı birden çok alanı basitçe gruplamanıza olanak sağlar." + +#~ msgid "oEmbed Field" +#~ msgstr "oEmbed alanı" + +#~ msgid "" +#~ "The oEmbed field allows an easy way to embed videos, images, tweets, " +#~ "audio, and other content." +#~ msgstr "" +#~ "oEmbed alanı videolar, görseller, tweetler, ses ve diğer içeriği kolayca " +#~ "gömebilmenizi sağlar." + +#~ msgid "Clone Field" +#~ msgstr "Kopya alanı" + +#~ msgid "The clone field allows you to select and display existing fields." +#~ msgstr "" +#~ "Kopya alanı var olan alanları seçme ve görüntülemenize olanak sağlar." + +#~ msgid "More AJAX" +#~ msgstr "Daha fazla AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading." +#~ msgstr "" +#~ "Sayfa yüklenmesini hızlandırmak adına daha çok alan AJAX ile " +#~ "güçlendirilmiş arama kullanıyor." + +#~ msgid "" +#~ "New auto export to JSON feature improves speed and allows for " +#~ "syncronisation." +#~ msgstr "" +#~ "Yeni otomatik JSON dışarı aktarma özelliği ile hız artıyor ve " +#~ "senkronizasyona imkan sağlanıyor." + +#~ msgid "Easy Import / Export" +#~ msgstr "Kolayca içe / dışa aktarma" + +#~ msgid "Both import and export can easily be done through a new tools page." +#~ msgstr "" +#~ "İçeri ve dışarı aktarma işlemleri yeni araçlar sayfasından kolayca " +#~ "yapılabilir." + +#~ msgid "New Form Locations" +#~ msgstr "Yeni form konumları" + +#~ msgid "" +#~ "Fields can now be mapped to menus, menu items, comments, widgets and all " +#~ "user forms!" +#~ msgstr "" +#~ "Alanlar artık menülere, menü elemanlarına, yorumlara, bileşenlere ve tüm " +#~ "kullanıcı formlarına eşlenebiliyor!" + +#~ msgid "More Customization" +#~ msgstr "Daha fazla özelleştirme" + +#~ msgid "" +#~ "New PHP (and JS) actions and filters have been added to allow for more " +#~ "customization." +#~ msgstr "" +#~ "Daha fazla özelleştirmeye izin veren yeni PHP (ve JS) eylem ve filtreleri " +#~ "eklendi." + +#~ msgid "Fresh UI" +#~ msgstr "Taze arayüz" + +#~ msgid "" +#~ "The entire plugin has had a design refresh including new field types, " +#~ "settings and design!" +#~ msgstr "" +#~ "Eklentinin tasarımı yeni alan tipleri, ayarlar ve tasarımı da içerecek " +#~ "şekilde yenilendi!" + +#~ msgid "New Settings" +#~ msgstr "Yeni ayarlar" + +#~ msgid "" +#~ "Field group settings have been added for Active, Label Placement, " +#~ "Instructions Placement and Description." +#~ msgstr "" +#~ "Etkin, etiket yerleşimi, talimatlar yerleşimi ve açıklama için alan grubu " +#~ "ayarları eklendi." + +#~ msgid "Better Front End Forms" +#~ msgstr "Daha iyi ön yüz formları" + +#~ msgid "" +#~ "acf_form() can now create a new post on submission with lots of new " +#~ "settings." +#~ msgstr "" +#~ "acf_form() artık gönderim halinde bir sürü yeni ayar ile yeni bir yazı " +#~ "oluşturabilir." + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS." +#~ msgstr "Form doğrulama artık sadece JS yerine PHP + AJAX ile yapılıyor." + +#~ msgid "Moving Fields" +#~ msgstr "Taşınabilir alanlar" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents." +#~ msgstr "" +#~ "Yeni gruplama becerisi, bir alanı gruplar ve üst alanlar arasında " +#~ "taşıyabilmenize olanak sağlar." + +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "%s sürümündeki değişiklikleri seveceğinizi düşünüyoruz." + +#~ msgid "Normal" +#~ msgstr "Normal" + +#~ msgid "Fancy" +#~ msgstr "Süslü" + +#~ msgid "Add-ons" +#~ msgstr "Eklentiler" + +#~ msgid "Download & Install" +#~ msgstr "İndir ve yükle" + +#~ msgid "Installed" +#~ msgstr "Yüklendi" + +#~ msgid "Shown when entering data" +#~ msgstr "Veri girilirken gösterilir" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s alan grubu eşitlendi." +#~ msgstr[1] "%s alan grubu eşitlendi." + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "Hata. Eklenti listesi yüklenemedi" + +#~ msgid "Parent fields" +#~ msgstr "Üst alanlar" + +#~ msgid "Sibling fields" +#~ msgstr "Kardeş alanlar" + +#~ msgid "Error validating request" +#~ msgstr "İstek doğrulanırken hata oluştu" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields veritabanı güncellemesi" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "" +#~ "Yeni muhteşem özellikleri kullanmadan önce lütfen veritabanınızı en yeni " +#~ "sürüme güncelleyin." + +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "" +#~ "Yükseltmeyi kolaylaştırmak için mağaza hesabınıza " +#~ "giriş yapın ve bir adet ücretsiz ACF PRO kopyası edinin!" + +#~ msgid "Under the Hood" +#~ msgstr "Kaputun altında" + +#~ msgid "Smarter field settings" +#~ msgstr "Daha akıllı alan ayarları" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF artık alan ayarlarını münferit yazı nesneleri olarak saklıyor" + +#~ msgid "Better version control" +#~ msgstr "Daha iyi sürüm kontrolü" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "" +#~ "Otomatik JSON dışarı aktarma özelliği sayesinde artık alan ayarları sürüm " +#~ "kontrolü ile yönetilebilir" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "XML yerine JSON kullanımına geçildi" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "İçeri / dışarı aktarma artık XML yerine JSON kullanıyor" + +#~ msgid "New Forms" +#~ msgstr "Yeni formlar" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "Gömülü içerik için yeni bir alan eklendi" + +#~ msgid "New Gallery" +#~ msgstr "Yeni galeri" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "Galeri alanı oldukça gerekli bir makyaj ile yenilendi" + +#~ msgid "Relationship Field" +#~ msgstr "İlişkili alan" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "'Filtreler' için yeni ilişki ayarı (Arama, yazı tipi, taksonomi)" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "Yeni arşivler page_link alanı seçiminde gruplanır" + +#~ msgid "Better Options Pages" +#~ msgstr "Daha iyi seçenekler sayfası" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "" +#~ "Seçenekler sayfası için yeni işlevler sayesinde hem üst hem alt menü " +#~ "sayfaları oluşturulabiliyor" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "Alan gruplarını PHP için dışa aktar" + +#~ msgid "Download export file" +#~ msgstr "Dışarı aktarma dosyasını indir" + +#~ msgid "Generate export code" +#~ msgstr "Dışarı aktarma kodu oluştur" + +#~ msgid "Locating" +#~ msgstr "Konum bulunuyor" + +#~ msgid "Error." +#~ msgstr "Hata." + +#~ msgid "No embed found for the given URL." +#~ msgstr "Verilen adres için gömülecek bir şey bulunamadı." + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "En düşün değerlere ulaşıldı ( {min} değerleri )" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "" +#~ "Bir tablo stili tekrarlayıcı ya da esnek içerik alanı yerleşimi " +#~ "eklendiğinde sekme alanı yanlış görüntülenir" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "" +#~ "“Sekme alanları”nı kullanarak düzenleme ekranında alanları gruplayıp daha " +#~ "kolay organize olun." + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "Bu “sekme alanı”nı takip eden (ya da başka bir “sekme alanı” tanımlıysa) " +#~ "tüm alanlar sekmenin başlığını etiket olarak kullanarak " +#~ "gruplandırılacaklar." + +#~ msgid "None" +#~ msgstr "Yok" + +#~ msgid "Taxonomy Term" +#~ msgstr "Taksonomi terimi" + +#~ msgid "remove {layout}?" +#~ msgstr "{layout} kaldırılsın mı?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "Bu alan için en az gereken {min} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "En yüksek {label} sınırına ulaşıldı ({max} {identifier})" + +#~ msgid "Getting Started" +#~ msgstr "Başlarken" + +#~ msgid "Field Types" +#~ msgstr "Alan Tipleri" + +#~ msgid "Functions" +#~ msgstr "Fonksiyonlar" + +#~ msgid "Actions" +#~ msgstr "Eylemler" + +#~ msgid "Tutorials" +#~ msgstr "Örnekler" + +#~ msgid "Error" +#~ msgstr "Hata" + +#, fuzzy +#~| msgid "This field requires at least {min} {identifier}" +#~ msgid "1 field requires attention." +#~ msgid_plural "%d fields require attention." +#~ msgstr[0] "Bu alan gerektirir, en azından {min} {identifier}" +#~ msgstr[1] "Bu alan gerektirir, en azından {min} {identifier}" + +#~ msgid "See what's new in" +#~ msgstr "Neler yeni gözat" + +#~ msgid "'How to' guides" +#~ msgstr "Nasıl Yapılır" + +#~ msgid "Created by" +#~ msgstr "Oluşturan" + +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "Başarılı. İçe aktarma aracı %s alan gruplarını aktardı: %s" + +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "" +#~ "Uyarı . İçe aktarma aracı zaten var olan %s alan gruplarını tespit " +#~ "etti. Bu kayıtlar gözardı edildi: %s" + +#~ msgid "Upgrade" +#~ msgstr "Yükselt" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Yeniden sıralama için sürükle ve bırak" + +#~ msgid "See what's new" +#~ msgstr "Neler yeni görün" + +#~ msgid "Show a different month" +#~ msgstr "Başka bir ay göster" + +#~ msgid "Return format" +#~ msgstr "Dönüş formatı" + +#~ msgid "uploaded to this post" +#~ msgstr "Bu yazıya yükledi" + +#~ msgid "File Size" +#~ msgstr "Dosya Boyutu" + +#~ msgid "No File selected" +#~ msgstr "Dosya seçilmedi" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "Tüm metin ilk wp fonksiyonu sayesinde geçilecek unutmayın" + +#~ msgid "Warning" +#~ msgstr "Uyarı" + +#~ msgid "eg. Show extra content" +#~ msgstr "örn. Ekstra içerik göster" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr " Bağlantı Hatası . Üzgünüm, lütfen tekrar deneyin" + +#~ msgid "Save Options" +#~ msgstr "Ayarları Kaydet" + +#~ msgid "License" +#~ msgstr "Lisans" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Güncelleştirmeleri kilidini açmak için, aşağıdaki lisans anahtarını " +#~ "girin. Eğer bir lisans anahtarı yoksa, lütfen" + +#~ msgid "details & pricing" +#~ msgstr "detaylar & fiyatlandırma" + +#~ msgid "Hide / Show All" +#~ msgstr "Gizle / Hepsini Göster" + +#~ msgid "Show Field Keys" +#~ msgstr "Alan Anahtarlarını Göster" + +#~ msgid "Pending Review" +#~ msgstr "İnceleme Bekliyor" + +#~ msgid "Draft" +#~ msgstr "Taslak" + +#~ msgid "Private" +#~ msgstr "Gizli" + +#~ msgid "Revision" +#~ msgstr "Revizyon" + +#~ msgid "Trash" +#~ msgstr "Çöp" + +#, fuzzy +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "Alan grupları oluşturulma sırası
                              sırayla alttan yukarı" + +#~ msgid "ACF PRO Required" +#~ msgstr "ACF PRO Gerekli" + +#~ msgid "" +#~ "We have detected an issue which requires your attention: This website " +#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF." +#~ msgstr "" +#~ "Biz dikkat gerektiren bir sorunu tespit ettik: Bu ​​web sitesi artık ACF " +#~ "ile uyumlu olan eklentileriyle (%s) kullanımını kolaylaştırır." + +#~ msgid "" +#~ "Don't panic, you can simply roll back the plugin and continue using ACF " +#~ "as you know it!" +#~ msgstr "" +#~ "Panik yapmayın, sadece eklenti geri almak ve bunu bildiğiniz gibi ACF " +#~ "kullanmaya devam edebilirsiniz!" + +#~ msgid "Roll back to ACF v%s" +#~ msgstr "ACF v %s ye geri al" + +#~ msgid "Learn why ACF PRO is required for my site" +#~ msgstr "ACF PRO Sitem için neden gereklidir öğrenin" + +#~ msgid "Update Database" +#~ msgstr "Veritabanını Güncelle" + +#~ msgid "Data Upgrade" +#~ msgstr "Veri Yükseltme" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Veri başarıyla yükseltildi." + +#~ msgid "Data is at the latest version." +#~ msgstr "Verinin en son sürümü." + +#~ msgid "1 required field below is empty" +#~ msgid_plural "%s required fields below are empty" +#~ msgstr[0] "%s Gerekli alan boş" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Yazı Yükleme ve Kaydet Şartları" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "" +#~ "Yükleme değeri yazılar için terimlere dayalı ve kaydetme üzerindeki " +#~ "yazılar için şartlarını güncelleyecek" + +#, fuzzy +#~ msgid "image" +#~ msgstr "Resim" + +#, fuzzy +#~ msgid "expand_details" +#~ msgstr "Ayrıntıları Genişlet" + +#, fuzzy +#~ msgid "collapse_details" +#~ msgstr "Detayları Daralt" + +#, fuzzy +#~ msgid "relationship" +#~ msgstr "İlişkili" + +#, fuzzy +#~ msgid "title_is_required" +#~ msgstr "Alan grubu için başlık gerekli" + +#, fuzzy +#~ msgid "move_field" +#~ msgstr "Alanı Taşı" + +#, fuzzy +#~ msgid "flexible_content" +#~ msgstr "Esnek İçerik" + +#, fuzzy +#~ msgid "gallery" +#~ msgstr "Galeri" + +#, fuzzy +#~ msgid "repeater" +#~ msgstr "Tekrarlayıcı" + +#, fuzzy +#~ msgid "Controls how HTML tags are rendered" +#~ msgstr "Yeni satırlar nasıl oluşturulacağını denetler" + +#~ msgid "Custom field updated." +#~ msgstr "Özel alan güncellendi." + +#~ msgid "Custom field deleted." +#~ msgstr "Özel alan silindi." + +#~ msgid "Field group duplicated! Edit the new \"%s\" field group." +#~ msgstr "Alan grup çoğaltıldı! Yeni \"%s \" alan grubu düzenleyin." + +#~ msgid "Import/Export" +#~ msgstr "İçe/Dışa Aktar" + +#~ msgid "Column Width" +#~ msgstr "Sütun Genişliği" + +#~ msgid "Attachment Details" +#~ msgstr "Ek Detayları" diff --git a/lang/pro/acf-uk.po b/lang/pro/acf-uk.po new file mode 100644 index 0000000..8dbafea --- /dev/null +++ b/lang/pro/acf-uk.po @@ -0,0 +1,3588 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2017-10-04 14:50+1000\n" +"PO-Revision-Date: 2018-02-06 10:06+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: skinik \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 1.8.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:67 +msgid "Advanced Custom Fields" +msgstr "Додаткові поля Pro" + +#: acf.php:369 includes/admin/admin.php:117 +msgid "Field Groups" +msgstr "Групи полів" + +#: acf.php:370 +msgid "Field Group" +msgstr "Група полів" + +#: acf.php:371 acf.php:403 includes/admin/admin.php:118 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Add New" +msgstr "Додати нову" + +#: acf.php:372 +msgid "Add New Field Group" +msgstr "Додати нову групу полів" + +#: acf.php:373 +msgid "Edit Field Group" +msgstr "Редагувати групу полів" + +#: acf.php:374 +msgid "New Field Group" +msgstr "Нова група полів" + +#: acf.php:375 +msgid "View Field Group" +msgstr "Переглянути групу полів" + +#: acf.php:376 +msgid "Search Field Groups" +msgstr "Шукати групи полів" + +#: acf.php:377 +msgid "No Field Groups found" +msgstr "Не знайдено груп полів" + +#: acf.php:378 +msgid "No Field Groups found in Trash" +msgstr "У кошику немає груп полів" + +#: acf.php:401 includes/admin/admin-field-group.php:182 +#: includes/admin/admin-field-group.php:275 +#: includes/admin/admin-field-groups.php:510 +#: pro/fields/class-acf-field-clone.php:807 +msgid "Fields" +msgstr "Поля" + +#: acf.php:402 +msgid "Field" +msgstr "Поле" + +#: acf.php:404 +msgid "Add New Field" +msgstr "Додати нове поле" + +#: acf.php:405 +msgid "Edit Field" +msgstr "Редагувати поле" + +#: acf.php:406 includes/admin/views/field-group-fields.php:41 +#: includes/admin/views/settings-info.php:105 +msgid "New Field" +msgstr "Нове поле" + +#: acf.php:407 +msgid "View Field" +msgstr "Переглянути\t поле" + +#: acf.php:408 +msgid "Search Fields" +msgstr "Шукати поля" + +#: acf.php:409 +msgid "No Fields found" +msgstr "Не знайдено полів" + +#: acf.php:410 +msgid "No Fields found in Trash" +msgstr "Не знайдено полів у кошику" + +#: acf.php:449 includes/admin/admin-field-group.php:390 +#: includes/admin/admin-field-groups.php:567 +msgid "Inactive" +msgstr "Неактивно" + +#: acf.php:454 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Неактивні (%s)" +msgstr[1] "Неактивні (%s)" +msgstr[2] "Неактивні (%s)" + +#: includes/admin/admin-field-group.php:68 +#: includes/admin/admin-field-group.php:69 +#: includes/admin/admin-field-group.php:71 +msgid "Field group updated." +msgstr "Групу полів оновлено." + +#: includes/admin/admin-field-group.php:70 +msgid "Field group deleted." +msgstr "Групу полів видалено." + +#: includes/admin/admin-field-group.php:73 +msgid "Field group published." +msgstr "Групу полів опубліковано." + +#: includes/admin/admin-field-group.php:74 +msgid "Field group saved." +msgstr "Групу полів збережено." + +#: includes/admin/admin-field-group.php:75 +msgid "Field group submitted." +msgstr "Групу полів надіслано." + +#: includes/admin/admin-field-group.php:76 +#, fuzzy +msgid "Field group scheduled for." +msgstr "Групу полів збережено." + +#: includes/admin/admin-field-group.php:77 +msgid "Field group draft updated." +msgstr "Чернетку групи полів оновлено." + +#: includes/admin/admin-field-group.php:183 +msgid "Location" +msgstr "Розміщення" + +#: includes/admin/admin-field-group.php:184 +msgid "Settings" +msgstr "Налаштування" + +#: includes/admin/admin-field-group.php:269 +msgid "Move to trash. Are you sure?" +msgstr "Перемістити в кошик. Ви впевнені?" + +#: includes/admin/admin-field-group.php:270 +msgid "checked" +msgstr "" + +#: includes/admin/admin-field-group.php:271 +msgid "No toggle fields available" +msgstr "" + +#: includes/admin/admin-field-group.php:272 +msgid "Field group title is required" +msgstr "Заголовок обов’язковий" + +#: includes/admin/admin-field-group.php:273 +#: includes/api/api-field-group.php:751 +msgid "copy" +msgstr "копіювати" + +#: includes/admin/admin-field-group.php:274 +#: includes/admin/views/field-group-field-conditional-logic.php:54 +#: includes/admin/views/field-group-field-conditional-logic.php:154 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3964 +msgid "or" +msgstr "або" + +#: includes/admin/admin-field-group.php:276 +msgid "Parent fields" +msgstr "Батьківські поля" + +#: includes/admin/admin-field-group.php:277 +msgid "Sibling fields" +msgstr "" + +#: includes/admin/admin-field-group.php:278 +msgid "Move Custom Field" +msgstr "Перемістити поле" + +#: includes/admin/admin-field-group.php:279 +msgid "This field cannot be moved until its changes have been saved" +msgstr "" + +#: includes/admin/admin-field-group.php:280 +msgid "Null" +msgstr "" + +#: includes/admin/admin-field-group.php:281 includes/input.php:258 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "" + +#: includes/admin/admin-field-group.php:282 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "" + +#: includes/admin/admin-field-group.php:360 +msgid "Field Keys" +msgstr "" + +#: includes/admin/admin-field-group.php:390 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "Активно" + +#: includes/admin/admin-field-group.php:801 +msgid "Move Complete." +msgstr "Переміщення завершене." + +#: includes/admin/admin-field-group.php:802 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "Поле «%s» можете знайти у групі «%s»" + +#: includes/admin/admin-field-group.php:803 +msgid "Close Window" +msgstr "Закрити вікно" + +#: includes/admin/admin-field-group.php:844 +msgid "Please select the destination for this field" +msgstr "Будь ласка, оберіть групу, в яку перемістити" + +#: includes/admin/admin-field-group.php:851 +msgid "Move Field" +msgstr "Перемістити поле" + +#: includes/admin/admin-field-groups.php:74 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Активні (%s)" +msgstr[1] "Активні (%s)" +msgstr[2] "Активні (%s)" + +#: includes/admin/admin-field-groups.php:142 +#, php-format +msgid "Field group duplicated. %s" +msgstr "" + +#: includes/admin/admin-field-groups.php:146 +#, php-format +msgid "%s field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:227 +#, php-format +msgid "Field group synchronised. %s" +msgstr "" + +#: includes/admin/admin-field-groups.php:231 +#, php-format +msgid "%s field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/admin-field-groups.php:394 +#: includes/admin/admin-field-groups.php:557 +msgid "Sync available" +msgstr "Доступна синхронізація" + +#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:355 +msgid "Title" +msgstr "Заголовок" + +#: includes/admin/admin-field-groups.php:508 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/install-network.php:21 +#: includes/admin/views/install-network.php:29 +#: pro/fields/class-acf-field-gallery.php:382 +msgid "Description" +msgstr "Опис" + +#: includes/admin/admin-field-groups.php:509 +msgid "Status" +msgstr "Статус" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:607 +msgid "Customise WordPress with powerful, professional and intuitive fields." +msgstr "" +"Розширте можливості WordPress за допомогою потужних, професійних та " +"інтуїтивно зрозумілих полів." + +#: includes/admin/admin-field-groups.php:609 +#: includes/admin/settings-info.php:76 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "Список змін" + +#: includes/admin/admin-field-groups.php:614 +#, php-format +msgid "See what's new in version %s." +msgstr "Перегляньте що нового у версії %s." + +#: includes/admin/admin-field-groups.php:617 +msgid "Resources" +msgstr "Документація" + +#: includes/admin/admin-field-groups.php:619 +msgid "Website" +msgstr "Сайт" + +#: includes/admin/admin-field-groups.php:620 +msgid "Documentation" +msgstr "Документація" + +#: includes/admin/admin-field-groups.php:621 +msgid "Support" +msgstr "Підтримка" + +#: includes/admin/admin-field-groups.php:623 +msgid "Pro" +msgstr "Про" + +#: includes/admin/admin-field-groups.php:628 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "Спасибі за використання ACF." + +#: includes/admin/admin-field-groups.php:668 +msgid "Duplicate this item" +msgstr "Дублювати цей елемент" + +#: includes/admin/admin-field-groups.php:668 +#: includes/admin/admin-field-groups.php:684 +#: includes/admin/views/field-group-field.php:49 +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Duplicate" +msgstr "Дублювати" + +#: includes/admin/admin-field-groups.php:701 +#: includes/fields/class-acf-field-google-map.php:112 +#: includes/fields/class-acf-field-relationship.php:656 +msgid "Search" +msgstr "Пошук" + +#: includes/admin/admin-field-groups.php:760 +#, php-format +msgid "Select %s" +msgstr "" + +#: includes/admin/admin-field-groups.php:768 +msgid "Synchronise field group" +msgstr "" + +#: includes/admin/admin-field-groups.php:768 +#: includes/admin/admin-field-groups.php:798 +msgid "Sync" +msgstr "" + +#: includes/admin/admin-field-groups.php:780 +msgid "Apply" +msgstr "Застосувати" + +#: includes/admin/admin-field-groups.php:798 +msgid "Bulk Actions" +msgstr "Масові дії" + +#: includes/admin/admin.php:113 +#: includes/admin/views/field-group-options.php:118 +msgid "Custom Fields" +msgstr "Додаткові поля" + +#: includes/admin/install-network.php:88 includes/admin/install.php:70 +#: includes/admin/install.php:121 +msgid "Upgrade Database" +msgstr "Оновити базу даних" + +#: includes/admin/install-network.php:140 +msgid "Review sites & upgrade" +msgstr "" + +#: includes/admin/install.php:187 +msgid "Error validating request" +msgstr "" + +#: includes/admin/install.php:210 includes/admin/views/install.php:105 +msgid "No updates available." +msgstr "Немає оновлень." + +#: includes/admin/settings-addons.php:51 +#: includes/admin/views/settings-addons.php:3 +msgid "Add-ons" +msgstr "Доповнення" + +#: includes/admin/settings-addons.php:87 +msgid "Error. Could not load add-ons list" +msgstr "" + +#: includes/admin/settings-info.php:50 +msgid "Info" +msgstr "Інформація" + +#: includes/admin/settings-info.php:75 +msgid "What's New" +msgstr "Що нового" + +#: includes/admin/settings-tools.php:50 +#: includes/admin/views/settings-tools-export.php:19 +#: includes/admin/views/settings-tools.php:31 +msgid "Tools" +msgstr "Інструменти" + +#: includes/admin/settings-tools.php:147 includes/admin/settings-tools.php:380 +msgid "No field groups selected" +msgstr "Не обрано груп полів" + +#: includes/admin/settings-tools.php:184 +#: includes/fields/class-acf-field-file.php:155 +msgid "No file selected" +msgstr "Файл не обрано" + +#: includes/admin/settings-tools.php:197 +msgid "Error uploading file. Please try again" +msgstr "Помилка завантаження файлу. Спробуйте знову" + +#: includes/admin/settings-tools.php:206 +msgid "Incorrect file type" +msgstr "Невірний тип файлу" + +#: includes/admin/settings-tools.php:223 +msgid "Import file empty" +msgstr "Файл імпорту порожній" + +#: includes/admin/settings-tools.php:331 +#, fuzzy, php-format +#| msgid "Import Field Groups" +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "Імпортувати групи полів" +msgstr[1] "Імпортувати групи полів" +msgstr[2] "Імпортувати групи полів" + +#: includes/admin/views/field-group-field-conditional-logic.php:28 +msgid "Conditional Logic" +msgstr "Умовна логіка" + +#: includes/admin/views/field-group-field-conditional-logic.php:54 +msgid "Show this field if" +msgstr "Показувати поле, якщо" + +#: includes/admin/views/field-group-field-conditional-logic.php:103 +#: includes/locations.php:247 +msgid "is equal to" +msgstr "дорівнює" + +#: includes/admin/views/field-group-field-conditional-logic.php:104 +#: includes/locations.php:248 +msgid "is not equal to" +msgstr "не дорівнює" + +#: includes/admin/views/field-group-field-conditional-logic.php:141 +#: includes/admin/views/html-location-rule.php:80 +msgid "and" +msgstr "та" + +#: includes/admin/views/field-group-field-conditional-logic.php:156 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "Додати групу умов" + +#: includes/admin/views/field-group-field.php:41 +#: pro/fields/class-acf-field-flexible-content.php:403 +#: pro/fields/class-acf-field-repeater.php:296 +msgid "Drag to reorder" +msgstr "Перетягніть, щоб змінити порядок" + +#: includes/admin/views/field-group-field.php:45 +#: includes/admin/views/field-group-field.php:48 +msgid "Edit field" +msgstr "Редагувати поле" + +#: includes/admin/views/field-group-field.php:48 +#: includes/fields/class-acf-field-file.php:137 +#: includes/fields/class-acf-field-image.php:122 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:342 +msgid "Edit" +msgstr "Редагувати" + +#: includes/admin/views/field-group-field.php:49 +msgid "Duplicate field" +msgstr "Дублювати поле" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move field to another group" +msgstr "Перемістити поле до іншої групи" + +#: includes/admin/views/field-group-field.php:50 +msgid "Move" +msgstr "Перемістити" + +#: includes/admin/views/field-group-field.php:51 +msgid "Delete field" +msgstr "Видалити поле" + +#: includes/admin/views/field-group-field.php:51 +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Delete" +msgstr "Видалити" + +#: includes/admin/views/field-group-field.php:67 +msgid "Field Label" +msgstr "Назва поля" + +#: includes/admin/views/field-group-field.php:68 +msgid "This is the name which will appear on the EDIT page" +msgstr "Ця назва відображується на сторінці редагування" + +#: includes/admin/views/field-group-field.php:77 +msgid "Field Name" +msgstr "Ярлик" + +#: includes/admin/views/field-group-field.php:78 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Одне слово, без пробілів. Можете використовувати нижнє підкреслення." + +#: includes/admin/views/field-group-field.php:87 +msgid "Field Type" +msgstr "Тип поля" + +#: includes/admin/views/field-group-field.php:98 +#: includes/fields/class-acf-field-tab.php:88 +msgid "Instructions" +msgstr "Інструкція" + +#: includes/admin/views/field-group-field.php:99 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Напишіть короткий опис для поля" + +#: includes/admin/views/field-group-field.php:108 +msgid "Required?" +msgstr "Обов’язкове?" + +#: includes/admin/views/field-group-field.php:131 +msgid "Wrapper Attributes" +msgstr "Атрибути обгортки" + +#: includes/admin/views/field-group-field.php:137 +msgid "width" +msgstr "ширина" + +#: includes/admin/views/field-group-field.php:152 +msgid "class" +msgstr "клас" + +#: includes/admin/views/field-group-field.php:165 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:177 +msgid "Close Field" +msgstr "Закрити поле" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "Порядок" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:415 +#: includes/fields/class-acf-field-radio.php:306 +#: includes/fields/class-acf-field-select.php:432 +#: pro/fields/class-acf-field-flexible-content.php:582 +msgid "Label" +msgstr "Ярлик" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:964 +#: pro/fields/class-acf-field-flexible-content.php:595 +msgid "Name" +msgstr "Назва" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "Ключ" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "Тип" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Ще немає полів. Для створення полів натисніть + Додати поле." + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ Додати поле" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "Умови" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "Стиль" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "Стандартний (WP метабокс)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "Спрощений (без метабоксу)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "Розташування" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "Вгорі (під заголовком)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "Стандартно (після тектового редактора)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "Збоку" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "Розміщення ярликів" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:102 +msgid "Top aligned" +msgstr "Зверху" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:103 +msgid "Left aligned" +msgstr "Зліва" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "Розміщення інструкцій" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "Під ярликами" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "Під полями" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "Порядок розташування" + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "Групи полів з нижчим порядком з’являться спочатку" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "Відображається на сторінці груп полів" + +#: includes/admin/views/field-group-options.php:107 +msgid "Hide on screen" +msgstr "Ховати на екрані" + +#: includes/admin/views/field-group-options.php:108 +msgid "Select items to hide them from the edit screen." +msgstr "Оберіть що ховати з екрану редагування/створення." + +#: includes/admin/views/field-group-options.php:108 +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/field-group-options.php:115 +msgid "Permalink" +msgstr "Постійне посилання " + +#: includes/admin/views/field-group-options.php:116 +msgid "Content Editor" +msgstr "Редактор матеріалу" + +#: includes/admin/views/field-group-options.php:117 +msgid "Excerpt" +msgstr "Витяг" + +#: includes/admin/views/field-group-options.php:119 +msgid "Discussion" +msgstr "Дискусія" + +#: includes/admin/views/field-group-options.php:120 +msgid "Comments" +msgstr "Коментарі" + +#: includes/admin/views/field-group-options.php:121 +msgid "Revisions" +msgstr "Ревізії" + +#: includes/admin/views/field-group-options.php:122 +msgid "Slug" +msgstr "Ярлик URL" + +#: includes/admin/views/field-group-options.php:123 +msgid "Author" +msgstr "Автор" + +#: includes/admin/views/field-group-options.php:124 +msgid "Format" +msgstr "Формат" + +#: includes/admin/views/field-group-options.php:125 +msgid "Page Attributes" +msgstr "Атрибути сторінки" + +#: includes/admin/views/field-group-options.php:126 +#: includes/fields/class-acf-field-relationship.php:670 +msgid "Featured Image" +msgstr "Головне зображення" + +#: includes/admin/views/field-group-options.php:127 +msgid "Categories" +msgstr "Категорії" + +#: includes/admin/views/field-group-options.php:128 +msgid "Tags" +msgstr "Теґи" + +#: includes/admin/views/field-group-options.php:129 +msgid "Send Trackbacks" +msgstr "Надіслати трекбеки" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "Показувати групу полів, якщо" + +#: includes/admin/views/install-network.php:4 +msgid "Upgrade Sites" +msgstr "Оновити сайти" + +#: includes/admin/views/install-network.php:9 +#: includes/admin/views/install.php:3 +msgid "Advanced Custom Fields Database Upgrade" +msgstr "" + +#: includes/admin/views/install-network.php:11 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "" + +#: includes/admin/views/install-network.php:20 +#: includes/admin/views/install-network.php:28 +msgid "Site" +msgstr "Сайт" + +#: includes/admin/views/install-network.php:48 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "" + +#: includes/admin/views/install-network.php:50 +msgid "Site is up to date" +msgstr "Сайт оновлено" + +#: includes/admin/views/install-network.php:63 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "" + +#: includes/admin/views/install-network.php:102 +#: includes/admin/views/install-notice.php:42 +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/install-network.php:158 +msgid "Upgrade complete" +msgstr "Оновлення завершено" + +#: includes/admin/views/install-network.php:162 +#: includes/admin/views/install.php:9 +#, php-format +msgid "Upgrading data to version %s" +msgstr "Оновлення даних до версії %s" + +#: includes/admin/views/install-notice.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "Повторювальне поле" + +#: includes/admin/views/install-notice.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "Гнучкий вміст" + +#: includes/admin/views/install-notice.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "Галерея" + +#: includes/admin/views/install-notice.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "Сторінка опцій" + +#: includes/admin/views/install-notice.php:26 +msgid "Database Upgrade Required" +msgstr "Необхідно оновити базу даних" + +#: includes/admin/views/install-notice.php:28 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "" + +#: includes/admin/views/install-notice.php:28 +msgid "" +"Before you start using the new awesome features, please update your database " +"to the newest version." +msgstr "" + +#: includes/admin/views/install-notice.php:31 +#, php-format +msgid "" +"Please also ensure any premium add-ons (%s) have first been updated to the " +"latest version." +msgstr "" + +#: includes/admin/views/install.php:7 +msgid "Reading upgrade tasks..." +msgstr "" + +#: includes/admin/views/install.php:11 +#, php-format +msgid "Database Upgrade complete. See what's new" +msgstr "" + +#: includes/admin/views/settings-addons.php:17 +msgid "Download & Install" +msgstr "Завантажити і встановити" + +#: includes/admin/views/settings-addons.php:36 +msgid "Installed" +msgstr "Встановлено" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "Вітаємо у Advanced Custom Fields" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "Дякуємо за оновлення! ACF %s став ще кращим!" + +#: includes/admin/views/settings-info.php:17 +msgid "A smoother custom field experience" +msgstr "" + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Usability" +msgstr "" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" + +#: includes/admin/views/settings-info.php:27 +msgid "Improved Design" +msgstr "" + +#: includes/admin/views/settings-info.php:28 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" + +#: includes/admin/views/settings-info.php:32 +msgid "Improved Data" +msgstr "" + +#: includes/admin/views/settings-info.php:33 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" + +#: includes/admin/views/settings-info.php:39 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "До побачення доповнення. Привіт PRO" + +#: includes/admin/views/settings-info.php:44 +msgid "Introducing ACF PRO" +msgstr "" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" + +#: includes/admin/views/settings-info.php:50 +msgid "Powerful Features" +msgstr "Потужні можливості" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "Прочитайте більше про можливості ACF PRO." + +#: includes/admin/views/settings-info.php:56 +msgid "Easy Upgrading" +msgstr "Легке оновлення" + +#: includes/admin/views/settings-info.php:57 +#, php-format +msgid "" +"To help make upgrading easy, login to your store account " +"and claim a free copy of ACF PRO!" +msgstr "" + +#: includes/admin/views/settings-info.php:58 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk" +msgstr "" + +#: includes/admin/views/settings-info.php:66 +msgid "Under the Hood" +msgstr "Під капотом" + +#: includes/admin/views/settings-info.php:71 +msgid "Smarter field settings" +msgstr "" + +#: includes/admin/views/settings-info.php:72 +msgid "ACF now saves its field settings as individual post objects" +msgstr "" + +#: includes/admin/views/settings-info.php:76 +msgid "More AJAX" +msgstr "Більше AJAX" + +#: includes/admin/views/settings-info.php:77 +msgid "More fields use AJAX powered search to speed up page loading" +msgstr "" + +#: includes/admin/views/settings-info.php:81 +msgid "Local JSON" +msgstr "Локальний JSON" + +#: includes/admin/views/settings-info.php:82 +msgid "New auto export to JSON feature improves speed" +msgstr "" + +#: includes/admin/views/settings-info.php:88 +msgid "Better version control" +msgstr "" + +#: includes/admin/views/settings-info.php:89 +msgid "" +"New auto export to JSON feature allows field settings to be version " +"controlled" +msgstr "" + +#: includes/admin/views/settings-info.php:93 +msgid "Swapped XML for JSON" +msgstr "" + +#: includes/admin/views/settings-info.php:94 +msgid "Import / Export now uses JSON in favour of XML" +msgstr "" + +#: includes/admin/views/settings-info.php:98 +msgid "New Forms" +msgstr "Нові форми" + +#: includes/admin/views/settings-info.php:99 +msgid "Fields can now be mapped to comments, widgets and all user forms!" +msgstr "" + +#: includes/admin/views/settings-info.php:106 +msgid "A new field for embedding content has been added" +msgstr "" + +#: includes/admin/views/settings-info.php:110 +msgid "New Gallery" +msgstr "Нова галерея" + +#: includes/admin/views/settings-info.php:111 +msgid "The gallery field has undergone a much needed facelift" +msgstr "" + +#: includes/admin/views/settings-info.php:115 +msgid "New Settings" +msgstr "Нові налаштування" + +#: includes/admin/views/settings-info.php:116 +msgid "" +"Field group settings have been added for label placement and instruction " +"placement" +msgstr "" + +#: includes/admin/views/settings-info.php:122 +msgid "Better Front End Forms" +msgstr "" + +#: includes/admin/views/settings-info.php:123 +msgid "acf_form() can now create a new post on submission" +msgstr "" + +#: includes/admin/views/settings-info.php:127 +msgid "Better Validation" +msgstr "Поліпшена перевірка" + +#: includes/admin/views/settings-info.php:128 +msgid "Form validation is now done via PHP + AJAX in favour of only JS" +msgstr "Перевірка форми відбувається на PHP + AJAX" + +#: includes/admin/views/settings-info.php:132 +#, fuzzy +msgid "Relationship Field" +msgstr "Закрити поле" + +#: includes/admin/views/settings-info.php:133 +msgid "" +"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +msgstr "" + +#: includes/admin/views/settings-info.php:139 +msgid "Moving Fields" +msgstr "Переміщення полів" + +#: includes/admin/views/settings-info.php:140 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents" +msgstr "" + +#: includes/admin/views/settings-info.php:144 +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "Посилання на сторінку" + +#: includes/admin/views/settings-info.php:145 +msgid "New archives group in page_link field selection" +msgstr "" + +#: includes/admin/views/settings-info.php:149 +msgid "Better Options Pages" +msgstr "Краща сторінка опцій" + +#: includes/admin/views/settings-info.php:150 +msgid "" +"New functions for options page allow creation of both parent and child menu " +"pages" +msgstr "" + +#: includes/admin/views/settings-info.php:159 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "Думаємо, Вам сподобаються зміни у %s." + +#: includes/admin/views/settings-tools-export.php:23 +msgid "Export Field Groups to PHP" +msgstr "Експортувати групи полів в код PHP" + +#: includes/admin/views/settings-tools-export.php:27 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" + +#: includes/admin/views/settings-tools.php:5 +msgid "Select Field Groups" +msgstr "Оберіть групи полів" + +#: includes/admin/views/settings-tools.php:35 +msgid "Export Field Groups" +msgstr "Експортувати групи полів" + +#: includes/admin/views/settings-tools.php:38 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"Виберіть групи полів, які Ви хочете експортувати, а далі оберіть бажаний " +"метод експорту. Використовуйте кнопку завантаження для експорту в файл ." +"json, який можна імпортувати до іншої інсталяції ACF. Використовуйте кнопку " +"генерації для експорту в код PHP, який ви можете розмістити у своїй темі." + +#: includes/admin/views/settings-tools.php:50 +msgid "Download export file" +msgstr "Завантажити файл експорту" + +#: includes/admin/views/settings-tools.php:51 +msgid "Generate export code" +msgstr "Створити код експорту" + +#: includes/admin/views/settings-tools.php:64 +msgid "Import Field Groups" +msgstr "Імпортувати групи полів" + +#: includes/admin/views/settings-tools.php:67 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"Виберіть JSON файл, який Ви хотіли б імпортувати. При натисканні кнопки " +"імпорту, нижче, ACF буде імпортовано групи полів." + +#: includes/admin/views/settings-tools.php:77 +#: includes/fields/class-acf-field-file.php:35 +msgid "Select File" +msgstr "Оберіть файл" + +#: includes/admin/views/settings-tools.php:86 +msgid "Import" +msgstr "Імпорт" + +#: includes/api/api-helpers.php:856 +msgid "Thumbnail" +msgstr "Мініатюра" + +#: includes/api/api-helpers.php:857 +msgid "Medium" +msgstr "Середній" + +#: includes/api/api-helpers.php:858 +msgid "Large" +msgstr "Великий" + +#: includes/api/api-helpers.php:907 +msgid "Full Size" +msgstr "Повний розмір" + +#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831 +#: pro/fields/class-acf-field-clone.php:992 +msgid "(no title)" +msgstr "(без заголовку)" + +#: includes/api/api-helpers.php:1868 +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:268 +#: includes/fields/class-acf-field-taxonomy.php:986 +#, fuzzy +#| msgid "Page Parent" +msgid "Parent" +msgstr "Батьківська сторінка" + +#: includes/api/api-helpers.php:3885 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3890 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3906 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3911 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "" + +#: includes/api/api-helpers.php:3929 +#, php-format +msgid "File size must be at least %s." +msgstr "" + +#: includes/api/api-helpers.php:3934 +#, php-format +msgid "File size must must not exceed %s." +msgstr "" + +#: includes/api/api-helpers.php:3968 +#, fuzzy, php-format +msgid "File type must be %s." +msgstr "Тип поля не існує" + +#: includes/fields.php:144 +msgid "Basic" +msgstr "Загальне" + +#: includes/fields.php:145 includes/forms/form-front.php:47 +msgid "Content" +msgstr "Вміст" + +#: includes/fields.php:146 +msgid "Choice" +msgstr "Вибір" + +#: includes/fields.php:147 +msgid "Relational" +msgstr "" + +#: includes/fields.php:148 +msgid "jQuery" +msgstr "" + +#: includes/fields.php:149 +#: includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:384 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:285 +#: pro/fields/class-acf-field-clone.php:839 +#: pro/fields/class-acf-field-flexible-content.php:552 +#: pro/fields/class-acf-field-flexible-content.php:601 +#: pro/fields/class-acf-field-repeater.php:450 +msgid "Layout" +msgstr "Шаблон структури" + +#: includes/fields.php:326 +msgid "Field type does not exist" +msgstr "Тип поля не існує" + +#: includes/fields.php:326 +msgid "Unknown" +msgstr "Невідомо" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "Група кнопок" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:368 +msgid "Choices" +msgstr "Варіанти вибору" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "Enter each choice on a new line." +msgstr "У кожному рядку по варіанту" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "For more control, you may specify both a value and label like this:" +msgstr "Для більшого контролю, Ви можете вказати маркувати значення:" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:369 +msgid "red : Red" +msgstr "red : Червоний" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:412 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:386 +#: includes/fields/class-acf-field-taxonomy.php:793 +#: includes/fields/class-acf-field-user.php:408 +msgid "Allow Null?" +msgstr "Дозволити порожнє значення?" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:375 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:276 +#: includes/fields/class-acf-field-range.php:148 +#: includes/fields/class-acf-field-select.php:377 +#: includes/fields/class-acf-field-text.php:119 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:410 +msgid "Default Value" +msgstr "Значення за замовчуванням" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:277 +#: includes/fields/class-acf-field-range.php:149 +#: includes/fields/class-acf-field-text.php:120 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:411 +msgid "Appears when creating a new post" +msgstr "З'являється при створенні нового матеріалу" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:391 +#: includes/fields/class-acf-field-radio.php:292 +msgid "Horizontal" +msgstr "Горизонтально" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:390 +#: includes/fields/class-acf-field-radio.php:291 +msgid "Vertical" +msgstr "Вертикально" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:408 +#: includes/fields/class-acf-field-file.php:200 +#: includes/fields/class-acf-field-image.php:188 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:299 +#: includes/fields/class-acf-field-taxonomy.php:833 +msgid "Return Value" +msgstr "Повернення значення" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:409 +#: includes/fields/class-acf-field-file.php:201 +#: includes/fields/class-acf-field-image.php:189 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:300 +msgid "Specify the returned value on front end" +msgstr "" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-radio.php:305 +#: includes/fields/class-acf-field-select.php:431 +msgid "Value" +msgstr "Значення" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:416 +#: includes/fields/class-acf-field-radio.php:307 +#: includes/fields/class-acf-field-select.php:433 +msgid "Both (Array)" +msgstr "Галочка" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:780 +msgid "Checkbox" +msgstr "Галочка" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "Вибрати все" + +#: includes/fields/class-acf-field-checkbox.php:221 +msgid "Add new choice" +msgstr "Додати новий вибір" + +#: includes/fields/class-acf-field-checkbox.php:353 +#, fuzzy +#| msgid "Allow Null?" +msgid "Allow Custom" +msgstr "Дозволити порожнє значення?" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:364 +#, fuzzy +#| msgid "Move Custom Field" +msgid "Save Custom" +msgstr "Перемістити поле" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:376 +#: includes/fields/class-acf-field-select.php:378 +msgid "Enter each default value on a new line" +msgstr "Введіть значення. Одне значення в одному рядку" + +#: includes/fields/class-acf-field-checkbox.php:398 +msgid "Toggle" +msgstr "" + +#: includes/fields/class-acf-field-checkbox.php:399 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "Вибір кольору" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "Очистити" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "Значення за замовчуванням" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "Обрати колір" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "Поточна колір" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "Вибір дати" + +#: includes/fields/class-acf-field-date_picker.php:33 +#, fuzzy +#| msgid "Done" +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "Готово" + +#: includes/fields/class-acf-field-date_picker.php:34 +#, fuzzy +#| msgid "Today" +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "Сьогодні" + +#: includes/fields/class-acf-field-date_picker.php:35 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:36 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:37 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:207 +#: includes/fields/class-acf-field-date_time_picker.php:181 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "Формат показу" + +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:182 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:216 +#: includes/fields/class-acf-field-date_picker.php:247 +#: includes/fields/class-acf-field-date_time_picker.php:191 +#: includes/fields/class-acf-field-date_time_picker.php:208 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +#, fuzzy +#| msgid "Custom Fields" +msgid "Custom:" +msgstr "Додаткові поля" + +#: includes/fields/class-acf-field-date_picker.php:226 +msgid "Save Format" +msgstr "Зберегти формат" + +#: includes/fields/class-acf-field-date_picker.php:227 +msgid "The format used when saving a value" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:237 +#: includes/fields/class-acf-field-date_time_picker.php:198 +#: includes/fields/class-acf-field-post_object.php:432 +#: includes/fields/class-acf-field-relationship.php:697 +#: includes/fields/class-acf-field-select.php:426 +#: includes/fields/class-acf-field-time_picker.php:124 +msgid "Return Format" +msgstr "Формат повернення" + +#: includes/fields/class-acf-field-date_picker.php:238 +#: includes/fields/class-acf-field-date_time_picker.php:199 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "" + +#: includes/fields/class-acf-field-date_picker.php:256 +#: includes/fields/class-acf-field-date_time_picker.php:215 +msgid "Week Starts On" +msgstr "Тиждень починається з" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +msgid "Date Time Picker" +msgstr "Вибір дати і часу" + +#: includes/fields/class-acf-field-date_time_picker.php:33 +#, fuzzy +#| msgid "Close Field" +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "Закрити поле" + +#: includes/fields/class-acf-field-date_time_picker.php:34 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:35 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:36 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:37 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:38 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:39 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:40 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:41 +#, fuzzy +#| msgid "No" +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "Ні" + +#: includes/fields/class-acf-field-date_time_picker.php:42 +#, fuzzy +#| msgid "Done" +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "Готово" + +#: includes/fields/class-acf-field-date_time_picker.php:43 +#, fuzzy +#| msgid "Select File" +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "Оберіть файл" + +#: includes/fields/class-acf-field-date_time_picker.php:45 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:46 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:49 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "" + +#: includes/fields/class-acf-field-date_time_picker.php:50 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:128 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:129 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "Показується, якщо поле порожнє" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:187 +#: includes/fields/class-acf-field-text.php:137 +msgid "Prepend" +msgstr "Перед полем" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:188 +#: includes/fields/class-acf-field-text.php:138 +msgid "Appears before the input" +msgstr "Розміщується на початку поля" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:196 +#: includes/fields/class-acf-field-text.php:146 +msgid "Append" +msgstr "Після поля" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:197 +#: includes/fields/class-acf-field-text.php:147 +msgid "Appears after the input" +msgstr "Розміщується в кінці поля" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "Файл" + +#: includes/fields/class-acf-field-file.php:36 +msgid "Edit File" +msgstr "Редагувати файл" + +#: includes/fields/class-acf-field-file.php:37 +msgid "Update File" +msgstr "Оновити файл" + +#: includes/fields/class-acf-field-file.php:38 +#: includes/fields/class-acf-field-image.php:43 includes/media.php:57 +#: pro/fields/class-acf-field-gallery.php:44 +msgid "Uploaded to this post" +msgstr "Завантажено до цього матеріалу" + +#: includes/fields/class-acf-field-file.php:126 +msgid "File name" +msgstr "Назва файлу" + +#: includes/fields/class-acf-field-file.php:130 +#: includes/fields/class-acf-field-file.php:233 +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:248 +#: includes/fields/class-acf-field-image.php:277 +#: pro/fields/class-acf-field-gallery.php:690 +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "Розмір файлу" + +#: includes/fields/class-acf-field-file.php:139 +#: includes/fields/class-acf-field-image.php:124 +#: includes/fields/class-acf-field-link.php:140 includes/input.php:269 +#: pro/fields/class-acf-field-gallery.php:343 +#: pro/fields/class-acf-field-gallery.php:531 +msgid "Remove" +msgstr "Видалити" + +#: includes/fields/class-acf-field-file.php:155 +msgid "Add File" +msgstr "Додати файл" + +#: includes/fields/class-acf-field-file.php:206 +msgid "File Array" +msgstr "Масив файлу" + +#: includes/fields/class-acf-field-file.php:207 +msgid "File URL" +msgstr "URL файлу" + +#: includes/fields/class-acf-field-file.php:208 +msgid "File ID" +msgstr "ID файлу" + +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-image.php:213 +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Library" +msgstr "Бібліотека" + +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-image.php:214 +#: pro/fields/class-acf-field-gallery.php:656 +msgid "Limit the media library choice" +msgstr "" + +#: includes/fields/class-acf-field-file.php:221 +#: includes/fields/class-acf-field-image.php:219 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:87 +#: includes/locations/class-acf-location-user-role.php:111 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:661 +msgid "All" +msgstr "Все" + +#: includes/fields/class-acf-field-file.php:222 +#: includes/fields/class-acf-field-image.php:220 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Uploaded to post" +msgstr "Завантажено до матеріалу" + +#: includes/fields/class-acf-field-file.php:229 +#: includes/fields/class-acf-field-image.php:227 +#: pro/fields/class-acf-field-gallery.php:669 +msgid "Minimum" +msgstr "Мінімум" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-file.php:241 +msgid "Restrict which files can be uploaded" +msgstr "" + +#: includes/fields/class-acf-field-file.php:240 +#: includes/fields/class-acf-field-image.php:256 +#: pro/fields/class-acf-field-gallery.php:698 +msgid "Maximum" +msgstr "Максимум" + +#: includes/fields/class-acf-field-file.php:251 +#: includes/fields/class-acf-field-image.php:285 +#: pro/fields/class-acf-field-gallery.php:727 +msgid "Allowed file types" +msgstr "Дозволені типи файлів" + +#: includes/fields/class-acf-field-file.php:252 +#: includes/fields/class-acf-field-image.php:286 +#: pro/fields/class-acf-field-gallery.php:728 +msgid "Comma separated list. Leave blank for all types" +msgstr "" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Google карта" + +#: includes/fields/class-acf-field-google-map.php:40 +msgid "Locating" +msgstr "Розміщення" + +#: includes/fields/class-acf-field-google-map.php:41 +msgid "Sorry, this browser does not support geolocation" +msgstr "Вибачте, цей браузер не підтримує автоматичне визначення локації" + +#: includes/fields/class-acf-field-google-map.php:113 +msgid "Clear location" +msgstr "Очистити розміщення" + +#: includes/fields/class-acf-field-google-map.php:114 +msgid "Find current location" +msgstr "" + +#: includes/fields/class-acf-field-google-map.php:117 +msgid "Search for address..." +msgstr "Шукати адресу..." + +#: includes/fields/class-acf-field-google-map.php:147 +#: includes/fields/class-acf-field-google-map.php:158 +msgid "Center" +msgstr "Центрування" + +#: includes/fields/class-acf-field-google-map.php:148 +#: includes/fields/class-acf-field-google-map.php:159 +msgid "Center the initial map" +msgstr "Початкове розміщення карти" + +#: includes/fields/class-acf-field-google-map.php:170 +msgid "Zoom" +msgstr "Збільшення" + +#: includes/fields/class-acf-field-google-map.php:171 +msgid "Set the initial zoom level" +msgstr "Вкажіть початковий масштаб" + +#: includes/fields/class-acf-field-google-map.php:180 +#: includes/fields/class-acf-field-image.php:239 +#: includes/fields/class-acf-field-image.php:268 +#: includes/fields/class-acf-field-oembed.php:281 +#: pro/fields/class-acf-field-gallery.php:681 +#: pro/fields/class-acf-field-gallery.php:710 +msgid "Height" +msgstr "Висота" + +#: includes/fields/class-acf-field-google-map.php:181 +msgid "Customise the map height" +msgstr "Налаштуйте висоту карти" + +#: includes/fields/class-acf-field-group.php:25 +msgid "Group" +msgstr "Група" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:389 +msgid "Sub Fields" +msgstr "Дочірні поля" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:840 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:845 +#: pro/fields/class-acf-field-flexible-content.php:612 +#: pro/fields/class-acf-field-repeater.php:458 +msgid "Block" +msgstr "Блок" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:846 +#: pro/fields/class-acf-field-flexible-content.php:611 +#: pro/fields/class-acf-field-repeater.php:457 +msgid "Table" +msgstr "Таблиця" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:847 +#: pro/fields/class-acf-field-flexible-content.php:613 +#: pro/fields/class-acf-field-repeater.php:459 +msgid "Row" +msgstr "Рядок" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "Зображення" + +#: includes/fields/class-acf-field-image.php:40 +msgid "Select Image" +msgstr "Обрати зображення" + +#: includes/fields/class-acf-field-image.php:41 +#: pro/fields/class-acf-field-gallery.php:42 +msgid "Edit Image" +msgstr "Редагувати зображення" + +#: includes/fields/class-acf-field-image.php:42 +#: pro/fields/class-acf-field-gallery.php:43 +msgid "Update Image" +msgstr "Оновити зображення" + +#: includes/fields/class-acf-field-image.php:44 +msgid "All images" +msgstr "Усі зображення" + +#: includes/fields/class-acf-field-image.php:140 +msgid "No image selected" +msgstr "Зображення не обрано" + +#: includes/fields/class-acf-field-image.php:140 +msgid "Add Image" +msgstr "Додати зображення" + +#: includes/fields/class-acf-field-image.php:194 +msgid "Image Array" +msgstr "Масив зображення" + +#: includes/fields/class-acf-field-image.php:195 +msgid "Image URL" +msgstr "URL зображення" + +#: includes/fields/class-acf-field-image.php:196 +msgid "Image ID" +msgstr "ID зображення" + +#: includes/fields/class-acf-field-image.php:203 +msgid "Preview Size" +msgstr "Розмір мініатюр" + +#: includes/fields/class-acf-field-image.php:204 +msgid "Shown when entering data" +msgstr "" + +#: includes/fields/class-acf-field-image.php:228 +#: includes/fields/class-acf-field-image.php:257 +#: pro/fields/class-acf-field-gallery.php:670 +#: pro/fields/class-acf-field-gallery.php:699 +msgid "Restrict which images can be uploaded" +msgstr "" + +#: includes/fields/class-acf-field-image.php:231 +#: includes/fields/class-acf-field-image.php:260 +#: includes/fields/class-acf-field-oembed.php:270 +#: pro/fields/class-acf-field-gallery.php:673 +#: pro/fields/class-acf-field-gallery.php:702 +msgid "Width" +msgstr "Ширина" + +#: includes/fields/class-acf-field-link.php:25 +msgid "Link" +msgstr "Посилання" + +#: includes/fields/class-acf-field-link.php:133 +msgid "Select Link" +msgstr "Оберіть посилання" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "Масив посилання" + +#: includes/fields/class-acf-field-link.php:173 +msgid "Link URL" +msgstr "URL посилання" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "Повідомлення" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "Перенесення рядків" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "Вкажіть спосіб обробки нових рядків" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "Автоматично додавати абзаци" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "Автоматичне перенесення рядків (додається теґ <br>)" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "Без форматування" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +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-number.php:25 +msgid "Number" +msgstr "Число" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:157 +msgid "Minimum Value" +msgstr "Мінімальне значення" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:167 +msgid "Maximum Value" +msgstr "Максимальне значення" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:177 +msgid "Step Size" +msgstr "Розмір кроку" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "Значення має бути числом" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "" + +#: includes/fields/class-acf-field-number.php:245 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "" + +#: includes/fields/class-acf-field-oembed.php:219 +msgid "Enter URL" +msgstr "Введіть URL" + +#: includes/fields/class-acf-field-oembed.php:234 +#: includes/fields/class-acf-field-taxonomy.php:898 +msgid "Error." +msgstr "Помилка." + +#: includes/fields/class-acf-field-oembed.php:234 +msgid "No embed found for the given URL." +msgstr "" + +#: includes/fields/class-acf-field-oembed.php:267 +#: includes/fields/class-acf-field-oembed.php:278 +msgid "Embed Size" +msgstr "Розмір вставки" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "Архіви" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:384 +#: includes/fields/class-acf-field-relationship.php:623 +msgid "Filter by Post Type" +msgstr "Фільтр за типом матеріалу" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:392 +#: includes/fields/class-acf-field-relationship.php:631 +msgid "All post types" +msgstr "Всі типи матеріалів" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:398 +#: includes/fields/class-acf-field-relationship.php:637 +msgid "Filter by Taxonomy" +msgstr "Фільтр за типом таксономією" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:406 +#: includes/fields/class-acf-field-relationship.php:645 +msgid "All taxonomies" +msgstr "Всі таксономії" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:422 +#: includes/fields/class-acf-field-select.php:396 +#: includes/fields/class-acf-field-user.php:418 +msgid "Select multiple values?" +msgstr "Дозволити множинний вибір?" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "Пароль" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:702 +msgid "Post Object" +msgstr "" + +#: includes/fields/class-acf-field-post_object.php:438 +#: includes/fields/class-acf-field-relationship.php:703 +msgid "Post ID" +msgstr "ID публікації" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "Інше" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "Додати вибір 'Інше', для користувацьких значень" + +#: includes/fields/class-acf-field-radio.php:265 +#, fuzzy +msgid "Save Other" +msgstr "Зберегти інше" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "Діапазон (Range)" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:37 +msgid "Minimum values reached ( {min} values )" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:38 +msgid "Maximum values reached ( {max} values )" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:39 +msgid "Loading" +msgstr "Завантаження" + +#: includes/fields/class-acf-field-relationship.php:40 +msgid "No matches found" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:423 +msgid "Select post type" +msgstr "Вибір типу матеріалу" + +#: includes/fields/class-acf-field-relationship.php:449 +msgid "Select taxonomy" +msgstr "Вибір таксономії" + +#: includes/fields/class-acf-field-relationship.php:539 +msgid "Search..." +msgstr "Шукати..." + +#: includes/fields/class-acf-field-relationship.php:651 +msgid "Filters" +msgstr "Фільтри" + +#: includes/fields/class-acf-field-relationship.php:657 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "Тип матеріалу" + +#: includes/fields/class-acf-field-relationship.php:658 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:763 +msgid "Taxonomy" +msgstr "Таксономія" + +#: includes/fields/class-acf-field-relationship.php:665 +msgid "Elements" +msgstr "Елементи" + +#: includes/fields/class-acf-field-relationship.php:666 +msgid "Selected elements will be displayed in each result" +msgstr "" + +#: includes/fields/class-acf-field-relationship.php:677 +msgid "Minimum posts" +msgstr "Мінімум матеріалів" + +#: includes/fields/class-acf-field-relationship.php:686 +msgid "Maximum posts" +msgstr "Максимум матеріалів" + +#: includes/fields/class-acf-field-relationship.php:790 +#: pro/fields/class-acf-field-gallery.php:800 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:785 +#, fuzzy +#| msgid "Select File" +msgctxt "noun" +msgid "Select" +msgstr "Оберіть файл" + +#: includes/fields/class-acf-field-select.php:38 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "" + +#: includes/fields/class-acf-field-select.php:39 +#, php-format +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:40 +#, fuzzy +#| msgid "No Fields found" +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "Не знайдено полів" + +#: includes/fields/class-acf-field-select.php:41 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:42 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:43 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "" + +#: includes/fields/class-acf-field-select.php:44 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "" + +#: includes/fields/class-acf-field-select.php:45 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "" + +#: includes/fields/class-acf-field-select.php:46 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "" + +#: includes/fields/class-acf-field-select.php:47 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "" + +#: includes/fields/class-acf-field-select.php:48 +#, fuzzy +#| msgid "Search Fields" +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "Шукати поля" + +#: includes/fields/class-acf-field-select.php:49 +#, fuzzy +#| msgid "Loading" +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "Завантаження" + +#: includes/fields/class-acf-field-select.php:255 includes/media.php:54 +#, fuzzy +#| msgid "Select File" +msgctxt "verb" +msgid "Select" +msgstr "Оберіть файл" + +#: includes/fields/class-acf-field-select.php:406 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "Покращений стиль" + +#: includes/fields/class-acf-field-select.php:416 +msgid "Use AJAX to lazy load choices?" +msgstr "Використати AJAX для завантаження значень?" + +#: includes/fields/class-acf-field-select.php:427 +msgid "Specify the value returned" +msgstr "" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "Розділювач" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "Вкладка" + +#: includes/fields/class-acf-field-tab.php:82 +msgid "" +"The tab field will display incorrectly when added to a Table style repeater " +"field or flexible content field layout" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:83 +msgid "" +"Use \"Tab Fields\" to better organize your edit screen by grouping fields " +"together." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:84 +msgid "" +"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." +msgstr "" + +#: includes/fields/class-acf-field-tab.php:98 +msgid "Placement" +msgstr "Розміщення" + +#: includes/fields/class-acf-field-tab.php:110 +msgid "End-point" +msgstr "" + +#: includes/fields/class-acf-field-tab.php:111 +msgid "Use this field as an end-point and start a new group of tabs" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:713 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:732 +msgid "None" +msgstr "Нічого" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Select the taxonomy to be displayed" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:773 +msgid "Appearance" +msgstr "Вигляд" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Select the appearance of this field" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:779 +msgid "Multiple Values" +msgstr "Множинний вибір" + +#: includes/fields/class-acf-field-taxonomy.php:781 +msgid "Multi Select" +msgstr "Множинний вибір" + +#: includes/fields/class-acf-field-taxonomy.php:783 +msgid "Single Value" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:784 +msgid "Radio Buttons" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:803 +msgid "Create Terms" +msgstr "Створити терміни" + +#: includes/fields/class-acf-field-taxonomy.php:804 +msgid "Allow new terms to be created whilst editing" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:813 +msgid "Save Terms" +msgstr "Зберегти терміни" + +#: includes/fields/class-acf-field-taxonomy.php:814 +msgid "Connect selected terms to the post" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:823 +msgid "Load Terms" +msgstr "Завантажити терміни" + +#: includes/fields/class-acf-field-taxonomy.php:824 +msgid "Load value from posts terms" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:838 +msgid "Term Object" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:839 +msgid "Term ID" +msgstr "ID терміну" + +#: includes/fields/class-acf-field-taxonomy.php:898 +#, php-format +msgid "User unable to add new %s" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:911 +#, php-format +msgid "%s already exists" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:952 +#, php-format +msgid "%s added" +msgstr "" + +#: includes/fields/class-acf-field-taxonomy.php:997 +msgid "Add" +msgstr "Додати" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-text.php:155 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "Ліміт символів" + +#: includes/fields/class-acf-field-text.php:156 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "Щоб зняти обмеження — нічого не вказуйте тут" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "Область тексту" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "Рядки" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "Вкажіть висоту текстового блоку" + +#: includes/fields/class-acf-field-time_picker.php:25 +msgid "Time Picker" +msgstr "Вибір часу" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "Так / Ні" + +#: includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "Так" + +#: includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "Ні" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:155 +#, fuzzy +#| msgid "Text" +msgid "On Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "" + +#: includes/fields/class-acf-field-true_false.php:165 +#, fuzzy +#| msgid "Text" +msgid "Off Text" +msgstr "Текст" + +#: includes/fields/class-acf-field-true_false.php:166 +msgid "Text shown when inactive" +msgstr "" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "Значення має бути адресою URl" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "Користувач" + +#: includes/fields/class-acf-field-user.php:393 +msgid "Filter by role" +msgstr "Фільтр за ролями" + +#: includes/fields/class-acf-field-user.php:401 +msgid "All user roles" +msgstr "Всі ролі користувачів" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "Візуальний редактор" + +#: includes/fields/class-acf-field-wysiwyg.php:359 +msgid "Visual" +msgstr "Візуальний" + +#: includes/fields/class-acf-field-wysiwyg.php:360 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:366 +msgid "Click to initialize TinyMCE" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Tabs" +msgstr "Вкладки" + +#: includes/fields/class-acf-field-wysiwyg.php:424 +msgid "Visual & Text" +msgstr "Візуальний і Текстовий" + +#: includes/fields/class-acf-field-wysiwyg.php:425 +msgid "Visual Only" +msgstr "Візуальний лише" + +#: includes/fields/class-acf-field-wysiwyg.php:426 +msgid "Text Only" +msgstr "Лише текст" + +#: includes/fields/class-acf-field-wysiwyg.php:433 +msgid "Toolbar" +msgstr "Панель інструментів" + +#: includes/fields/class-acf-field-wysiwyg.php:443 +msgid "Show Media Upload Buttons?" +msgstr "Показувати кнопки завантаження файлів?" + +#: includes/fields/class-acf-field-wysiwyg.php:453 +msgid "Delay initialization?" +msgstr "" + +#: includes/fields/class-acf-field-wysiwyg.php:454 +msgid "TinyMCE will not be initalized until field is clicked" +msgstr "" + +#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303 +#: pro/admin/admin-options-page.php:308 +msgid "Edit field group" +msgstr "Редагувати групу полів" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "" + +#: includes/forms/form-front.php:103 +#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81 +msgid "Update" +msgstr "Оновити" + +#: includes/forms/form-front.php:104 +msgid "Post updated" +msgstr "Матеріал оновлено" + +#: includes/forms/form-front.php:229 +msgid "Spam Detected" +msgstr "" + +#: includes/input.php:259 +msgid "Expand Details" +msgstr "Показати деталі" + +#: includes/input.php:260 +msgid "Collapse Details" +msgstr "Сховати деталі" + +#: includes/input.php:261 +msgid "Validation successful" +msgstr "" + +#: includes/input.php:262 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "" + +#: includes/input.php:263 +msgid "1 field requires attention" +msgstr "" + +#: includes/input.php:264 +#, php-format +msgid "%d fields require attention" +msgstr "" + +#: includes/input.php:265 +msgid "Restricted" +msgstr "" + +#: includes/input.php:266 +msgid "Are you sure?" +msgstr "Ви впевнені?" + +#: includes/input.php:270 +msgid "Cancel" +msgstr "Скасувати" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "Публікація" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "Сторінка" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "Форми" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "Вкладення" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "Коментар" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "Поточна роль користувача" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "Головний адмін" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "Поточний користувач" + +#: includes/locations/class-acf-location-current-user.php:97 +#, fuzzy +msgid "Logged in" +msgstr "Роль залоґованого користувача" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "Елемент меню" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "Меню" + +#: includes/locations/class-acf-location-nav-menu.php:109 +msgid "Menu Locations" +msgstr "Розміщення меню" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "Меню" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "Батьківська сторінка" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "Шаблон сторінки" + +#: includes/locations/class-acf-location-page-template.php:98 +#: includes/locations/class-acf-location-post-template.php:151 +msgid "Default Template" +msgstr "Стандартний шаблон" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "Тип сторінки" + +#: includes/locations/class-acf-location-page-type.php:145 +msgid "Front Page" +msgstr "Головна сторінка" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Posts Page" +msgstr "Сторінка з публікаціями" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Top Level Page (no parent)" +msgstr "Верхній рівень сторінки (без батьків)" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Parent Page (has children)" +msgstr "Батьківська сторінка (має дочірні)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Child Page (has parent)" +msgstr "Дочірня сторінка (має батьківську)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "Категорія" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "Формат" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "Статус матеріалу" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "Таксономія" + +#: includes/locations/class-acf-location-post-template.php:27 +#, fuzzy +#| msgid "Page Template" +msgid "Post Template" +msgstr "Шаблон сторінки" + +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy Term" +msgstr "Термін таксономії" + +#: includes/locations/class-acf-location-user-form.php:27 +msgid "User Form" +msgstr "Форма користувача" + +#: includes/locations/class-acf-location-user-form.php:88 +msgid "Add / Edit" +msgstr "Додати / Редагувати" + +#: includes/locations/class-acf-location-user-form.php:89 +msgid "Register" +msgstr "Реєстрація" + +#: includes/locations/class-acf-location-user-role.php:27 +msgid "User Role" +msgstr "Роль користувача" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "Віджет" + +#: includes/media.php:55 +msgctxt "verb" +msgid "Edit" +msgstr "Редагувати" + +#: includes/media.php:56 +msgctxt "verb" +msgid "Update" +msgstr "Оновити" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Додаткові поля Pro" + +#: pro/admin/admin-options-page.php:200 +msgid "Publish" +msgstr "Опублікувати" + +#: pro/admin/admin-options-page.php:206 +#, php-format +msgid "" +"No Custom Field Groups found for this options page. Create a " +"Custom Field Group" +msgstr "" +"Немає полів для цієї сторінки опцій. Створити групу " +"додаткових полів" + +#: pro/admin/admin-settings-updates.php:78 +msgid "Error. Could not connect to update server" +msgstr "Помилка. Неможливо під’єднатися до сервера оновлення" + +#: pro/admin/admin-settings-updates.php:162 +#: pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "Оновлення" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "Деактивувати ліцензію" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "Активувати ліцензію" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "Інформація про ліцензію" + +#: pro/admin/views/html-settings-updates.php:20 +#, fuzzy, php-format +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:29 +msgid "License Key" +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:92 +msgid "Update Plugin" +msgstr "Оновити плаґін" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "Будь ласка, введіть код ліцензії, щоб розблокувати оновлення" + +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "Перевірити знову" + +#: pro/admin/views/html-settings-updates.php:117 +#, fuzzy +msgid "Upgrade Notice" +msgstr "Оновити базу даних" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "Клон" + +#: pro/fields/class-acf-field-clone.php:808 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:825 +msgid "Display" +msgstr "Таблиця" + +#: pro/fields/class-acf-field-clone.php:826 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:831 +#, 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:832 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:853 +#, php-format +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:856 +#, fuzzy +#| msgid "Field Label" +msgid "Prefix Field Labels" +msgstr "Назва поля" + +#: pro/fields/class-acf-field-clone.php:867 +#, php-format +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:870 +#, fuzzy +#| msgid "Field Name" +msgid "Prefix Field Names" +msgstr "Ярлик" + +#: pro/fields/class-acf-field-clone.php:988 +msgid "Unknown field" +msgstr "Невідоме поле" + +#: pro/fields/class-acf-field-clone.php:1027 +#, fuzzy +msgid "Unknown field group" +msgstr "Редагувати групу полів" + +#: pro/fields/class-acf-field-clone.php:1031 +#, php-format +msgid "All fields from %s field group" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:174 +#: pro/fields/class-acf-field-repeater.php:470 +msgid "Add Row" +msgstr "Додати рядок" + +#: pro/fields/class-acf-field-flexible-content.php:34 +#, fuzzy +msgid "layout" +msgstr "Шаблон структури" + +#: pro/fields/class-acf-field-flexible-content.php:35 +#, fuzzy +msgid "layouts" +msgstr "Шаблон структури" + +#: pro/fields/class-acf-field-flexible-content.php:36 +msgid "remove {layout}?" +msgstr "видалити {layout}?" + +#: pro/fields/class-acf-field-flexible-content.php:37 +msgid "This field requires at least {min} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:38 +msgid "This field has a limit of {max} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:39 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:40 +msgid "Maximum {label} limit reached ({max} {identifier})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:41 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:42 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:43 +msgid "Flexible Content requires at least 1 layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:273 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:406 +msgid "Add layout" +msgstr "Додати шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:407 +msgid "Remove layout" +msgstr "Видалити шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:408 +#: pro/fields/class-acf-field-repeater.php:298 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Reorder Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Reorder" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Delete Layout" +msgstr "Видалити шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Duplicate Layout" +msgstr "Дублювати шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Add New Layout" +msgstr "Додати новий шаблон" + +#: pro/fields/class-acf-field-flexible-content.php:628 +msgid "Min" +msgstr "Мін." + +#: pro/fields/class-acf-field-flexible-content.php:641 +msgid "Max" +msgstr "Макс." + +#: pro/fields/class-acf-field-flexible-content.php:668 +#: pro/fields/class-acf-field-repeater.php:466 +msgid "Button Label" +msgstr "Текст для кнопки" + +#: pro/fields/class-acf-field-flexible-content.php:677 +msgid "Minimum Layouts" +msgstr "Мінімум шаблонів" + +#: pro/fields/class-acf-field-flexible-content.php:686 +msgid "Maximum Layouts" +msgstr "Максимум шаблонів" + +#: pro/fields/class-acf-field-gallery.php:41 +msgid "Add Image to Gallery" +msgstr "Додати зображення до галереї" + +#: pro/fields/class-acf-field-gallery.php:45 +#, fuzzy +msgid "Maximum selection reached" +msgstr "Досягнуто максимального вибору" + +#: pro/fields/class-acf-field-gallery.php:321 +msgid "Length" +msgstr "Довжина" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "Підпис" + +#: pro/fields/class-acf-field-gallery.php:373 +msgid "Alt Text" +msgstr "Альтернативний текст" + +#: pro/fields/class-acf-field-gallery.php:544 +msgid "Add to gallery" +msgstr "Додати до галереї" + +#: pro/fields/class-acf-field-gallery.php:548 +msgid "Bulk actions" +msgstr "Масові дії" + +#: pro/fields/class-acf-field-gallery.php:549 +msgid "Sort by date uploaded" +msgstr "Сортувати за датою завантаження" + +#: pro/fields/class-acf-field-gallery.php:550 +msgid "Sort by date modified" +msgstr "Сортувати за датою зміни" + +#: pro/fields/class-acf-field-gallery.php:551 +msgid "Sort by title" +msgstr "Сортувати за назвою" + +#: pro/fields/class-acf-field-gallery.php:552 +msgid "Reverse current order" +msgstr "Зворотній поточний порядок" + +#: pro/fields/class-acf-field-gallery.php:570 +msgid "Close" +msgstr "Закрити" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Minimum Selection" +msgstr "Мінімальна вибірка" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Maximum Selection" +msgstr "Максимальна вибірка" + +#: pro/fields/class-acf-field-gallery.php:642 +msgid "Insert" +msgstr "Вставити" + +#: pro/fields/class-acf-field-gallery.php:643 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:647 +msgid "Append to the end" +msgstr "Розміщується в кінці" + +#: pro/fields/class-acf-field-gallery.php:648 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:36 +msgid "Minimum rows reached ({min} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:37 +msgid "Maximum rows reached ({max} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:343 +msgid "Add row" +msgstr "Додати рядок" + +#: pro/fields/class-acf-field-repeater.php:344 +msgid "Remove row" +msgstr "Видалити рядок" + +#: pro/fields/class-acf-field-repeater.php:419 +#, fuzzy +#| msgid "Collapse Details" +msgid "Collapsed" +msgstr "Сховати деталі" + +#: pro/fields/class-acf-field-repeater.php:420 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:430 +msgid "Minimum Rows" +msgstr "Мінімум рядків" + +#: pro/fields/class-acf-field-repeater.php:440 +msgid "Maximum Rows" +msgstr "Максимум рядків" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "Опції" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "Опції оновлено" + +#: pro/updates.php:97 +#, fuzzy, php-format +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 "" +"Щоб розблокувати оновлення, будь ласка, введіть код ліцензії. Якщо не маєте " +"ліцензії, перегляньте" + +#. Plugin URI of the plugin/theme +msgid "https://www.advancedcustomfields.com/" +msgstr "" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://www.elliotcondon.com/" +msgstr "" + +#~ msgid "See what's new in" +#~ msgstr "Перегляньте, що нового у" + +#~ msgid "version" +#~ msgstr "версії" + +#~ msgid "Getting Started" +#~ msgstr "Початок роботи" + +#~ msgid "Field Types" +#~ msgstr "Типи полів" + +#~ msgid "Functions" +#~ msgstr "Функції" + +#~ msgid "Actions" +#~ msgstr "Дії" + +#~ msgid "'How to' guides" +#~ msgstr "Інструкції «як зробити»" + +#~ msgid "Tutorials" +#~ msgstr "Документація" + +#~ msgid "Created by" +#~ msgstr "Плаґін створив" + +#~ msgid "Upgrade" +#~ msgstr "Оновити" + +#~ msgid "Error" +#~ msgstr "Помилка" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "Поля можна перетягувати" + +#~ msgid "See what's new" +#~ msgstr "Перегляньте, що нового" + +#~ msgid "Show a different month" +#~ msgstr "Показати інший місяць" + +#~ msgid "Return format" +#~ msgstr "Формат повернення" + +#~ msgid "uploaded to this post" +#~ msgstr "завантажено до цього матеріалу" + +#~ msgid "File Size" +#~ msgstr "Розмір файлу" + +#~ msgid "No File selected" +#~ msgstr "Файл не обрано" + +#~ msgid "Warning" +#~ msgstr "Застереження" + +#~ msgid "eg. Show extra content" +#~ msgstr "напр., Показати додаткові поля" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "Помилка з’єднання. Спробуйте знову" + +#~ msgid "Save Options" +#~ msgstr "Зберегти опції" + +#~ msgid "License" +#~ msgstr "Ліцензія" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "" +#~ "Щоб розблокувати оновлення, будь ласка, введіть код ліцензії. Якщо не " +#~ "маєте ліцензії, перегляньте" + +#~ msgid "details & pricing" +#~ msgstr "деталі і ціни" + +#~ msgid "Hide / Show All" +#~ msgstr "Сховати / Показати все" + +#~ msgid "Show Field Keys" +#~ msgstr "Показати ключі полів" + +#~ msgid "Pending Review" +#~ msgstr "Очікує затвердження" + +#~ msgid "Draft" +#~ msgstr "Чернетка" + +#~ msgid "Future" +#~ msgstr "Заплановано" + +#~ msgid "Private" +#~ msgstr "Приватний" + +#~ msgid "Revision" +#~ msgstr "Ревізія" + +#~ msgid "Trash" +#~ msgstr "В кошику" + +#~ msgid "Import / Export" +#~ msgstr "Імпорт / Експорт" + +#, fuzzy +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "Чим меше число
                              тим вище розміщення" + +#, fuzzy +#~ msgid "ACF PRO Required" +#~ msgstr "Обов’язкове?" + +#~ msgid "Update Database" +#~ msgstr "Оновити базу даних" + +#~ msgid "Data Upgrade" +#~ msgstr "Дані оновлено" + +#~ msgid "Data upgraded successfully." +#~ msgstr "Дані успішно оновлено." + +#~ msgid "Data is at the latest version." +#~ msgstr "Дані останньої версії." + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "Завантажити і зберегти значення до матеріалу" + +#, fuzzy +#~ msgid "image" +#~ msgstr "Зображення" + +#, fuzzy +#~ msgid "expand_details" +#~ msgstr "Показати деталі" + +#, fuzzy +#~ msgid "collapse_details" +#~ msgstr "Сховати деталі" + +#, fuzzy +#~ msgid "relationship" +#~ msgstr "Закрити поле" + +#, fuzzy +#~ msgid "title_is_required" +#~ msgstr "Заголовок обов’язковий" + +#, fuzzy +#~ msgid "move_field" +#~ msgstr "Перемістити поле" + +#, fuzzy +#~ msgid "flexible_content" +#~ msgstr "Гнучкий вміст" + +#, fuzzy +#~ msgid "gallery" +#~ msgstr "Галерея" + +#, fuzzy +#~ msgid "Controls how HTML tags are rendered" +#~ msgstr "Вкажіть спосіб обробки нових рядків" + +#~ msgid "Field Groups" +#~ msgstr "Групи полів" + +#~ msgid "Attachment Details" +#~ msgstr "Деталі вкладення" + +#~ msgid "Custom field updated." +#~ msgstr "Додаткове поле оновлено." + +#~ msgid "Custom field deleted." +#~ msgstr "Додаткове поле видалено." + +#~ msgid "Import/Export" +#~ msgstr "Імпорт/Експорт" + +#~ msgid "Column Width" +#~ msgstr "Ширина колонки" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "Заповніть всі поля! Одне або декілька полів нижче не заповнено." + +#~ msgid "Success" +#~ msgstr "Готово" + +#~ msgid "Run the updater" +#~ msgstr "Запустити оновлення" + +#~ msgid "Return to custom fields" +#~ msgstr "Повернутися до додаткових полів" + +#~ msgid "Size" +#~ msgstr "Розмір" + +#~ msgid "Formatting" +#~ msgstr "Форматування" + +#~ msgid "Effects value on front end" +#~ msgstr "Як показувати на сайті" + +#~ msgid "Convert HTML into tags" +#~ msgstr "Конвертувати в теґи HTML" + +#~ msgid "Plain text" +#~ msgstr "Простий текст" + +#~ msgid "1 image selected" +#~ msgstr "1 обране зображення" + +#~ msgid "%d images selected" +#~ msgstr "%d вибраних зображень" + +#~ msgid "Normal" +#~ msgstr "Стандартно" + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "" +#~ "В документації ви знайдете детальний опис функцій та декілька порад і " +#~ "трюків для кращого використання плаґіну." + +#~ msgid "Visit the ACF website" +#~ msgstr "Відвідайте сайт плаґіну" + +#~ msgid "Gallery Field" +#~ msgstr "Поле галереї" + +#~ msgid "Export XML" +#~ msgstr "Експортувати XML" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "Скопіюйте згенерований код PHP" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "Вставте у functions.php" + +#~ msgid "Create PHP" +#~ msgstr "Створити PHP" + +#~ msgid "Back to settings" +#~ msgstr "Повернутися до налаштувань" + +#~ msgid "requires a database upgrade" +#~ msgstr "потребує оновлення бази даних" + +#~ msgid "why?" +#~ msgstr "для чого?" + +#~ msgid "Please" +#~ msgstr "Будь ласка," + +#~ msgid "backup your database" +#~ msgstr "створіть резервну копію БД" + +#~ msgid "then click" +#~ msgstr "і натискайте цю кнопку" + +#~ msgid "Red" +#~ msgstr "Червоний" + +#~ msgid "Blue" +#~ msgstr "Синій" + +#~ msgid "blue : Blue" +#~ msgstr "blue : Синій" + +#, fuzzy +#~ msgid "jQuery date formats" +#~ msgstr "Формат дати" + +#~ msgid "File Updated." +#~ msgstr "Файл оновлено." + +#~ msgid "+ Add Row" +#~ msgstr "+ Додати рядок" + +#~ msgid "Field Order" +#~ msgstr "Порядок полів" + +#, fuzzy +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "" +#~ "Ще немає полів. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." + +#~ msgid "Edit this Field" +#~ msgstr "Редагувати це поле" + +#~ msgid "Docs" +#~ msgstr "Документація" + +#~ msgid "Close Sub Field" +#~ msgstr "Закрити дочірнє поле" + +#~ msgid "+ Add Sub Field" +#~ msgstr "+ Додати дочірнє поле" + +#~ msgid "Image Updated" +#~ msgstr "Зображення оновлено" + +#~ msgid "Grid" +#~ msgstr "Плитка" + +#~ msgid "List" +#~ msgstr "Список" + +#~ msgid "Added" +#~ msgstr "Додано" + +#~ msgid "Image Updated." +#~ msgstr "Зображення оновлено." + +#~ msgid "Add selected Images" +#~ msgstr "Додати обрані зображення" + +#~ msgid "Field Instructions" +#~ msgstr "Опис поля" + +#~ msgid "Table (default)" +#~ msgstr "Таблиця (за замовчуванням)" + +#~ msgid "Define how to render html tags" +#~ msgstr "Оберіть спосіб обробки теґів html" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "Оберіть спосіб обробки теґів html та переносу рядків" + +#~ msgid "Run filter \"the_content\"?" +#~ msgstr "Застосовувати фільтр «the_content»?" + +#~ msgid "Page Specific" +#~ msgstr "Сторінки" + +#~ msgid "Post Specific" +#~ msgstr "Публікації" + +#~ msgid "Taxonomy (Add / Edit)" +#~ msgstr "Тип таксономії (Додати / Редагувати)" + +#~ msgid "Media (Edit)" +#~ msgstr "Медіафайл (Редагувати)" + +#~ msgid "match" +#~ msgstr "має співпадати" + +#~ msgid "all" +#~ msgstr "все" + +#~ msgid "of the above" +#~ msgstr "з вищевказаних умов" + +#~ msgid "Add Fields to Edit Screens" +#~ msgstr "Додайте поля на сторінку редагування вмісту" + +#, fuzzy +#~ msgid "eg. dd/mm/yy. read more about" +#~ msgstr "Напр. dd/mm/yy. read more about" diff --git a/lang/pro/acf-zh_CN.po b/lang/pro/acf-zh_CN.po new file mode 100644 index 0000000..4295103 --- /dev/null +++ b/lang/pro/acf-zh_CN.po @@ -0,0 +1,3101 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro\n" +"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2022-08-03 11:47+0000\n" +"PO-Revision-Date: 2022-08-03 13:18+0100\n" +"Last-Translator: Delicious Brains \n" +"Language-Team: Amos Lee <470266798@qq.com>\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields 专业版" + +#: pro/blocks.php:166 +msgid "Block type name is required." +msgstr "" + +#: pro/blocks.php:173 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:731 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:732 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:733 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:736 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:949 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:955 +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:523 +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 "" + +#: 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, pro/admin/views/html-settings-updates.php:117 +msgid "Check Again" +msgstr "重新检查" + +#: pro/updates.php:561 +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:209 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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:814 +msgid "Fields" +msgstr "字段" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "显示" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:850, +#: pro/fields/class-acf-field-flexible-content.php:549, +#: pro/fields/class-acf-field-flexible-content.php:604, +#: pro/fields/class-acf-field-repeater.php:211 +msgid "Layout" +msgstr "样式" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:856, +#: pro/fields/class-acf-field-flexible-content.php:617, +#: pro/fields/class-acf-field-repeater.php:219, +#: pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "区块" + +#: pro/fields/class-acf-field-clone.php:857, +#: pro/fields/class-acf-field-flexible-content.php:616, +#: pro/fields/class-acf-field-repeater.php:218 +msgid "Table" +msgstr "表" + +#: pro/fields/class-acf-field-clone.php:858, +#: pro/fields/class-acf-field-flexible-content.php:618, +#: pro/fields/class-acf-field-repeater.php:220 +msgid "Row" +msgstr "行" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:880 +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:885 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "(无标题)" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1042 +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:31, +#: pro/fields/class-acf-field-repeater.php:79, +#: pro/fields/class-acf-field-repeater.php:263 +msgid "Add Row" +msgstr "添加行" + +#: pro/fields/class-acf-field-flexible-content.php:71, +#: pro/fields/class-acf-field-flexible-content.php:917, +#: pro/fields/class-acf-field-flexible-content.php:996 +#, fuzzy +#| msgid "layout" +msgid "layout" +msgid_plural "layouts" +msgstr[0] "布局" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "布局" + +#: pro/fields/class-acf-field-flexible-content.php:75, +#: pro/fields/class-acf-field-flexible-content.php:916, +#: pro/fields/class-acf-field-flexible-content.php:995 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "这个字段需要至少 {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} 可用 (max {max})" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} 需要 (min {min})" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "灵活内容字段需要至少一个布局" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "点击下面的 \"%s\" 按钮创建布局" + +#: pro/fields/class-acf-field-flexible-content.php:410, +#: pro/fields/class-acf-repeater-table.php:354 +msgid "Drag to reorder" +msgstr "拖拽排序" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "添加布局" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "删除布局" + +#: pro/fields/class-acf-field-flexible-content.php:416, +#: pro/fields/class-acf-repeater-table.php:369 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "重排序布局" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "重排序" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "删除布局" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "删除" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "复制布局" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "复制" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "添加新布局" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "新建" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "标签" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "名称" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "最小" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "最大" + +#: pro/fields/class-acf-field-flexible-content.php:679, +#: pro/fields/class-acf-field-repeater.php:259 +msgid "Button Label" +msgstr "按钮标签" + +#: pro/fields/class-acf-field-flexible-content.php:690 +msgid "Minimum Layouts" +msgstr "最小布局" + +#: pro/fields/class-acf-field-flexible-content.php:701 +msgid "Maximum Layouts" +msgstr "最大布局" + +#: pro/fields/class-acf-field-flexible-content.php:1704, +#: pro/fields/class-acf-field-repeater.php:861 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1715 +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:1731 +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:73 +msgid "Add Image to Gallery" +msgstr "添加图片到相册" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "已到最大选择" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "长度" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "编辑" + +#: pro/fields/class-acf-field-gallery.php:336, +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "删除" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "标题" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "标题" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "描述" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "添加到相册" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "批量动作" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "按上传日期排序" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "按修改日期排序" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "按标题排序" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "颠倒当前排序" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "关闭" + +#: pro/fields/class-acf-field-gallery.php:573 +msgid "Return Format" +msgstr "返回格式" + +#: pro/fields/class-acf-field-gallery.php:579 +msgid "Image Array" +msgstr "图像数组" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Image URL" +msgstr "图像 URL" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Image ID" +msgstr "图像ID" + +#: pro/fields/class-acf-field-gallery.php:590 +msgid "Preview Size" +msgstr "预览图大小" + +#: pro/fields/class-acf-field-gallery.php:602 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:603 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:607 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:608 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:617 +msgid "Library" +msgstr "库" + +#: pro/fields/class-acf-field-gallery.php:618 +msgid "Limit the media library choice" +msgstr "限制媒体库的选择" + +#: pro/fields/class-acf-field-gallery.php:623, +#: pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "所有" + +#: pro/fields/class-acf-field-gallery.php:624 +msgid "Uploaded to post" +msgstr "上传到内容" + +#: pro/fields/class-acf-field-gallery.php:633 +msgid "Minimum Selection" +msgstr "最小选择" + +#: pro/fields/class-acf-field-gallery.php:644 +msgid "Maximum Selection" +msgstr "最大选择" + +#: pro/fields/class-acf-field-gallery.php:655 +msgid "Minimum" +msgstr "最小" + +#: pro/fields/class-acf-field-gallery.php:656, +#: pro/fields/class-acf-field-gallery.php:693 +msgid "Restrict which images can be uploaded" +msgstr "限制可以上传的图像" + +#: pro/fields/class-acf-field-gallery.php:659, +#: pro/fields/class-acf-field-gallery.php:696 +msgid "Width" +msgstr "宽度" + +#: pro/fields/class-acf-field-gallery.php:670, +#: pro/fields/class-acf-field-gallery.php:707 +msgid "Height" +msgstr "高度" + +#: pro/fields/class-acf-field-gallery.php:682, +#: pro/fields/class-acf-field-gallery.php:719 +msgid "File size" +msgstr "文件尺寸" + +#: pro/fields/class-acf-field-gallery.php:692 +msgid "Maximum" +msgstr "最大" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Allowed file types" +msgstr "允许的文字类型" + +#: pro/fields/class-acf-field-gallery.php:730 +msgid "Comma separated list. Leave blank for all types" +msgstr "用英文逗号分隔开,留空则为全部类型" + +#: pro/fields/class-acf-field-gallery.php:832 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" + +#: pro/fields/class-acf-field-repeater.php:22 +msgid "Repeater" +msgstr "重复器" + +#: pro/fields/class-acf-field-repeater.php:53, +#: pro/fields/class-acf-field-repeater.php:423 +msgid "Minimum rows reached ({min} rows)" +msgstr "已到最小行数 ({min} 行)" + +#: pro/fields/class-acf-field-repeater.php:54 +msgid "Maximum rows reached ({max} rows)" +msgstr "已到最大行数 ({max} 行)" + +#: pro/fields/class-acf-field-repeater.php:55 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:141 +msgid "Sub Fields" +msgstr "子字段" + +#: pro/fields/class-acf-field-repeater.php:174 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:175 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:187 +msgid "Minimum Rows" +msgstr "最小行数" + +#: pro/fields/class-acf-field-repeater.php:199 +msgid "Maximum Rows" +msgstr "最大行数" + +#: pro/fields/class-acf-field-repeater.php:228 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:229 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:240 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:945 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:959 +msgid "Invalid field key." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:968 +msgid "There was an error retrieving the field." +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:389 +msgid "Add row" +msgstr "添加行" + +#: pro/fields/class-acf-repeater-table.php:390 +msgid "Duplicate row" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:391 +msgid "Remove row" +msgstr "删除行" + +#: pro/fields/class-acf-repeater-table.php:435, +#: pro/fields/class-acf-repeater-table.php:452 +msgid "Current Page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:444 +msgid "First page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:448 +msgid "Previous page" +msgstr "" + +#. translators: 1: Current page, 2: Total pages. +#: pro/fields/class-acf-repeater-table.php:457 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:465 +msgid "Next page" +msgstr "" + +#: pro/fields/class-acf-repeater-table.php:469 +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:41 +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:76 +msgid "Update Information" +msgstr "更新信息" + +#: pro/admin/views/html-settings-updates.php:83 +msgid "Current Version" +msgstr "当前版本" + +#: pro/admin/views/html-settings-updates.php:91 +msgid "Latest Version" +msgstr "最新版本" + +#: pro/admin/views/html-settings-updates.php:99 +msgid "Update Available" +msgstr "可用更新" + +#: pro/admin/views/html-settings-updates.php:116 +msgid "No" +msgstr "否" + +#: pro/admin/views/html-settings-updates.php:104 +msgid "Yes" +msgstr "是" + +#: pro/admin/views/html-settings-updates.php:111 +msgid "Please enter your license key above to unlock updates" +msgstr "在上面输入许可证号解锁更新" + +#: pro/admin/views/html-settings-updates.php:109 +msgid "Update Plugin" +msgstr "更新插件" + +#: pro/admin/views/html-settings-updates.php:107 +msgid "Please reactivate your license to unlock updates" +msgstr "" + +#: pro/admin/views/html-settings-updates.php:124 +msgid "Changelog" +msgstr "更新日志" + +#: pro/admin/views/html-settings-updates.php:134 +msgid "Upgrade Notice" +msgstr "更新通知" + +#~ msgid "Advanced Custom Fields" +#~ msgstr "高级自定义字段" + +#~ msgid "Field Groups" +#~ msgstr "字段组" + +#~ msgid "Field Group" +#~ msgstr "字段组" + +#~ msgid "Add New Field Group" +#~ msgstr "添加字段组" + +#~ msgid "Edit Field Group" +#~ msgstr "编辑字段组" + +#~ msgid "New Field Group" +#~ msgstr "新建字段组" + +#~ msgid "View Field Group" +#~ msgstr "查看字段组" + +#~ msgid "Search Field Groups" +#~ msgstr "搜索字段组" + +#~ msgid "No Field Groups found" +#~ msgstr "没有找到字段组" + +#~ msgid "No Field Groups found in Trash" +#~ msgstr "回收站中没有找到字段组" + +#~ msgid "Field" +#~ msgstr "字段" + +#~ msgid "Add New Field" +#~ msgstr "添加新字段" + +#~ msgid "Edit Field" +#~ msgstr "编辑字段" + +#~ msgid "New Field" +#~ msgstr "新字段" + +#~ msgid "View Field" +#~ msgstr "新字段" + +#~ msgid "Search Fields" +#~ msgstr "搜索字段" + +#~ msgid "No Fields found" +#~ msgstr "没找到字段" + +#~ msgid "No Fields found in Trash" +#~ msgstr "回收站里没有字段" + +#~ msgid "Disabled" +#~ msgstr "禁用" + +#, php-format +#~ msgid "Disabled (%s)" +#~ msgid_plural "Disabled (%s)" +#~ msgstr[0] "禁用 (%s)" + +#~ msgid "Custom Fields" +#~ msgstr "字段" + +#~ msgid "Field group updated." +#~ msgstr "字段组已更新。" + +#~ msgid "Field group deleted." +#~ msgstr "字段组已删除。" + +#~ msgid "Field group published." +#~ msgstr "字段组已发布。" + +#~ msgid "Field group saved." +#~ msgstr "字段组已保存。" + +#~ msgid "Field group submitted." +#~ msgstr "字段组已提交。" + +#~ msgid "Field group scheduled for." +#~ msgstr "字段组已定时。" + +#~ msgid "Field group draft updated." +#~ msgstr "字段组草稿已更新。" + +#~ msgid "Move to trash. Are you sure?" +#~ msgstr "确定要删除吗?" + +#~ msgid "checked" +#~ msgstr "已选" + +#~ msgid "No toggle fields available" +#~ msgstr "没有可用的切换字段" + +#~ msgid "Field group title is required" +#~ msgstr "字段组的标题是必填项" + +#~ msgid "copy" +#~ msgstr "复制" + +#~ msgid "or" +#~ msgstr "或" + +#~ msgid "Parent fields" +#~ msgstr "父字段" + +#~ msgid "Sibling fields" +#~ msgstr "兄弟字段" + +#~ msgid "Move Custom Field" +#~ msgstr "移动自定义字段" + +#~ msgid "This field cannot be moved until its changes have been saved" +#~ msgstr "保存这个字段的修改以后才能移动这个字段" + +#~ msgid "Null" +#~ msgstr "Null" + +#~ msgid "" +#~ "The changes you made will be lost if you navigate away from this page" +#~ msgstr "如果浏览其它页面,会丢失当前所做的修改" + +#~ msgid "The string \"field_\" may not be used at the start of a field name" +#~ msgstr "\"field_\" 这个字符串不能作为字段名字的开始部分" + +#~ msgid "Location" +#~ msgstr "位置" + +#~ msgid "Settings" +#~ msgstr "设置" + +#~ msgid "Field Keys" +#~ msgstr "字段 Keys" + +#~ msgid "Active" +#~ msgstr "激活" + +#~ msgid "Front Page" +#~ msgstr "首页" + +#~ msgid "Posts Page" +#~ msgstr "文章页" + +#~ msgid "Top Level Page (no parent)" +#~ msgstr "顶级页面 (无父页面)" + +#~ msgid "Parent Page (has children)" +#~ msgstr "父页面(有子页)" + +#~ msgid "Child Page (has parent)" +#~ msgstr "子页面(有父页面)" + +#~ msgid "Default Template" +#~ msgstr "默认模板" + +#~ msgid "Logged in" +#~ msgstr "登录" + +#~ msgid "Viewing front end" +#~ msgstr "查看前端" + +#~ msgid "Viewing back end" +#~ msgstr "查看后端" + +#~ msgid "Super Admin" +#~ msgstr "超级管理员" + +#~ msgid "Add / Edit" +#~ msgstr "添加 / 编辑" + +#~ msgid "Register" +#~ msgstr "注册" + +#~ msgid "Move Complete." +#~ msgstr "移动完成。" + +#, php-format +#~ msgid "The %s field can now be found in the %s field group" +#~ msgstr "%s 字段现在会在 %s 字段组里" + +#~ msgid "Close Window" +#~ msgstr "关闭窗口" + +#~ msgid "Please select the destination for this field" +#~ msgstr "请选择这个字段的位置" + +#~ msgid "Move Field" +#~ msgstr "移动字段" + +#, php-format +#~ msgid "Active (%s)" +#~ msgid_plural "Active (%s)" +#~ msgstr[0] "启用 (%s)" + +#, php-format +#~ msgid "Field group duplicated. %s" +#~ msgstr "字段组已被复制。%s" + +#, php-format +#~ msgid "%s field group duplicated." +#~ msgid_plural "%s field groups duplicated." +#~ msgstr[0] "%s 字段组已被复制。" + +#, php-format +#~ msgid "Field group synchronised. %s" +#~ msgstr "字段组已同步。 %s" + +#, php-format +#~ msgid "%s field group synchronised." +#~ msgid_plural "%s field groups synchronised." +#~ msgstr[0] "%s 字段组已同步。" + +#~ msgid "Sync available" +#~ msgstr "有可用同步" + +#~ msgid "Status" +#~ msgstr "状态" + +#~ msgid "See what's new in" +#~ msgstr "查看更新内容于" + +#~ msgid "version" +#~ msgstr "版本" + +#~ msgid "Resources" +#~ msgstr "资源" + +#~ msgid "Getting Started" +#~ msgstr "起步" + +#~ msgid "Field Types" +#~ msgstr "字段类型" + +#~ msgid "Functions" +#~ msgstr "功能" + +#~ msgid "Actions" +#~ msgstr "操作" + +#~ msgid "Filters" +#~ msgstr "过滤器" + +#~ msgid "'How to' guides" +#~ msgstr "新手向导" + +#~ msgid "Tutorials" +#~ msgstr "教程" + +#~ msgid "Created by" +#~ msgstr "创建者" + +#~ msgid "Duplicate this item" +#~ msgstr "复制此项" + +#, php-format +#~ msgid "Select %s" +#~ msgstr "选择 %s" + +#~ msgid "Synchronise field group" +#~ msgstr "同步字段组" + +#~ msgid "Sync" +#~ msgstr "同步" + +#~ msgid "Add-ons" +#~ msgstr "附加功能" + +#~ msgid "Error. Could not load add-ons list" +#~ msgstr "错误,无法加载扩展列表" + +#~ msgid "Info" +#~ msgstr "信息" + +#~ msgid "What's New" +#~ msgstr "更新日志" + +#~ msgid "Tools" +#~ msgstr "工具" + +#~ msgid "No field groups selected" +#~ msgstr "没选择字段组" + +#~ msgid "No file selected" +#~ msgstr "没选择文件" + +#~ msgid "Error uploading file. Please try again" +#~ msgstr "文件上传失败,请重试" + +#~ msgid "Incorrect file type" +#~ msgstr "文本类型不对" + +#~ msgid "Import file empty" +#~ msgstr "导入的文件是空白的" + +#, php-format +#~ msgid "Success. Import tool added %s field groups: %s" +#~ msgstr "成功,导入工具添加了 %s 字段组: %s" + +#, php-format +#~ msgid "" +#~ "Warning. Import tool detected %s field groups already exist and " +#~ "have been ignored: %s" +#~ msgstr "警告,导入工具检测到 %s 字段组已经存在了。忽略的字段组:%s" + +#~ msgid "Upgrade ACF" +#~ msgstr "升级 ACF" + +#~ msgid "Review sites & upgrade" +#~ msgstr "检查网站并升级" + +#~ msgid "Upgrade" +#~ msgstr "升级" + +#~ msgid "Upgrade Database" +#~ msgstr "升级数据库" + +#~ msgid "Conditional Logic" +#~ msgstr "条件逻辑" + +#~ msgid "Show this field if" +#~ msgstr "显示此字段的条件" + +#~ msgid "is equal to" +#~ msgstr "等于" + +#~ msgid "is not equal to" +#~ msgstr "不等于" + +#~ msgid "and" +#~ msgstr "与" + +#~ msgid "Add rule group" +#~ msgstr "添加规则组" + +#~ msgid "Edit field" +#~ msgstr "编辑字段" + +#~ msgid "Duplicate field" +#~ msgstr "复制字段" + +#~ msgid "Move field to another group" +#~ msgstr "把字段移动到其它群组" + +#~ msgid "Move" +#~ msgstr "移动" + +#~ msgid "Delete field" +#~ msgstr "删除字段" + +#~ msgid "Error" +#~ msgstr "错误" + +#~ msgid "Error." +#~ msgstr "错误。" + +#~ msgid "Field type does not exist" +#~ msgstr "字段类型不存在" + +#~ msgid "Field Label" +#~ msgstr "字段标签" + +#~ msgid "This is the name which will appear on the EDIT page" +#~ msgstr "在编辑界面显示的名字" + +#~ msgid "Field Name" +#~ msgstr "字段名称" + +#~ msgid "Single word, no spaces. Underscores and dashes allowed" +#~ msgstr "单个字符串,不能有空格,可以用横线或下画线。" + +#~ msgid "Field Type" +#~ msgstr "字段类型" + +#~ msgid "Instructions" +#~ msgstr "说明" + +#~ msgid "Instructions for authors. Shown when submitting data" +#~ msgstr "显示给内容作者的说明文字,在提交数据时显示" + +#~ msgid "Required?" +#~ msgstr "必填?" + +#~ msgid "Wrapper Attributes" +#~ msgstr "包装属性" + +#~ msgid "width" +#~ msgstr "宽度" + +#~ msgid "class" +#~ msgstr "class" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "Close Field" +#~ msgstr "关闭字段" + +#~ msgid "Order" +#~ msgstr "序号" + +#~ msgid "Type" +#~ msgstr "类型" + +#~ msgid "" +#~ "No fields. Click the + Add Field button to create your " +#~ "first field." +#~ msgstr "没有字段,点击添加按钮创建第一个字段。" + +#~ msgid "Drag and drop to reorder" +#~ msgstr "拖拽排序" + +#~ msgid "+ Add Field" +#~ msgstr "+ 添加字段" + +#~ msgid "Rules" +#~ msgstr "规则" + +#~ msgid "" +#~ "Create a set of rules to determine which edit screens will use these " +#~ "advanced custom fields" +#~ msgstr "创建一组规则以确定自定义字段在哪个编辑界面上显示" + +#~ msgid "Show this field group if" +#~ msgstr "显示此字段组的条件" + +#~ msgid "Post" +#~ msgstr "内容" + +#~ msgid "Post Type" +#~ msgstr "内容类型" + +#~ msgid "Post Status" +#~ msgstr "内容状态" + +#~ msgid "Post Format" +#~ msgstr "内容格式" + +#~ msgid "Post Category" +#~ msgstr "内容类别" + +#~ msgid "Post Taxonomy" +#~ msgstr "内容分类法" + +#~ msgid "Page" +#~ msgstr "页面" + +#~ msgid "Page Template" +#~ msgstr "页面模板" + +#~ msgid "Page Type" +#~ msgstr "页面类型" + +#~ msgid "Page Parent" +#~ msgstr "父级页面" + +#~ msgid "User" +#~ msgstr "用户" + +#~ msgid "Current User" +#~ msgstr "当前用户" + +#~ msgid "Current User Role" +#~ msgstr "当前用户角色" + +#~ msgid "User Form" +#~ msgstr "用户表单" + +#~ msgid "User Role" +#~ msgstr "用户角色" + +#~ msgid "Forms" +#~ msgstr "表单" + +#~ msgid "Attachment" +#~ msgstr "附件" + +#~ msgid "Taxonomy Term" +#~ msgstr "分类词汇" + +#~ msgid "Comment" +#~ msgstr "评论" + +#~ msgid "Widget" +#~ msgstr "小工具" + +#~ msgid "Style" +#~ msgstr "样式" + +#~ msgid "Standard (WP metabox)" +#~ msgstr "标准(WP Metabox)" + +#~ msgid "Seamless (no metabox)" +#~ msgstr "无缝(无 metabox)" + +#~ msgid "Position" +#~ msgstr "位置" + +#~ msgid "High (after title)" +#~ msgstr "高(标题之后)" + +#~ msgid "Normal (after content)" +#~ msgstr "正常(内容之后)" + +#~ msgid "Side" +#~ msgstr "边栏" + +#~ msgid "Label placement" +#~ msgstr "标签位置" + +#~ msgid "Top aligned" +#~ msgstr "顶部对齐" + +#~ msgid "Left aligned" +#~ msgstr "左对齐" + +#~ msgid "Instruction placement" +#~ msgstr "说明位置" + +#~ msgid "Below labels" +#~ msgstr "标签之下" + +#~ msgid "Below fields" +#~ msgstr "字段之下" + +#~ msgid "Order No." +#~ msgstr "序号" + +#~ msgid "Field groups with a lower order will appear first" +#~ msgstr "序号小的字段组会排在最前面" + +#~ msgid "Shown in field group list" +#~ msgstr "在字段组列表中显示" + +#~ msgid "Hide on screen" +#~ msgstr "隐藏元素" + +#~ msgid "Select items to hide them from the edit screen." +#~ msgstr "选择需要在编辑界面隐藏的条目。 " + +#~ 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 "" +#~ "如果多个字段组同时出现在编辑界面,会使用第一个字段组里的选项(就是序号最小" +#~ "的那个字段组)" + +#~ msgid "Permalink" +#~ msgstr "固定链接" + +#~ msgid "Content Editor" +#~ msgstr "内容编辑器" + +#~ msgid "Excerpt" +#~ msgstr "摘要" + +#~ msgid "Discussion" +#~ msgstr "讨论" + +#~ msgid "Comments" +#~ msgstr "评论" + +#~ msgid "Revisions" +#~ msgstr "修订" + +#~ msgid "Slug" +#~ msgstr "别名" + +#~ msgid "Author" +#~ msgstr "作者" + +#~ msgid "Format" +#~ msgstr "格式" + +#~ msgid "Page Attributes" +#~ msgstr "页面属性" + +#~ msgid "Featured Image" +#~ msgstr "特色图像" + +#~ msgid "Categories" +#~ msgstr "类别" + +#~ msgid "Tags" +#~ msgstr "标签" + +#~ msgid "Send Trackbacks" +#~ msgstr "发送 Trackbacks" + +#~ msgid "Download & Install" +#~ msgstr "下载并安装" + +#~ msgid "Installed" +#~ msgstr "已安装" + +#~ msgid "Welcome to Advanced Custom Fields" +#~ msgstr "欢迎使用高级自定义字段" + +#, php-format +#~ msgid "" +#~ "Thank you for updating! ACF %s is bigger and better than ever before. We " +#~ "hope you like it." +#~ msgstr "感谢升级到更好的 ACF %s,你会喜欢上它的。" + +#~ msgid "A smoother custom field experience" +#~ msgstr "平滑的自定义字段体验" + +#~ msgid "Improved Usability" +#~ msgstr "改善用户体验" + +#~ msgid "" +#~ "Including the popular Select2 library has improved both usability and " +#~ "speed across a number of field types including post object, page link, " +#~ "taxonomy and select." +#~ msgstr "" +#~ "Select2 这个库,改善了内容对象,分类法,选择列表等字段的用户体验与速度。" + +#~ msgid "Improved Design" +#~ msgstr "改善的设计" + +#~ msgid "" +#~ "Many fields have undergone a visual refresh to make ACF look better than " +#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +#~ "(new) fields!" +#~ msgstr "很多字段变漂亮了,比如相册,关系,oEmbed 。" + +#~ msgid "Improved Data" +#~ msgstr "改善的数据" + +#~ msgid "" +#~ "Redesigning the data architecture has allowed sub fields to live " +#~ "independently from their parents. This allows you to drag and drop fields " +#~ "in and out of parent fields!" +#~ msgstr "" +#~ "重新设计了数据结构,让子字段独立于它的爸爸。这样我们可以把字段放到父字段" +#~ "里,也可以从父字段里拿出来。" + +#~ msgid "Goodbye Add-ons. Hello PRO" +#~ msgstr "再见了扩展,欢迎专业版" + +#~ msgid "Introducing ACF PRO" +#~ msgstr "ACF 专业版介绍" + +#~ msgid "" +#~ "We're changing the way premium functionality is delivered in an exciting " +#~ "way!" +#~ msgstr "我们改进了为您提供高级功能的方法。" + +#, php-format +#~ msgid "" +#~ "All 4 premium add-ons have been combined into a new Pro " +#~ "version of ACF. With both personal and developer licenses available, " +#~ "premium functionality is more affordable and accessible than ever before!" +#~ msgstr "" +#~ "之前的 4 个高级功能扩展现在被组合成了一个新的 ACF 专业版。许可证分为两种,个人与开发者,现在这些高级功能更实惠也更易用。" + +#~ msgid "Powerful Features" +#~ msgstr "强大的功能" + +#~ msgid "" +#~ "ACF PRO contains powerful features such as repeatable data, flexible " +#~ "content layouts, a beautiful gallery field and the ability to create " +#~ "extra admin options pages!" +#~ msgstr "" +#~ "ACF 专业版有重复数据,弹性内容布局,相册功能,还可以创建页面的管理选项。" + +#, php-format +#~ msgid "Read more about ACF PRO features." +#~ msgstr "了解更多关于 ACF PRO 的功能。" + +#~ msgid "Easy Upgrading" +#~ msgstr "便捷的升级" + +#, php-format +#~ msgid "" +#~ "To help make upgrading easy, login to your store account and claim a free copy of ACF PRO!" +#~ msgstr "登录到商店帐户,可以方便以后升级。" + +#, php-format +#~ msgid "" +#~ "We also wrote an upgrade guide to answer any " +#~ "questions, but if you do have one, please contact our support team via " +#~ "the help desk" +#~ msgstr "" +#~ "阅读 升级手册,需要帮助请联系 客服" + +#~ msgid "Under the Hood" +#~ msgstr "工作原理" + +#~ msgid "Smarter field settings" +#~ msgstr "更聪明的字段设置" + +#~ msgid "ACF now saves its field settings as individual post objects" +#~ msgstr "ACF 现在用单独的内容对象字段设置" + +#~ msgid "More AJAX" +#~ msgstr "更多 AJAX" + +#~ msgid "More fields use AJAX powered search to speed up page loading" +#~ msgstr "更多字段使用 AJAX 搜索,这让页面加载速度更快" + +#~ msgid "Local JSON" +#~ msgstr "本地 JSON" + +#~ msgid "New auto export to JSON feature improves speed" +#~ msgstr "改进了新的自动导出 JSON 功能的速度" + +#~ msgid "Better version control" +#~ msgstr "更好的版本控制" + +#~ msgid "" +#~ "New auto export to JSON feature allows field settings to be version " +#~ "controlled" +#~ msgstr "新的自动 JSON 导出功能让字段设置可以包含在版本控制里" + +#~ msgid "Swapped XML for JSON" +#~ msgstr "用 JSON 替代 XML" + +#~ msgid "Import / Export now uses JSON in favour of XML" +#~ msgstr "导入 / 导出现在用 JSON 代替以前的 XML" + +#~ msgid "New Forms" +#~ msgstr "新表单" + +#~ msgid "Fields can now be mapped to comments, widgets and all user forms!" +#~ msgstr "字段现在可以用在评论,小工具还有所有的用户表单上。" + +#~ msgid "A new field for embedding content has been added" +#~ msgstr "新添加了一个嵌入内容用的字段" + +#~ msgid "New Gallery" +#~ msgstr "新相册" + +#~ msgid "The gallery field has undergone a much needed facelift" +#~ msgstr "改进了相册字段的显示" + +#~ msgid "New Settings" +#~ msgstr "新设置" + +#~ msgid "" +#~ "Field group settings have been added for label placement and instruction " +#~ "placement" +#~ msgstr "字段组设置添加了标签位置与介绍位置" + +#~ msgid "Better Front End Forms" +#~ msgstr "更好的前端表单" + +#~ msgid "acf_form() can now create a new post on submission" +#~ msgstr "acf_form() 现在可以在提交的时候创建新的内容" + +#~ msgid "Better Validation" +#~ msgstr "更好的验证方式" + +#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS" +#~ msgstr "表单验证现在使用 PHP + AJAX 的方式" + +#~ msgid "Relationship Field" +#~ msgstr "关系字段" + +#~ msgid "" +#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)" +#~ msgstr "新的用来过滤的关系字段设置(搜索,内容类型,分类法)" + +#~ msgid "Moving Fields" +#~ msgstr "移动字段" + +#~ msgid "" +#~ "New field group functionality allows you to move a field between groups & " +#~ "parents" +#~ msgstr "新的字段组功能可以让我们在群组与爸爸之间移动字段" + +#~ msgid "Page Link" +#~ msgstr "页面链接" + +#~ msgid "New archives group in page_link field selection" +#~ msgstr "在 page_link 字段选择里的新的存档群组" + +#~ msgid "Better Options Pages" +#~ msgstr "选项页面" + +#~ msgid "" +#~ "New functions for options page allow creation of both parent and child " +#~ "menu pages" +#~ msgstr "选项页面的新功能,可以让你同时创建父菜单与子菜单页面" + +#, php-format +#~ msgid "We think you'll love the changes in %s." +#~ msgstr "你会喜欢在 %s 里做的修改。" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "导出字段组到PHP" + +#~ msgid "" +#~ "The following code can be used to register a local version of the " +#~ "selected field group(s). A local field group 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." +#~ msgstr "" +#~ "下面的代码可以用来创建一个本地版本的所选字段组。本地字段组加载更快,可以版" +#~ "本控制。你可以把下面这些代码放在你的主题的 functions.php 文件里。" + +#~ msgid "Select Field Groups" +#~ msgstr "选择字段组" + +#~ msgid "Export Field Groups" +#~ msgstr "导出字段组" + +#~ msgid "" +#~ "Select the field groups you would like to export and then select your " +#~ "export method. Use the download button to export to a .json file which " +#~ "you can then import to another ACF installation. Use the generate button " +#~ "to export to PHP code which you can place in your theme." +#~ msgstr "" +#~ "选择你想导出的字段组,然后选择导出的方法。使用 下载 按钮可以导出一" +#~ "个 .json 文件,你可以在其它的网站里导入它。使用 生成 按钮可以导出 " +#~ "PHP 代码,这些代码可以放在你的主题或插件里。" + +#~ msgid "Download export file" +#~ msgstr "下载导出文件" + +#~ msgid "Generate export code" +#~ msgstr "生成导出代码" + +#~ msgid "Import Field Groups" +#~ msgstr "导入字段组" + +#~ msgid "" +#~ "Select the Advanced Custom Fields JSON file you would like to import. " +#~ "When you click the import button below, ACF will import the field groups." +#~ msgstr "" +#~ "选择你想导入的 Advanced Custom Fields JSON 文件,然后点击 导入 按钮" +#~ "可以导入 JSON 文件里定义的字段组。" + +#~ msgid "Select File" +#~ msgstr "选择文件" + +#~ msgid "Import" +#~ msgstr "导入" + +#~ msgid "Advanced Custom Fields Database Upgrade" +#~ msgstr "Advanced Custom Fields 数据库升级" + +#~ msgid "" +#~ "The following sites require a DB upgrade. Check the ones you want to " +#~ "update and then click “Upgrade Database”." +#~ msgstr "下面的网站需要升级数据库,点击 “升级数据库” 。" + +#~ msgid "Site" +#~ msgstr "网站" + +#, php-format +#~ msgid "Site requires database upgrade from %s to %s" +#~ msgstr "网站需要从 %s 升级到 %s" + +#~ msgid "Site is up to date" +#~ msgstr "网站已是最新版" + +#~ msgid "" +#~ "Database Upgrade complete. Return to network dashboard" +#~ msgstr "数据库升级完成,返回网络面板" + +#~ msgid "" +#~ "It is strongly recommended that you backup your database before " +#~ "proceeding. Are you sure you wish to run the updater now?" +#~ msgstr "升级前最好先备份一下。确定现在升级吗?" + +#~ msgid "Upgrade complete" +#~ msgstr "升级完成" + +#~ msgid "Upgrading data to" +#~ msgstr "升级数据到" + +#~ msgid "Database Upgrade Required" +#~ msgstr "需要升级数据库" + +#, php-format +#~ msgid "Thank you for updating to %s v%s!" +#~ msgstr "感谢升级 %s v%s!" + +#~ msgid "" +#~ "Before you start using the new awesome features, please update your " +#~ "database to the newest version." +#~ msgstr "先把数据库更新到最新版。" + +#~ msgid "Reading upgrade tasks..." +#~ msgstr "阅读更新任务..." + +#, php-format +#~ msgid "Upgrading data to version %s" +#~ msgstr "升级数据到 %s 版本" + +#~ msgid "See what's new" +#~ msgstr "查看更新" + +#~ msgid "No updates available." +#~ msgstr "没有可用更新。" + +#~ msgid "Thumbnail" +#~ msgstr "缩略图" + +#~ msgid "Medium" +#~ msgstr "中" + +#~ msgid "Large" +#~ msgstr "大" + +#~ msgid "Full Size" +#~ msgstr "原图" + +#, php-format +#~ msgid "Image width must be at least %dpx." +#~ msgstr "图像宽度至少得是 %dpx。" + +#, php-format +#~ msgid "Image width must not exceed %dpx." +#~ msgstr "图像宽度最大不能超过 %dpx。" + +#, php-format +#~ msgid "Image height must be at least %dpx." +#~ msgstr "图像高度至少得是 %dpx。" + +#, php-format +#~ msgid "Image height must not exceed %dpx." +#~ msgstr "图像高度最大不能超过 %dpx。" + +#, php-format +#~ msgid "File size must be at least %s." +#~ msgstr "文件尺寸至少得是 %s。" + +#, php-format +#~ msgid "File size must must not exceed %s." +#~ msgstr "文件尺寸最大不能超过 %s。" + +#, php-format +#~ msgid "File type must be %s." +#~ msgstr "字段类型必须是 %s。" + +#~ msgid "Post updated" +#~ msgstr "内容已更新" + +#~ msgid "Basic" +#~ msgstr "基本" + +#~ msgid "Content" +#~ msgstr "内容" + +#~ msgid "Choice" +#~ msgstr "选项" + +#~ msgid "Relational" +#~ msgstr "关系" + +#~ msgid "jQuery" +#~ msgstr "jQuery" + +#~ msgid "Expand Details" +#~ msgstr "展开" + +#~ msgid "Collapse Details" +#~ msgstr "折叠" + +#~ msgid "Validation successful" +#~ msgstr "验证成功" + +#~ msgid "Validation failed" +#~ msgstr "验证失败" + +#~ msgid "1 field requires attention" +#~ msgstr "1 个字段需要注意" + +#, php-format +#~ msgid "%d fields require attention" +#~ msgstr "%d 个字段需要注意" + +#~ msgid "Restricted" +#~ msgstr "限制" + +#, php-format +#~ msgid "%s value is required" +#~ msgstr "%s 的值是必填项" + +#~ msgid "Checkbox" +#~ msgstr "复选框" + +#~ msgid "Toggle All" +#~ msgstr "切换所有" + +#~ msgid "Choices" +#~ msgstr "选项" + +#~ msgid "Enter each choice on a new line." +#~ msgstr "输入选项,每行一个" + +#~ msgid "For more control, you may specify both a value and label like this:" +#~ msgstr "如果需要更多控制,你按照一下格式,定义一个值和标签对:" + +#~ msgid "red : Red" +#~ msgstr " red : Red " + +#~ msgid "Default Value" +#~ msgstr "默认值" + +#~ msgid "Enter each default value on a new line" +#~ msgstr "每行输入一个默认值" + +#~ msgid "Vertical" +#~ msgstr "垂直" + +#~ msgid "Horizontal" +#~ msgstr "水平" + +#~ msgid "Toggle" +#~ msgstr "切换" + +#~ msgid "Prepend an extra checkbox to toggle all choices" +#~ msgstr "添加一个可以切换所有选择的复选框" + +#~ msgid "Color Picker" +#~ msgstr "颜色选择" + +#~ msgid "Clear" +#~ msgstr "清除" + +#~ msgid "Default" +#~ msgstr "默认" + +#~ msgid "Select Color" +#~ msgstr "选择颜色" + +#~ msgid "Date Picker" +#~ msgstr "日期选择" + +#~ msgid "Done" +#~ msgstr "完成" + +#~ msgid "Today" +#~ msgstr "今天" + +#~ msgid "Show a different month" +#~ msgstr "显示其他月份" + +#~ msgid "Display Format" +#~ msgstr "显示格式" + +#~ msgid "The format displayed when editing a post" +#~ msgstr "编辑内容的时候显示的格式" + +#~ msgid "Return format" +#~ msgstr "返回格式" + +#~ msgid "The format returned via template functions" +#~ msgstr "通过模板函数返回的格式" + +#~ msgid "Week Starts On" +#~ msgstr "每周开始于" + +#~ msgid "Email" +#~ msgstr "电子邮件" + +#~ msgid "Appears when creating a new post" +#~ msgstr "创建新内容的时候显示" + +#~ msgid "Placeholder Text" +#~ msgstr "点位符文本" + +#~ msgid "Appears within the input" +#~ msgstr "在 input 内部显示" + +#~ msgid "Prepend" +#~ msgstr "前置" + +#~ msgid "Appears before the input" +#~ msgstr "在 input 前面显示" + +#~ msgid "Append" +#~ msgstr "追加" + +#~ msgid "Appears after the input" +#~ msgstr "在 input 后面显示" + +#~ msgid "File" +#~ msgstr "文件" + +#~ msgid "Edit File" +#~ msgstr "编辑文件" + +#~ msgid "Update File" +#~ msgstr "更新文件" + +#~ msgid "uploaded to this post" +#~ msgstr "上传到这个内容" + +#~ msgid "File Name" +#~ msgstr "文件名" + +#~ msgid "File Size" +#~ msgstr "文件尺寸" + +#~ msgid "No File selected" +#~ msgstr "没有选择文件" + +#~ msgid "Add File" +#~ msgstr "添加文件" + +#~ msgid "Return Value" +#~ msgstr "返回值" + +#~ msgid "Specify the returned value on front end" +#~ msgstr "指定前端返回的值" + +#~ msgid "File Array" +#~ msgstr "文件数组" + +#~ msgid "File URL" +#~ msgstr "文件URL" + +#~ msgid "File ID" +#~ msgstr "文件ID" + +#~ msgid "Restrict which files can be uploaded" +#~ msgstr "限制什么类型的文件可以上传" + +#~ msgid "Google Map" +#~ msgstr "谷歌地图" + +#~ msgid "Locating" +#~ msgstr "定位" + +#~ msgid "Sorry, this browser does not support geolocation" +#~ msgstr "抱歉,浏览器不支持定位" + +#~ msgid "Clear location" +#~ msgstr "清除位置" + +#~ msgid "Find current location" +#~ msgstr "搜索当前位置" + +#~ msgid "Search for address..." +#~ msgstr "搜索地址... " + +#~ msgid "Center" +#~ msgstr "居中" + +#~ msgid "Center the initial map" +#~ msgstr "居中显示初始地图" + +#~ msgid "Zoom" +#~ msgstr "缩放" + +#~ msgid "Set the initial zoom level" +#~ msgstr "设置初始缩放级别" + +#~ msgid "Customise the map height" +#~ msgstr "自定义地图高度" + +#~ msgid "Image" +#~ msgstr "图像" + +#~ msgid "Select Image" +#~ msgstr "选择图像" + +#~ msgid "Edit Image" +#~ msgstr "编辑图片" + +#~ msgid "Update Image" +#~ msgstr "更新图像" + +#~ msgid "Uploaded to this post" +#~ msgstr "上传到这个内容" + +#~ msgid "All images" +#~ msgstr "所有图片" + +#~ msgid "No image selected" +#~ msgstr "没有选择图片" + +#~ msgid "Add Image" +#~ msgstr "添加图片" + +#~ msgid "Shown when entering data" +#~ msgstr "输入数据时显示" + +#~ msgid "Message" +#~ msgstr "消息" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "请注意,所有文本将首页通过WP过滤功能" + +#~ msgid "Escape HTML" +#~ msgstr "转义 HTML" + +#~ msgid "Allow HTML markup to display as visible text instead of rendering" +#~ msgstr "显示 HTML 文本,而不是渲染 HTML" + +#~ msgid "Number" +#~ msgstr "号码" + +#~ msgid "Minimum Value" +#~ msgstr "最小值" + +#~ msgid "Maximum Value" +#~ msgstr "最大值" + +#~ msgid "Step Size" +#~ msgstr "步长" + +#~ msgid "Value must be a number" +#~ msgstr "值必须是数字" + +#, php-format +#~ msgid "Value must be equal to or higher than %d" +#~ msgstr "值要大于等于 %d" + +#, php-format +#~ msgid "Value must be equal to or lower than %d" +#~ msgstr "值要小于等于 %d" + +#~ msgid "oEmbed" +#~ msgstr "oEmbed" + +#~ msgid "Enter URL" +#~ msgstr "输入 URL" + +#~ msgid "No embed found for the given URL." +#~ msgstr "在 URL 里没发现嵌入。" + +#~ msgid "Embed Size" +#~ msgstr "嵌入尺寸" + +#~ msgid "Archives" +#~ msgstr "存档" + +#~ msgid "Filter by Post Type" +#~ msgstr "按内容类型筛选" + +#~ msgid "All post types" +#~ msgstr "所有内容类型" + +#~ msgid "Filter by Taxonomy" +#~ msgstr "按分类筛选" + +#~ msgid "All taxonomies" +#~ msgstr "所有分类法" + +#~ msgid "Allow Null?" +#~ msgstr "是否允许空值?" + +#~ msgid "Select multiple values?" +#~ msgstr "是否选择多个值?" + +#~ msgid "Password" +#~ msgstr "密码" + +#~ msgid "Post Object" +#~ msgstr "文章对象" + +#~ msgid "Post ID" +#~ msgstr "Post ID" + +#~ msgid "Radio Button" +#~ msgstr "单选按钮" + +#~ msgid "Other" +#~ msgstr "其他" + +#~ msgid "Add 'other' choice to allow for custom values" +#~ msgstr "为自定义值添加 'other' 选择" + +#~ msgid "Save Other" +#~ msgstr "保存其它" + +#~ msgid "Save 'other' values to the field's choices" +#~ msgstr "存档为字段的选择的 'other' 的值" + +#~ msgid "Relationship" +#~ msgstr "关系" + +#~ msgid "Minimum values reached ( {min} values )" +#~ msgstr "已到最小值 ( {min} values )" + +#~ msgid "Maximum values reached ( {max} values )" +#~ msgstr "达到了最大值 ( {max} 值 ) " + +#~ msgid "Loading" +#~ msgstr "加载" + +#~ msgid "No matches found" +#~ msgstr "没找到匹配的结果" + +#~ msgid "Search..." +#~ msgstr "搜索..." + +#~ msgid "Select post type" +#~ msgstr "选择内容类型" + +#~ msgid "Select taxonomy" +#~ msgstr "选择分类" + +#~ msgid "Search" +#~ msgstr "搜索" + +#~ msgid "Taxonomy" +#~ msgstr "分类法" + +#~ msgid "Elements" +#~ msgstr "元素" + +#~ msgid "Selected elements will be displayed in each result" +#~ msgstr "选择的元素将在每个结果中显示。" + +#~ msgid "Minimum posts" +#~ msgstr "最小内容" + +#~ msgid "Maximum posts" +#~ msgstr "最大文章数" + +#~ msgid "Select" +#~ msgstr "选择" + +#~ msgid "Stylised UI" +#~ msgstr "装饰的界面" + +#~ msgid "Use AJAX to lazy load choices?" +#~ msgstr "使用 AJAX 惰性选择?" + +#~ msgid "Tab" +#~ msgstr "选项卡" + +#~ msgid "Warning" +#~ msgstr "警告" + +#~ msgid "" +#~ "The tab field will display incorrectly when added to a Table style " +#~ "repeater field or flexible content field layout" +#~ msgstr "标签字段不能在 Table 样式的重复字段或者灵活内容字段布局里正常显示" + +#~ msgid "" +#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields " +#~ "together." +#~ msgstr "使用 \"标签字段\" 可以把字段组织起来更好地在编辑界面上显示。" + +#~ msgid "" +#~ "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." +#~ msgstr "" +#~ "在这个 \"tab field\" (或直到定义了其它的 \"tab field\" ) 以下的所有字段," +#~ "都会被用这个字段标签作为标题的标签(Tab)组织到一块。" + +#~ msgid "Placement" +#~ msgstr "位置" + +#~ msgid "End-point" +#~ msgstr "端点" + +#~ msgid "Use this field as an end-point and start a new group of tabs" +#~ msgstr "使用这个字段作为端点去创建新的标签群组" + +#, php-format +#~ msgid "Add new %s " +#~ msgstr "添加新的 %s" + +#~ msgid "None" +#~ msgstr "None" + +#~ msgid "Select the taxonomy to be displayed" +#~ msgstr "选择要显示的分类法" + +#~ msgid "Appearance" +#~ msgstr "外观" + +#~ msgid "Select the appearance of this field" +#~ msgstr "为这个字段选择外观" + +#~ msgid "Multiple Values" +#~ msgstr "多选" + +#~ msgid "Multi Select" +#~ msgstr "多选" + +#~ msgid "Single Value" +#~ msgstr "单个值" + +#~ msgid "Radio Buttons" +#~ msgstr "单选框" + +#~ msgid "Create Terms" +#~ msgstr "创建分类词汇" + +#~ msgid "Allow new terms to be created whilst editing" +#~ msgstr "在编辑时允许可以创建新的分类词汇" + +#~ msgid "Save Terms" +#~ msgstr "保存分类词汇" + +#~ msgid "Connect selected terms to the post" +#~ msgstr "连接所选分类词汇到内容" + +#~ msgid "Load Terms" +#~ msgstr "加载分类词汇" + +#~ msgid "Load value from posts terms" +#~ msgstr "载入内容分类词汇的值" + +#~ msgid "Term Object" +#~ msgstr "对象缓存" + +#~ msgid "Term ID" +#~ msgstr "内容ID" + +#, php-format +#~ msgid "User unable to add new %s" +#~ msgstr "用户无法添加新的 %s" + +#, php-format +#~ msgid "%s already exists" +#~ msgstr "%s 已存在" + +#, php-format +#~ msgid "%s added" +#~ msgstr "%s 已添加" + +#~ msgid "Add" +#~ msgstr "添加" + +#~ msgid "Text" +#~ msgstr "文本" + +#~ msgid "Character Limit" +#~ msgstr "字符限制" + +#~ msgid "Leave blank for no limit" +#~ msgstr "留空则不限制" + +#~ msgid "Text Area" +#~ msgstr "文本段" + +#~ msgid "Rows" +#~ msgstr "行" + +#~ msgid "Sets the textarea height" +#~ msgstr "设置文本区域的高度" + +#~ msgid "New Lines" +#~ msgstr "新行" + +#~ msgid "Controls how new lines are rendered" +#~ msgstr "控制怎么显示新行" + +#~ msgid "Automatically add paragraphs" +#~ msgstr "自动添加段落" + +#~ msgid "Automatically add <br>" +#~ msgstr "自动添加 <br>" + +#~ msgid "No Formatting" +#~ msgstr "无格式" + +#~ msgid "True / False" +#~ msgstr "真/假" + +#~ msgid "eg. Show extra content" +#~ msgstr "例如:显示附加内容" + +#~ msgid "Url" +#~ msgstr "地址" + +#~ msgid "Value must be a valid URL" +#~ msgstr "值必须是有效的地址" + +#~ msgid "Filter by role" +#~ msgstr "根据角色过滤" + +#~ msgid "All user roles" +#~ msgstr "所有用户角色" + +#~ msgid "Wysiwyg Editor" +#~ msgstr "可视化编辑器" + +#~ msgid "Visual" +#~ msgstr "显示" + +#~ msgctxt "Name for the Text editor tab (formerly HTML)" +#~ msgid "Text" +#~ msgstr "文本" + +#~ msgid "Tabs" +#~ msgstr "标签" + +#~ msgid "Visual & Text" +#~ msgstr "显示与文本" + +#~ msgid "Visual Only" +#~ msgstr "只有显示" + +#~ msgid "Text Only" +#~ msgstr "纯文本" + +#~ msgid "Toolbar" +#~ msgstr "工具条" + +#~ msgid "Show Media Upload Buttons?" +#~ msgstr "是否显示媒体上传按钮?" + +#~ msgid "Connection Error. Sorry, please try again" +#~ msgstr "连接错误,再试一次" + +#~ msgid "Save Options" +#~ msgstr "保存" + +#~ msgid "License" +#~ msgstr "许可" + +#~ msgid "" +#~ "To unlock updates, please enter your license key below. If you don't have " +#~ "a licence key, please see" +#~ msgstr "解锁更新,输入许可证号。还没有许可证号,请看" + +#~ msgid "details & pricing" +#~ msgstr "详情与定价" + +#, php-format +#~ 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 "" +#~ "启用更新,先在 更新 页面输入许可证。还没有许可证,请查" +#~ "看 详情与定价" + +#~ msgid "remove {layout}?" +#~ msgstr "删除 {layout}?" + +#~ msgid "This field requires at least {min} {identifier}" +#~ msgstr "这个字段需要至少 {min} {identifier}" + +#~ msgid "This field has a limit of {max} {identifier}" +#~ msgstr "这个字段限制最大为 {max} {identifier}" + +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "{label} 已到最大限制 ({max} {identifier})" + +#, php-format +#~ msgid "%s requires at least %s selection" +#~ msgid_plural "%s requires at least %s selections" +#~ msgstr[0] "%s 需要至少 %s 个选择" + +#~ msgid "Advanced Custom Fields Pro" +#~ msgstr "Advanced Custom Fields 专业版" + +#~ msgid "http://www.advancedcustomfields.com/" +#~ msgstr "http://www.advancedcustomfields.com/" + +#~ msgid "" +#~ "Customise WordPress with powerful, professional and intuitive fields." +#~ msgstr "用强大专业的字段定制 WordPress。" + +#~ msgid "elliot condon" +#~ msgstr "elliot condon" + +#~ msgid "http://www.elliotcondon.com/" +#~ msgstr "http://www.elliotcondon.com/" + +#, fuzzy +#~ msgid "Show Field Keys" +#~ msgstr "显示字段密钥:" + +#, fuzzy +#~ msgid "Private" +#~ msgstr "激活" + +#, fuzzy +#~ msgid "Revision" +#~ msgstr "版本控制" + +#, fuzzy +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "字段组排序
                              从低到高。" + +#, fuzzy +#~ msgid "ACF PRO Required" +#~ msgstr "(必填项)" + +#, fuzzy +#~ msgid "Update Database" +#~ msgstr "升级数据库" + +#, fuzzy +#~ msgid "Data Upgrade" +#~ msgstr "升级" + +#, fuzzy +#~ msgid "Data is at the latest version." +#~ msgstr "非常感谢你升级插件到最新版本!" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "加载&保存条目到文章。" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "在文章上加载值,保存时更新文章条目。" + +#, fuzzy +#~ msgid "image" +#~ msgstr "图像" + +#, fuzzy +#~ msgid "relationship" +#~ msgstr "关系" + +#, fuzzy +#~ msgid "unload" +#~ msgstr "下载" + +#, fuzzy +#~ msgid "title_is_required" +#~ msgstr "字段组已发布。" + +#, fuzzy +#~ msgid "move_field" +#~ msgstr "保存字段" + +#, fuzzy +#~ msgid "flexible_content" +#~ msgstr "大段内容" + +#, fuzzy +#~ msgid "gallery" +#~ msgstr "相册" + +#, fuzzy +#~ msgid "repeater" +#~ msgstr "复制" + +#~ msgid "Custom field updated." +#~ msgstr "自定义字段已更新。" + +#~ msgid "Custom field deleted." +#~ msgstr "自定义字段已删除。" + +#, fuzzy +#~ msgid "Import/Export" +#~ msgstr "重要" + +#~ msgid "Column Width" +#~ msgstr "分栏宽度" + +#, fuzzy +#~ msgid "Attachment Details" +#~ msgstr "附件已更新" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "验证失败,下面一个或多个字段是必需的。" + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "字段组已恢复到版本%s" + +#~ msgid "No ACF groups selected" +#~ msgstr "没有选择ACF组" + +#~ msgid "Repeater Field" +#~ msgstr "复制字段" + +#~ msgid "" +#~ "Create infinite rows of repeatable data with this versatile interface!" +#~ msgstr "使用这个方面的界面为重复数据创建无限行。 " + +#~ msgid "Gallery Field" +#~ msgstr "相册字段" + +#~ msgid "Create image galleries in a simple and intuitive interface!" +#~ msgstr "使用简单直观的界面创建画廊!" + +#~ msgid "Create global data to use throughout your website!" +#~ msgstr "创建整个站点可用的全局数据。" + +#~ msgid "Flexible Content Field" +#~ msgstr "多样内容字段" + +#~ msgid "Create unique designs with a flexible content layout manager!" +#~ msgstr "通过强大的内容布局管理功能创建一个独有的设计。" + +#~ msgid "Gravity Forms Field" +#~ msgstr "Gravity表单字段" + +#~ msgid "Creates a select field populated with Gravity Forms!" +#~ msgstr "创建一个由Gravity表单处理的选择字段。" + +#~ msgid "Date & Time Picker" +#~ msgstr "日期&时间选择器" + +#~ msgid "jQuery date & time picker" +#~ msgstr "jQuery 日期 & 时间选择器" + +#~ msgid "Find addresses and coordinates of a desired location" +#~ msgstr "查找需要的位置的地址和坐标。" + +#~ msgid "Contact Form 7 Field" +#~ msgstr "Contact Form 7 字段" + +#~ msgid "Assign one or more contact form 7 forms to a post" +#~ msgstr "分配一个或多个contact form 7表单到文章" + +#~ msgid "Advanced Custom Fields Add-Ons" +#~ msgstr "自定义字段附加功能" + +#~ msgid "" +#~ "The following Add-ons are available to increase the functionality of the " +#~ "Advanced Custom Fields plugin." +#~ msgstr "下面的附加项可以提高插件功能。" + +#~ msgid "" +#~ "Each Add-on can be installed as a separate plugin (receives updates) or " +#~ "included in your theme (does not receive updates)." +#~ msgstr "" +#~ "每个附件都可以作为一个单独的插件安装(可以获取更新)或包含在你的主题中(不" +#~ "能获取更新)" + +#~ msgid "Purchase & Install" +#~ msgstr "购买和安装" + +#~ msgid "Export" +#~ msgstr "导出" + +#~ msgid "Select the field groups to be exported" +#~ msgstr "选择需要导出的字段组。" + +#~ msgid "Export to XML" +#~ msgstr "导出到XML" + +#~ msgid "Export to PHP" +#~ msgstr "导出到PHP" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "ACF将创建一个兼容WP导入插件的.xml文件。" + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "导入字段组将出现在可编辑字段组后面,在几个WP站点之间迁移字段组时,这将非常" +#~ "有用。" + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "从列表中选择字段组,然后点击 \"导出XML\" " + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "导出后保存.xml文件" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "转到工具 » 导入,然后选择WordPress " + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "安装WP导入插件后开始" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "上传并导入.xml文件" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "选择用户,忽略导入附件" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "成功了,使用愉快!" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACP将导出可以包含到主题中的PHP代码" + +#~ msgid "" +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." +#~ msgstr "" +#~ "已注册字段不会出现在可编辑分组中,这对主题中包含的字段非常有用。" + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "请注意,如果在同一个网站导出并注册字段组,您会在您的编辑屏幕上看到重复的字" +#~ "段,为了解决这个问题,请将原字段组移动到回收站或删除您的functions.php文件" +#~ "中的代码。" + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "参加列表中选择表单组,然后点击 \"生成PHP\"" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "复制生成的PHP代码。" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "请插入您的function.php文件" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "要激活附加组件,编辑和应用代码中的前几行。" + +#~ msgid "Notes" +#~ msgstr "注意" + +#~ msgid "Include in theme" +#~ msgstr "包含在主题中" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin can be included within a theme. To do " +#~ "so, move the ACF plugin inside your theme and add the following code to " +#~ "your functions.php file:" +#~ msgstr "" +#~ "字段插件可以包含到主题中,如果需要进行此操作,请移动字段插件到themes文件夹" +#~ "并添加以下代码到functions.php文件:" + +#~ msgid "" +#~ "To remove all visual interfaces from the ACF plugin, you can use a " +#~ "constant to enable lite mode. Add the following code to you functions.php " +#~ "file before the include_once code:" +#~ msgstr "" +#~ "要删除所有ACF插件的可视化界面,你可以用一个常数,使精简版模式,将下面的代" +#~ "码添加到functions.php文件中include_once代码之前。" + +#~ msgid "Back to export" +#~ msgstr "返回到导出器" + +#~ msgid "" +#~ "/**\n" +#~ " * Install Add-ons\n" +#~ " * \n" +#~ " * The following code will include all 4 premium Add-Ons in your theme.\n" +#~ " * Please do not attempt to include a file which does not exist. This " +#~ "will produce an error.\n" +#~ " * \n" +#~ " * All fields must be included during the 'acf/register_fields' action.\n" +#~ " * Other types of Add-ons (like the options page) can be included " +#~ "outside of this action.\n" +#~ " * \n" +#~ " * The following code assumes you have a folder 'add-ons' inside your " +#~ "theme.\n" +#~ " *\n" +#~ " * IMPORTANT\n" +#~ " * Add-ons may be included in a premium theme as outlined in the terms " +#~ "and conditions.\n" +#~ " * However, they are NOT to be included in a premium / free plugin.\n" +#~ " * For more information, please read http://www.advancedcustomfields.com/" +#~ "terms-conditions/\n" +#~ " */" +#~ msgstr "" +#~ "/ **\n" +#~ " *安装附加组件\n" +#~ " *\n" +#~ " *下面的代码将包括所有4个高级附加组件到您的主题\n" +#~ " *请不要试图包含一个不存在的文件,这将产生一个错误。\n" +#~ " *\n" +#~ " *所有字段都必须在'acf/register_fields'动作执行时包含。\n" +#~ " *其他类型的加载项(如选项页)可以包含在这个动作之外。\n" +#~ " *\n" +#~ " *下面的代码假定你在你的主题里面有一个“add-ons”文件夹。\n" +#~ " *\n" +#~ " *重要\n" +#~ " *附加组件可能在一个高级主题中包含下面的条款及条件。\n" +#~ " *但是,他们都没有被列入高级或免费插件。\n" +#~ " *欲了解更多信息,请读取http://www.advancedcustomfields.com/terms-" +#~ "conditions/\n" +#~ " */" + +#~ msgid "" +#~ "/**\n" +#~ " * Register Field Groups\n" +#~ " *\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * 注册字段组\n" +#~ " *\n" +#~ " * register_field_group函数接受一个包含注册字段组有关数据的数组\n" +#~ " *您可以编辑您认为合适的数组,然而,如果数组不兼容ACF,这可能会导致错误\n" +#~ " */" + +#~ msgid "Vote" +#~ msgstr "投票" + +#~ msgid "Follow" +#~ msgstr "关注" + +#~ msgid "Activation codes have grown into plugins!" +#~ msgstr "激活码成为了插件!" + +#~ msgid "" +#~ "Add-ons are now activated by downloading and installing individual " +#~ "plugins. Although these plugins will not be hosted on the wordpress.org " +#~ "repository, each Add-on will continue to receive updates in the usual way." +#~ msgstr "" +#~ "附加组件现在通过下载和安装单独的插件激活,虽然这些插件不在wordpress.org库" +#~ "托管,每个附加组件将通过合适的方式得到更新。" + +#~ msgid "All previous Add-ons have been successfully installed" +#~ msgstr "所有附加功能已安装!" + +#~ msgid "This website uses premium Add-ons which need to be downloaded" +#~ msgstr "此站点使用的高级功能需要下载。" + +#~ msgid "Download your activated Add-ons" +#~ msgstr "下载已激活的附加功能" + +#~ msgid "" +#~ "This website does not use premium Add-ons and will not be affected by " +#~ "this change." +#~ msgstr "此站点未使用高级功能,这个改变没有影响。" + +#~ msgid "Easier Development" +#~ msgstr "快速开发" + +#~ msgid "New Field Types" +#~ msgstr "新字段类型" + +#~ msgid "Email Field" +#~ msgstr "电子邮件字段" + +#~ msgid "Password Field" +#~ msgstr "密码字段" + +#~ msgid "Custom Field Types" +#~ msgstr "自定义字段类型" + +#~ msgid "" +#~ "Creating your own field type has never been easier! Unfortunately, " +#~ "version 3 field types are not compatible with version 4." +#~ msgstr "" +#~ "创建您自己的字段类型从未如此简单!不幸的是,版本3的字段类型不兼容版本4。" + +#~ msgid "Migrating your field types is easy, please" +#~ msgstr "数据迁移非常简单,请" + +#~ msgid "follow this tutorial" +#~ msgstr "跟随这个向导" + +#~ msgid "to learn more." +#~ msgstr "了解更多。" + +#~ msgid "Actions & Filters" +#~ msgstr "动作&过滤器" + +#~ msgid "" +#~ "All actions & filters have recieved a major facelift to make customizing " +#~ "ACF even easier! Please" +#~ msgstr "所有动作和过滤器得到了一次重大改版一遍更方便的定制ACF!请" + +#~ msgid "read this guide" +#~ msgstr "阅读此向导" + +#~ msgid "to find the updated naming convention." +#~ msgstr "找到更新命名约定。" + +#~ msgid "Preview draft is now working!" +#~ msgstr "预览功能已经可用!" + +#~ msgid "This bug has been squashed along with many other little critters!" +#~ msgstr "这个错误已经与许多其他小动物一起被压扁了!" + +#~ msgid "See the full changelog" +#~ msgstr "查看全部更新日志" + +#~ msgid "Database Changes" +#~ msgstr "数据库改变" + +#~ msgid "" +#~ "Absolutely no changes have been made to the database " +#~ "between versions 3 and 4. This means you can roll back to version 3 " +#~ "without any issues." +#~ msgstr "" +#~ "数据库在版本3和4之间没有任何修改,这意味你可以安全回滚到" +#~ "版本3而不会遇到任何问题。" + +#~ msgid "Potential Issues" +#~ msgstr "潜在问题" + +#~ msgid "" +#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "filters, your website may not operate correctly. It is important that you " +#~ "read the full" +#~ msgstr "" +#~ "需要在附加组件,字段类型和动作/过滤之间做重大修改时,你可的网站可能会出现" +#~ "一些问题,所有强烈建议阅读全部" + +#~ msgid "Migrating from v3 to v4" +#~ msgstr "从V3迁移到V4" + +#~ msgid "guide to view the full list of changes." +#~ msgstr "查看所有更新列表。" + +#~ msgid "Really Important!" +#~ msgstr "非常重要!" + +#~ msgid "" +#~ "If you updated the ACF plugin without prior knowledge of such changes, " +#~ "Please roll back to the latest" +#~ msgstr "如果你没有收到更新通知而升级到了ACF插件,请回滚到最近的一个版本。" + +#~ msgid "version 3" +#~ msgstr "版本 3" + +#~ msgid "of this plugin." +#~ msgstr "这个插件" + +#~ msgid "Thank You" +#~ msgstr "谢谢!" + +#~ msgid "" +#~ "A BIG thank you to everyone who has helped test the " +#~ "version 4 beta and for all the support I have received." +#~ msgstr "非常感谢帮助我测试版本4的所有人。" + +#~ msgid "Without you all, this release would not have been possible!" +#~ msgstr "没有你们,此版本可能还没有发布。" + +#~ msgid "Changelog for" +#~ msgstr "更新日志:" + +#~ msgid "Learn more" +#~ msgstr "了解更多" + +#~ msgid "Overview" +#~ msgstr "预览" + +#~ msgid "" +#~ "Previously, all Add-ons were unlocked via an activation code (purchased " +#~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " +#~ "plugins which need to be individually downloaded, installed and updated." +#~ msgstr "" +#~ "在此之前,所有附加组件通过一个激活码(从ACF附加组件的商店购买)解锁,到了" +#~ "版本V4,所有附加组件作为单独的插件下载,安装和更新。" + +#~ msgid "" +#~ "This page will assist you in downloading and installing each available " +#~ "Add-on." +#~ msgstr "此页将帮助您下载和安装每个可用的附加组件。" + +#~ msgid "Available Add-ons" +#~ msgstr "可用附加功能" + +#~ msgid "" +#~ "The following Add-ons have been detected as activated on this website." +#~ msgstr "在此网站上检测到以下附加已激活。" + +#~ msgid "Activation Code" +#~ msgstr "激活码" + +#~ msgid "Installation" +#~ msgstr "安装" + +#~ msgid "For each Add-on available, please perform the following:" +#~ msgstr "对于每个可以用附加组件,请执行以下操作:" + +#~ msgid "Download the Add-on plugin (.zip file) to your desktop" +#~ msgstr "下载附加功能(.zip文件)到电脑。" + +#~ msgid "Navigate to" +#~ msgstr "链接到" + +#~ msgid "Plugins > Add New > Upload" +#~ msgstr "插件>添加>上传" + +#~ msgid "" +#~ "Use the uploader to browse, select and install your Add-on (.zip file)" +#~ msgstr "使用文件上载器,浏览,选择并安装附加组件(zip文件)" + +#~ msgid "" +#~ "Once the plugin has been uploaded and installed, click the 'Activate " +#~ "Plugin' link" +#~ msgstr "插件上传并安装后,点击'激活插件'链接。" + +#~ msgid "The Add-on is now installed and activated!" +#~ msgstr "附加功能已安装并启用。" + +#~ msgid "Awesome. Let's get to work" +#~ msgstr "太棒了!我们开始吧。" + +#~ msgid "Modifying field group options 'show on page'" +#~ msgstr "修改字段组选项'在页面上显示'" + +#~ msgid "Modifying field option 'taxonomy'" +#~ msgstr "修改字段选项'分类法'" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "从wp_options移动用户自定义字段到wp_usermeta" + +#~ msgid "blue : Blue" +#~ msgstr " blue : Blue " + +#~ msgid "eg: #ffffff" +#~ msgstr "如: #ffffff " + +#~ msgid "Dummy" +#~ msgstr "二进制" + +#~ msgid "File Object" +#~ msgstr "文件对象" + +#~ msgid "File Updated." +#~ msgstr "文件已更新" + +#~ msgid "Media attachment updated." +#~ msgstr "媒体附件已更新。" + +#~ msgid "Add Selected Files" +#~ msgstr "添加已选择文件" + +#~ msgid "Image Object" +#~ msgstr "对象图像" + +#~ msgid "Image Updated." +#~ msgstr "图片已更新" + +#~ msgid "No images selected" +#~ msgstr "没有选择图片" + +#~ msgid "Add Selected Images" +#~ msgstr "添加所选图片" + +#~ msgid "Text & HTML entered here will appear inline with the fields" +#~ msgstr "在这里输入的文本和HTML将和此字段一起出现。" + +#~ msgid "Enter your choices one per line" +#~ msgstr "输入选项,每行一个" + +#~ msgid "Red" +#~ msgstr "红" + +#~ msgid "Blue" +#~ msgstr "蓝" + +#~ msgid "Post Type Select" +#~ msgstr "文章类型选择" + +#~ msgid "You can use multiple tabs to break up your fields into sections." +#~ msgstr "你可以使用选项卡分割字段到多个区域。" + +#~ msgid "Define how to render html tags" +#~ msgstr "定义怎么生成html标签" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "定义怎么处理html标签和换行" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "此格式将决定存储在数据库中的值,并通过API返回。" + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "\"yymmdd\" 是最常用的格式,如需了解更多,请参考" + +#~ msgid "jQuery date formats" +#~ msgstr "jQuery日期格式" + +#~ msgid "This format will be seen by the user when entering a value" +#~ msgstr "这是用户输入日期后看到的格式。" + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "\"dd/mm/yy\" 或 \"mm/dd/yy\" 为最常用的显示格式,了解更多" + +#~ msgid "Field Order" +#~ msgstr "字段顺序" + +#~ msgid "Edit this Field" +#~ msgstr "编辑当前字段" + +#~ msgid "Docs" +#~ msgstr "文档" + +#~ msgid "Field Instructions" +#~ msgstr "字段说明" + +#~ msgid "Show this field when" +#~ msgstr "符合这些规则中的" + +#~ msgid "all" +#~ msgstr "所有" + +#~ msgid "any" +#~ msgstr "任一个" + +#~ msgid "these rules are met" +#~ msgstr "项时,显示此字段" + +#~ msgid "Taxonomy Term (Add / Edit)" +#~ msgstr "分类法条目(添加/编辑)" + +#~ msgid "Media Attachment (Edit)" +#~ msgstr "媒体附件(编辑)" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "使用激活码解锁附加功能" + +#~ msgid "Normal" +#~ msgstr "普通" + +#~ msgid "No Metabox" +#~ msgstr "无Metabox" + +#~ msgid "Add-Ons" +#~ msgstr "附加" + +#~ msgid "Just updated to version 4?" +#~ msgstr "刚更新到版本4?" + +#~ msgid "" +#~ "Activation codes have changed to plugins! Download your purchased add-ons" +#~ msgstr "激活码已改变了插件,请下载已购买的附加功能。" + +#~ msgid "here" +#~ msgstr "这里" + +#~ msgid "match" +#~ msgstr "符合" + +#~ msgid "of the above" +#~ msgstr " " + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "阅读文档,学习功能和发现一些小提示,然后应用到你下一个网站项目中。" + +#~ msgid "Visit the ACF website" +#~ msgstr "访问ACF网站" + +#~ msgid "Add File to Field" +#~ msgstr "添加文件" + +#~ msgid "Add Image to Field" +#~ msgstr "添加图片" + +#~ msgid "Repeater field deactivated" +#~ msgstr "检测到复制字段" + +#~ msgid "Gallery field deactivated" +#~ msgstr "检测到相册字段" + +#~ msgid "Repeater field activated" +#~ msgstr "复制插件已激活。" + +#~ msgid "Options page activated" +#~ msgstr "选项页面已激活" + +#~ msgid "Flexible Content field activated" +#~ msgstr "多样内容字段已激活" + +#~ msgid "Gallery field activated" +#~ msgstr "插件激活成功。" + +#~ msgid "License key unrecognised" +#~ msgstr "许可密钥未注册" + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "可以购买一个许可证来激活附加功能,每个许可证可用于许多站点。" + +#~ msgid "Inactive" +#~ msgstr "未禁用" + +#~ msgid "Register Field Groups" +#~ msgstr "注册字段组" + +#~ msgid "Create PHP" +#~ msgstr "创建PHP" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "高级自动设置" + +#~ msgid "requires a database upgrade" +#~ msgstr "数据库需要升级" + +#~ msgid "why?" +#~ msgstr "为什么?" + +#~ msgid "Please" +#~ msgstr "请" + +#~ msgid "backup your database" +#~ msgstr "备份数据库" + +#~ msgid "then click" +#~ msgstr "然后点击" + +#~ msgid "No choices to choose from" +#~ msgstr "选择表单没有选" + +#~ msgid "+ Add Row" +#~ msgstr "添加行" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "没有字段,点击添加按钮创建第一个字段。" + +#~ msgid "Close Sub Field" +#~ msgstr "选择子字段" + +#~ msgid "+ Add Sub Field" +#~ msgstr "添加子字段" + +#~ msgid "Alternate Text" +#~ msgstr "替换文本" + +#~ msgid "Thumbnail is advised" +#~ msgstr "建设使用缩略图" + +#~ msgid "Image Updated" +#~ msgstr "图片已更新" + +#~ msgid "Grid" +#~ msgstr "栅格" + +#~ msgid "List" +#~ msgstr "列表" + +#~ msgid "1 image selected" +#~ msgstr "已选择1张图片" + +#~ msgid "{count} images selected" +#~ msgstr "选择了 {count}张图片" + +#~ msgid "Added" +#~ msgstr "已添加" + +#~ msgid "Image already exists in gallery" +#~ msgstr "图片已在相册中" + +#~ msgid "Repeater Fields" +#~ msgstr "复制字段" + +#~ msgid "Table (default)" +#~ msgstr "表格(默认)" + +#~ msgid "Run filter \"the_content\"?" +#~ msgstr "是否运行过滤器 \"the_content\"?" + +#~ msgid "Media (Edit)" +#~ msgstr "媒体(编辑)" diff --git a/lang/pro/acf-zh_TW.po b/lang/pro/acf-zh_TW.po new file mode 100644 index 0000000..787db04 --- /dev/null +++ b/lang/pro/acf-zh_TW.po @@ -0,0 +1,4152 @@ +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields Pro v5.8.7\n" +"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n" +"POT-Creation-Date: 2020-02-13 17:09+0800\n" +"PO-Revision-Date: 2020-03-10 13:40+0800\n" +"Last-Translator: Audi Lu \n" +"Language-Team: Audi Lu \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: Poedit 2.1.1\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-WPHeader: acf.php\n" +"X-Textdomain-Support: yes\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" + +#: acf.php:68 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:340 includes/admin/admin.php:52 +msgid "Field Groups" +msgstr "欄位群組" + +#: acf.php:341 +msgid "Field Group" +msgstr "欄位群組" + +#: acf.php:342 acf.php:374 includes/admin/admin.php:53 +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New" +msgstr "新建" + +#: acf.php:343 +msgid "Add New Field Group" +msgstr "新增欄位群組" + +#: acf.php:344 +msgid "Edit Field Group" +msgstr "編輯欄位群組" + +#: acf.php:345 +msgid "New Field Group" +msgstr "新增欄位群組" + +#: acf.php:346 +msgid "View Field Group" +msgstr "檢視欄位群組" + +#: acf.php:347 +msgid "Search Field Groups" +msgstr "搜尋欄位群組" + +#: acf.php:348 +msgid "No Field Groups found" +msgstr "沒有找到欄位群組" + +#: acf.php:349 +msgid "No Field Groups found in Trash" +msgstr "回收桶裡沒有找到欄位群組" + +#: acf.php:372 includes/admin/admin-field-group.php:220 +#: includes/admin/admin-field-groups.php:530 +#: pro/fields/class-acf-field-clone.php:811 +msgid "Fields" +msgstr "欄位" + +#: acf.php:373 +msgid "Field" +msgstr "欄位" + +#: acf.php:375 +msgid "Add New Field" +msgstr "新增欄位" + +#: acf.php:376 +msgid "Edit Field" +msgstr "編輯欄位" + +#: acf.php:377 includes/admin/views/field-group-fields.php:41 +msgid "New Field" +msgstr "新欄位" + +#: acf.php:378 +msgid "View Field" +msgstr "檢視欄位" + +#: acf.php:379 +msgid "Search Fields" +msgstr "搜尋欄位" + +#: acf.php:380 +msgid "No Fields found" +msgstr "沒有找到欄位" + +#: acf.php:381 +msgid "No Fields found in Trash" +msgstr "回收桶中沒有找到欄位群組" + +#: acf.php:416 includes/admin/admin-field-group.php:402 +#: includes/admin/admin-field-groups.php:587 +msgid "Inactive" +msgstr "未啟用" + +#: acf.php:421 +#, php-format +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "未啟用 (%s)" + +#: includes/acf-field-functions.php:831 +#: includes/admin/admin-field-group.php:178 +msgid "(no label)" +msgstr "(無標籤)" + +#: includes/acf-field-group-functions.php:819 +#: includes/admin/admin-field-group.php:180 +msgid "copy" +msgstr "複製" + +#: includes/admin/admin-field-group.php:86 +#: includes/admin/admin-field-group.php:87 +#: includes/admin/admin-field-group.php:89 +msgid "Field group updated." +msgstr "欄位群組已更新。" + +#: includes/admin/admin-field-group.php:88 +msgid "Field group deleted." +msgstr "欄位群組已刪除。" + +#: includes/admin/admin-field-group.php:91 +msgid "Field group published." +msgstr "欄位群組已發佈。" + +#: includes/admin/admin-field-group.php:92 +msgid "Field group saved." +msgstr "設定已儲存。" + +#: includes/admin/admin-field-group.php:93 +msgid "Field group submitted." +msgstr "欄位群組已提交。" + +#: includes/admin/admin-field-group.php:94 +msgid "Field group scheduled for." +msgstr "欄位群組已排程。" + +#: includes/admin/admin-field-group.php:95 +msgid "Field group draft updated." +msgstr "欄位群組草稿已更新。" + +#: includes/admin/admin-field-group.php:171 +msgid "The string \"field_\" may not be used at the start of a field name" +msgstr "\"field_\" 這個字串不能用在欄位名稱的開頭" + +#: includes/admin/admin-field-group.php:172 +msgid "This field cannot be moved until its changes have been saved" +msgstr "在儲存變更之前,欄位無法搬移" + +#: includes/admin/admin-field-group.php:173 +msgid "Field group title is required" +msgstr "欄位群組的標題為必填" + +#: includes/admin/admin-field-group.php:174 +msgid "Move to trash. Are you sure?" +msgstr "選取項目會移至回收桶,確定要繼續進行嗎?" + +#: includes/admin/admin-field-group.php:175 +msgid "No toggle fields available" +msgstr "沒有可用的條件欄位" + +#: includes/admin/admin-field-group.php:176 +msgid "Move Custom Field" +msgstr "移動自訂欄位" + +#: includes/admin/admin-field-group.php:177 +msgid "Checked" +msgstr "已選" + +#: includes/admin/admin-field-group.php:179 +msgid "(this field)" +msgstr "(此欄位)" + +#: includes/admin/admin-field-group.php:181 +#: includes/admin/views/field-group-field-conditional-logic.php:51 +#: includes/admin/views/field-group-field-conditional-logic.php:151 +#: includes/admin/views/field-group-locations.php:29 +#: includes/admin/views/html-location-group.php:3 +#: includes/api/api-helpers.php:3649 +msgid "or" +msgstr "或" + +#: includes/admin/admin-field-group.php:182 +msgid "Null" +msgstr "空" + +#: includes/admin/admin-field-group.php:221 +msgid "Location" +msgstr "位置" + +#: includes/admin/admin-field-group.php:222 +#: includes/admin/tools/class-acf-admin-tool-export.php:295 +msgid "Settings" +msgstr "設定" + +#: includes/admin/admin-field-group.php:372 +msgid "Field Keys" +msgstr "欄位鍵值" + +#: includes/admin/admin-field-group.php:402 +#: includes/admin/views/field-group-options.php:9 +msgid "Active" +msgstr "啟用" + +#: includes/admin/admin-field-group.php:767 +msgid "Move Complete." +msgstr "完成搬移。" + +#: includes/admin/admin-field-group.php:768 +#, php-format +msgid "The %s field can now be found in the %s field group" +msgstr "%s 欄位現在可以在 %s 欄位群組中找到" + +#: includes/admin/admin-field-group.php:769 +msgid "Close Window" +msgstr "關閉視窗" + +#: includes/admin/admin-field-group.php:810 +msgid "Please select the destination for this field" +msgstr "請選取這個欄位的目標欄位群組" + +#: includes/admin/admin-field-group.php:817 +msgid "Move Field" +msgstr "移動欄位" + +#: includes/admin/admin-field-groups.php:89 +#, php-format +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "啟用 (%s)" + +#: includes/admin/admin-field-groups.php:156 +#, php-format +msgid "Field group duplicated." +msgid_plural "%s field groups duplicated." +msgstr[0] "%s 欄位群組重複。" + +#: includes/admin/admin-field-groups.php:243 +#, php-format +msgid "Field group synchronised." +msgid_plural "%s field groups synchronised." +msgstr[0] "%s 欄位群組已同步。" + +#: includes/admin/admin-field-groups.php:414 +#: includes/admin/admin-field-groups.php:577 +msgid "Sync available" +msgstr "可同步" + +#: includes/admin/admin-field-groups.php:527 includes/forms/form-front.php:38 +#: pro/fields/class-acf-field-gallery.php:353 +msgid "Title" +msgstr "標題" + +#: includes/admin/admin-field-groups.php:528 +#: includes/admin/views/field-group-options.php:96 +#: includes/admin/views/html-admin-page-upgrade-network.php:38 +#: includes/admin/views/html-admin-page-upgrade-network.php:49 +#: pro/fields/class-acf-field-gallery.php:380 +msgid "Description" +msgstr "描述" + +#: includes/admin/admin-field-groups.php:529 +msgid "Status" +msgstr "狀態" + +#. Description of the plugin/theme +#: includes/admin/admin-field-groups.php:626 +msgid "Customize WordPress with powerful, professional and intuitive fields." +msgstr "使用專業直覺且功能強大的欄位來客製 WordPress。" + +#: includes/admin/admin-field-groups.php:628 includes/admin/admin.php:123 +#: pro/admin/views/html-settings-updates.php:107 +msgid "Changelog" +msgstr "更新日誌" + +#: includes/admin/admin-field-groups.php:633 +#, php-format +msgid "See what's new in version %s." +msgstr "了解 %s 版本新增的功能。" + +#: includes/admin/admin-field-groups.php:636 +msgid "Resources" +msgstr "資源" + +#: includes/admin/admin-field-groups.php:638 +msgid "Website" +msgstr "網站" + +#: includes/admin/admin-field-groups.php:639 +msgid "Documentation" +msgstr "文件" + +#: includes/admin/admin-field-groups.php:640 +msgid "Support" +msgstr "支援" + +#: includes/admin/admin-field-groups.php:642 +#: includes/admin/views/settings-info.php:81 +msgid "Pro" +msgstr "Pro" + +#: includes/admin/admin-field-groups.php:647 +#, php-format +msgid "Thank you for creating with ACF." +msgstr "感謝您使用 ACF。" + +#: includes/admin/admin-field-groups.php:686 +msgid "Duplicate this item" +msgstr "複製此項目" + +#: includes/admin/admin-field-groups.php:686 +#: includes/admin/admin-field-groups.php:702 +#: includes/admin/views/field-group-field.php:46 +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate" +msgstr "複製" + +#: includes/admin/admin-field-groups.php:719 +#: includes/fields/class-acf-field-google-map.php:146 +#: includes/fields/class-acf-field-relationship.php:593 +msgid "Search" +msgstr "搜尋" + +#: includes/admin/admin-field-groups.php:778 +#, php-format +msgid "Select %s" +msgstr "選擇 %s" + +#: includes/admin/admin-field-groups.php:786 +msgid "Synchronise field group" +msgstr "同步欄位群組" + +#: includes/admin/admin-field-groups.php:786 +#: includes/admin/admin-field-groups.php:816 +msgid "Sync" +msgstr "同步" + +#: includes/admin/admin-field-groups.php:798 +msgid "Apply" +msgstr "套用" + +#: includes/admin/admin-field-groups.php:816 +msgid "Bulk Actions" +msgstr "批次動作" + +#: includes/admin/admin-tools.php:116 +#: includes/admin/views/html-admin-tools.php:21 +msgid "Tools" +msgstr "工具" + +#: includes/admin/admin-upgrade.php:47 includes/admin/admin-upgrade.php:109 +#: includes/admin/admin-upgrade.php:110 includes/admin/admin-upgrade.php:173 +#: includes/admin/views/html-admin-page-upgrade-network.php:24 +#: includes/admin/views/html-admin-page-upgrade.php:26 +msgid "Upgrade Database" +msgstr "升級資料庫" + +#: includes/admin/admin-upgrade.php:197 +msgid "Review sites & upgrade" +msgstr "檢查網站和升級" + +#: includes/admin/admin.php:51 includes/admin/views/field-group-options.php:110 +msgid "Custom Fields" +msgstr "自訂欄位" + +#: includes/admin/admin.php:57 +msgid "Info" +msgstr "資訊" + +#: includes/admin/admin.php:122 +msgid "What's New" +msgstr "最新消息" + +#: includes/admin/tools/class-acf-admin-tool-export.php:33 +msgid "Export Field Groups" +msgstr "匯出欄位群組" + +#: includes/admin/tools/class-acf-admin-tool-export.php:38 +#: includes/admin/tools/class-acf-admin-tool-export.php:342 +#: includes/admin/tools/class-acf-admin-tool-export.php:371 +#| msgid "Create PHP" +msgid "Generate PHP" +msgstr "產出 PHP" + +#: includes/admin/tools/class-acf-admin-tool-export.php:97 +#: includes/admin/tools/class-acf-admin-tool-export.php:135 +msgid "No field groups selected" +msgstr "尚未選擇欄位群組" + +#: includes/admin/tools/class-acf-admin-tool-export.php:174 +#, php-format +#| msgid "Export Field Groups" +msgid "Exported 1 field group." +msgid_plural "Exported %s field groups." +msgstr[0] "已匯出 %s 個欄位群組。" + +#: includes/admin/tools/class-acf-admin-tool-export.php:241 +#: includes/admin/tools/class-acf-admin-tool-export.php:269 +msgid "Select Field Groups" +msgstr "選取欄位群組" + +#: includes/admin/tools/class-acf-admin-tool-export.php:336 +msgid "" +"Select the field groups you would like to export and then select your export " +"method. Use the download button to export to a .json file which you can then " +"import to another ACF installation. Use the generate button to export to PHP " +"code which you can place in your theme." +msgstr "" +"選擇你想匯出的欄位群組,再選擇匯出方式。使用匯出檔案將匯出一個 .json 檔,讓你" +"可以在其他安裝 ACF 的站台匯入設定。使用產出 PHP 按鈕將會匯出 PHP 程式碼,以便" +"置入你的佈景之中。" + +#: includes/admin/tools/class-acf-admin-tool-export.php:341 +#| msgid "Export" +msgid "Export File" +msgstr "匯出檔案" + +#: includes/admin/tools/class-acf-admin-tool-export.php:414 +msgid "" +"The following code can be used to register a local version of the selected " +"field group(s). A local field group 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." +msgstr "" +"以下程式碼可用於註冊所選欄位群組的本機版本。本機的欄位群組可以提供許多好處," +"例如更快的載入時間、版本控制和動態欄位/設定。 只需將以下程式碼複製並貼到佈景" +"主題的 functions.php 文件中,或將它自外部文件包含進來。" + +#: includes/admin/tools/class-acf-admin-tool-export.php:446 +msgid "Copy to clipboard" +msgstr "複製到剪貼簿" + +#: includes/admin/tools/class-acf-admin-tool-export.php:483 +msgid "Copied" +msgstr "已複製" + +#: includes/admin/tools/class-acf-admin-tool-import.php:26 +msgid "Import Field Groups" +msgstr "匯入欄位群組" + +#: includes/admin/tools/class-acf-admin-tool-import.php:47 +msgid "" +"Select the Advanced Custom Fields JSON file you would like to import. When " +"you click the import button below, ACF will import the field groups." +msgstr "" +"選取你想匯入的 Advanced Custom Fields JSON 檔案。當你點擊下方匯入按鈕時,ACF " +"將匯入欄位群組。" + +#: includes/admin/tools/class-acf-admin-tool-import.php:52 +#: includes/fields/class-acf-field-file.php:57 +msgid "Select File" +msgstr "選擇檔案" + +#: includes/admin/tools/class-acf-admin-tool-import.php:62 +msgid "Import File" +msgstr "匯入檔案" + +#: includes/admin/tools/class-acf-admin-tool-import.php:85 +#: includes/fields/class-acf-field-file.php:170 +msgid "No file selected" +msgstr "沒有選擇檔案" + +#: includes/admin/tools/class-acf-admin-tool-import.php:93 +msgid "Error uploading file. Please try again" +msgstr "檔案上傳錯誤。請再試一次" + +#: includes/admin/tools/class-acf-admin-tool-import.php:98 +msgid "Incorrect file type" +msgstr "檔案類型不正確" + +#: includes/admin/tools/class-acf-admin-tool-import.php:107 +msgid "Import file empty" +msgstr "匯入的檔案是空的" + +#: includes/admin/tools/class-acf-admin-tool-import.php:138 +#, php-format +msgid "Imported 1 field group" +msgid_plural "Imported %s field groups" +msgstr[0] "匯入 %s 欄位群組" + +#: includes/admin/views/field-group-field-conditional-logic.php:25 +msgid "Conditional Logic" +msgstr "啟用條件邏輯" + +#: includes/admin/views/field-group-field-conditional-logic.php:51 +msgid "Show this field if" +msgstr "符合下列規則就顯示欄位" + +#: includes/admin/views/field-group-field-conditional-logic.php:138 +#: includes/admin/views/html-location-rule.php:86 +msgid "and" +msgstr "且" + +#: includes/admin/views/field-group-field-conditional-logic.php:153 +#: includes/admin/views/field-group-locations.php:31 +msgid "Add rule group" +msgstr "新增規則組" + +#: includes/admin/views/field-group-field.php:38 +#: pro/fields/class-acf-field-flexible-content.php:410 +#: pro/fields/class-acf-field-repeater.php:299 +msgid "Drag to reorder" +msgstr "拖曳排序" + +#: includes/admin/views/field-group-field.php:42 +#: includes/admin/views/field-group-field.php:45 +msgid "Edit field" +msgstr "編輯欄位" + +#: includes/admin/views/field-group-field.php:45 +#: includes/fields/class-acf-field-file.php:152 +#: includes/fields/class-acf-field-image.php:138 +#: includes/fields/class-acf-field-link.php:139 +#: pro/fields/class-acf-field-gallery.php:337 +msgid "Edit" +msgstr "編輯" + +#: includes/admin/views/field-group-field.php:46 +msgid "Duplicate field" +msgstr "複製欄位" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move field to another group" +msgstr "將欄位移到其它群组" + +#: includes/admin/views/field-group-field.php:47 +msgid "Move" +msgstr "移動" + +#: includes/admin/views/field-group-field.php:48 +msgid "Delete field" +msgstr "刪除欄位" + +#: includes/admin/views/field-group-field.php:48 +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete" +msgstr "刪除" + +#: includes/admin/views/field-group-field.php:65 +msgid "Field Label" +msgstr "欄位標籤" + +#: includes/admin/views/field-group-field.php:66 +msgid "This is the name which will appear on the EDIT page" +msgstr "顯示於內容編輯頁面、供使用者瞭解這個欄位用途的名稱" + +#: includes/admin/views/field-group-field.php:75 +msgid "Field Name" +msgstr "欄位名稱" + +#: includes/admin/views/field-group-field.php:76 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "" +"請使用英文及數字字元撰寫單一字串;不可使用空格,但可使用底線 _ 及破折號 -" + +#: includes/admin/views/field-group-field.php:85 +msgid "Field Type" +msgstr "欄位類型" + +#: includes/admin/views/field-group-field.php:96 +msgid "Instructions" +msgstr "說明" + +#: includes/admin/views/field-group-field.php:97 +msgid "Instructions for authors. Shown when submitting data" +msgstr "顯示給作者的說明文字。會在送出資料時顯示" + +#: includes/admin/views/field-group-field.php:106 +msgid "Required?" +msgstr "是否為必填欄位" + +#: includes/admin/views/field-group-field.php:129 +msgid "Wrapper Attributes" +msgstr "包覆元素的屬性" + +#: includes/admin/views/field-group-field.php:135 +msgid "width" +msgstr "寬度" + +#: includes/admin/views/field-group-field.php:150 +msgid "class" +msgstr "class" + +#: includes/admin/views/field-group-field.php:163 +msgid "id" +msgstr "id" + +#: includes/admin/views/field-group-field.php:175 +msgid "Close Field" +msgstr "關閉欄位" + +#: includes/admin/views/field-group-fields.php:4 +msgid "Order" +msgstr "順序" + +#: includes/admin/views/field-group-fields.php:5 +#: includes/fields/class-acf-field-button-group.php:198 +#: includes/fields/class-acf-field-checkbox.php:420 +#: includes/fields/class-acf-field-radio.php:311 +#: includes/fields/class-acf-field-select.php:433 +#: pro/fields/class-acf-field-flexible-content.php:582 +msgid "Label" +msgstr "標籤" + +#: includes/admin/views/field-group-fields.php:6 +#: includes/fields/class-acf-field-taxonomy.php:939 +#: pro/fields/class-acf-field-flexible-content.php:596 +msgid "Name" +msgstr "名稱" + +#: includes/admin/views/field-group-fields.php:7 +msgid "Key" +msgstr "索引鍵值" + +#: includes/admin/views/field-group-fields.php:8 +msgid "Type" +msgstr "類型" + +#: includes/admin/views/field-group-fields.php:14 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"尚無欄位。請點擊 [+ 新增欄位] 按鈕以建立群組中的第一個欄位。" + +#: includes/admin/views/field-group-fields.php:31 +msgid "+ Add Field" +msgstr "+ 新增欄位" + +#: includes/admin/views/field-group-locations.php:9 +msgid "Rules" +msgstr "規則" + +#: includes/admin/views/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/field-group-options.php:23 +msgid "Style" +msgstr "欄位群組樣式" + +#: includes/admin/views/field-group-options.php:30 +msgid "Standard (WP metabox)" +msgstr "標準 (WP 自訂區塊)" + +#: includes/admin/views/field-group-options.php:31 +msgid "Seamless (no metabox)" +msgstr "隨選即用 (沒有自訂區塊)" + +#: includes/admin/views/field-group-options.php:38 +msgid "Position" +msgstr "欄位群組位置" + +#: includes/admin/views/field-group-options.php:45 +msgid "High (after title)" +msgstr "頂端 (標題下方)" + +#: includes/admin/views/field-group-options.php:46 +msgid "Normal (after content)" +msgstr "一般 (內容下方)" + +#: includes/admin/views/field-group-options.php:47 +msgid "Side" +msgstr "側邊" + +#: includes/admin/views/field-group-options.php:55 +msgid "Label placement" +msgstr "標籤位置" + +#: includes/admin/views/field-group-options.php:62 +#: includes/fields/class-acf-field-tab.php:106 +msgid "Top aligned" +msgstr "置頂" + +#: includes/admin/views/field-group-options.php:63 +#: includes/fields/class-acf-field-tab.php:107 +msgid "Left aligned" +msgstr "置左" + +#: includes/admin/views/field-group-options.php:70 +msgid "Instruction placement" +msgstr "操作說明位置" + +#: includes/admin/views/field-group-options.php:77 +msgid "Below labels" +msgstr "欄位標籤下方" + +#: includes/admin/views/field-group-options.php:78 +msgid "Below fields" +msgstr "欄位下方" + +#: includes/admin/views/field-group-options.php:85 +msgid "Order No." +msgstr "欄位群組順序編號" + +#: includes/admin/views/field-group-options.php:86 +msgid "Field groups with a lower order will appear first" +msgstr "順序編號較小的欄位群組會先顯示" + +#: includes/admin/views/field-group-options.php:97 +msgid "Shown in field group list" +msgstr "顯示於欄位群組清單的說明內容" + +#: includes/admin/views/field-group-options.php:107 +msgid "Permalink" +msgstr "永久連結" + +#: includes/admin/views/field-group-options.php:108 +msgid "Content Editor" +msgstr "內容編輯器" + +#: includes/admin/views/field-group-options.php:109 +msgid "Excerpt" +msgstr "摘要" + +#: includes/admin/views/field-group-options.php:111 +msgid "Discussion" +msgstr "討論" + +#: includes/admin/views/field-group-options.php:112 +msgid "Comments" +msgstr "留言" + +#: includes/admin/views/field-group-options.php:113 +msgid "Revisions" +msgstr "內容修訂" + +#: includes/admin/views/field-group-options.php:114 +msgid "Slug" +msgstr "代稱" + +#: includes/admin/views/field-group-options.php:115 +msgid "Author" +msgstr "作者" + +#: includes/admin/views/field-group-options.php:116 +msgid "Format" +msgstr "格式" + +#: includes/admin/views/field-group-options.php:117 +msgid "Page Attributes" +msgstr "頁面屬性" + +#: includes/admin/views/field-group-options.php:118 +#: includes/fields/class-acf-field-relationship.php:607 +msgid "Featured Image" +msgstr "特色圖片" + +#: includes/admin/views/field-group-options.php:119 +msgid "Categories" +msgstr "類別" + +#: includes/admin/views/field-group-options.php:120 +msgid "Tags" +msgstr "標籤" + +#: includes/admin/views/field-group-options.php:121 +msgid "Send Trackbacks" +msgstr "傳送引用通知" + +#: includes/admin/views/field-group-options.php:128 +msgid "Hide on screen" +msgstr "需要在編輯畫面隱藏的項目" + +#: includes/admin/views/field-group-options.php:129 +msgid "Select items to hide them from the edit screen." +msgstr "選取要在編輯畫面隱藏的項目" + +#: includes/admin/views/field-group-options.php:129 +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/html-admin-page-upgrade-network.php:26 +#, php-format +msgid "" +"The following sites require a DB upgrade. Check the ones you want to update " +"and then click %s." +msgstr "以下站台需要進行資料庫更新。檢查要更新的內容,然後點擊 %s。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:26 +#: includes/admin/views/html-admin-page-upgrade-network.php:27 +#: includes/admin/views/html-admin-page-upgrade-network.php:92 +msgid "Upgrade Sites" +msgstr "升級網站" + +#: includes/admin/views/html-admin-page-upgrade-network.php:36 +#: includes/admin/views/html-admin-page-upgrade-network.php:47 +msgid "Site" +msgstr "網站" + +#: includes/admin/views/html-admin-page-upgrade-network.php:74 +#, php-format +msgid "Site requires database upgrade from %s to %s" +msgstr "網站需要從 %s 升級到 %s" + +#: includes/admin/views/html-admin-page-upgrade-network.php:76 +msgid "Site is up to date" +msgstr "網站已是最新版本" + +#: includes/admin/views/html-admin-page-upgrade-network.php:93 +#, php-format +msgid "" +"Database Upgrade complete. Return to network dashboard" +msgstr "資料庫更新完成 返回控制台 " + +#: includes/admin/views/html-admin-page-upgrade-network.php:113 +msgid "Please select at least one site to upgrade." +msgstr "請至少選擇一個要升級的站點。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:117 +#: includes/admin/views/html-notice-upgrade.php:38 +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/html-admin-page-upgrade-network.php:144 +#: includes/admin/views/html-admin-page-upgrade.php:31 +#, php-format +msgid "Upgrading data to version %s" +msgstr "將資料升級至 %s 版" + +#: includes/admin/views/html-admin-page-upgrade-network.php:167 +msgid "Upgrade complete." +msgstr "更新完成。" + +#: includes/admin/views/html-admin-page-upgrade-network.php:176 +#: includes/admin/views/html-admin-page-upgrade-network.php:185 +#: includes/admin/views/html-admin-page-upgrade.php:78 +#: includes/admin/views/html-admin-page-upgrade.php:87 +msgid "Upgrade failed." +msgstr "更新失敗。" + +#: includes/admin/views/html-admin-page-upgrade.php:30 +msgid "Reading upgrade tasks..." +msgstr "正在讀取更新任務..." + +#: includes/admin/views/html-admin-page-upgrade.php:33 +#, php-format +msgid "Database upgrade complete. See what's new" +msgstr "資料庫更新完成 查看新內容 " + +#: includes/admin/views/html-admin-page-upgrade.php:116 +#: includes/ajax/class-acf-ajax-upgrade.php:32 +msgid "No updates available." +msgstr "沒有可用的更新。" + +#: includes/admin/views/html-admin-tools.php:21 +msgid "Back to all tools" +msgstr "返回所有工具" + +#: includes/admin/views/html-location-group.php:3 +msgid "Show this field group if" +msgstr "顯示此欄位群組的條件" + +#: includes/admin/views/html-notice-upgrade.php:8 +#: pro/fields/class-acf-field-repeater.php:25 +msgid "Repeater" +msgstr "重複器" + +#: includes/admin/views/html-notice-upgrade.php:9 +#: pro/fields/class-acf-field-flexible-content.php:25 +msgid "Flexible Content" +msgstr "彈性內容" + +#: includes/admin/views/html-notice-upgrade.php:10 +#: pro/fields/class-acf-field-gallery.php:25 +msgid "Gallery" +msgstr "圖庫" + +#: includes/admin/views/html-notice-upgrade.php:11 +#: pro/locations/class-acf-location-options-page.php:26 +msgid "Options Page" +msgstr "設定頁面" + +#: includes/admin/views/html-notice-upgrade.php:21 +msgid "Database Upgrade Required" +msgstr "資料庫需要升級" + +#: includes/admin/views/html-notice-upgrade.php:22 +#, php-format +msgid "Thank you for updating to %s v%s!" +msgstr "感謝您更新至 %s %s 版!" + +#: includes/admin/views/html-notice-upgrade.php:22 +msgid "" +"This version contains improvements to your database and requires an upgrade." +msgstr "此版本包含對資料庫的改進,需要更新。" + +#: includes/admin/views/html-notice-upgrade.php:24 +#, php-format +msgid "" +"Please also check all premium add-ons (%s) are updated to the latest version." +msgstr "請檢查所有高級項目 (%s) 均更新至最新版本。" + +#: includes/admin/views/settings-info.php:3 +msgid "Welcome to Advanced Custom Fields" +msgstr "歡迎來到高級自訂欄位" + +#: includes/admin/views/settings-info.php:4 +#, php-format +msgid "" +"Thank you for updating! ACF %s is bigger and better than ever before. We " +"hope you like it." +msgstr "" +"感謝你完成更新!ACF %s 版比之前版本有更大更多的改進,開發團隊希望你會喜歡它。" + +#: includes/admin/views/settings-info.php:15 +msgid "A Smoother Experience" +msgstr "更順暢的體驗" + +#: includes/admin/views/settings-info.php:18 +msgid "Improved Usability" +msgstr "改進可用性" + +#: includes/admin/views/settings-info.php:19 +msgid "" +"Including the popular Select2 library has improved both usability and speed " +"across a number of field types including post object, page link, taxonomy " +"and select." +msgstr "" +"引入流行的 Select2 函式庫提升了多種欄位類型的可用性和速度,包括文章物件、頁面" +"連結、分類法和選擇控制項。" + +#: includes/admin/views/settings-info.php:22 +msgid "Improved Design" +msgstr "改進設計" + +#: includes/admin/views/settings-info.php:23 +msgid "" +"Many fields have undergone a visual refresh to make ACF look better than " +"ever! Noticeable changes are seen on the gallery, relationship and oEmbed " +"(new) fields!" +msgstr "" +"許多欄位都經過了視覺更新,使 ACF 看起來比以前更好!在圖庫、關係和 oEmbed " +"(新) 欄位上可看到顯著的變化!" + +#: includes/admin/views/settings-info.php:26 +msgid "Improved Data" +msgstr "改進資料" + +#: includes/admin/views/settings-info.php:27 +msgid "" +"Redesigning the data architecture has allowed sub fields to live " +"independently from their parents. This allows you to drag and drop fields in " +"and out of parent fields!" +msgstr "" +"重新設計資料架構使子欄位能夠獨立於父欄位而存在。這允許您在父欄位裡將欄位拖放" +"至外層或內層!" + +#: includes/admin/views/settings-info.php:35 +msgid "Goodbye Add-ons. Hello PRO" +msgstr "告別附加元件,擁抱 Pro 版" + +#: includes/admin/views/settings-info.php:38 +msgid "Introducing ACF PRO" +msgstr "ACF PRO介绍" + +#: includes/admin/views/settings-info.php:39 +msgid "" +"We're changing the way premium functionality is delivered in an exciting way!" +msgstr "我們正在以令人興奮的方式改變提供高級功能的方式!" + +#: includes/admin/views/settings-info.php:40 +#, php-format +msgid "" +"All 4 premium add-ons have been combined into a new Pro " +"version of ACF. With both personal and developer licenses available, " +"premium functionality is more affordable and accessible than ever before!" +msgstr "" +"所有 4 個優質 Add-on 擴充元件已被合併成一個新的ACF 的專業版。提供個人和開發者授權,價格比以往任何時候更實惠!" + +#: includes/admin/views/settings-info.php:44 +msgid "Powerful Features" +msgstr "強大的功能" + +#: includes/admin/views/settings-info.php:45 +msgid "" +"ACF PRO contains powerful features such as repeatable data, flexible content " +"layouts, a beautiful gallery field and the ability to create extra admin " +"options pages!" +msgstr "" +"ACF PRO包含強大的功能,例如可重複資料,彈性內容排版,漂亮的相簿欄位以及建立額" +"外管理選項頁面的功能!" + +#: includes/admin/views/settings-info.php:46 +#, php-format +msgid "Read more about ACF PRO features." +msgstr "進一步了解ACF PRO的功能。" + +#: includes/admin/views/settings-info.php:50 +msgid "Easy Upgrading" +msgstr "輕鬆升級" + +#: includes/admin/views/settings-info.php:51 +msgid "" +"Upgrading to ACF PRO is easy. Simply purchase a license online and download " +"the plugin!" +msgstr "升級到 ACF PRO 很容易。 只需在線購買許可授權並下載外掛即可!" + +#: includes/admin/views/settings-info.php:52 +#, php-format +msgid "" +"We also wrote an upgrade guide to answer any questions, " +"but if you do have one, please contact our support team via the help desk." +msgstr "" +"我們編寫了 升級指南 來回答任何問題,如您有任何問題,請通過" +" 服務台 與支援小組聯絡。" + +#: includes/admin/views/settings-info.php:61 +msgid "New Features" +msgstr "新功能" + +#: includes/admin/views/settings-info.php:66 +#| msgid "Edit Field" +msgid "Link Field" +msgstr "連結欄位" + +#: includes/admin/views/settings-info.php:67 +msgid "" +"The Link field provides a simple way to select or define a link (url, title, " +"target)." +msgstr "連結欄位能簡單的選擇或定義連結 (網址、標題、開啟目標)。" + +#: includes/admin/views/settings-info.php:71 +#| msgid "Move Field" +msgid "Group Field" +msgstr "群組欄位" + +#: includes/admin/views/settings-info.php:72 +msgid "The Group field provides a simple way to create a group of fields." +msgstr "群組欄位能簡單的建立欄位的群組。" + +#: includes/admin/views/settings-info.php:76 +#| msgid "Edit Field" +msgid "oEmbed Field" +msgstr "oEmbed 欄位" + +#: includes/admin/views/settings-info.php:77 +msgid "" +"The oEmbed field allows an easy way to embed videos, images, tweets, audio, " +"and other content." +msgstr "oEmbed 欄位能簡單的嵌入影片、圖片、推文、音檔和其他內容。" + +#: includes/admin/views/settings-info.php:81 +#| msgid "Close Field" +msgid "Clone Field" +msgstr "分身欄位" + +#: includes/admin/views/settings-info.php:82 +msgid "The clone field allows you to select and display existing fields." +msgstr "分身欄位能讓你選擇並顯示現有的欄位。" + +#: includes/admin/views/settings-info.php:86 +msgid "More AJAX" +msgstr "更多 AJAX" + +#: includes/admin/views/settings-info.php:87 +msgid "More fields use AJAX powered search to speed up page loading." +msgstr "更多欄位使用 AJAX 搜尋來加快頁面載入速度。" + +#: includes/admin/views/settings-info.php:91 +msgid "Local JSON" +msgstr "本機 JSON" + +#: includes/admin/views/settings-info.php:92 +msgid "" +"New auto export to JSON feature improves speed and allows for syncronisation." +msgstr "新的自動匯出 JSON 功能改善了速度並允許同步。" + +#: includes/admin/views/settings-info.php:96 +msgid "Easy Import / Export" +msgstr "輕鬆 匯入 / 匯出" + +#: includes/admin/views/settings-info.php:97 +msgid "Both import and export can easily be done through a new tools page." +msgstr "匯入 / 匯出可通過新工具頁面輕鬆完成。" + +#: includes/admin/views/settings-info.php:101 +msgid "New Form Locations" +msgstr "新表單位置" + +#: includes/admin/views/settings-info.php:102 +msgid "" +"Fields can now be mapped to menus, menu items, comments, widgets and all " +"user forms!" +msgstr "欄位現在可以被對應到選單、選單項目、留言、小工具及所有使用者表單!" + +#: includes/admin/views/settings-info.php:106 +#| msgid "Move Custom Field" +msgid "More Customization" +msgstr "更多自訂" + +#: includes/admin/views/settings-info.php:107 +msgid "" +"New PHP (and JS) actions and filters have been added to allow for more " +"customization." +msgstr "加入了新的 PHP ( 和 JS ) 的 actions 和 filters,方便進行更多客製。" + +#: includes/admin/views/settings-info.php:111 +msgid "Fresh UI" +msgstr "全新 UI" + +#: includes/admin/views/settings-info.php:112 +msgid "" +"The entire plugin has had a design refresh including new field types, " +"settings and design!" +msgstr "整體外掛翻新了介面,包括新的欄位類型,設定和設計!" + +#: includes/admin/views/settings-info.php:116 +msgid "New Settings" +msgstr "新設定" + +#: includes/admin/views/settings-info.php:117 +msgid "" +"Field group settings have been added for Active, Label Placement, " +"Instructions Placement and Description." +msgstr "欄位群組設定加入了啟用、標籤位置、說明位置及描述。" + +#: includes/admin/views/settings-info.php:121 +msgid "Better Front End Forms" +msgstr "更好的前端表單" + +#: includes/admin/views/settings-info.php:122 +msgid "" +"acf_form() can now create a new post on submission with lots of new settings." +msgstr "acf_form() 現在可以在提交時創建一篇新文章,並附帶大量新設定。" + +#: includes/admin/views/settings-info.php:126 +msgid "Better Validation" +msgstr "更好的驗證" + +#: includes/admin/views/settings-info.php:127 +msgid "Form validation is now done via PHP + AJAX in favour of only JS." +msgstr "表單驗證現在通過 PHP + AJAX 完成。" + +#: includes/admin/views/settings-info.php:131 +msgid "Moving Fields" +msgstr "移動欄位" + +#: includes/admin/views/settings-info.php:132 +msgid "" +"New field group functionality allows you to move a field between groups & " +"parents." +msgstr "新的欄位群組功能,允許您在群組和上層群組之間移動欄位。" + +#: includes/admin/views/settings-info.php:143 +#, php-format +msgid "We think you'll love the changes in %s." +msgstr "開發團隊希望您會喜愛 %s 版的變更。" + +#: includes/api/api-helpers.php:827 +msgid "Thumbnail" +msgstr "縮略圖" + +#: includes/api/api-helpers.php:828 +msgid "Medium" +msgstr "中" + +#: includes/api/api-helpers.php:829 +msgid "Large" +msgstr "大" + +#: includes/api/api-helpers.php:878 +msgid "Full Size" +msgstr "完整尺寸" + +#: includes/api/api-helpers.php:1599 includes/api/api-term.php:147 +#: pro/fields/class-acf-field-clone.php:996 +msgid "(no title)" +msgstr "(無標題)" + +#: includes/api/api-helpers.php:3570 +#, php-format +msgid "Image width must be at least %dpx." +msgstr "圖片寬度必須至少為 %d px。" + +#: includes/api/api-helpers.php:3575 +#, php-format +msgid "Image width must not exceed %dpx." +msgstr "圖片寬度不得超過%dpx。" + +#: includes/api/api-helpers.php:3591 +#, php-format +msgid "Image height must be at least %dpx." +msgstr "圖片高度必須至少 %dpx." + +#: includes/api/api-helpers.php:3596 +#, php-format +msgid "Image height must not exceed %dpx." +msgstr "圖片高度不得超過%dpx。" + +#: includes/api/api-helpers.php:3614 +#, php-format +msgid "File size must be at least %s." +msgstr "檔案大小至少是 %s。" + +#: includes/api/api-helpers.php:3619 +#, php-format +msgid "File size must must not exceed %s." +msgstr "檔案大小最大不能超過 %s。" + +#: includes/api/api-helpers.php:3653 +#, php-format +msgid "File type must be %s." +msgstr "檔案類型必須是%s。" + +#: includes/assets.php:184 +msgid "The changes you made will be lost if you navigate away from this page" +msgstr "如果您離開這個頁面,您所做的變更將遺失" + +#: includes/assets.php:187 includes/fields/class-acf-field-select.php:259 +#| msgid "Select" +msgctxt "verb" +msgid "Select" +msgstr "選擇" + +#: includes/assets.php:188 +#| msgid "Edit" +msgctxt "verb" +msgid "Edit" +msgstr "編輯" + +#: includes/assets.php:189 +#| msgid "Update" +msgctxt "verb" +msgid "Update" +msgstr "更新" + +#: includes/assets.php:190 +msgid "Uploaded to this post" +msgstr "已上傳到這篇文章" + +#: includes/assets.php:191 +msgid "Expand Details" +msgstr "展開詳細資料" + +#: includes/assets.php:192 +msgid "Collapse Details" +msgstr "收合詳細資料" + +#: includes/assets.php:193 +msgid "Restricted" +msgstr "受限" + +#: includes/assets.php:194 includes/fields/class-acf-field-image.php:66 +msgid "All images" +msgstr "所有圖片" + +#: includes/assets.php:197 +msgid "Validation successful" +msgstr "驗證成功" + +#: includes/assets.php:198 includes/validation.php:285 +#: includes/validation.php:296 +msgid "Validation failed" +msgstr "驗證失敗" + +#: includes/assets.php:199 +msgid "1 field requires attention" +msgstr "1 個欄位需要注意" + +#: includes/assets.php:200 +#, php-format +msgid "%d fields require attention" +msgstr "%d 個欄位需要注意" + +#: includes/assets.php:203 +#| msgid "Move to trash. Are you sure?" +msgid "Are you sure?" +msgstr "確定要繼續操作嗎?" + +#: includes/assets.php:204 includes/fields/class-acf-field-true_false.php:79 +#: includes/fields/class-acf-field-true_false.php:159 +#: pro/admin/views/html-settings-updates.php:89 +msgid "Yes" +msgstr "是" + +#: includes/assets.php:205 includes/fields/class-acf-field-true_false.php:80 +#: includes/fields/class-acf-field-true_false.php:174 +#: pro/admin/views/html-settings-updates.php:99 +msgid "No" +msgstr "否" + +#: includes/assets.php:206 includes/fields/class-acf-field-file.php:154 +#: includes/fields/class-acf-field-image.php:140 +#: includes/fields/class-acf-field-link.php:140 +#: pro/fields/class-acf-field-gallery.php:338 +#: pro/fields/class-acf-field-gallery.php:478 +msgid "Remove" +msgstr "刪除" + +#: includes/assets.php:207 +msgid "Cancel" +msgstr "取消" + +#: includes/assets.php:210 +msgid "Has any value" +msgstr "含有任何設定值" + +#: includes/assets.php:211 +msgid "Has no value" +msgstr "不含設定值" + +#: includes/assets.php:212 +#| msgid "is equal to" +msgid "Value is equal to" +msgstr "設定值等於" + +#: includes/assets.php:213 +#| msgid "is not equal to" +msgid "Value is not equal to" +msgstr "設定值不等於" + +#: includes/assets.php:214 +msgid "Value matches pattern" +msgstr "設定值符合模式" + +#: includes/assets.php:215 +msgid "Value contains" +msgstr "設定值包含" + +#: includes/assets.php:216 +msgid "Value is greater than" +msgstr "設定值大於" + +#: includes/assets.php:217 +msgid "Value is less than" +msgstr "設定值小於" + +#: includes/assets.php:218 +msgid "Selection is greater than" +msgstr "選擇大於" + +#: includes/assets.php:219 +#| msgid "Select File" +msgid "Selection is less than" +msgstr "選擇少於" + +#: includes/assets.php:222 includes/forms/form-comment.php:166 +#: pro/admin/admin-options-page.php:325 +msgid "Edit field group" +msgstr "編輯欄位群組" + +#: includes/fields.php:308 +msgid "Field type does not exist" +msgstr "欄位類型不存在" + +#: includes/fields.php:308 +msgid "Unknown" +msgstr "未知" + +#: includes/fields.php:349 +msgid "Basic" +msgstr "基本" + +#: includes/fields.php:350 includes/forms/form-front.php:47 +msgid "Content" +msgstr "內容" + +#: includes/fields.php:351 +msgid "Choice" +msgstr "選項" + +#: includes/fields.php:352 +msgid "Relational" +msgstr "關係" + +#: includes/fields.php:353 +msgid "jQuery" +msgstr "jQuery" + +#: includes/fields.php:354 includes/fields/class-acf-field-button-group.php:177 +#: includes/fields/class-acf-field-checkbox.php:389 +#: includes/fields/class-acf-field-group.php:474 +#: includes/fields/class-acf-field-radio.php:290 +#: pro/fields/class-acf-field-clone.php:843 +#: pro/fields/class-acf-field-flexible-content.php:553 +#: pro/fields/class-acf-field-flexible-content.php:602 +#: pro/fields/class-acf-field-repeater.php:448 +msgid "Layout" +msgstr "版面配置" + +#: includes/fields/class-acf-field-accordion.php:24 +msgid "Accordion" +msgstr "收合容器" + +#: includes/fields/class-acf-field-accordion.php:99 +msgid "Open" +msgstr "開啟" + +#: includes/fields/class-acf-field-accordion.php:100 +msgid "Display this accordion as open on page load." +msgstr "將此收合容器顯示為在頁面載入時打開。" + +#: includes/fields/class-acf-field-accordion.php:109 +msgid "Multi-expand" +msgstr "多擴展" + +#: includes/fields/class-acf-field-accordion.php:110 +msgid "Allow this accordion to open without closing others." +msgstr "允許此收合容器打開而不關閉其他。" + +#: includes/fields/class-acf-field-accordion.php:119 +#: includes/fields/class-acf-field-tab.php:114 +msgid "Endpoint" +msgstr "端點" + +#: includes/fields/class-acf-field-accordion.php:120 +msgid "" +"Define an endpoint for the previous accordion to stop. This accordion will " +"not be visible." +msgstr "定義一個前收合容器停止的端點。此收合容器將不可見。" + +#: includes/fields/class-acf-field-button-group.php:24 +msgid "Button Group" +msgstr "按鈕群組" + +#: includes/fields/class-acf-field-button-group.php:149 +#: includes/fields/class-acf-field-checkbox.php:344 +#: includes/fields/class-acf-field-radio.php:235 +#: includes/fields/class-acf-field-select.php:364 +msgid "Choices" +msgstr "選項" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "Enter each choice on a new line." +msgstr "每行輸入一個選項" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"為了能對資料有的掌控,可以同時指定如下所示的選項值與選項標籤,格式為「選項" +"值 : 選項標籤」(請使用半形冒號,並在冒號前後加上半形空格區隔選項值及選項標" +"籤):" + +#: includes/fields/class-acf-field-button-group.php:150 +#: includes/fields/class-acf-field-checkbox.php:345 +#: includes/fields/class-acf-field-radio.php:236 +#: includes/fields/class-acf-field-select.php:365 +msgid "red : Red" +msgstr "red : 紅" + +#: includes/fields/class-acf-field-button-group.php:158 +#: includes/fields/class-acf-field-page_link.php:513 +#: includes/fields/class-acf-field-post_object.php:411 +#: includes/fields/class-acf-field-radio.php:244 +#: includes/fields/class-acf-field-select.php:382 +#: includes/fields/class-acf-field-taxonomy.php:784 +#: includes/fields/class-acf-field-user.php:393 +msgid "Allow Null?" +msgstr "是否接受空值" + +#: includes/fields/class-acf-field-button-group.php:168 +#: includes/fields/class-acf-field-checkbox.php:380 +#: includes/fields/class-acf-field-color_picker.php:131 +#: includes/fields/class-acf-field-email.php:118 +#: includes/fields/class-acf-field-number.php:127 +#: includes/fields/class-acf-field-radio.php:281 +#: includes/fields/class-acf-field-range.php:149 +#: includes/fields/class-acf-field-select.php:373 +#: includes/fields/class-acf-field-text.php:95 +#: includes/fields/class-acf-field-textarea.php:102 +#: includes/fields/class-acf-field-true_false.php:135 +#: includes/fields/class-acf-field-url.php:100 +#: includes/fields/class-acf-field-wysiwyg.php:381 +msgid "Default Value" +msgstr "預設值" + +#: includes/fields/class-acf-field-button-group.php:169 +#: includes/fields/class-acf-field-email.php:119 +#: includes/fields/class-acf-field-number.php:128 +#: includes/fields/class-acf-field-radio.php:282 +#: includes/fields/class-acf-field-range.php:150 +#: includes/fields/class-acf-field-text.php:96 +#: includes/fields/class-acf-field-textarea.php:103 +#: includes/fields/class-acf-field-url.php:101 +#: includes/fields/class-acf-field-wysiwyg.php:382 +msgid "Appears when creating a new post" +msgstr "建立新文章時出現" + +#: includes/fields/class-acf-field-button-group.php:183 +#: includes/fields/class-acf-field-checkbox.php:396 +#: includes/fields/class-acf-field-radio.php:297 +msgid "Horizontal" +msgstr "水平" + +#: includes/fields/class-acf-field-button-group.php:184 +#: includes/fields/class-acf-field-checkbox.php:395 +#: includes/fields/class-acf-field-radio.php:296 +msgid "Vertical" +msgstr "垂直" + +#: includes/fields/class-acf-field-button-group.php:191 +#: includes/fields/class-acf-field-checkbox.php:413 +#: includes/fields/class-acf-field-file.php:215 +#: includes/fields/class-acf-field-link.php:166 +#: includes/fields/class-acf-field-radio.php:304 +#: includes/fields/class-acf-field-taxonomy.php:829 +msgid "Return Value" +msgstr "返回值" + +#: includes/fields/class-acf-field-button-group.php:192 +#: includes/fields/class-acf-field-checkbox.php:414 +#: includes/fields/class-acf-field-file.php:216 +#: includes/fields/class-acf-field-link.php:167 +#: includes/fields/class-acf-field-radio.php:305 +msgid "Specify the returned value on front end" +msgstr "指定在網站前端傳回的值" + +#: includes/fields/class-acf-field-button-group.php:197 +#: includes/fields/class-acf-field-checkbox.php:419 +#: includes/fields/class-acf-field-radio.php:310 +#: includes/fields/class-acf-field-select.php:432 +msgid "Value" +msgstr "數值" + +#: includes/fields/class-acf-field-button-group.php:199 +#: includes/fields/class-acf-field-checkbox.php:421 +#: includes/fields/class-acf-field-radio.php:312 +#: includes/fields/class-acf-field-select.php:434 +msgid "Both (Array)" +msgstr "兩者(陣列)" + +#: includes/fields/class-acf-field-checkbox.php:25 +#: includes/fields/class-acf-field-taxonomy.php:771 +msgid "Checkbox" +msgstr "複選框" + +#: includes/fields/class-acf-field-checkbox.php:154 +msgid "Toggle All" +msgstr "切換全部" + +#: includes/fields/class-acf-field-checkbox.php:221 +#| msgid "Add New Field" +msgid "Add new choice" +msgstr "新增選項" + +#: includes/fields/class-acf-field-checkbox.php:353 +#| msgid "Allow Null?" +msgid "Allow Custom" +msgstr "允許自訂" + +#: includes/fields/class-acf-field-checkbox.php:358 +msgid "Allow 'custom' values to be added" +msgstr "允許加入[自訂]值" + +#: includes/fields/class-acf-field-checkbox.php:364 +#| msgid "Move Custom Field" +msgid "Save Custom" +msgstr "儲存自訂" + +#: includes/fields/class-acf-field-checkbox.php:369 +msgid "Save 'custom' values to the field's choices" +msgstr "儲存 [自訂] 值到欄位的選項" + +#: includes/fields/class-acf-field-checkbox.php:381 +#: includes/fields/class-acf-field-select.php:374 +msgid "Enter each default value on a new line" +msgstr "每行輸入一個預設值" + +#: includes/fields/class-acf-field-checkbox.php:403 +msgid "Toggle" +msgstr "切換" + +#: includes/fields/class-acf-field-checkbox.php:404 +msgid "Prepend an extra checkbox to toggle all choices" +msgstr "前置一個額外的核選框以切換所有選擇" + +#: includes/fields/class-acf-field-color_picker.php:25 +msgid "Color Picker" +msgstr "顏色選擇器" + +#: includes/fields/class-acf-field-color_picker.php:68 +msgid "Clear" +msgstr "清除" + +#: includes/fields/class-acf-field-color_picker.php:69 +msgid "Default" +msgstr "預設值" + +#: includes/fields/class-acf-field-color_picker.php:70 +msgid "Select Color" +msgstr "選擇顏色" + +#: includes/fields/class-acf-field-color_picker.php:71 +msgid "Current Color" +msgstr "目前顏色" + +#: includes/fields/class-acf-field-date_picker.php:25 +msgid "Date Picker" +msgstr "日期選擇器" + +#: includes/fields/class-acf-field-date_picker.php:59 +#| msgid "Done" +msgctxt "Date Picker JS closeText" +msgid "Done" +msgstr "完成" + +#: includes/fields/class-acf-field-date_picker.php:60 +#| msgid "Today" +msgctxt "Date Picker JS currentText" +msgid "Today" +msgstr "今天" + +#: includes/fields/class-acf-field-date_picker.php:61 +msgctxt "Date Picker JS nextText" +msgid "Next" +msgstr "下一個" + +#: includes/fields/class-acf-field-date_picker.php:62 +msgctxt "Date Picker JS prevText" +msgid "Prev" +msgstr "上一個" + +#: includes/fields/class-acf-field-date_picker.php:63 +msgctxt "Date Picker JS weekHeader" +msgid "Wk" +msgstr "星期" + +#: includes/fields/class-acf-field-date_picker.php:178 +#: includes/fields/class-acf-field-date_time_picker.php:183 +#: includes/fields/class-acf-field-time_picker.php:109 +msgid "Display Format" +msgstr "顯示格式" + +#: includes/fields/class-acf-field-date_picker.php:179 +#: includes/fields/class-acf-field-date_time_picker.php:184 +#: includes/fields/class-acf-field-time_picker.php:110 +msgid "The format displayed when editing a post" +msgstr "編輯文章時顯示的時間格式" + +#: includes/fields/class-acf-field-date_picker.php:187 +#: includes/fields/class-acf-field-date_picker.php:218 +#: includes/fields/class-acf-field-date_time_picker.php:193 +#: includes/fields/class-acf-field-date_time_picker.php:210 +#: includes/fields/class-acf-field-time_picker.php:117 +#: includes/fields/class-acf-field-time_picker.php:132 +#| msgid "Custom Fields" +msgid "Custom:" +msgstr "自訂:" + +#: includes/fields/class-acf-field-date_picker.php:197 +#| msgid "Format" +msgid "Save Format" +msgstr "儲存格式" + +#: includes/fields/class-acf-field-date_picker.php:198 +#| msgid "This format will be seen by the user when entering a value" +msgid "The format used when saving a value" +msgstr "儲存數值時使用的格式" + +#: includes/fields/class-acf-field-date_picker.php:208 +#: includes/fields/class-acf-field-date_time_picker.php:200 +#: includes/fields/class-acf-field-image.php:204 +#: includes/fields/class-acf-field-post_object.php:431 +#: includes/fields/class-acf-field-relationship.php:634 +#: includes/fields/class-acf-field-select.php:427 +#: includes/fields/class-acf-field-time_picker.php:124 +#: includes/fields/class-acf-field-user.php:412 +#: pro/fields/class-acf-field-gallery.php:557 +msgid "Return Format" +msgstr "回傳格式" + +#: includes/fields/class-acf-field-date_picker.php:209 +#: includes/fields/class-acf-field-date_time_picker.php:201 +#: includes/fields/class-acf-field-time_picker.php:125 +msgid "The format returned via template functions" +msgstr "範本函式回傳的格式" + +#: includes/fields/class-acf-field-date_picker.php:227 +#: includes/fields/class-acf-field-date_time_picker.php:217 +msgid "Week Starts On" +msgstr "每週開始於" + +#: includes/fields/class-acf-field-date_time_picker.php:25 +#| msgid "Date & Time Picker" +msgid "Date Time Picker" +msgstr "日期時間選擇器" + +#: includes/fields/class-acf-field-date_time_picker.php:68 +#| msgid "Close Field" +msgctxt "Date Time Picker JS timeOnlyTitle" +msgid "Choose Time" +msgstr "選擇時間" + +#: includes/fields/class-acf-field-date_time_picker.php:69 +msgctxt "Date Time Picker JS timeText" +msgid "Time" +msgstr "時間" + +#: includes/fields/class-acf-field-date_time_picker.php:70 +msgctxt "Date Time Picker JS hourText" +msgid "Hour" +msgstr "時" + +#: includes/fields/class-acf-field-date_time_picker.php:71 +msgctxt "Date Time Picker JS minuteText" +msgid "Minute" +msgstr "分" + +#: includes/fields/class-acf-field-date_time_picker.php:72 +msgctxt "Date Time Picker JS secondText" +msgid "Second" +msgstr "秒" + +#: includes/fields/class-acf-field-date_time_picker.php:73 +msgctxt "Date Time Picker JS millisecText" +msgid "Millisecond" +msgstr "毫秒" + +#: includes/fields/class-acf-field-date_time_picker.php:74 +msgctxt "Date Time Picker JS microsecText" +msgid "Microsecond" +msgstr "微秒" + +#: includes/fields/class-acf-field-date_time_picker.php:75 +msgctxt "Date Time Picker JS timezoneText" +msgid "Time Zone" +msgstr "時區" + +#: includes/fields/class-acf-field-date_time_picker.php:76 +#| msgid "No" +msgctxt "Date Time Picker JS currentText" +msgid "Now" +msgstr "目前" + +#: includes/fields/class-acf-field-date_time_picker.php:77 +#| msgid "Done" +msgctxt "Date Time Picker JS closeText" +msgid "Done" +msgstr "完成" + +#: includes/fields/class-acf-field-date_time_picker.php:78 +#| msgid "Select" +msgctxt "Date Time Picker JS selectText" +msgid "Select" +msgstr "選擇" + +#: includes/fields/class-acf-field-date_time_picker.php:80 +msgctxt "Date Time Picker JS amText" +msgid "AM" +msgstr "上午" + +#: includes/fields/class-acf-field-date_time_picker.php:81 +msgctxt "Date Time Picker JS amTextShort" +msgid "A" +msgstr "A" + +#: includes/fields/class-acf-field-date_time_picker.php:84 +msgctxt "Date Time Picker JS pmText" +msgid "PM" +msgstr "下午" + +#: includes/fields/class-acf-field-date_time_picker.php:85 +msgctxt "Date Time Picker JS pmTextShort" +msgid "P" +msgstr "P" + +#: includes/fields/class-acf-field-email.php:25 +msgid "Email" +msgstr "電子郵件" + +#: includes/fields/class-acf-field-email.php:127 +#: includes/fields/class-acf-field-number.php:136 +#: includes/fields/class-acf-field-password.php:71 +#: includes/fields/class-acf-field-text.php:104 +#: includes/fields/class-acf-field-textarea.php:111 +#: includes/fields/class-acf-field-url.php:109 +msgid "Placeholder Text" +msgstr "預留位置文字" + +#: includes/fields/class-acf-field-email.php:128 +#: includes/fields/class-acf-field-number.php:137 +#: includes/fields/class-acf-field-password.php:72 +#: includes/fields/class-acf-field-text.php:105 +#: includes/fields/class-acf-field-textarea.php:112 +#: includes/fields/class-acf-field-url.php:110 +msgid "Appears within the input" +msgstr "出現在輸入欄位中" + +#: includes/fields/class-acf-field-email.php:136 +#: includes/fields/class-acf-field-number.php:145 +#: includes/fields/class-acf-field-password.php:80 +#: includes/fields/class-acf-field-range.php:188 +#: includes/fields/class-acf-field-text.php:113 +msgid "Prepend" +msgstr "欄位前置文字" + +#: includes/fields/class-acf-field-email.php:137 +#: includes/fields/class-acf-field-number.php:146 +#: includes/fields/class-acf-field-password.php:81 +#: includes/fields/class-acf-field-range.php:189 +#: includes/fields/class-acf-field-text.php:114 +msgid "Appears before the input" +msgstr "出現在輸入欄位之前" + +#: includes/fields/class-acf-field-email.php:145 +#: includes/fields/class-acf-field-number.php:154 +#: includes/fields/class-acf-field-password.php:89 +#: includes/fields/class-acf-field-range.php:197 +#: includes/fields/class-acf-field-text.php:122 +msgid "Append" +msgstr "欄位後綴文字" + +#: includes/fields/class-acf-field-email.php:146 +#: includes/fields/class-acf-field-number.php:155 +#: includes/fields/class-acf-field-password.php:90 +#: includes/fields/class-acf-field-range.php:198 +#: includes/fields/class-acf-field-text.php:123 +msgid "Appears after the input" +msgstr "出現在輸入欄位後面" + +#: includes/fields/class-acf-field-file.php:25 +msgid "File" +msgstr "檔案" + +#: includes/fields/class-acf-field-file.php:58 +msgid "Edit File" +msgstr "編輯檔案" + +#: includes/fields/class-acf-field-file.php:59 +msgid "Update File" +msgstr "更新檔案" + +#: includes/fields/class-acf-field-file.php:141 +#| msgid "File Name" +msgid "File name" +msgstr "檔名" + +#: includes/fields/class-acf-field-file.php:145 +#: includes/fields/class-acf-field-file.php:248 +#: includes/fields/class-acf-field-file.php:259 +#: includes/fields/class-acf-field-image.php:264 +#: includes/fields/class-acf-field-image.php:293 +#: pro/fields/class-acf-field-gallery.php:642 +#: pro/fields/class-acf-field-gallery.php:671 +msgid "File size" +msgstr "檔案容量" + +#: includes/fields/class-acf-field-file.php:170 +msgid "Add File" +msgstr "新增檔案" + +#: includes/fields/class-acf-field-file.php:221 +msgid "File Array" +msgstr "檔案陣列" + +#: includes/fields/class-acf-field-file.php:222 +msgid "File URL" +msgstr "檔案URL" + +#: includes/fields/class-acf-field-file.php:223 +msgid "File ID" +msgstr "檔案ID" + +#: includes/fields/class-acf-field-file.php:230 +#: includes/fields/class-acf-field-image.php:229 +#: pro/fields/class-acf-field-gallery.php:592 +msgid "Library" +msgstr "媒體庫" + +#: includes/fields/class-acf-field-file.php:231 +#: includes/fields/class-acf-field-image.php:230 +#: pro/fields/class-acf-field-gallery.php:593 +msgid "Limit the media library choice" +msgstr "限制媒體庫選擇" + +#: includes/fields/class-acf-field-file.php:236 +#: includes/fields/class-acf-field-image.php:235 +#: includes/locations/class-acf-location-attachment.php:101 +#: includes/locations/class-acf-location-comment.php:79 +#: includes/locations/class-acf-location-nav-menu.php:102 +#: includes/locations/class-acf-location-taxonomy.php:79 +#: includes/locations/class-acf-location-user-form.php:72 +#: includes/locations/class-acf-location-user-role.php:88 +#: includes/locations/class-acf-location-widget.php:83 +#: pro/fields/class-acf-field-gallery.php:598 +#: pro/locations/class-acf-location-block.php:79 +msgid "All" +msgstr "所有" + +#: includes/fields/class-acf-field-file.php:237 +#: includes/fields/class-acf-field-image.php:236 +#: pro/fields/class-acf-field-gallery.php:599 +msgid "Uploaded to post" +msgstr "已上傳至文章" + +#: includes/fields/class-acf-field-file.php:244 +#: includes/fields/class-acf-field-image.php:243 +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Minimum" +msgstr "最小" + +#: includes/fields/class-acf-field-file.php:245 +#: includes/fields/class-acf-field-file.php:256 +msgid "Restrict which files can be uploaded" +msgstr "限制檔案上傳類型" + +#: includes/fields/class-acf-field-file.php:255 +#: includes/fields/class-acf-field-image.php:272 +#: pro/fields/class-acf-field-gallery.php:650 +msgid "Maximum" +msgstr "最大" + +#: includes/fields/class-acf-field-file.php:266 +#: includes/fields/class-acf-field-image.php:301 +#: pro/fields/class-acf-field-gallery.php:678 +msgid "Allowed file types" +msgstr "允許的檔案類型" + +#: includes/fields/class-acf-field-file.php:267 +#: includes/fields/class-acf-field-image.php:302 +#: pro/fields/class-acf-field-gallery.php:679 +msgid "Comma separated list. Leave blank for all types" +msgstr "請以逗號分隔列出。留白表示允許所有類型" + +#: includes/fields/class-acf-field-google-map.php:25 +msgid "Google Map" +msgstr "Google 地圖" + +#: includes/fields/class-acf-field-google-map.php:59 +msgid "Sorry, this browser does not support geolocation" +msgstr "很抱歉,使用中的瀏覽器不支援地理位置" + +#: includes/fields/class-acf-field-google-map.php:147 +msgid "Clear location" +msgstr "清除位置" + +#: includes/fields/class-acf-field-google-map.php:148 +msgid "Find current location" +msgstr "搜尋目前位置" + +#: includes/fields/class-acf-field-google-map.php:151 +msgid "Search for address..." +msgstr "搜尋地址..." + +#: includes/fields/class-acf-field-google-map.php:181 +#: includes/fields/class-acf-field-google-map.php:192 +msgid "Center" +msgstr "中間" + +#: includes/fields/class-acf-field-google-map.php:182 +#: includes/fields/class-acf-field-google-map.php:193 +msgid "Center the initial map" +msgstr "載入地圖後的初始中心位置,請輸入緯度 (lat) 及經度 (lng)" + +#: includes/fields/class-acf-field-google-map.php:204 +msgid "Zoom" +msgstr "縮放" + +#: includes/fields/class-acf-field-google-map.php:205 +msgid "Set the initial zoom level" +msgstr "載入地圖後的初始縮放層級" + +#: includes/fields/class-acf-field-google-map.php:214 +#: includes/fields/class-acf-field-image.php:255 +#: includes/fields/class-acf-field-image.php:284 +#: includes/fields/class-acf-field-oembed.php:268 +#: pro/fields/class-acf-field-gallery.php:633 +#: pro/fields/class-acf-field-gallery.php:662 +msgid "Height" +msgstr "高" + +#: includes/fields/class-acf-field-google-map.php:215 +msgid "Customize the map height" +msgstr "自訂地圖高度" + +#: includes/fields/class-acf-field-group.php:25 +#| msgid "Field Group" +msgid "Group" +msgstr "群組" + +#: includes/fields/class-acf-field-group.php:459 +#: pro/fields/class-acf-field-repeater.php:384 +msgid "Sub Fields" +msgstr "子欄位" + +#: includes/fields/class-acf-field-group.php:475 +#: pro/fields/class-acf-field-clone.php:844 +msgid "Specify the style used to render the selected fields" +msgstr "指定用於呈現選定欄位的樣式" + +#: includes/fields/class-acf-field-group.php:480 +#: pro/fields/class-acf-field-clone.php:849 +#: pro/fields/class-acf-field-flexible-content.php:613 +#: pro/fields/class-acf-field-repeater.php:456 +#: pro/locations/class-acf-location-block.php:27 +msgid "Block" +msgstr "區塊" + +#: includes/fields/class-acf-field-group.php:481 +#: pro/fields/class-acf-field-clone.php:850 +#: pro/fields/class-acf-field-flexible-content.php:612 +#: pro/fields/class-acf-field-repeater.php:455 +msgid "Table" +msgstr "表格" + +#: includes/fields/class-acf-field-group.php:482 +#: pro/fields/class-acf-field-clone.php:851 +#: pro/fields/class-acf-field-flexible-content.php:614 +#: pro/fields/class-acf-field-repeater.php:457 +msgid "Row" +msgstr "行" + +#: includes/fields/class-acf-field-image.php:25 +msgid "Image" +msgstr "圖片" + +#: includes/fields/class-acf-field-image.php:63 +msgid "Select Image" +msgstr "選擇圖片" + +#: includes/fields/class-acf-field-image.php:64 +msgid "Edit Image" +msgstr "編輯圖片" + +#: includes/fields/class-acf-field-image.php:65 +msgid "Update Image" +msgstr "更新圖片" + +#: includes/fields/class-acf-field-image.php:156 +msgid "No image selected" +msgstr "尚未選取圖片" + +#: includes/fields/class-acf-field-image.php:156 +msgid "Add Image" +msgstr "新增圖片" + +#: includes/fields/class-acf-field-image.php:210 +#: pro/fields/class-acf-field-gallery.php:563 +msgid "Image Array" +msgstr "圖片陣列" + +#: includes/fields/class-acf-field-image.php:211 +#: pro/fields/class-acf-field-gallery.php:564 +msgid "Image URL" +msgstr "圖片網址" + +#: includes/fields/class-acf-field-image.php:212 +#: pro/fields/class-acf-field-gallery.php:565 +msgid "Image ID" +msgstr "圖片ID" + +#: includes/fields/class-acf-field-image.php:219 +#: pro/fields/class-acf-field-gallery.php:571 +msgid "Preview Size" +msgstr "預覽圖大小" + +#: includes/fields/class-acf-field-image.php:244 +#: includes/fields/class-acf-field-image.php:273 +#: pro/fields/class-acf-field-gallery.php:622 +#: pro/fields/class-acf-field-gallery.php:651 +msgid "Restrict which images can be uploaded" +msgstr "限制哪些圖片可以上傳" + +#: includes/fields/class-acf-field-image.php:247 +#: includes/fields/class-acf-field-image.php:276 +#: includes/fields/class-acf-field-oembed.php:257 +#: pro/fields/class-acf-field-gallery.php:625 +#: pro/fields/class-acf-field-gallery.php:654 +msgid "Width" +msgstr "寬" + +#: includes/fields/class-acf-field-link.php:25 +#| msgid "Page Link" +msgid "Link" +msgstr "連結" + +#: includes/fields/class-acf-field-link.php:133 +#| msgid "Select File" +msgid "Select Link" +msgstr "選取連結" + +#: includes/fields/class-acf-field-link.php:138 +msgid "Opens in a new window/tab" +msgstr "於新視窗/分頁開啟" + +#: includes/fields/class-acf-field-link.php:172 +msgid "Link Array" +msgstr "連結陣列" + +#: includes/fields/class-acf-field-link.php:173 +#| msgid "File URL" +msgid "Link URL" +msgstr "連結網址" + +#: includes/fields/class-acf-field-message.php:25 +#: includes/fields/class-acf-field-message.php:101 +#: includes/fields/class-acf-field-true_false.php:126 +msgid "Message" +msgstr "訊息" + +#: includes/fields/class-acf-field-message.php:110 +#: includes/fields/class-acf-field-textarea.php:139 +msgid "New Lines" +msgstr "新行" + +#: includes/fields/class-acf-field-message.php:111 +#: includes/fields/class-acf-field-textarea.php:140 +msgid "Controls how new lines are rendered" +msgstr "控制如何呈現新行" + +#: includes/fields/class-acf-field-message.php:115 +#: includes/fields/class-acf-field-textarea.php:144 +msgid "Automatically add paragraphs" +msgstr "自動增加段落" + +#: includes/fields/class-acf-field-message.php:116 +#: includes/fields/class-acf-field-textarea.php:145 +msgid "Automatically add <br>" +msgstr "自動加入 <br>" + +#: includes/fields/class-acf-field-message.php:117 +#: includes/fields/class-acf-field-textarea.php:146 +msgid "No Formatting" +msgstr "無格式" + +#: includes/fields/class-acf-field-message.php:124 +msgid "Escape HTML" +msgstr "跳脫 HTML" + +#: 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-number.php:25 +msgid "Number" +msgstr "數字" + +#: includes/fields/class-acf-field-number.php:163 +#: includes/fields/class-acf-field-range.php:158 +msgid "Minimum Value" +msgstr "最小值" + +#: includes/fields/class-acf-field-number.php:172 +#: includes/fields/class-acf-field-range.php:168 +msgid "Maximum Value" +msgstr "最大值" + +#: includes/fields/class-acf-field-number.php:181 +#: includes/fields/class-acf-field-range.php:178 +msgid "Step Size" +msgstr "數值增減幅度" + +#: includes/fields/class-acf-field-number.php:219 +msgid "Value must be a number" +msgstr "值必須是一個數字" + +#: includes/fields/class-acf-field-number.php:237 +#, php-format +msgid "Value must be equal to or higher than %d" +msgstr "值必須等於或高於%d" + +#: includes/fields/class-acf-field-number.php:245 +#, php-format +msgid "Value must be equal to or lower than %d" +msgstr "值必須等於或低於%d" + +#: includes/fields/class-acf-field-oembed.php:25 +msgid "oEmbed" +msgstr "oEmbed" + +#: includes/fields/class-acf-field-oembed.php:216 +msgid "Enter URL" +msgstr "輸入網址" + +#: includes/fields/class-acf-field-oembed.php:254 +#: includes/fields/class-acf-field-oembed.php:265 +msgid "Embed Size" +msgstr "嵌入大小" + +#: includes/fields/class-acf-field-page_link.php:25 +msgid "Page Link" +msgstr "頁面連結" + +#: includes/fields/class-acf-field-page_link.php:177 +msgid "Archives" +msgstr "彙整" + +#: includes/fields/class-acf-field-page_link.php:269 +#: includes/fields/class-acf-field-post_object.php:267 +#: includes/fields/class-acf-field-taxonomy.php:961 +#| msgid "Page Parent" +msgid "Parent" +msgstr "上層" + +#: includes/fields/class-acf-field-page_link.php:485 +#: includes/fields/class-acf-field-post_object.php:383 +#: includes/fields/class-acf-field-relationship.php:560 +msgid "Filter by Post Type" +msgstr "以文章型別篩選" + +#: includes/fields/class-acf-field-page_link.php:493 +#: includes/fields/class-acf-field-post_object.php:391 +#: includes/fields/class-acf-field-relationship.php:568 +msgid "All post types" +msgstr "所有文章類型" + +#: includes/fields/class-acf-field-page_link.php:499 +#: includes/fields/class-acf-field-post_object.php:397 +#: includes/fields/class-acf-field-relationship.php:574 +msgid "Filter by Taxonomy" +msgstr "以分類法篩選" + +#: includes/fields/class-acf-field-page_link.php:507 +#: includes/fields/class-acf-field-post_object.php:405 +#: includes/fields/class-acf-field-relationship.php:582 +msgid "All taxonomies" +msgstr "所有分類法" + +#: includes/fields/class-acf-field-page_link.php:523 +msgid "Allow Archives URLs" +msgstr "允許文章彙整網址" + +#: includes/fields/class-acf-field-page_link.php:533 +#: includes/fields/class-acf-field-post_object.php:421 +#: includes/fields/class-acf-field-select.php:392 +#: includes/fields/class-acf-field-user.php:403 +msgid "Select multiple values?" +msgstr "是否可複選" + +#: includes/fields/class-acf-field-password.php:25 +msgid "Password" +msgstr "密碼" + +#: includes/fields/class-acf-field-post_object.php:25 +#: includes/fields/class-acf-field-post_object.php:436 +#: includes/fields/class-acf-field-relationship.php:639 +msgid "Post Object" +msgstr "文章物件" + +#: includes/fields/class-acf-field-post_object.php:437 +#: includes/fields/class-acf-field-relationship.php:640 +msgid "Post ID" +msgstr "文章 ID" + +#: includes/fields/class-acf-field-radio.php:25 +msgid "Radio Button" +msgstr "單選按鈕" + +#: includes/fields/class-acf-field-radio.php:254 +msgid "Other" +msgstr "其他" + +#: includes/fields/class-acf-field-radio.php:259 +msgid "Add 'other' choice to allow for custom values" +msgstr "加入 [其他] 這個選項,讓使用者可輸入自訂值" + +#: includes/fields/class-acf-field-radio.php:265 +msgid "Save Other" +msgstr "儲存其它" + +#: includes/fields/class-acf-field-radio.php:270 +msgid "Save 'other' values to the field's choices" +msgstr "儲存填入 [其他] 選項中的值,作為這個欄位的選項" + +#: includes/fields/class-acf-field-range.php:25 +msgid "Range" +msgstr "範圍" + +#: includes/fields/class-acf-field-relationship.php:25 +msgid "Relationship" +msgstr "關係" + +#: includes/fields/class-acf-field-relationship.php:62 +msgid "Maximum values reached ( {max} values )" +msgstr "最大值為 {max} 篇,目前已達最大值" + +#: includes/fields/class-acf-field-relationship.php:63 +msgid "Loading" +msgstr "載入中" + +#: includes/fields/class-acf-field-relationship.php:64 +msgid "No matches found" +msgstr "找不到符合的" + +#: includes/fields/class-acf-field-relationship.php:411 +msgid "Select post type" +msgstr "選取內容類型" + +#: includes/fields/class-acf-field-relationship.php:420 +msgid "Select taxonomy" +msgstr "選取分類法" + +#: includes/fields/class-acf-field-relationship.php:477 +msgid "Search..." +msgstr "搜尋..." + +#: includes/fields/class-acf-field-relationship.php:588 +msgid "Filters" +msgstr "外掛內建的篩選條件" + +#: includes/fields/class-acf-field-relationship.php:594 +#: includes/locations/class-acf-location-post-type.php:27 +msgid "Post Type" +msgstr "文章類型" + +#: includes/fields/class-acf-field-relationship.php:595 +#: includes/fields/class-acf-field-taxonomy.php:28 +#: includes/fields/class-acf-field-taxonomy.php:754 +#: includes/locations/class-acf-location-taxonomy.php:27 +msgid "Taxonomy" +msgstr "分類法" + +#: includes/fields/class-acf-field-relationship.php:602 +msgid "Elements" +msgstr "元素" + +#: includes/fields/class-acf-field-relationship.php:603 +msgid "Selected elements will be displayed in each result" +msgstr "選擇的元素將在每個結果中顯示" + +#: includes/fields/class-acf-field-relationship.php:614 +msgid "Minimum posts" +msgstr "最少的文章" + +#: includes/fields/class-acf-field-relationship.php:623 +msgid "Maximum posts" +msgstr "最大文章數" + +#: includes/fields/class-acf-field-relationship.php:727 +#: pro/fields/class-acf-field-gallery.php:779 +#, php-format +msgid "%s requires at least %s selection" +msgid_plural "%s requires at least %s selections" +msgstr[0] "%s 需要至少 %s 選擇" + +#: includes/fields/class-acf-field-select.php:25 +#: includes/fields/class-acf-field-taxonomy.php:776 +#| msgid "Select" +msgctxt "noun" +msgid "Select" +msgstr "選擇" + +#: includes/fields/class-acf-field-select.php:111 +msgctxt "Select2 JS matches_1" +msgid "One result is available, press enter to select it." +msgstr "有一個結果可用。請按 enter 選擇它。" + +#: includes/fields/class-acf-field-select.php:112 +#, php-format +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:113 +#| msgid "No Fields found" +msgctxt "Select2 JS matches_0" +msgid "No matches found" +msgstr "找不到符合的" + +#: includes/fields/class-acf-field-select.php:114 +msgctxt "Select2 JS input_too_short_1" +msgid "Please enter 1 or more characters" +msgstr "請輸入 1 個或更多字元" + +#: includes/fields/class-acf-field-select.php:115 +#, php-format +msgctxt "Select2 JS input_too_short_n" +msgid "Please enter %d or more characters" +msgstr "請輸入 %d 個或更多字元" + +#: includes/fields/class-acf-field-select.php:116 +msgctxt "Select2 JS input_too_long_1" +msgid "Please delete 1 character" +msgstr "請刪除 1 個字元" + +#: includes/fields/class-acf-field-select.php:117 +#, php-format +msgctxt "Select2 JS input_too_long_n" +msgid "Please delete %d characters" +msgstr "請刪除 %d 個字元" + +#: includes/fields/class-acf-field-select.php:118 +msgctxt "Select2 JS selection_too_long_1" +msgid "You can only select 1 item" +msgstr "你只能夠選 1 個項目" + +#: includes/fields/class-acf-field-select.php:119 +#, php-format +msgctxt "Select2 JS selection_too_long_n" +msgid "You can only select %d items" +msgstr "你只能選 %d 個項目" + +#: includes/fields/class-acf-field-select.php:120 +msgctxt "Select2 JS load_more" +msgid "Loading more results…" +msgstr "載入更多結果…" + +#: includes/fields/class-acf-field-select.php:121 +#| msgid "Search Fields" +msgctxt "Select2 JS searching" +msgid "Searching…" +msgstr "搜尋中…" + +#: includes/fields/class-acf-field-select.php:122 +msgctxt "Select2 JS load_fail" +msgid "Loading failed" +msgstr "載入失敗" + +#: includes/fields/class-acf-field-select.php:402 +#: includes/fields/class-acf-field-true_false.php:144 +msgid "Stylised UI" +msgstr "程式化 UI" + +#: includes/fields/class-acf-field-select.php:412 +msgid "Use AJAX to lazy load choices?" +msgstr "使用 AJAX 去 lazy load 選擇" + +#: includes/fields/class-acf-field-select.php:428 +msgid "Specify the value returned" +msgstr "指定回傳的值" + +#: includes/fields/class-acf-field-separator.php:25 +msgid "Separator" +msgstr "分隔" + +#: includes/fields/class-acf-field-tab.php:25 +msgid "Tab" +msgstr "頁籤" + +#: includes/fields/class-acf-field-tab.php:102 +msgid "Placement" +msgstr "位置" + +#: includes/fields/class-acf-field-tab.php:115 +msgid "" +"Define an endpoint for the previous tabs to stop. This will start a new " +"group of tabs." +msgstr "定義上一個頁籤要停止的端點。這將開始一組新的頁籤群組。" + +#: includes/fields/class-acf-field-taxonomy.php:714 +#, php-format +msgctxt "No terms" +msgid "No %s" +msgstr "沒有 %s" + +#: includes/fields/class-acf-field-taxonomy.php:755 +msgid "Select the taxonomy to be displayed" +msgstr "選擇要顯示的分類法" + +#: includes/fields/class-acf-field-taxonomy.php:764 +msgid "Appearance" +msgstr "外觀" + +#: includes/fields/class-acf-field-taxonomy.php:765 +msgid "Select the appearance of this field" +msgstr "選擇此欄位的外觀" + +#: includes/fields/class-acf-field-taxonomy.php:770 +msgid "Multiple Values" +msgstr "多選" + +#: includes/fields/class-acf-field-taxonomy.php:772 +msgid "Multi Select" +msgstr "多選" + +#: includes/fields/class-acf-field-taxonomy.php:774 +msgid "Single Value" +msgstr "單個值" + +#: includes/fields/class-acf-field-taxonomy.php:775 +msgid "Radio Buttons" +msgstr "單選框" + +#: includes/fields/class-acf-field-taxonomy.php:799 +msgid "Create Terms" +msgstr "建立字詞" + +#: includes/fields/class-acf-field-taxonomy.php:800 +msgid "Allow new terms to be created whilst editing" +msgstr "允許在編輯時建立新的字詞" + +#: includes/fields/class-acf-field-taxonomy.php:809 +msgid "Save Terms" +msgstr "儲存字詞" + +#: includes/fields/class-acf-field-taxonomy.php:810 +msgid "Connect selected terms to the post" +msgstr "連結選擇的字詞到文章" + +#: includes/fields/class-acf-field-taxonomy.php:819 +msgid "Load Terms" +msgstr "載入字詞" + +#: includes/fields/class-acf-field-taxonomy.php:820 +msgid "Load value from posts terms" +msgstr "從文章字詞載入數值" + +#: includes/fields/class-acf-field-taxonomy.php:834 +msgid "Term Object" +msgstr "對象緩存" + +#: includes/fields/class-acf-field-taxonomy.php:835 +msgid "Term ID" +msgstr "內容ID" + +#: includes/fields/class-acf-field-taxonomy.php:885 +#, php-format +msgid "User unable to add new %s" +msgstr "使用者無法加入新的 %s" + +#: includes/fields/class-acf-field-taxonomy.php:895 +#, php-format +msgid "%s already exists" +msgstr "%s 已經存在" + +#: includes/fields/class-acf-field-taxonomy.php:927 +#, php-format +msgid "%s added" +msgstr "%s 已新增" + +#: includes/fields/class-acf-field-taxonomy.php:973 +#: includes/locations/class-acf-location-user-form.php:73 +msgid "Add" +msgstr "加入" + +#: includes/fields/class-acf-field-text.php:25 +msgid "Text" +msgstr "文字" + +#: includes/fields/class-acf-field-text.php:131 +#: includes/fields/class-acf-field-textarea.php:120 +msgid "Character Limit" +msgstr "字元限制" + +#: includes/fields/class-acf-field-text.php:132 +#: includes/fields/class-acf-field-textarea.php:121 +msgid "Leave blank for no limit" +msgstr "留白為無限制" + +#: includes/fields/class-acf-field-text.php:157 +#: includes/fields/class-acf-field-textarea.php:215 +#, php-format +msgid "Value must not exceed %d characters" +msgstr "值不得超過 %d 字元" + +#: includes/fields/class-acf-field-textarea.php:25 +msgid "Text Area" +msgstr "文字區域" + +#: includes/fields/class-acf-field-textarea.php:129 +msgid "Rows" +msgstr "行" + +#: includes/fields/class-acf-field-textarea.php:130 +msgid "Sets the textarea height" +msgstr "設定文字區域高度" + +#: includes/fields/class-acf-field-time_picker.php:25 +#| msgid "Date & Time Picker" +msgid "Time Picker" +msgstr "時間選擇器" + +#: includes/fields/class-acf-field-true_false.php:25 +msgid "True / False" +msgstr "真/假" + +#: includes/fields/class-acf-field-true_false.php:127 +msgid "Displays text alongside the checkbox" +msgstr "在複選框旁邊顯示文字" + +#: includes/fields/class-acf-field-true_false.php:155 +#| msgid "Text" +msgid "On Text" +msgstr "啟動用字" + +#: includes/fields/class-acf-field-true_false.php:156 +msgid "Text shown when active" +msgstr "啟用時顯示文字" + +#: includes/fields/class-acf-field-true_false.php:170 +#| msgid "Text" +msgid "Off Text" +msgstr "關閉用字" + +#: includes/fields/class-acf-field-true_false.php:171 +msgid "Text shown when inactive" +msgstr "停用時顯示文字" + +#: includes/fields/class-acf-field-url.php:25 +msgid "Url" +msgstr "網址" + +#: includes/fields/class-acf-field-url.php:151 +msgid "Value must be a valid URL" +msgstr "填入值必須是合法的網址" + +#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95 +msgid "User" +msgstr "使用者" + +#: includes/fields/class-acf-field-user.php:378 +msgid "Filter by role" +msgstr "根據角色篩選" + +#: includes/fields/class-acf-field-user.php:386 +msgid "All user roles" +msgstr "所有使用者角色" + +#: includes/fields/class-acf-field-user.php:417 +msgid "User Array" +msgstr "使用者陣列" + +#: includes/fields/class-acf-field-user.php:418 +#| msgid "Term Object" +msgid "User Object" +msgstr "使用者物件" + +#: includes/fields/class-acf-field-user.php:419 +#| msgid "User" +msgid "User ID" +msgstr "使用者 ID" + +#: includes/fields/class-acf-field-wysiwyg.php:25 +msgid "Wysiwyg Editor" +msgstr "可視化編輯器" + +#: includes/fields/class-acf-field-wysiwyg.php:330 +msgid "Visual" +msgstr "視覺" + +#: includes/fields/class-acf-field-wysiwyg.php:331 +msgctxt "Name for the Text editor tab (formerly HTML)" +msgid "Text" +msgstr "文字" + +#: includes/fields/class-acf-field-wysiwyg.php:337 +msgid "Click to initialize TinyMCE" +msgstr "點擊初始化 TinyMCE" + +#: includes/fields/class-acf-field-wysiwyg.php:390 +msgid "Tabs" +msgstr "分頁" + +#: includes/fields/class-acf-field-wysiwyg.php:395 +msgid "Visual & Text" +msgstr "視覺 & 文字" + +#: includes/fields/class-acf-field-wysiwyg.php:396 +msgid "Visual Only" +msgstr "僅視覺" + +#: includes/fields/class-acf-field-wysiwyg.php:397 +msgid "Text Only" +msgstr "文字" + +#: includes/fields/class-acf-field-wysiwyg.php:404 +msgid "Toolbar" +msgstr "工具條" + +#: includes/fields/class-acf-field-wysiwyg.php:419 +msgid "Show Media Upload Buttons?" +msgstr "是否顯示媒體上傳按鈕" + +#: includes/fields/class-acf-field-wysiwyg.php:429 +msgid "Delay initialization?" +msgstr "延遲初始化?" + +#: includes/fields/class-acf-field-wysiwyg.php:430 +msgid "TinyMCE will not be initialized until field is clicked" +msgstr "在按一下欄位之前,不會初始化 TinyMCE" + +#: includes/forms/form-front.php:55 +msgid "Validate Email" +msgstr "驗證 Email" + +#: includes/forms/form-front.php:104 pro/fields/class-acf-field-gallery.php:510 +#: pro/options-page.php:81 +msgid "Update" +msgstr "更新" + +#: includes/forms/form-front.php:105 +msgid "Post updated" +msgstr "文章已更新" + +#: includes/forms/form-front.php:231 +msgid "Spam Detected" +msgstr "已檢測到垃圾郵件" + +#: includes/forms/form-user.php:336 +#, php-format +msgid "ERROR: %s" +msgstr "錯誤: %s" + +#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27 +msgid "Post" +msgstr "文章" + +#: includes/locations.php:94 includes/locations/class-acf-location-page.php:27 +msgid "Page" +msgstr "頁面" + +#: includes/locations.php:96 +msgid "Forms" +msgstr "表單" + +#: includes/locations.php:243 +msgid "is equal to" +msgstr "等於" + +#: includes/locations.php:244 +msgid "is not equal to" +msgstr "不等於" + +#: includes/locations/class-acf-location-attachment.php:27 +msgid "Attachment" +msgstr "附件" + +#: includes/locations/class-acf-location-attachment.php:109 +#, php-format +msgid "All %s formats" +msgstr "所有 %s 格式" + +#: includes/locations/class-acf-location-comment.php:27 +msgid "Comment" +msgstr "留言" + +#: includes/locations/class-acf-location-current-user-role.php:27 +msgid "Current User Role" +msgstr "目前使用者角色" + +#: includes/locations/class-acf-location-current-user-role.php:110 +msgid "Super Admin" +msgstr "多站網路管理員" + +#: includes/locations/class-acf-location-current-user.php:27 +msgid "Current User" +msgstr "目前使用者" + +#: includes/locations/class-acf-location-current-user.php:97 +msgid "Logged in" +msgstr "已登入" + +#: includes/locations/class-acf-location-current-user.php:98 +msgid "Viewing front end" +msgstr "查看前端" + +#: includes/locations/class-acf-location-current-user.php:99 +msgid "Viewing back end" +msgstr "查看後端" + +#: includes/locations/class-acf-location-nav-menu-item.php:27 +msgid "Menu Item" +msgstr "選單項目" + +#: includes/locations/class-acf-location-nav-menu.php:27 +msgid "Menu" +msgstr "選單" + +#: includes/locations/class-acf-location-nav-menu.php:109 +#| msgid "Location" +msgid "Menu Locations" +msgstr "選單位置" + +#: includes/locations/class-acf-location-nav-menu.php:119 +msgid "Menus" +msgstr "選單" + +#: includes/locations/class-acf-location-page-parent.php:27 +msgid "Page Parent" +msgstr "最上層頁面" + +#: includes/locations/class-acf-location-page-template.php:27 +msgid "Page Template" +msgstr "頁面範本" + +#: includes/locations/class-acf-location-page-template.php:87 +#: includes/locations/class-acf-location-post-template.php:134 +msgid "Default Template" +msgstr "預設範本" + +#: includes/locations/class-acf-location-page-type.php:27 +msgid "Page Type" +msgstr "頁面類型" + +#: includes/locations/class-acf-location-page-type.php:146 +msgid "Front Page" +msgstr "網站首頁" + +#: includes/locations/class-acf-location-page-type.php:147 +msgid "Posts Page" +msgstr "文章頁面" + +#: includes/locations/class-acf-location-page-type.php:148 +msgid "Top Level Page (no parent)" +msgstr "最上層頁面 (再無上層頁面的頁面)" + +#: includes/locations/class-acf-location-page-type.php:149 +msgid "Parent Page (has children)" +msgstr "上層頁面 (含有子頁面)" + +#: includes/locations/class-acf-location-page-type.php:150 +msgid "Child Page (has parent)" +msgstr "子頁面 (具有上層頁面)" + +#: includes/locations/class-acf-location-post-category.php:27 +msgid "Post Category" +msgstr "文章類別" + +#: includes/locations/class-acf-location-post-format.php:27 +msgid "Post Format" +msgstr "文章格式" + +#: includes/locations/class-acf-location-post-status.php:27 +msgid "Post Status" +msgstr "文章狀態" + +#: includes/locations/class-acf-location-post-taxonomy.php:27 +msgid "Post Taxonomy" +msgstr "文章分類法" + +#: includes/locations/class-acf-location-post-template.php:27 +#| msgid "Page Template" +msgid "Post Template" +msgstr "文章範本" + +#: includes/locations/class-acf-location-user-form.php:22 +msgid "User Form" +msgstr "使用者表單" + +#: includes/locations/class-acf-location-user-form.php:74 +msgid "Add / Edit" +msgstr "新增/編輯" + +#: includes/locations/class-acf-location-user-form.php:75 +msgid "Register" +msgstr "註冊" + +#: includes/locations/class-acf-location-user-role.php:22 +msgid "User Role" +msgstr "使用者角色" + +#: includes/locations/class-acf-location-widget.php:27 +msgid "Widget" +msgstr "小工具" + +#: includes/validation.php:364 +#, php-format +msgid "%s value is required" +msgstr "%s 值為必填" + +#. Plugin Name of the plugin/theme +#: pro/acf-pro.php:28 +msgid "Advanced Custom Fields PRO" +msgstr "Advanced Custom Fields PRO" + +#: pro/admin/admin-options-page.php:198 +msgid "Publish" +msgstr "發佈" + +#: pro/admin/admin-options-page.php:204 +#, php-format +msgid "" +"No Custom Field Groups found for this options page. Create a " +"Custom Field Group" +msgstr "此設定頁沒有自訂欄位群組。建立一個自訂欄位群組" + +#: pro/admin/admin-updates.php:49 +msgid "Error. Could not connect to update server" +msgstr "錯誤。 無法連接到更新伺服器" + +#: pro/admin/admin-updates.php:118 pro/admin/views/html-settings-updates.php:13 +msgid "Updates" +msgstr "更新" + +#: pro/admin/admin-updates.php:191 +msgid "" +"Error. Could not authenticate update package. Please check again or " +"deactivate and reactivate your ACF PRO license." +msgstr "" +"錯誤。無法對更新包進行驗證。請再次檢查或停用並重新啟動您的 ACF PRO 授" +"權。" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Deactivate License" +msgstr "停用授權" + +#: pro/admin/views/html-settings-updates.php:7 +msgid "Activate License" +msgstr "啟用授權" + +#: pro/admin/views/html-settings-updates.php:17 +msgid "License Information" +msgstr "授權資訊" + +#: pro/admin/views/html-settings-updates.php:20 +#, php-format +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:29 +msgid "License Key" +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:92 +msgid "Update Plugin" +msgstr "更新外掛" + +#: pro/admin/views/html-settings-updates.php:94 +msgid "Please enter your license key above to unlock updates" +msgstr "請於上方輸入你的授權金鑰以解鎖更新" + +#: pro/admin/views/html-settings-updates.php:100 +msgid "Check Again" +msgstr "再檢查一次" + +#: pro/admin/views/html-settings-updates.php:117 +msgid "Upgrade Notice" +msgstr "升級提醒" + +#: pro/blocks.php:373 +msgid "Switch to Edit" +msgstr "切換至編輯" + +#: pro/blocks.php:374 +msgid "Switch to Preview" +msgstr "切換至預覽" + +#: pro/fields/class-acf-field-clone.php:25 +msgctxt "noun" +msgid "Clone" +msgstr "分身" + +#: pro/fields/class-acf-field-clone.php:812 +msgid "Select one or more fields you wish to clone" +msgstr "選取一或多個你希望複製的欄位" + +#: pro/fields/class-acf-field-clone.php:829 +msgid "Display" +msgstr "顯示" + +#: pro/fields/class-acf-field-clone.php:830 +msgid "Specify the style used to render the clone field" +msgstr "指定繪製分身欄位的樣式" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Group (displays selected fields in a group within this field)" +msgstr "群組(顯示該欄位內群組中被選定的欄位)" + +#: pro/fields/class-acf-field-clone.php:836 +msgid "Seamless (replaces this field with selected fields)" +msgstr "無縫(用選定欄位取代此欄位)" + +#: pro/fields/class-acf-field-clone.php:857 +#, php-format +#| msgid "Selected elements will be displayed in each result" +msgid "Labels will be displayed as %s" +msgstr "標籤將顯示為%s" + +#: pro/fields/class-acf-field-clone.php:860 +#| msgid "Field Label" +msgid "Prefix Field Labels" +msgstr "前置欄位標籤" + +#: pro/fields/class-acf-field-clone.php:871 +#, php-format +msgid "Values will be saved as %s" +msgstr "值將被儲存為 %s" + +#: pro/fields/class-acf-field-clone.php:874 +#| msgid "Field Name" +msgid "Prefix Field Names" +msgstr "前置欄位名稱" + +#: pro/fields/class-acf-field-clone.php:992 +msgid "Unknown field" +msgstr "未知的欄位" + +#: pro/fields/class-acf-field-clone.php:1031 +#| msgid "Synchronise field group" +msgid "Unknown field group" +msgstr "未知的欄位群組" + +#: pro/fields/class-acf-field-clone.php:1035 +#, php-format +msgid "All fields from %s field group" +msgstr "所有欄位來自 %s 欄位群組" + +#: pro/fields/class-acf-field-flexible-content.php:31 +#: pro/fields/class-acf-field-repeater.php:193 +#: pro/fields/class-acf-field-repeater.php:468 +msgid "Add Row" +msgstr "新增列" + +#: pro/fields/class-acf-field-flexible-content.php:73 +#: pro/fields/class-acf-field-flexible-content.php:924 +#: pro/fields/class-acf-field-flexible-content.php:1006 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "版面配置" + +#: pro/fields/class-acf-field-flexible-content.php:74 +msgid "layouts" +msgstr "版面" + +#: pro/fields/class-acf-field-flexible-content.php:77 +#: pro/fields/class-acf-field-flexible-content.php:923 +#: pro/fields/class-acf-field-flexible-content.php:1005 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "這個欄位至少需要 {min} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:78 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "此欄位的限制為 {max} {label} {identifier}" + +#: pro/fields/class-acf-field-flexible-content.php:81 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "{available} {label} {identifier} 可用 (最大 {max})" + +#: pro/fields/class-acf-field-flexible-content.php:82 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "{required} {label} {identifier} 需要 (最小 {min})" + +#: pro/fields/class-acf-field-flexible-content.php:85 +msgid "Flexible Content requires at least 1 layout" +msgstr "彈性內容需要至少 1 個版面配置" + +#: pro/fields/class-acf-field-flexible-content.php:287 +#, php-format +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "點擊下方的 \"%s\" 按鈕以新增設定" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "新增版面" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Remove layout" +msgstr "移除版面" + +#: pro/fields/class-acf-field-flexible-content.php:415 +#: pro/fields/class-acf-field-repeater.php:301 +msgid "Click to toggle" +msgstr "點擊切換" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder Layout" +msgstr "重排版面" + +#: pro/fields/class-acf-field-flexible-content.php:555 +msgid "Reorder" +msgstr "重排" + +#: pro/fields/class-acf-field-flexible-content.php:556 +msgid "Delete Layout" +msgstr "刪除版面" + +#: pro/fields/class-acf-field-flexible-content.php:557 +msgid "Duplicate Layout" +msgstr "複製版面" + +#: pro/fields/class-acf-field-flexible-content.php:558 +msgid "Add New Layout" +msgstr "新增版面" + +#: pro/fields/class-acf-field-flexible-content.php:629 +msgid "Min" +msgstr "最小" + +#: pro/fields/class-acf-field-flexible-content.php:642 +msgid "Max" +msgstr "最大" + +#: pro/fields/class-acf-field-flexible-content.php:669 +#: pro/fields/class-acf-field-repeater.php:464 +msgid "Button Label" +msgstr "按鈕標籤" + +#: pro/fields/class-acf-field-flexible-content.php:678 +msgid "Minimum Layouts" +msgstr "最少可使用版面數量" + +#: pro/fields/class-acf-field-flexible-content.php:687 +msgid "Maximum Layouts" +msgstr "最多可使用版面數量" + +#: pro/fields/class-acf-field-gallery.php:73 +msgid "Add Image to Gallery" +msgstr "新增圖片到圖庫" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "已達到最大選擇" + +#: pro/fields/class-acf-field-gallery.php:322 +msgid "Length" +msgstr "長度" + +#: pro/fields/class-acf-field-gallery.php:362 +msgid "Caption" +msgstr "標題" + +#: pro/fields/class-acf-field-gallery.php:371 +#| msgid "Alternate Text" +msgid "Alt Text" +msgstr "替代文字" + +#: pro/fields/class-acf-field-gallery.php:487 +msgid "Add to gallery" +msgstr "加入圖庫" + +#: pro/fields/class-acf-field-gallery.php:491 +msgid "Bulk actions" +msgstr "批次操作" + +#: pro/fields/class-acf-field-gallery.php:492 +msgid "Sort by date uploaded" +msgstr "依上傳日期排序" + +#: pro/fields/class-acf-field-gallery.php:493 +msgid "Sort by date modified" +msgstr "依修改日期排序" + +#: pro/fields/class-acf-field-gallery.php:494 +msgid "Sort by title" +msgstr "依標題排序" + +#: pro/fields/class-acf-field-gallery.php:495 +msgid "Reverse current order" +msgstr "反向目前順序" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Close" +msgstr "關閉" + +#: pro/fields/class-acf-field-gallery.php:580 +msgid "Insert" +msgstr "插入" + +#: pro/fields/class-acf-field-gallery.php:581 +msgid "Specify where new attachments are added" +msgstr "指定新附件加入的位置" + +#: pro/fields/class-acf-field-gallery.php:585 +msgid "Append to the end" +msgstr "附加在後" + +#: pro/fields/class-acf-field-gallery.php:586 +msgid "Prepend to the beginning" +msgstr "插入至最前" + +#: pro/fields/class-acf-field-gallery.php:605 +msgid "Minimum Selection" +msgstr "最小選擇" + +#: pro/fields/class-acf-field-gallery.php:613 +msgid "Maximum Selection" +msgstr "最大選擇" + +#: pro/fields/class-acf-field-repeater.php:65 +#: pro/fields/class-acf-field-repeater.php:661 +msgid "Minimum rows reached ({min} rows)" +msgstr "已達最小行數 ( {min} 行 )" + +#: pro/fields/class-acf-field-repeater.php:66 +msgid "Maximum rows reached ({max} rows)" +msgstr "已達最大行數 ( {max} 行 )" + +#: pro/fields/class-acf-field-repeater.php:338 +msgid "Add row" +msgstr "新增列" + +#: pro/fields/class-acf-field-repeater.php:339 +msgid "Remove row" +msgstr "移除列" + +#: pro/fields/class-acf-field-repeater.php:417 +msgid "Collapsed" +msgstr "收合" + +#: pro/fields/class-acf-field-repeater.php:418 +msgid "Select a sub field to show when row is collapsed" +msgstr "選取一個子欄位,讓它在行列收合時顯示" + +#: pro/fields/class-acf-field-repeater.php:428 +msgid "Minimum Rows" +msgstr "最小行數" + +#: pro/fields/class-acf-field-repeater.php:438 +msgid "Maximum Rows" +msgstr "最大行數" + +#: pro/locations/class-acf-location-options-page.php:79 +msgid "No options pages exist" +msgstr "設定頁面不存在" + +#: pro/options-page.php:51 +msgid "Options" +msgstr "選項" + +#: pro/options-page.php:82 +msgid "Options Updated" +msgstr "選項已更新" + +#: pro/updates.php:97 +#, php-format +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 "" +"要啟用更新,請在更新頁面上輸入您的授權金鑰。 如果您沒有授" +"權金鑰,請參閱詳情和定價。" + +#. Plugin URI of the plugin/theme +#. Author URI of the plugin/theme +msgid "https://www.advancedcustomfields.com" +msgstr "https://www.advancedcustomfields.com" + +#. Author of the plugin/theme +msgid "Elliot Condon" +msgstr "Elliot Condon" + +#~ msgid "Disabled" +#~ msgstr "已停用" + +#~ msgid "Parent fields" +#~ msgstr "父欄位" + +#~ msgid "Sibling fields" +#~ msgstr "分支欄位" + +#~ msgid "See what's new in" +#~ msgstr "檢視更新內容于" + +#~ msgid "version" +#~ msgstr "版本" + +#~ msgid "Getting Started" +#~ msgstr "開始" + +#~ msgid "Field Types" +#~ msgstr "欄位類型" + +#~ msgid "Functions" +#~ msgstr "功能" + +#~ msgid "Actions" +#~ msgstr "操作" + +#~ msgid "'How to' guides" +#~ msgstr "新手引導" + +#~ msgid "Tutorials" +#~ msgstr "教學" + +#~ msgid "Created by" +#~ msgstr "建立者" + +#~ msgid "Add-ons" +#~ msgstr "附加功能" + +#~ msgid "Upgrade" +#~ msgstr "升級" + +#~ msgid "Error" +#~ msgstr "錯誤" + +#~ msgid "Error." +#~ msgstr "錯誤." + +#~ msgid "Drag and drop to reorder" +#~ msgstr "托拽排序" + +#, fuzzy +#~ msgid "Taxonomy Term" +#~ msgstr "分類法" + +#, fuzzy +#~ msgid "Download & Install" +#~ msgstr "下載附加功能" + +#~ msgid "Installed" +#~ msgstr "已安裝" + +#, fuzzy +#~ msgid "New Gallery" +#~ msgstr "相簿" + +#, fuzzy +#~ msgid "Relationship Field" +#~ msgstr "關係" + +#~ msgid "Better Options Pages" +#~ msgstr "更好的設定頁面" + +#~ msgid "Export Field Groups to PHP" +#~ msgstr "匯出欄位群組到PHP" + +#, fuzzy +#~ msgid "See what's new" +#~ msgstr "檢視更新內容于" + +#~ msgid "Show a different month" +#~ msgstr "顯示其他月份" + +#~ msgid "Return format" +#~ msgstr "回傳格式" + +#~ msgid "File Size" +#~ msgstr "檔案大小" + +#~ msgid "No File selected" +#~ msgstr "尚未選擇檔案" + +#, fuzzy +#~ msgid "Locating" +#~ msgstr "位置" + +#~ msgid "" +#~ "Please note that all text will first be passed through the wp function " +#~ msgstr "請注意,所有文字將通過WP過濾功能" + +#, fuzzy +#~ msgid "No embed found for the given URL." +#~ msgstr "沒有為選項頁找到自訂欄位群組。." + +#~ msgid "None" +#~ msgstr "None" + +#~ msgid "eg. Show extra content" +#~ msgstr "例如:顯示附加內容" + +#~ msgid "Save Options" +#~ msgstr "儲存" + +#, fuzzy +#~ msgid "remove {layout}?" +#~ msgstr "重排序排版" + +#, fuzzy +#~ msgid "Maximum {label} limit reached ({max} {identifier})" +#~ msgstr "達到了最大值 ( {max} 值 ) " + +#, fuzzy +#~ msgid "Show Field Keys" +#~ msgstr "顯示欄位密鑰:" + +#, fuzzy +#~ msgid "Private" +#~ msgstr "啟用" + +#, fuzzy +#~ msgid "Revision" +#~ msgstr "版本控製" + +#, fuzzy +#~ msgid "Field groups are created in order from lowest to highest" +#~ msgstr "欄位群組排序
                              從低到高。" + +#, fuzzy +#~ msgid "ACF PRO Required" +#~ msgstr "(必填項)" + +#, fuzzy +#~ msgid "Update Database" +#~ msgstr "升級資料庫" + +#, fuzzy +#~ msgid "Data Upgrade" +#~ msgstr "升級" + +#, fuzzy +#~ msgid "Data is at the latest version." +#~ msgstr "非常感謝你升級外掛到最新版本!" + +#~ msgid "Load & Save Terms to Post" +#~ msgstr "加載&儲存條目到文章。" + +#~ msgid "" +#~ "Load value based on the post's terms and update the post's terms on save" +#~ msgstr "在文章上加載值,儲存時更新文章條目。" + +#, fuzzy +#~ msgid "image" +#~ msgstr "圖像" + +#, fuzzy +#~ msgid "relationship" +#~ msgstr "關係" + +#, fuzzy +#~ msgid "unload" +#~ msgstr "下載" + +#, fuzzy +#~ msgid "title_is_required" +#~ msgstr "欄位群組已發佈。" + +#, fuzzy +#~ msgid "move_field" +#~ msgstr "儲存欄位" + +#, fuzzy +#~ msgid "flexible_content" +#~ msgstr "大段內容" + +#, fuzzy +#~ msgid "gallery" +#~ msgstr "相簿" + +#, fuzzy +#~ msgid "repeater" +#~ msgstr "複製" + +#~ msgid "Custom field updated." +#~ msgstr "自訂欄位已更新。" + +#~ msgid "Custom field deleted." +#~ msgstr "自訂欄位已刪除。" + +#~ msgid "Column Width" +#~ msgstr "分欄寬度" + +#, fuzzy +#~ msgid "Attachment Details" +#~ msgstr "附件已更新" + +#~ msgid "Validation Failed. One or more fields below are required." +#~ msgstr "驗證失敗,下面一個或多個欄位是必需的。" + +#~ msgid "Field group restored to revision from %s" +#~ msgstr "欄位群組已恢複到版本%s" + +#~ msgid "No ACF groups selected" +#~ msgstr "沒有選擇 ACF 群組" + +#~ msgid "Repeater Field" +#~ msgstr "複製欄位" + +#~ msgid "" +#~ "Create infinite rows of repeatable data with this versatile interface!" +#~ msgstr "使用此多功能介面為可重覆資料建立無限行列。 " + +#~ msgid "Gallery Field" +#~ msgstr "相簿欄位" + +#~ msgid "Create image galleries in a simple and intuitive interface!" +#~ msgstr "使用簡單直覺的介面建立相簿!" + +#~ msgid "Create global data to use throughout your website!" +#~ msgstr "建立全站可用的資料。" + +#~ msgid "Flexible Content Field" +#~ msgstr "多樣內容欄位" + +#~ msgid "Create unique designs with a flexible content layout manager!" +#~ msgstr "透過內容排版管理器建立獨特的設計。" + +#~ msgid "Gravity Forms Field" +#~ msgstr "Gravity 表單欄位" + +#~ msgid "Creates a select field populated with Gravity Forms!" +#~ msgstr "建立一個由Gravity表單處理的選擇欄位。" + +#~ msgid "jQuery date & time picker" +#~ msgstr "jQuery 日期 & 時間選擇器" + +#~ msgid "Find addresses and coordinates of a desired location" +#~ msgstr "查找需要的位置的地址和坐標。" + +#~ msgid "Contact Form 7 Field" +#~ msgstr "Contact Form 7 欄位" + +#~ msgid "Assign one or more contact form 7 forms to a post" +#~ msgstr "分配一個或多個contact form 7表單到文章" + +#~ msgid "Advanced Custom Fields Add-Ons" +#~ msgstr "自訂欄位附加功能" + +#~ msgid "" +#~ "The following Add-ons are available to increase the functionality of the " +#~ "Advanced Custom Fields plugin." +#~ msgstr "下面的附加項可以提高外掛功能。" + +#~ msgid "" +#~ "Each Add-on can be installed as a separate plugin (receives updates) or " +#~ "included in your theme (does not receive updates)." +#~ msgstr "" +#~ "每個附件都可以作為一個單獨的外掛安裝(可以獲取更新)或包含在你的主題中(不" +#~ "能獲取更新)" + +#~ msgid "Purchase & Install" +#~ msgstr "購買和安裝" + +#~ msgid "Select the field groups to be exported" +#~ msgstr "選擇需要匯出的欄位群組。" + +#~ msgid "Export to XML" +#~ msgstr "匯出到XML" + +#~ msgid "Export to PHP" +#~ msgstr "匯出到PHP" + +#~ msgid "" +#~ "ACF will create a .xml export file which is compatible with the native WP " +#~ "import plugin." +#~ msgstr "ACF將建立一個相容於原生 WP 匯入外掛的.xml檔案。" + +#~ msgid "" +#~ "Imported field groups will appear in the list of editable field " +#~ "groups. This is useful for migrating fields groups between Wp websites." +#~ msgstr "" +#~ "匯入欄位群組出現在可編輯欄位群組後面,在幾個 WP 站點之間遷移欄位" +#~ "群組時,這將非常有用。" + +#~ msgid "Select field group(s) from the list and click \"Export XML\"" +#~ msgstr "從列表中選擇欄位群組,然後點擊 \"匯出XML\" " + +#~ msgid "Save the .xml file when prompted" +#~ msgstr "匯出後儲存.xml檔案" + +#~ msgid "Navigate to Tools » Import and select WordPress" +#~ msgstr "進入工具 » 匯入,然後選擇 WordPress " + +#~ msgid "Install WP import plugin if prompted" +#~ msgstr "安裝 WP 匯入外掛後開始" + +#~ msgid "Upload and import your exported .xml file" +#~ msgstr "上傳並匯入.xml檔案" + +#~ msgid "Select your user and ignore Import Attachments" +#~ msgstr "選擇使用者並忽略匯入附件" + +#~ msgid "That's it! Happy WordPressing" +#~ msgstr "成功了,使用愉快!" + +#~ msgid "ACF will create the PHP code to include in your theme." +#~ msgstr "ACP將匯出可以包含到主題中的PHP程式碼" + +#~ msgid "" +#~ "Registered field groups will not appear in the list of editable " +#~ "field groups. This is useful for including fields in themes." +#~ msgstr "" +#~ "已註冊欄位不會出現在可編輯分組中,這對主題中包含的欄位非常有用。" + +#~ msgid "" +#~ "Please note that if you export and register field groups within the same " +#~ "WP, you will see duplicate fields on your edit screens. To fix this, " +#~ "please move the original field group to the trash or remove the code from " +#~ "your functions.php file." +#~ msgstr "" +#~ "請注意,如果在同一個網站匯出並註冊欄位群組,您會在您的編輯屏幕上看到重複的" +#~ "字段,為瞭解決這個問題,請將原欄位群組移動到回收桶或刪除您的functions.php" +#~ "檔案中的程式碼。" + +#~ msgid "Select field group(s) from the list and click \"Create PHP\"" +#~ msgstr "參加列表中選擇表單組,然後點擊 \"生成PHP\"" + +#~ msgid "Copy the PHP code generated" +#~ msgstr "複製生成的PHP程式碼。" + +#~ msgid "Paste into your functions.php file" +#~ msgstr "請插入您的function.php檔案" + +#~ msgid "" +#~ "To activate any Add-ons, edit and use the code in the first few lines." +#~ msgstr "要啟用附加組件,編輯和應用程式碼中的前幾行。" + +#~ msgid "Notes" +#~ msgstr "注意" + +#~ msgid "Include in theme" +#~ msgstr "包含在主題中" + +#~ msgid "" +#~ "The Advanced Custom Fields plugin can be included within a theme. To do " +#~ "so, move the ACF plugin inside your theme and add the following code to " +#~ "your functions.php file:" +#~ msgstr "" +#~ "欄位外掛可以包含到主題中,如果需要進行此操作,請移動欄位外掛到themes檔案夾" +#~ "並新增以下程式碼到functions.php檔案:" + +#~ msgid "" +#~ "To remove all visual interfaces from the ACF plugin, you can use a " +#~ "constant to enable lite mode. Add the following code to you functions.php " +#~ "file before the include_once code:" +#~ msgstr "" +#~ "要刪除所有ACF外掛的可視化介面,你可以用一個常數,使精簡版模式,將下面的代" +#~ "碼新增到functions.php檔案中include_once程式碼之前。" + +#~ msgid "Back to export" +#~ msgstr "返回到匯出器" + +#~ msgid "" +#~ "/**\n" +#~ " * Install Add-ons\n" +#~ " * \n" +#~ " * The following code will include all 4 premium Add-Ons in your theme.\n" +#~ " * Please do not attempt to include a file which does not exist. This " +#~ "will produce an error.\n" +#~ " * \n" +#~ " * All fields must be included during the 'acf/register_fields' action.\n" +#~ " * Other types of Add-ons (like the options page) can be included " +#~ "outside of this action.\n" +#~ " * \n" +#~ " * The following code assumes you have a folder 'add-ons' inside your " +#~ "theme.\n" +#~ " *\n" +#~ " * IMPORTANT\n" +#~ " * Add-ons may be included in a premium theme as outlined in the terms " +#~ "and conditions.\n" +#~ " * However, they are NOT to be included in a premium / free plugin.\n" +#~ " * For more information, please read http://www.advancedcustomfields.com/" +#~ "terms-conditions/\n" +#~ " */" +#~ msgstr "" +#~ "/ **\n" +#~ " *安裝附加組件\n" +#~ " *\n" +#~ " *下面的程式碼將包括所有4個高級附加組件到您的主題\n" +#~ " *請不要試圖包含一個不存在的檔案,這將產生一個錯誤。\n" +#~ " *\n" +#~ " *所有欄位都必須在'acf/register_fields'動作執行時包含。\n" +#~ " *其他類型的加載項(如選項頁)可以包含在這個動作之外。\n" +#~ " *\n" +#~ " *下面的程式碼假定你在你的主題裡面有一個“add-ons”檔案夾。\n" +#~ " *\n" +#~ " *重要\n" +#~ " *附加組件可能在一個高級主題中包含下面的條款及條件。\n" +#~ " *但是,他們都沒有被列入高級或免費外掛。\n" +#~ " *欲瞭解更多信息,請讀取http://www.advancedcustomfields.com/terms-" +#~ "conditions/\n" +#~ " */" + +#~ msgid "" +#~ "/**\n" +#~ " * Register Field Groups\n" +#~ " *\n" +#~ " * The register_field_group function accepts 1 array which holds the " +#~ "relevant data to register a field group\n" +#~ " * You may edit the array as you see fit. However, this may result in " +#~ "errors if the array is not compatible with ACF\n" +#~ " */" +#~ msgstr "" +#~ "/**\n" +#~ " * 註冊欄位群組\n" +#~ " *\n" +#~ " * register_field_group函數接受一個包含註冊欄位群組有關數據的數組\n" +#~ " *您可以編輯您認為合適的數組,然而,如果數組不相容ACF,這可能會導致錯誤\n" +#~ " */" + +#~ msgid "Vote" +#~ msgstr "投票" + +#~ msgid "Follow" +#~ msgstr "關注" + +#~ msgid "Activation codes have grown into plugins!" +#~ msgstr "啟用碼成為了外掛!" + +#~ msgid "" +#~ "Add-ons are now activated by downloading and installing individual " +#~ "plugins. Although these plugins will not be hosted on the wordpress.org " +#~ "repository, each Add-on will continue to receive updates in the usual way." +#~ msgstr "" +#~ "附加組件現在通過下載和安裝單獨的外掛啟用,雖然這些外掛不在wordpress.org庫" +#~ "託管,每個附加組件將通過合適的方式得到更新。" + +#~ msgid "All previous Add-ons have been successfully installed" +#~ msgstr "所有附加功能已安裝!" + +#~ msgid "This website uses premium Add-ons which need to be downloaded" +#~ msgstr "此站點使用的高級功能需要下載。" + +#~ msgid "Download your activated Add-ons" +#~ msgstr "下載已啟用的附加功能" + +#~ msgid "" +#~ "This website does not use premium Add-ons and will not be affected by " +#~ "this change." +#~ msgstr "此站點未使用高級功能,這個改變沒有影響。" + +#~ msgid "Easier Development" +#~ msgstr "快速開發" + +#~ msgid "New Field Types" +#~ msgstr "新欄位類型" + +#~ msgid "Email Field" +#~ msgstr "電子郵件欄位" + +#~ msgid "Password Field" +#~ msgstr "密碼欄位" + +#~ msgid "Custom Field Types" +#~ msgstr "自訂欄位類型" + +#~ msgid "" +#~ "Creating your own field type has never been easier! Unfortunately, " +#~ "version 3 field types are not compatible with version 4." +#~ msgstr "" +#~ "建立您自己的欄位類型從未如此簡單!不幸的是,版本3的欄位類型不相容版本4。" + +#~ msgid "Migrating your field types is easy, please" +#~ msgstr "數據遷移非常簡單,請" + +#~ msgid "follow this tutorial" +#~ msgstr "跟隨這個嚮導" + +#~ msgid "to learn more." +#~ msgstr "瞭解更多。" + +#~ msgid "Actions & Filters" +#~ msgstr "動作&過濾器" + +#~ msgid "" +#~ "All actions & filters have recieved a major facelift to make customizing " +#~ "ACF even easier! Please" +#~ msgstr "所有動作和過濾器得到了一次重大改版一遍更方便的定製ACF!請" + +#~ msgid "read this guide" +#~ msgstr "閱讀此嚮導" + +#~ msgid "to find the updated naming convention." +#~ msgstr "找到更新命名約定。" + +#~ msgid "Preview draft is now working!" +#~ msgstr "預覽功能已經可用!" + +#~ msgid "This bug has been squashed along with many other little critters!" +#~ msgstr "這個錯誤已經與許多其他小動物一起被壓扁了!" + +#~ msgid "See the full changelog" +#~ msgstr "檢視全部更新日誌" + +#~ msgid "Database Changes" +#~ msgstr "資料庫改變" + +#~ msgid "" +#~ "Absolutely no changes have been made to the database " +#~ "between versions 3 and 4. This means you can roll back to version 3 " +#~ "without any issues." +#~ msgstr "" +#~ "資料庫在版本3和4之間沒有任何修改,這意味你可以安全回滾到" +#~ "版本3而不會遇到任何問題。" + +#~ msgid "Potential Issues" +#~ msgstr "潛在問題" + +#~ msgid "" +#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "filters, your website may not operate correctly. It is important that you " +#~ "read the full" +#~ msgstr "" +#~ "需要在附加組件,欄位類型和動作/過濾之間做重大修改時,你可的網站可能會出現" +#~ "一些問題,所有強烈建議閱讀全部" + +#~ msgid "Migrating from v3 to v4" +#~ msgstr "從V3遷移到V4" + +#~ msgid "guide to view the full list of changes." +#~ msgstr "檢視所有更新列表。" + +#~ msgid "Really Important!" +#~ msgstr "非常重要!" + +#~ msgid "" +#~ "If you updated the ACF plugin without prior knowledge of such changes, " +#~ "Please roll back to the latest" +#~ msgstr "如果你沒有收到更新通知而升級到了ACF外掛,請回滾到最近的一個版本。" + +#~ msgid "version 3" +#~ msgstr "版本 3" + +#~ msgid "of this plugin." +#~ msgstr "這個外掛" + +#~ msgid "Thank You" +#~ msgstr "謝謝!" + +#~ msgid "" +#~ "A BIG thank you to everyone who has helped test the " +#~ "version 4 beta and for all the support I have received." +#~ msgstr "非常感謝幫助我測試版本4的所有人。" + +#~ msgid "Without you all, this release would not have been possible!" +#~ msgstr "沒有你們,此版本可能還沒有發佈。" + +#~ msgid "Changelog for" +#~ msgstr "更新日誌:" + +#~ msgid "Learn more" +#~ msgstr "瞭解更多" + +#~ msgid "Overview" +#~ msgstr "預覽" + +#~ msgid "" +#~ "Previously, all Add-ons were unlocked via an activation code (purchased " +#~ "from the ACF Add-ons store). New to v4, all Add-ons act as separate " +#~ "plugins which need to be individually downloaded, installed and updated." +#~ msgstr "" +#~ "在此之前,所有附加組件通過一個啟用碼(從ACF附加組件的商店購買)解鎖,到了" +#~ "版本V4,所有附加組件作為單獨的外掛下載,安裝和更新。" + +#~ msgid "" +#~ "This page will assist you in downloading and installing each available " +#~ "Add-on." +#~ msgstr "此頁將幫助您下載和安裝每個可用的附加組件。" + +#~ msgid "Available Add-ons" +#~ msgstr "可用附加功能" + +#~ msgid "" +#~ "The following Add-ons have been detected as activated on this website." +#~ msgstr "在此網站上檢測到以下附加已啟用。" + +#~ msgid "Activation Code" +#~ msgstr "啟用碼" + +#~ msgid "Installation" +#~ msgstr "安裝" + +#~ msgid "For each Add-on available, please perform the following:" +#~ msgstr "對於每個可以用附加組件,請執行以下操作:" + +#~ msgid "Download the Add-on plugin (.zip file) to your desktop" +#~ msgstr "下載附加功能(.zip檔案)到電腦。" + +#~ msgid "Navigate to" +#~ msgstr "連結到" + +#~ msgid "Plugins > Add New > Upload" +#~ msgstr "外掛>新增>上傳" + +#~ msgid "" +#~ "Use the uploader to browse, select and install your Add-on (.zip file)" +#~ msgstr "使用檔案上載器,瀏覽,選擇並安裝附加組件(zip檔案)" + +#~ msgid "" +#~ "Once the plugin has been uploaded and installed, click the 'Activate " +#~ "Plugin' link" +#~ msgstr "外掛上傳並安裝後,點擊'啟用外掛'連結。" + +#~ msgid "The Add-on is now installed and activated!" +#~ msgstr "附加功能已安裝並啟用。" + +#~ msgid "Awesome. Let's get to work" +#~ msgstr "太棒了!我們開始吧。" + +#~ msgid "Modifying field group options 'show on page'" +#~ msgstr "修改欄位群組選項'在頁面上顯示'" + +#~ msgid "Modifying field option 'taxonomy'" +#~ msgstr "修改欄位選項'分類法'" + +#~ msgid "Moving user custom fields from wp_options to wp_usermeta'" +#~ msgstr "從wp_options移動會員自訂欄位到wp_usermeta" + +#~ msgid "blue : Blue" +#~ msgstr " blue : Blue " + +#~ msgid "eg: #ffffff" +#~ msgstr "如: #ffffff " + +#~ msgid "Dummy" +#~ msgstr "二進製" + +#~ msgid "File Object" +#~ msgstr "檔案對象" + +#~ msgid "File Updated." +#~ msgstr "檔案已更新" + +#~ msgid "Media attachment updated." +#~ msgstr "媒體附件已更新。" + +#~ msgid "Add Selected Files" +#~ msgstr "新增已選擇檔案" + +#~ msgid "Image Object" +#~ msgstr "對象圖像" + +#~ msgid "Image Updated." +#~ msgstr "圖片已更新" + +#~ msgid "No images selected" +#~ msgstr "沒有選擇圖片" + +#~ msgid "Add Selected Images" +#~ msgstr "新增所選圖片" + +#~ msgid "Text & HTML entered here will appear inline with the fields" +#~ msgstr "在這裡輸入的文本和HTML將和此欄位一起出現。" + +#~ msgid "Enter your choices one per line" +#~ msgstr "輸入選項,每行一個" + +#~ msgid "Red" +#~ msgstr "紅" + +#~ msgid "Blue" +#~ msgstr "藍" + +#~ msgid "Post Type Select" +#~ msgstr "文章類型選擇" + +#~ msgid "You can use multiple tabs to break up your fields into sections." +#~ msgstr "你可以使用選項卡分割欄位到多個區域。" + +#~ msgid "Define how to render html tags" +#~ msgstr "定義怎麼生成html標簽" + +#~ msgid "HTML" +#~ msgstr "HTML" + +#~ msgid "Define how to render html tags / new lines" +#~ msgstr "定義怎麼處理html標簽和換行" + +#~ msgid "" +#~ "This format will determin the value saved to the database and returned " +#~ "via the API" +#~ msgstr "此格式將決定存儲在資料庫中的值,並通過API返回。" + +#~ msgid "\"yymmdd\" is the most versatile save format. Read more about" +#~ msgstr "\"yymmdd\" 是最常用的格式,如需瞭解更多,請參考" + +#~ msgid "jQuery date formats" +#~ msgstr "jQuery日期格式" + +#~ msgid "" +#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more " +#~ "about" +#~ msgstr "\"dd/mm/yy\" 或 \"mm/dd/yy\" 為最常用的顯示格式,瞭解更多" + +#~ msgid "Field Order" +#~ msgstr "欄位順序" + +#~ msgid "Edit this Field" +#~ msgstr "編輯欄位" + +#~ msgid "Docs" +#~ msgstr "文檔" + +#~ msgid "Field Instructions" +#~ msgstr "欄位說明" + +#~ msgid "Show this field when" +#~ msgstr "符合這些規則中的" + +#~ msgid "all" +#~ msgstr "所有" + +#~ msgid "any" +#~ msgstr "任一個" + +#~ msgid "these rules are met" +#~ msgstr "項時,顯示此欄位" + +#~ msgid "Taxonomy Term (Add / Edit)" +#~ msgstr "分類法條目(新增/編輯)" + +#~ msgid "Media Attachment (Edit)" +#~ msgstr "媒體附件(編輯)" + +#~ msgid "Unlock options add-on with an activation code" +#~ msgstr "使用啟用碼解鎖附加功能" + +#~ msgid "Normal" +#~ msgstr "普通" + +#~ msgid "No Metabox" +#~ msgstr "無Metabox" + +#~ msgid "Add-Ons" +#~ msgstr "附加" + +#~ msgid "Just updated to version 4?" +#~ msgstr "剛更新到版本4?" + +#~ msgid "" +#~ "Activation codes have changed to plugins! Download your purchased add-ons" +#~ msgstr "啟用碼已改變了外掛,請下載已購買的附加功能。" + +#~ msgid "here" +#~ msgstr "這裡" + +#~ msgid "match" +#~ msgstr "符合" + +#~ msgid "of the above" +#~ msgstr " " + +#~ msgid "" +#~ "Read documentation, learn the functions and find some tips & tricks " +#~ "for your next web project." +#~ msgstr "閱讀文檔,學習功能和發現一些小提示,然後應用到你下一個網站項目中。" + +#~ msgid "Visit the ACF website" +#~ msgstr "訪問ACF網站" + +#~ msgid "Add File to Field" +#~ msgstr "新增檔案" + +#~ msgid "Add Image to Field" +#~ msgstr "新增圖片" + +#~ msgid "Repeater field deactivated" +#~ msgstr "檢測到複製欄位" + +#~ msgid "Gallery field deactivated" +#~ msgstr "檢測到相簿欄位" + +#~ msgid "Repeater field activated" +#~ msgstr "複製外掛已啟用。" + +#~ msgid "Options page activated" +#~ msgstr "選項頁面已啟用" + +#~ msgid "Flexible Content field activated" +#~ msgstr "多樣內容欄位已啟用" + +#~ msgid "Gallery field activated" +#~ msgstr "外掛啟用成功。" + +#~ msgid "License key unrecognised" +#~ msgstr "許可密鑰未註冊" + +#~ msgid "" +#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used " +#~ "on multiple sites." +#~ msgstr "可以購買一個許可證來啟用附加功能,每個許可證可用於許多站點。" + +#~ msgid "Register Field Groups" +#~ msgstr "註冊欄位群組" + +#~ msgid "Advanced Custom Fields Settings" +#~ msgstr "高級自動設定" + +#~ msgid "requires a database upgrade" +#~ msgstr "資料庫需要升級" + +#~ msgid "why?" +#~ msgstr "為什麼?" + +#~ msgid "Please" +#~ msgstr "請" + +#~ msgid "backup your database" +#~ msgstr "備份資料庫" + +#~ msgid "then click" +#~ msgstr "然後點擊" + +#~ msgid "No choices to choose from" +#~ msgstr "選擇表單沒有選" + +#~ msgid "+ Add Row" +#~ msgstr "新增行" + +#~ msgid "" +#~ "No fields. Click the \"+ Add Sub Field button\" to create your first " +#~ "field." +#~ msgstr "沒有欄位,點擊新增按鈕建立第一個欄位。" + +#~ msgid "Close Sub Field" +#~ msgstr "選擇子欄位" + +#~ msgid "+ Add Sub Field" +#~ msgstr "新增子欄位" + +#~ msgid "Thumbnail is advised" +#~ msgstr "建設使用縮略圖" + +#~ msgid "Image Updated" +#~ msgstr "圖片已更新" + +#~ msgid "Grid" +#~ msgstr "柵格" + +#~ msgid "List" +#~ msgstr "列表" + +#~ msgid "1 image selected" +#~ msgstr "已選擇1張圖片" + +#~ msgid "{count} images selected" +#~ msgstr "選擇了 {count}張圖片" + +#~ msgid "Added" +#~ msgstr "已新增" + +#~ msgid "Image already exists in gallery" +#~ msgstr "圖片已在相簿中" + +#~ msgid "Repeater Fields" +#~ msgstr "複製欄位" + +#~ msgid "Table (default)" +#~ msgstr "表格(預設)" + +#~ msgid "Run filter \"the_content\"?" +#~ msgstr "是否運行過濾器 \"the_content\"?" + +#~ msgid "Media (Edit)" +#~ msgstr "媒體(編輯)" diff --git a/lang/pro/acf.pot b/lang/pro/acf.pot new file mode 100644 index 0000000..2d87bba --- /dev/null +++ b/lang/pro/acf.pot @@ -0,0 +1,703 @@ +# Copyright (C) 2022 Advanced Custom Fields PRO +# This file is distributed under the same license as the Advanced Custom Fields PRO package. +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields PRO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language-Team: WP Engine \n" +"POT-Creation-Date: 2022-09-29 12:33+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" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: pro/acf-pro.php:27 +msgid "Advanced Custom Fields PRO" +msgstr "" + +#: pro/blocks.php:169 +msgid "Block type name is required." +msgstr "" + +#. translators: The name of the block type +#: pro/blocks.php:177 +msgid "Block type \"%s\" is already registered." +msgstr "" + +#: pro/blocks.php:709 +msgid "Switch to Edit" +msgstr "" + +#: pro/blocks.php:710 +msgid "Switch to Preview" +msgstr "" + +#: pro/blocks.php:711 +msgid "Change content alignment" +msgstr "" + +#. translators: %s: Block type title +#: pro/blocks.php:714 +msgid "%s settings" +msgstr "" + +#: pro/blocks.php:919 +msgid "This block contains no editable fields." +msgstr "" + +#. translators: %s: an admin URL to the field group edit screen +#: pro/blocks.php:925 +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:523 +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 "" + +#: 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-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/admin-updates.php:122, pro/admin/views/html-settings-updates.php:12 +msgid "Updates" +msgstr "" + +#: pro/admin/admin-updates.php:209 +msgid "Error. Could not authenticate update package. Please check again or deactivate and reactivate your ACF PRO license." +msgstr "" + +#: pro/admin/admin-updates.php:196 +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:814 +msgid "Fields" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:815 +msgid "Select one or more fields you wish to clone" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:834 +msgid "Display" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:835 +msgid "Specify the style used to render the clone field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:840 +msgid "Group (displays selected fields in a group within this field)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:841 +msgid "Seamless (replaces this field with selected fields)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:850, pro/fields/class-acf-field-flexible-content.php:549, pro/fields/class-acf-field-flexible-content.php:604, pro/fields/class-acf-field-repeater.php:178 +msgid "Layout" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:851 +msgid "Specify the style used to render the selected fields" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:856, pro/fields/class-acf-field-flexible-content.php:617, pro/fields/class-acf-field-repeater.php:186, pro/locations/class-acf-location-block.php:22 +msgid "Block" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:857, pro/fields/class-acf-field-flexible-content.php:616, pro/fields/class-acf-field-repeater.php:185 +msgid "Table" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:858, pro/fields/class-acf-field-flexible-content.php:618, pro/fields/class-acf-field-repeater.php:187 +msgid "Row" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:864 +msgid "Labels will be displayed as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:869 +msgid "Prefix Field Labels" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:879 +msgid "Values will be saved as %s" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:884 +msgid "Prefix Field Names" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1001 +msgid "Unknown field" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1005 +msgid "(no title)" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1038 +msgid "Unknown field group" +msgstr "" + +#: pro/fields/class-acf-field-clone.php:1042 +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:31, pro/fields/class-acf-field-repeater.php:105, pro/fields/class-acf-field-repeater.php:298 +msgid "Add Row" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:71, pro/fields/class-acf-field-flexible-content.php:931, pro/fields/class-acf-field-flexible-content.php:1010 +msgid "layout" +msgid_plural "layouts" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-flexible-content.php:72 +msgid "layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:75, pro/fields/class-acf-field-flexible-content.php:930, pro/fields/class-acf-field-flexible-content.php:1009 +msgid "This field requires at least {min} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:76 +msgid "This field has a limit of {max} {label} {identifier}" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:79 +msgid "{available} {label} {identifier} available (max {max})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:80 +msgid "{required} {label} {identifier} required (min {min})" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:83 +msgid "Flexible Content requires at least 1 layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:276 +msgid "Click the \"%s\" button below to start creating your layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:410, pro/fields/class-acf-repeater-table.php:366 +msgid "Drag to reorder" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:413 +msgid "Add layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:414 +msgid "Duplicate layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:415 +msgid "Remove layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:416, pro/fields/class-acf-repeater-table.php:382 +msgid "Click to toggle" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:551 +msgid "Reorder" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:552 +msgid "Delete" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:553 +msgid "Duplicate" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New Layout" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:554 +msgid "Add New" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:581 +msgid "Label" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:597 +msgid "Name" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:635 +msgid "Min" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:650 +msgid "Max" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:693 +msgid "Minimum Layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:704 +msgid "Maximum Layouts" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:715, pro/fields/class-acf-field-repeater.php:294 +msgid "Button Label" +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1698, pro/fields/class-acf-field-repeater.php:919 +msgid "%s must be of type array or null." +msgstr "" + +#: pro/fields/class-acf-field-flexible-content.php:1709 +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:1725 +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:73 +msgid "Add Image to Gallery" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:74 +msgid "Maximum selection reached" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:320 +msgid "Length" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:335 +msgid "Edit" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:336, pro/fields/class-acf-field-gallery.php:491 +msgid "Remove" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:352 +msgid "Title" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:364 +msgid "Caption" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:376 +msgid "Alt Text" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:388 +msgid "Description" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:500 +msgid "Add to gallery" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:504 +msgid "Bulk actions" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:505 +msgid "Sort by date uploaded" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:506 +msgid "Sort by date modified" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:507 +msgid "Sort by title" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:508 +msgid "Reverse current order" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:520 +msgid "Close" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:552 +msgid "Return Format" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:558 +msgid "Image Array" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:559 +msgid "Image URL" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:560 +msgid "Image ID" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:568 +msgid "Library" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:569 +msgid "Limit the media library choice" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:574, pro/locations/class-acf-location-block.php:66 +msgid "All" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:575 +msgid "Uploaded to post" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:611 +msgid "Minimum Selection" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:621 +msgid "Maximum Selection" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:631 +msgid "Minimum" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:632, pro/fields/class-acf-field-gallery.php:668 +msgid "Restrict which images can be uploaded" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:635, pro/fields/class-acf-field-gallery.php:671 +msgid "Width" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:646, pro/fields/class-acf-field-gallery.php:682 +msgid "Height" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:658, pro/fields/class-acf-field-gallery.php:694 +msgid "File size" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:667 +msgid "Maximum" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:703 +msgid "Allowed file types" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:704 +msgid "Comma separated list. Leave blank for all types" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:723 +msgid "Insert" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:724 +msgid "Specify where new attachments are added" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:728 +msgid "Append to the end" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:729 +msgid "Prepend to the beginning" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:737 +msgid "Preview Size" +msgstr "" + +#: pro/fields/class-acf-field-gallery.php:840 +msgid "%1$s requires at least %2$s selection" +msgid_plural "%1$s requires at least %2$s selections" +msgstr[0] "" +msgstr[1] "" + +#: pro/fields/class-acf-field-repeater.php:36 +msgid "Repeater" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:68, pro/fields/class-acf-field-repeater.php:463 +msgid "Minimum rows reached ({min} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:69 +msgid "Maximum rows reached ({max} rows)" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:70 +msgid "Error loading page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:71 +msgid "Order will be assigned upon save" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:163 +msgid "Sub Fields" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:196 +msgid "Pagination" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:197 +msgid "Useful for fields with a large number of rows." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:208 +msgid "Rows Per Page" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:209 +msgid "Set the number of rows to be displayed on a page." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:241 +msgid "Minimum Rows" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:252 +msgid "Maximum Rows" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:282 +msgid "Collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:283 +msgid "Select a sub field to show when row is collapsed" +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:1003 +msgid "Invalid nonce." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:1018 +msgid "Invalid field key or name." +msgstr "" + +#: pro/fields/class-acf-field-repeater.php:1027 +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: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 +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/pro/acf-pro.php b/pro/acf-pro.php index 7a40243..583268b 100644 --- a/pro/acf-pro.php +++ b/pro/acf-pro.php @@ -32,10 +32,8 @@ if ( ! class_exists( 'acf_pro' ) ) : acf_include( 'pro/updates.php' ); if ( is_admin() ) { - acf_include( 'pro/admin/admin-options-page.php' ); acf_include( 'pro/admin/admin-updates.php' ); - } // actions @@ -47,30 +45,20 @@ if ( ! class_exists( 'acf_pro' ) ) : } - - /* - * include_field_types - * - * description - * - * @type function - * @date 21/10/2015 - * @since 5.2.3 - * - * @param $post_id (int) - * @return $post_id (int) - */ - + /** + * Includes any files necessary for field types. + * + * @date 21/10/2015 + * @since 5.2.3 + */ function include_field_types() { - + acf_include( 'pro/fields/class-acf-repeater-table.php' ); acf_include( 'pro/fields/class-acf-field-repeater.php' ); acf_include( 'pro/fields/class-acf-field-flexible-content.php' ); acf_include( 'pro/fields/class-acf-field-gallery.php' ); acf_include( 'pro/fields/class-acf-field-clone.php' ); - } - /* * include_location_rules * diff --git a/pro/admin/admin-options-page.php b/pro/admin/admin-options-page.php index 527bb5a..5247263 100644 --- a/pro/admin/admin-options-page.php +++ b/pro/admin/admin-options-page.php @@ -187,7 +187,7 @@ if ( ! class_exists( 'acf_admin_options_page' ) ) : ); // notices - if ( ! empty( $_GET['message'] ) && $_GET['message'] == '1' ) { + if ( ! empty( $_GET['message'] ) && $_GET['message'] == '1' ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Used to display a notice. acf_add_admin_notice( $this->page['updated_message'], 'success' ); } diff --git a/pro/admin/views/html-settings-updates.php b/pro/admin/views/html-settings-updates.php index d4f4fb0..aef08e7 100644 --- a/pro/admin/views/html-settings-updates.php +++ b/pro/admin/views/html-settings-updates.php @@ -7,10 +7,10 @@ $button = $active ? __( 'Deactivate License', 'acf' ) : __( 'Activate License' $readonly = $active ? 1 : 0; ?> -
                              - +
                              +

                              - +

                              @@ -31,46 +31,31 @@ $readonly = $active ? 1 : 0; -

                              details & pricing.', 'acf' ), esc_url( 'https://www.advancedcustomfields.com/pro/?utm_source=ACF%2Bpro%2Bplugin&utm_medium=insideplugin&utm_campaign=ACF%2Bupgrade&utm_content=license%2Bactivations' ) ); ?>

                              -
                              +

                              details & pricing.', 'acf' ), acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/pro/', 'ACF upgrade', 'license activations' ) ); ?>

                              + -
                                - - - - - - - - - - -
                                - - - + 'text', - 'name' => 'acf_pro_license', - 'value' => str_repeat( '*', strlen( $license ) ), - 'readonly' => $readonly, - ) - ); + // render field + acf_render_field( + array( + 'type' => 'text', + 'name' => 'acf_pro_license', + 'value' => str_repeat( '*', strlen( $license ) ), + 'readonly' => $readonly, + ) + ); - ?> -
                                - -
                                + ?> + - +
                                - +
                                - +

                                @@ -100,34 +85,13 @@ $readonly = $active ? 1 : 0; - + - - - - - - - - - - - - - - - - - - - - - @@ -140,6 +104,29 @@ $readonly = $active ? 1 : 0; + + +
                                + +
                                + + + + + + + + + + + + + + + + + +
                                @@ -147,7 +134,7 @@ $readonly = $active ? 1 : 0; #acf_pro_license { width: 75%; } - + #acf-update-information td h4 { display: none; } diff --git a/pro/blocks.php b/pro/blocks.php index 37144e8..80c1e6c 100755 --- a/pro/blocks.php +++ b/pro/blocks.php @@ -1,4 +1,9 @@ false, + 'render_callback' => false, + 'enqueue_style' => false, + 'enqueue_script' => false, + 'enqueue_assets' => false, + 'post_types' => array(), + 'uses_context' => array(), + 'supports' => array(), + 'attributes' => array(), + 'acf_block_version' => 2, + 'api_version' => 2, + ) + ); + + // Add user provided attributes to ACF's required defaults. + $settings['attributes'] = wp_parse_args( + acf_get_block_type_default_attributes( $metadata ), + $settings['attributes'] + ); + + // Add default ACF 'supports' settings. + $settings['supports'] = wp_parse_args( + $settings['supports'], + array( + 'align' => true, + 'html' => false, + 'mode' => true, + 'jsx' => true, + ) + ); + + // Add default ACF 'uses_context' settings. + $settings['uses_context'] = array_unique( + array_merge( + $settings['uses_context'], + array( + 'postId', + 'postType', + ) + ) + ); + + // Map custom ACF properties from the ACF key, with localization. + $property_mappings = array( + 'renderCallback' => 'render_callback', + 'renderTemplate' => 'render_template', + 'mode' => 'mode', + 'blockVersion' => 'acf_block_version', + 'postTypes' => 'post_types', + ); + $textdomain = ! empty( $metadata['textdomain'] ) ? $metadata['textdomain'] : 'acf'; + $i18n_schema = get_block_metadata_i18n_schema(); + + foreach ( $property_mappings as $key => $mapped_key ) { + if ( isset( $metadata['acf'][ $key ] ) ) { + unset( $settings[ $key ] ); + $settings[ $mapped_key ] = $metadata['acf'][ $key ]; + if ( $textdomain && isset( $i18n_schema->$key ) ) { + $settings[ $mapped_key ] = translate_settings_using_i18n_schema( $i18n_schema->$key, $settings[ $key ], $textdomain ); + } + } + } + + // Add the block name and registration path to settings. + $settings['name'] = $metadata['name']; + $settings['path'] = dirname( $metadata['file'] ); + + acf_get_store( 'block-types' )->set( $metadata['name'], $settings ); + add_action( 'enqueue_block_editor_assets', 'acf_enqueue_block_assets' ); + + // Ensure our render callback is used. + $settings['render_callback'] = 'acf_render_block_callback'; + + return $settings; +} + +/** + * Check if a block.json block is an ACF block. + * + * @since 6.0.0 + * + * @param array $metadata The raw block metadata array. + * @return bool + */ +function acf_is_acf_block_json( $metadata ) { + return ( isset( $metadata['acf'] ) && $metadata['acf'] ); +} + + +/** * Registers a block type. * * @date 18/2/19 @@ -19,7 +152,6 @@ acf_register_store( 'block-cache' ); * @return (array|false) */ function acf_register_block_type( $block ) { - // Validate block type settings. $block = acf_validate_block_type( $block ); @@ -35,30 +167,38 @@ function acf_register_block_type( $block ) { // Require name. if ( ! $block['name'] ) { $message = __( 'Block type name is required.', 'acf' ); - _doing_it_wrong( __FUNCTION__, $message, '5.8.0' ); + _doing_it_wrong( __FUNCTION__, $message, '5.8.0' ); //phpcs:ignore -- escape not required. return false; } // Bail early if already exists. if ( acf_has_block_type( $block['name'] ) ) { - $message = sprintf( __( 'Block type "%s" is already registered.' ), $block['name'] ); - _doing_it_wrong( __FUNCTION__, $message, '5.8.0' ); + /* translators: The name of the block type */ + $message = sprintf( __( 'Block type "%s" is already registered.', 'acf' ), $block['name'] ); + _doing_it_wrong( __FUNCTION__, $message, '5.8.0' ); //phpcs:ignore -- escape not required. return false; } + // Set ACF required attributes. + $block['attributes'] = acf_get_block_type_default_attributes( $block ); + if ( ! isset( $block['api_version'] ) ) { + $block['api_version'] = 2; + } + if ( ! isset( $block['acf_block_version'] ) ) { + $block['acf_block_version'] = 1; + } + // Add to storage. acf_get_store( 'block-types' )->set( $block['name'], $block ); + // Overwrite callback for WordPress registration. + $block['render_callback'] = 'acf_render_block_callback'; + // Register block type in WP. if ( function_exists( 'register_block_type' ) ) { register_block_type( $block['name'], - array( - 'attributes' => acf_get_block_type_default_attributes( $block ), - 'uses_context' => $block['usesContext'], - 'api_version' => 2, - 'render_callback' => 'acf_render_block_callback', - ) + $block ); } @@ -70,8 +210,6 @@ function acf_register_block_type( $block ) { } /** - * acf_register_block - * * See acf_register_block_type(). * * @date 18/2/19 @@ -85,11 +223,8 @@ function acf_register_block( $block ) { } /** - * acf_has_block_type - * * Returns true if a block type exists for the given name. * - * @date 18/2/19 * @since 5.7.12 * * @param string $name The block type name. @@ -100,14 +235,10 @@ function acf_has_block_type( $name ) { } /** - * acf_get_block_types - * * Returns an array of all registered block types. * - * @date 18/2/19 * @since 5.7.12 * - * @param void * @return array */ function acf_get_block_types() { @@ -115,11 +246,8 @@ function acf_get_block_types() { } /** - * acf_get_block_types - * * Returns a block type for the given name. * - * @date 18/2/19 * @since 5.7.12 * * @param string $name The block type name. @@ -130,11 +258,8 @@ function acf_get_block_type( $name ) { } /** - * acf_remove_block_type - * * Removes a block type for the given name. * - * @date 18/2/19 * @since 5.7.12 * * @param string $name The block type name. @@ -145,22 +270,16 @@ function acf_remove_block_type( $name ) { } /** - * acf_get_block_type_default_attributes - * * Returns an array of default attribute settings for a block type. * * @date 19/11/18 * @since 5.8.0 * - * @param void - * @return array + * @param array $block_type A block configuration array. + * @return array */ function acf_get_block_type_default_attributes( $block_type ) { $attributes = array( - 'id' => array( - 'type' => 'string', - 'default' => '', - ), 'name' => array( 'type' => 'string', 'default' => '', @@ -178,27 +297,48 @@ function acf_get_block_type_default_attributes( $block_type ) { 'default' => '', ), ); - if ( ! empty( $block_type['supports']['align_text'] ) ) { - $attributes['align_text'] = array( + + foreach ( acf_get_block_back_compat_attribute_key_array() as $new => $old ) { + if ( isset( $block_type['supports'][ $old ] ) ) { + $block_type['supports'][ $new ] = $block_type['supports'][ $old ]; + unset( $block_type['supports'][ $old ] ); + } + } + + if ( ! empty( $block_type['supports']['alignText'] ) ) { + $attributes['alignText'] = array( 'type' => 'string', 'default' => '', ); } - if ( ! empty( $block_type['supports']['align_content'] ) ) { - $attributes['align_content'] = array( + if ( ! empty( $block_type['supports']['alignContent'] ) ) { + $attributes['alignContent'] = array( 'type' => 'string', 'default' => '', ); } + if ( ! empty( $block_type['supports']['fullHeight'] ) ) { + $attributes['fullHeight'] = array( + 'type' => 'boolean', + 'default' => '', + ); + } + + // For each of ACF's block attributes, check if the user's block attributes contains a default value we should use. + if ( isset( $block_type['attributes'] ) && is_array( $block_type['attributes'] ) ) { + foreach ( array_keys( $attributes ) as $key ) { + if ( isset( $block_type['attributes'][ $key ] ) && is_array( $block_type['attributes'][ $key ] ) && isset( $block_type['attributes'][ $key ]['default'] ) ) { + $attributes[ $key ]['default'] = $block_type['attributes'][ $key ]['default']; + } + } + } + return $attributes; } /** - * acf_validate_block_type - * * Validates a block type ensuring all settings exist. * - * @date 10/4/18 * @since 5.8.0 * * @param array $block The block settings. @@ -216,11 +356,10 @@ function acf_validate_block_type( $block ) { 'category' => 'common', 'icon' => '', 'mode' => 'preview', - 'align' => '', 'keywords' => array(), 'supports' => array(), 'post_types' => array(), - 'usesContext' => array(), + 'uses_context' => array(), 'render_template' => false, 'render_callback' => false, 'enqueue_style' => false, @@ -249,9 +388,9 @@ function acf_validate_block_type( $block ) { ) ); - // Add default 'usesContext' settings. - $block['usesContext'] = wp_parse_args( - $block['usesContext'], + // Add default 'uses_context' settings. + $block['uses_context'] = wp_parse_args( + $block['uses_context'], array( 'postId', 'postType', @@ -268,11 +407,8 @@ function acf_validate_block_type( $block ) { } /** - * acf_prepare_block - * * Prepares a block for use in render_callback by merging in all settings and attributes. * - * @date 19/11/18 * @since 5.8.0 * * @param array $block The block props. @@ -300,10 +436,47 @@ function acf_prepare_block( $block ) { // Merge together arrays in order of least to most specific. $block = array_merge( $block_type, $attributes, $block ); + // Add backward compatibility attributes. + $block = acf_add_back_compat_attributes( $block ); + // Return block. return $block; } +/** + * Add backwards compatible attribute values. + * + * @since 6.0.0 + * + * @param array $block The original block. + * @return array Modified block array with backwards compatibility attributes. + */ +function acf_add_back_compat_attributes( $block ) { + foreach ( acf_get_block_back_compat_attribute_key_array() as $new => $old ) { + if ( isset( $block[ $new ] ) ) { + $block[ $old ] = $block[ $new ]; + } + } + + return $block; +} + +/** + * Get back compat new values and old values. + * + * @since 6.0.0 + * + * @return array back compat key array. + */ +function acf_get_block_back_compat_attribute_key_array() { + return array( + 'fullHeight' => 'full_height', + 'alignText' => 'align_text', + 'alignContent' => 'align_content', + ); +} + + /** * The render callback for all ACF blocks. * @@ -344,52 +517,93 @@ function acf_render_block_callback( $attributes, $content = '', $wp_block = null */ function acf_rendered_block( $attributes, $content = '', $is_preview = false, $post_id = 0, $wp_block = null, $context = false ) { $mode = isset( $attributes['mode'] ) ? $attributes['mode'] : 'auto'; + $form = ( 'edit' === $mode && $is_preview ); // If context is available from the WP_Block class object and we have no context of our own, use that. if ( empty( $context ) && ! empty( $wp_block->context ) ) { $context = $wp_block->context; } + // Check if we need to generate a block ID. + $attributes['id'] = acf_get_block_id( $attributes, $context ); + + // Check if we've already got a cache of this block ID and return it to save rendering if we're in the backend. + if ( $is_preview ) { + $cached_block = acf_get_store( 'block-cache' )->get( $attributes['id'] ); + if ( $cached_block ) { + if ( $form ) { + if ( $cached_block['form'] ) { + return $cached_block['html']; + } + } else { + if ( ! $cached_block['form'] ) { + return $cached_block['html']; + } + } + } + } + ob_start(); - // if ( 'edit' === $mode && $is_preview ) { - // Load the block form since we're in edit mode. - // $block = acf_prepare_block( $attributes ); - // acf_setup_meta( $block['data'], $block['id'], true ); - // $fields = acf_get_block_fields( $block ); - // acf_prefix_fields( $fields, "acf-{$block['id']}" ); - // - // echo '
                                '; - // acf_render_fields( $fields, $block['id'], 'div', 'field' ); - // echo '
                                '; - // } else { + 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 ); + + $block = acf_prepare_block( $attributes ); + acf_setup_meta( $block['data'], $block['id'], true ); + $fields = acf_get_block_fields( $block ); + if ( $fields ) { + acf_prefix_fields( $fields, "acf-{$block['id']}" ); + + echo '
                                '; + acf_render_fields( $fields, $block['id'], 'div', 'field' ); + echo '
                                '; + } else { + echo acf_get_empty_block_form_html( $attributes['name'] ); //phpcs:ignore -- escaped in function. + } + } else { // Capture block render output. acf_render_block( $attributes, $content, $is_preview, $post_id, $wp_block, $context ); - // } + } $html = ob_get_clean(); - //if ( in_array( $mode, array( 'preview', 'auto' ) ) && $is_preview ) { - if ( $is_preview ) { - $html = '
                                ' . $html . '
                                '; - } - // Replace placeholder on front-end. if ( ! $is_preview ) { // Escape "$" character to avoid "capture group" interpretation. $content = str_replace( '$', '\$', $content ); - $html = preg_replace( '//', $content, $html ); + + // Wrap content in our acf-inner-container wrapper if necessary. + if ( $wp_block && $wp_block->block_type->acf_block_version > 1 && apply_filters( 'acf/blocks/wrap_frontend_innerblocks', true, $attributes['name'] ) ) { + // Check for a class (or className) provided in the template to become the InnerBlocks wrapper class. + $matches = array(); + if ( preg_match( '/' . $content . ''; + } + $html = preg_replace( '//', $content, $html ); } - // Store in cache for preloading. - acf_get_store( 'block-cache' )->set( $attributes['id'], $html ); + // Store in cache for preloading if we're in the backend. + acf_get_store( 'block-cache' )->set( + $attributes['id'], + array( + 'form' => $form, + 'html' => $html, + ) + ); + return $html; } /** * Renders the block HTML. * - * @date 19/2/19 * @since 5.7.12 * * @param array $attributes The block attributes. @@ -398,7 +612,7 @@ function acf_rendered_block( $attributes, $content = '', $is_preview = false, $p * @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. - * @return void + * @return void|string */ function acf_render_block( $attributes, $content = '', $is_preview = false, $post_id = 0, $wp_block = null, $context = false ) { @@ -416,6 +630,9 @@ function acf_render_block( $attributes, $content = '', $is_preview = false, $pos // Enqueue block type assets. acf_enqueue_block_type_assets( $block ); + // Ensure block ID is prefixed for render. + $block['id'] = acf_ensure_block_id_prefix( $block['id'] ); + // Setup postdata allowing get_field() to work. acf_setup_meta( $block['data'], $block['id'], true ); @@ -427,7 +644,9 @@ function acf_render_block( $attributes, $content = '', $is_preview = false, $pos } elseif ( $block['render_template'] ) { // Locate template. - if ( file_exists( $block['render_template'] ) ) { + if ( isset( $block['path'] ) && file_exists( $block['path'] . '/' . $block['render_template'] ) ) { + $path = $block['path'] . '/' . $block['render_template']; + } elseif ( file_exists( $block['render_template'] ) ) { $path = $block['render_template']; } else { $path = locate_template( $block['render_template'] ); @@ -444,8 +663,6 @@ function acf_render_block( $attributes, $content = '', $is_preview = false, $pos } /** - * acf_get_block_fields - * * Returns an array of all fields for the given block. * * @date 24/10/18 @@ -478,14 +695,10 @@ function acf_get_block_fields( $block ) { } /** - * acf_enqueue_block_assets - * * Enqueues and localizes block scripts and styles. * - * @date 28/2/19 * @since 5.7.13 * - * @param void * @return void */ function acf_enqueue_block_assets() { @@ -540,11 +753,8 @@ function acf_enqueue_block_assets() { } /** - * acf_enqueue_block_type_assets - * * Enqueues scripts and styles for a specific block type. * - * @date 28/2/19 * @since 5.7.13 * * @param array $block_type The block type settings. @@ -557,12 +767,12 @@ function acf_enqueue_block_type_assets( $block_type ) { // Enqueue style. if ( $block_type['enqueue_style'] ) { - wp_enqueue_style( $handle, $block_type['enqueue_style'], array(), false, 'all' ); + wp_enqueue_style( $handle, $block_type['enqueue_style'], array(), ACF_VERSION, 'all' ); } // Enqueue script. if ( $block_type['enqueue_script'] ) { - wp_enqueue_script( $handle, $block_type['enqueue_script'], array(), false, true ); + wp_enqueue_script( $handle, $block_type['enqueue_script'], array(), ACF_VERSION, true ); } // Enqueue assets callback. @@ -572,14 +782,10 @@ function acf_enqueue_block_type_assets( $block_type ) { } /** - * acf_ajax_fetch_block - * * Handles the ajax request for block data. * - * @date 28/2/19 * @since 5.7.13 * - * @param void * @return void */ function acf_ajax_fetch_block() { @@ -591,15 +797,17 @@ function acf_ajax_fetch_block() { // Get request args. $args = acf_request_args( array( - 'block' => false, - 'post_id' => 0, - 'query' => array(), - 'context' => array(), + 'block' => false, + 'post_id' => 0, + 'clientId' => null, + 'query' => array(), + 'context' => array(), ) ); $block = $args['block']; $query = $args['query']; + $client_id = $args['clientId']; $raw_context = $args['context']; $post_id = $args['post_id']; @@ -623,8 +831,14 @@ function acf_ajax_fetch_block() { } } + // Check if clientId should become $block['id']. + if ( empty( $block['id'] ) && ! empty( $client_id ) ) { + $block['id'] = $client_id; + } + // Prepare block ensuring all settings and attributes exist. - if ( ! $block = acf_prepare_block( $block ) ) { + $block = acf_prepare_block( $block ); + if ( ! $block ) { wp_send_json_error(); } @@ -637,15 +851,16 @@ function acf_ajax_fetch_block() { } // Setup postdata allowing form to load meta. - acf_setup_meta( $block['data'], $block['id'], true ); + acf_setup_meta( $block['data'], acf_ensure_block_id_prefix( $block['id'] ), true ); // Setup main postdata for post_id. global $post; + //phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- required for block template rendering. $post = get_post( $post_id ); setup_postdata( $post ); // Vars. - $response = array(); + $response = array( 'clientId' => $client_id ); // Query form. if ( ! empty( $query['form'] ) ) { @@ -656,22 +871,25 @@ function acf_ajax_fetch_block() { // Prefix field inputs to avoid multiple blocks using the same name/id attributes. acf_prefix_fields( $fields, "acf-{$block['id']}" ); - // Start Capture. - ob_start(); + if ( $fields ) { + // Start Capture. + ob_start(); - // Render. - echo '
                                '; - acf_render_fields( $fields, $block['id'], 'div', 'field' ); - echo '
                                '; + // Render. + echo '
                                '; + acf_render_fields( $fields, acf_ensure_block_id_prefix( $block['id'] ), 'div', 'field' ); + echo '
                                '; - // Store Capture. - $response['form'] = ob_get_contents(); - ob_end_clean(); + // Store Capture. + $response['form'] = ob_get_clean(); + } else { + // There are no fields on this block. + $response['form'] = acf_get_empty_block_form_html( $block['name'] ); //phpcs:ignore -- escaped in function. + } } // Query preview. if ( ! empty( $query['preview'] ) ) { - // Render_callback vars. $content = ''; $is_preview = true; @@ -688,11 +906,36 @@ function acf_ajax_fetch_block() { acf_register_ajax( 'fetch-block', 'acf_ajax_fetch_block' ); /** - * acf_parse_save_blocks + * Render the empty block form for when a block has no fields assigned. * + * @since 6.0.0 + * + * @param string $block_name The block name current being rendered. + * @return string The html that makes up a block form with no fields. + */ +function acf_get_empty_block_form_html( $block_name ) { + $html = '
                                '; + + $message = __( 'This block contains no editable fields.', 'acf' ); + + if ( acf_current_user_can_admin() ) { + $message .= ' '; + $message .= sprintf( + /* translators: %s: an admin URL to the field group edit screen */ + __( 'Assign a field group to add fields to this block.', 'acf' ), + admin_url( 'edit.php?post_type=acf-field-group' ) + ); + } + + $html .= apply_filters( 'acf/blocks/no_fields_assigned_message', $message, $block_name ); + + $html .= '
                                '; + return acf_esc_html( $html ); +} + +/** * Parse content that may contain HTML block comments and saves ACF block meta. * - * @date 27/2/19 * @since 5.7.13 * * @param string $text Content that may contain HTML block comments. @@ -714,11 +957,8 @@ function acf_parse_save_blocks( $text = '' ) { add_filter( 'content_save_pre', 'acf_parse_save_blocks', 5, 1 ); /** - * acf_parse_save_blocks_callback - * * Callback used in preg_replace to modify ACF Block comment. * - * @date 1/3/19 * @since 5.7.13 * * @param array $matches The preg matches. @@ -726,7 +966,7 @@ add_filter( 'content_save_pre', 'acf_parse_save_blocks', 5, 1 ); */ function acf_parse_save_blocks_callback( $matches ) { - // Defaults + // Defaults. $name = isset( $matches['name'] ) ? $matches['name'] : ''; $attrs = isset( $matches['attrs'] ) ? json_decode( $matches['attrs'], true ) : ''; $void = isset( $matches['void'] ) ? $matches['void'] : ''; @@ -736,10 +976,13 @@ function acf_parse_save_blocks_callback( $matches ) { return $matches[0]; } + // Check if we need to generate a block ID. + $block_id = acf_get_block_id( $attrs ); + // Convert "data" to "meta". // No need to check if already in meta format. Local Meta will do this for us. if ( isset( $attrs['data'] ) ) { - $attrs['data'] = acf_setup_meta( $attrs['data'], $attrs['id'] ); + $attrs['data'] = acf_setup_meta( $attrs['data'], acf_ensure_block_id_prefix( $block_id ) ); } /** @@ -758,6 +1001,53 @@ function acf_parse_save_blocks_callback( $matches ) { return ''; } +/** + * Return or generate a block ID. + * + * @since 6.0.0 + * + * @param array $attributes A block attributes 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() ) { + $attributes['_acf_context'] = $context; + if ( empty( $attributes['id'] ) ) { + unset( $attributes['id'] ); + + // Remove all empty string values as they're not present in JS hash building. + foreach ( $attributes as $key => $value ) { + if ( '' === $value ) { + unset( $attributes[ $key ] ); + } + } + + // Check if data is empty and remove it if so to match JS hash building. + if ( isset( $attributes['data'] ) && empty( $attributes['data'] ) ) { + unset( $attributes['data'] ); + } + + ksort( $attributes ); + return md5( wp_json_encode( $attributes, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ) ); + } + return $attributes['id']; +} + +/** + * Ensure a block ID always has a block_ prefix for post meta internals. + * + * @since 6.0.0 + * + * @param string $block_id A possibly non-prefixed block ID. + * @return string A prefixed block ID. + */ +function acf_ensure_block_id_prefix( $block_id ) { + if ( substr( $block_id, 0, 6 ) === 'block_' ) { + return $block_id; + } + return 'block_' . $block_id; +} + /** * This directly copied from the WordPress core `serialize_block_attributes()` function. * @@ -780,8 +1070,47 @@ function acf_serialize_block_attributes( $block_attributes ) { $encoded_attributes = preg_replace( '//', '\\u003e', $encoded_attributes ); $encoded_attributes = preg_replace( '/&/', '\\u0026', $encoded_attributes ); - // Regex: /\\"/ + // Regex: /\\"/. $encoded_attributes = preg_replace( '/\\\\"/', '\\u0022', $encoded_attributes ); return $encoded_attributes; } + +/** + * Set ACF data before a rest call if media scripts have not been enqueued yet for after REST reset. + * + * @date 07/06/22 + * @since 6.0 + * + * @param WP_REST_Response|WP_HTTP_Response|WP_Error|mixed $response The WordPress response object. + * @return mixed + */ +function acf_set_after_rest_media_enqueue_reset_flag( $response ) { + global $wp_actions; + + acf_set_data( 'acf_should_reset_media_enqueue', empty( $wp_actions['wp_enqueue_media'] ) ); + acf_set_data( 'acf_did_render_block_form', false ); + + return $response; +} +add_filter( 'rest_request_before_callbacks', 'acf_set_after_rest_media_enqueue_reset_flag' ); + +/** + * Reset wp_enqueue_media action count after REST call so it can happen inside the main execution if required. + * + * @date 07/06/22 + * @since 6.0 + * + * @param WP_REST_Response|WP_HTTP_Response|WP_Error|mixed $response The WordPress response object. + * @return mixed + */ +function acf_reset_media_enqueue_after_rest( $response ) { + if ( acf_get_data( 'acf_should_reset_media_enqueue' ) && acf_get_data( 'acf_did_render_block_form' ) ) { + global $wp_actions; + //phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- no other option here as this works around a breaking WordPress change with REST preload scopes. + $wp_actions['wp_enqueue_media'] = 0; + } + + return $response; +} +add_filter( 'rest_request_after_callbacks', 'acf_reset_media_enqueue_after_rest' ); diff --git a/pro/fields/class-acf-field-clone.php b/pro/fields/class-acf-field-clone.php index 4082605..a0e00f6 100644 --- a/pro/fields/class-acf-field-clone.php +++ b/pro/fields/class-acf-field-clone.php @@ -188,7 +188,7 @@ if ( ! class_exists( 'acf_field_clone' ) ) : return $fields; } - // bail ealry if already cloning this field (avoid infinite looping) + // bail early if already cloning this field (avoid infinite looping) if ( isset( $this->cloning[ $field['key'] ] ) ) { return $fields; } @@ -419,7 +419,7 @@ if ( ! class_exists( 'acf_field_clone' ) ) : $length = strlen( $field['_name'] ); $prefix = substr( $field['name'], 0, -$length ); - // bail ealry if _name is not found at the end of name (unknown potential error) + // bail early if _name is not found at the end of name (unknown potential error) if ( $prefix . $field['_name'] !== $field['name'] ) { return $field; } @@ -583,7 +583,7 @@ if ( ! class_exists( 'acf_field_clone' ) ) : return null; } - // bail ealry if no sub fields + // bail early if no sub fields if ( empty( $field['sub_fields'] ) ) { return null; } @@ -763,7 +763,7 @@ if ( ! class_exists( 'acf_field_clone' ) ) : } ?> - > + > @@ -866,13 +866,12 @@ if ( ! class_exists( 'acf_field_clone' ) ) : acf_render_field_setting( $field, array( - 'label' => __( 'Prefix Field Labels', 'acf' ), - 'message' => $instructions, - // 'instructions_placement' => 'field', - 'name' => 'prefix_label', - 'class' => 'setting-prefix-label', - 'type' => 'true_false', - 'ui' => 1, + 'label' => __( 'Prefix Field Labels', 'acf' ), + 'hint' => $instructions, + 'name' => 'prefix_label', + 'class' => 'setting-prefix-label', + 'type' => 'true_false', + 'ui' => 1, ) ); @@ -882,13 +881,12 @@ if ( ! class_exists( 'acf_field_clone' ) ) : acf_render_field_setting( $field, array( - 'label' => __( 'Prefix Field Names', 'acf' ), - 'message' => $instructions, - // 'instructions_placement' => 'field', - 'name' => 'prefix_name', - 'class' => 'setting-prefix-name', - 'type' => 'true_false', - 'ui' => 1, + 'label' => __( 'Prefix Field Names', 'acf' ), + 'hint' => $instructions, + 'name' => 'prefix_name', + 'class' => 'setting-prefix-name', + 'type' => 'true_false', + 'ui' => 1, ) ); @@ -954,12 +952,14 @@ if ( ! class_exists( 'acf_field_clone' ) ) : return ''; } + // phpcs:disable WordPress.Security.NonceVerification.Missing -- Verified elsewhere. // ajax_fields if ( isset( $_POST['fields'][ $selector ] ) ) { return $this->get_clone_setting_field_choice( $_POST['fields'][ $selector ] ); } + // phpcs:enable WordPress.Security.NonceVerification.Missing // field if ( acf_is_field_key( $selector ) ) { @@ -1178,7 +1178,7 @@ if ( ! class_exists( 'acf_field_clone' ) ) : // loop foreach ( $children as $child ) { - // bail ealry if no key (fake field group or corrupt field) + // bail early if no key (fake field group or corrupt field) if ( ! $child ) { continue; } @@ -1261,7 +1261,7 @@ if ( ! class_exists( 'acf_field_clone' ) ) : function acf_prepare_field( $field ) { - // bail ealry if not cloned + // bail early if not cloned if ( empty( $field['_clone'] ) ) { return $field; } diff --git a/pro/fields/class-acf-field-flexible-content.php b/pro/fields/class-acf-field-flexible-content.php index 6f5b444..f6a61e2 100644 --- a/pro/fields/class-acf-field-flexible-content.php +++ b/pro/fields/class-acf-field-flexible-content.php @@ -278,20 +278,20 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : $no_value_message = sprintf( $no_value_message, $field['button_label'] ); ?> -
                                > - +
                                > + $field['name'] ) ); ?> - +
                                - +
                                render_layout( $field, $layout, 'acfcloneindex', array() ); ?>
                                - +
                                - +
                                - + - +
                                > - + - +
                                - +
                                - + - + - + - - + - + -
                                -left"> - + - +
                                @@ -544,144 +544,147 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : $layout_prefix = "{$field['prefix']}[layouts][{$layout['key']}]"; ?> - - - - + __( 'Button Label', 'acf' ), - 'instructions' => '', - 'type' => 'text', - 'name' => 'button_label', - ) - ); + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { // min acf_render_field_setting( @@ -705,6 +708,17 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : ) ); + // add new row label + acf_render_field_setting( + $field, + array( + 'label' => __( 'Button Label', 'acf' ), + 'instructions' => '', + 'type' => 'text', + 'name' => 'button_label', + ) + ); + } @@ -769,7 +783,7 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : // get sub field $sub_field = $layout[ $j ]; - // bail ealry if no name (tab) + // bail early if no name (tab) if ( acf_is_empty( $sub_field['name'] ) ) { continue; } @@ -848,7 +862,7 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : // get sub field $sub_field = $layout[ $j ]; - // bail ealry if no name (tab) + // bail early if no name (tab) if ( acf_is_empty( $sub_field['name'] ) ) { continue; } @@ -1087,7 +1101,6 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : } - /** * This function will update a value row * @@ -1101,7 +1114,6 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : * @return bool */ function update_row( $row, $i, $field, $post_id ) { - // bail early if no layout reference if ( ! is_array( $row ) || ! isset( $row['acf_fc_layout'] ) ) { return false; @@ -1115,27 +1127,16 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : return false; } - // loop foreach ( $layout['sub_fields'] as $sub_field ) { - - // value $value = null; - // find value (key) - if ( isset( $row[ $sub_field['key'] ] ) ) { - + if ( array_key_exists( $sub_field['key'], $row ) ) { $value = $row[ $sub_field['key'] ]; - - // find value (name) - } elseif ( isset( $row[ $sub_field['name'] ] ) ) { - + } elseif ( array_key_exists( $sub_field['name'], $row ) ) { $value = $row[ $sub_field['name'] ]; - - // value does not exist } else { - + // Value does not exist. continue; - } // modify name for save @@ -1143,17 +1144,11 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : // update field acf_update_value( $value, $post_id, $sub_field ); - } - // return return true; - } - - - /* * update_value() * @@ -1417,9 +1412,8 @@ if ( ! class_exists( 'acf_field_flexible_content' ) ) : function ajax_layout_title() { - // options $options = acf_parse_args( - $_POST, + $_POST, // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. array( 'post_id' => 0, 'i' => 0, diff --git a/pro/fields/class-acf-field-gallery.php b/pro/fields/class-acf-field-gallery.php index ffacb27..90a118b 100644 --- a/pro/fields/class-acf-field-gallery.php +++ b/pro/fields/class-acf-field-gallery.php @@ -226,7 +226,7 @@ if ( ! class_exists( 'acf_field_gallery' ) ) : $r = array(); $order = 'DESC'; $args = acf_parse_args( - $_POST, + $_POST, // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified below. array( 'ids' => 0, 'sort' => 'date', @@ -457,7 +457,7 @@ if ( ! class_exists( 'acf_field_gallery' ) ) : } ?> -
                                > +
                                >
                                '; - - } elseif ( $field['layout'] == 'block' ) { - - $el = 'div'; - - $before_fields = ''; - - } - - // layout - $div['class'] .= ' -' . $field['layout']; - - // collapsed - if ( $field['collapsed'] ) { - - // loop - foreach ( $sub_fields as &$sub_field ) { - - // add target class - if ( $sub_field['key'] == $field['collapsed'] ) { - $sub_field['wrapper']['class'] .= ' -collapsed-target'; - } - } - unset( $sub_field ); - } - - ?> -
                                > - $field['name'], - 'value' => '', - ) - ); - ?> -
                                > + >
                                - -
                                  -
                                • -
                                • -
                                • -
                                • -
                                -
                                - "> +
                                + +
                                  +
                                • +
                                • +
                                • +
                                • +
                                +
                                +
                                + acf_idify( $layout_prefix . '[key]' ), - 'name' => $layout_prefix . '[key]', - 'class' => 'layout-key', - 'value' => $layout['key'], - ) - ); + acf_hidden_input( + array( + 'id' => acf_idify( $layout_prefix . '[key]' ), + 'name' => $layout_prefix . '[key]', + 'class' => 'layout-key', + 'value' => $layout['key'], + ) + ); - ?> -
                                  -
                                • - +
                                    +
                                  • + 'text', - 'name' => 'label', - 'class' => 'layout-label', - 'prefix' => $layout_prefix, - 'value' => $layout['label'], - 'prepend' => __( 'Label', 'acf' ), - ) - ); + acf_render_field( + array( + 'type' => 'text', + 'name' => 'label', + 'class' => 'layout-label', + 'prefix' => $layout_prefix, + 'value' => $layout['label'], + 'prepend' => __( 'Label', 'acf' ), + ) + ); - ?> -
                                  • -
                                  • + ?> +
                                  • +
                                  • + 'text', + 'name' => 'name', + 'class' => 'layout-name', + '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' ), + ) + ); + + ?> +
                                  • +
                                  +
                                  'text', - 'name' => 'name', - 'class' => 'layout-name', - 'prefix' => $layout_prefix, - 'value' => $layout['name'], - 'prepend' => __( 'Name', 'acf' ), - ) + // vars + $args = array( + 'fields' => $layout['sub_fields'], + 'parent' => $field['ID'], + 'is_subfield' => true, ); - ?> -
                                • -
                                • -
                                  -
                                  - 'select', - 'name' => 'display', - 'prefix' => $layout_prefix, - 'value' => $layout['display'], - 'class' => 'acf-is-prepended', - 'choices' => array( - 'table' => __( 'Table', 'acf' ), - 'block' => __( 'Block', 'acf' ), - 'row' => __( 'Row', 'acf' ), - ), - ) - ); + acf_get_view( 'field-group-fields', $args ); ?> +
                                - -
                              • - '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'], - ); - - acf_get_view( 'field-group-fields', $args ); - - ?> -
                                '; - $after_fields = ''; - $after_fields = '
                                - - - - - - - - - . - $sub_field['id'] = ''; - - ?> - - - - - - - - - - - - $row ) : - - // Generate row id. - $id = ( $i === 'acfcloneindex' ) ? 'acfcloneindex' : "row-$i"; - - ?> - - - - - - - - - - - - - - - - - - - - - -
                                > - - -
                                - - - - - - - - -
                                - - -
                                - -
                                - - -
                                - $field['sub_fields'], - 'parent' => $field['ID'], - ); - - ?> - - - -

                                - - - - - - is_rendering = true; } - acf_render_field_setting( - $field, - array( - 'label' => __( 'Collapsed', 'acf' ), - 'instructions' => __( 'Select a sub field to show when row is collapsed', 'acf' ), - 'type' => 'select', - 'name' => 'collapsed', - 'allow_null' => 1, - 'choices' => $choices, - ) - ); + return $fields; + } - // min - acf_render_field_setting( - $field, - array( - 'label' => __( 'Minimum Rows', 'acf' ), - 'instructions' => '', - 'type' => 'number', - 'name' => 'min', - 'placeholder' => '0', - ) - ); + /** + * Create the HTML interface for your field + * + * @since 3.6 + * @date 23/01/13 + * + * @param array $field An array holding all the field's data. + */ + function render_field( $field ) { + $field['orig_name'] = $this->orig_name; + $field['total_rows'] = $this->total_rows; + $table = new ACF_Repeater_Table( $field ); + $table->render(); + } - // max - acf_render_field_setting( - $field, - array( - 'label' => __( 'Maximum Rows', 'acf' ), - 'instructions' => '', - 'type' => 'number', - 'name' => 'max', - 'placeholder' => '0', - ) + /** + * 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 + * + * @since 3.6 + * @date 23/01/13 + * + * @param array $field An array holding all the field's data. + */ + function render_field_settings( $field ) { + $args = array( + 'fields' => $field['sub_fields'], + 'parent' => $field['ID'], + 'is_subfield' => true, ); + $supports_pagination = ( empty( $field['parent_repeater'] ) && empty( $field['parent_layout'] ) ); + ?> +
                                +
                                + +

                                +
                                +
                                + +
                                +
                                + __( 'Pagination', 'acf' ), + 'instructions' => __( 'Useful for fields with a large number of rows.', 'acf' ), + 'class' => 'acf-repeater-pagination', + 'type' => 'true_false', + 'name' => 'pagination', + 'ui' => 1, + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Rows Per Page', 'acf' ), + 'instructions' => __( 'Set the number of rows to be displayed on a page.', 'acf' ), + 'class' => 'acf-repeater-pagination-num-rows', + 'type' => 'number', + 'name' => 'rows_per_page', + 'placeholder' => 20, + 'ui' => 1, + 'min' => 1, + 'conditions' => array( + 'field' => 'pagination', + 'operator' => '==', + 'value' => 1, + ), + ) + ); + } + } + + /** + * Renders the field settings used in the "Validation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_validation_settings( $field ) { + $field['min'] = empty( $field['min'] ) ? '' : $field['min']; + $field['max'] = empty( $field['max'] ) ? '' : $field['max']; + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Minimum Rows', 'acf' ), + 'instructions' => '', + 'type' => 'number', + 'name' => 'min', + 'placeholder' => '0', + ) + ); + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Maximum Rows', 'acf' ), + 'instructions' => '', + 'type' => 'number', + 'name' => 'max', + 'placeholder' => '0', + ) + ); + } + + /** + * Renders the field settings used in the "Presentation" tab. + * + * @since 6.0 + * + * @param array $field The field settings array. + * @return void + */ + function render_field_presentation_settings( $field ) { + $choices = array(); + if ( $field['collapsed'] ) { + $sub_field = acf_get_field( $field['collapsed'] ); + + if ( $sub_field ) { + $choices[ $sub_field['key'] ] = $sub_field['label']; + } + } + + acf_render_field_setting( + $field, + array( + 'label' => __( 'Collapsed', 'acf' ), + 'instructions' => __( 'Select a sub field to show when row is collapsed', 'acf' ), + 'type' => 'select', + 'name' => 'collapsed', + 'allow_null' => 1, + 'choices' => $choices, + ) + ); + acf_render_field_setting( $field, array( @@ -473,105 +298,89 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : 'placeholder' => __( 'Add Row', 'acf' ), ) ); - } - - /* - * 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 - */ - + /** + * Filters the field $value after it is loaded from the database. + * + * @since 3.6 + * @date 23/01/13 + * + * @param mixed $value The value found in 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 array $value + */ function load_value( $value, $post_id, $field ) { + $this->total_rows = 0; + $this->orig_name = $field['name']; - // bail early if no value - if ( empty( $value ) ) { + // Bail early if we don't have enough info to load the field. + if ( empty( $value ) || ! is_numeric( $value ) || empty( $field['sub_fields'] ) ) { return false; } - // bail ealry if not numeric - if ( ! is_numeric( $value ) ) { - return false; + $value = (int) $value; + $rows = array(); + $offset = 0; + + if ( ! empty( $field['pagination'] ) && $this->is_rendering ) { + $this->total_rows = $value; + $rows_per_page = isset( $field['rows_per_page'] ) ? (int) $field['rows_per_page'] : 20; + + if ( $rows_per_page < 1 ) { + $rows_per_page = 20; + } + + if ( doing_action( 'wp_ajax_acf/ajax/query_repeater' ) ) { + $offset = ( intval( $_POST['paged'] ) - 1 ) * $rows_per_page; // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere. + $value = min( $value, $offset + $rows_per_page ); + } else { + $value = min( $value, $rows_per_page ); + } } - // bail early if no sub fields - if ( empty( $field['sub_fields'] ) ) { - return false; - } - - // vars - $value = intval( $value ); - $rows = array(); - - // loop - for ( $i = 0; $i < $value; $i++ ) { - - // create empty array + for ( $i = $offset; $i < $value; $i++ ) { $rows[ $i ] = array(); - // loop through sub fields foreach ( array_keys( $field['sub_fields'] ) as $j ) { - - // get sub field $sub_field = $field['sub_fields'][ $j ]; - // bail ealry if no name (tab) + // Bail early if no name (tab field). if ( acf_is_empty( $sub_field['name'] ) ) { continue; } - // update $sub_field name - $sub_field['name'] = "{$field['name']}_{$i}_{$sub_field['name']}"; - - // get value - $sub_value = acf_get_value( $post_id, $sub_field ); - - // add value + // Update $sub_field name and value. + $sub_field['name'] = "{$field['name']}_{$i}_{$sub_field['name']}"; + $sub_value = acf_get_value( $post_id, $sub_field ); $rows[ $i ][ $sub_field['key'] ] = $sub_value; - } } - // return return $rows; - } - - /* - * 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 applied to the $value after it is loaded from the db, + * and before it is returned to the template. + * + * @since 3.6 + * @date 23/01/13 + * + * @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 array $value The modified value. + */ function format_value( $value, $post_id, $field ) { - // bail early if no value if ( empty( $value ) ) { return false; } - // bail ealry if not array + // bail early if not array if ( ! is_array( $value ) ) { return false; } @@ -590,7 +399,7 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : // get sub field $sub_field = $field['sub_fields'][ $j ]; - // bail ealry if no name (tab) + // bail early if no name (tab) if ( acf_is_empty( $sub_field['name'] ) ) { continue; } @@ -606,31 +415,26 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : // append to $row $value[ $i ][ $sub_field['_name'] ] = $sub_value; - } } - // return return $value; - } - - /* - * validate_value - * - * description - * - * @type function - * @date 11/02/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ - + /** + * Validates values for the repeater field + * + * @date 11/02/2014 + * @since 5.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 + */ function validate_value( $valid, $value, $field, $input ) { - // vars $count = 0; @@ -653,7 +457,7 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : // min $min = (int) $field['min']; - if ( $min && $count < $min ) { + if ( empty( $field['pagination'] ) && $min && $count < $min ) { // create error $error = __( 'Minimum rows reached ({min} rows)', 'acf' ); @@ -674,6 +478,11 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : // loop rows foreach ( $value as $i => $row ) { + // Skip rows that were deleted in paginated repeaters. + if ( false !== strpos( $i, '_deleted' ) ) { + continue; + } + // loop sub fields foreach ( $field['sub_fields'] as $sub_field ) { @@ -693,11 +502,9 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : // end loop rows } - // return return $valid; } - /** * This function will update a value row. * @@ -721,27 +528,16 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : return false; } - // loop foreach ( $field['sub_fields'] as $sub_field ) { - - // value $value = null; - // find value (key) - if ( isset( $row[ $sub_field['key'] ] ) ) { - + if ( array_key_exists( $sub_field['key'], $row ) ) { $value = $row[ $sub_field['key'] ]; - - // find value (name) - } elseif ( isset( $row[ $sub_field['name'] ] ) ) { - + } elseif ( array_key_exists( $sub_field['name'], $row ) ) { $value = $row[ $sub_field['name'] ]; - - // value does not exist } else { - + // Value does not exist. continue; - } // modify name for save @@ -749,15 +545,11 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : // update field acf_update_value( $value, $post_id, $sub_field ); - } - // return return true; - } - /** * This function will delete a value row. * @@ -770,210 +562,254 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : * @return boolean */ function delete_row( $i, $field, $post_id ) { - // bail early if no sub fields if ( empty( $field['sub_fields'] ) ) { return false; } - // loop foreach ( $field['sub_fields'] as $sub_field ) { - // modify name for delete $sub_field['name'] = "{$field['name']}_{$i}_{$sub_field['name']}"; // delete value acf_delete_value( $post_id, $sub_field ); - } - // return return true; - } - - /* - * 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 - */ - + /** + * Filters the $value before it is updated in the database. + * + * @since 3.6 + * @date 23/01/13 + * + * @param mixed $value The value which will be saved in the database. + * @param array $field The field array holding all the field options. + * @param mixed $post_id The $post_id of which the value will be saved. + * + * @return mixed $value + */ function update_value( $value, $post_id, $field ) { - - // bail early if no sub fields + // Bail early if no sub fields. if ( empty( $field['sub_fields'] ) ) { return $value; } - // vars + if ( ! is_array( $value ) ) { + $value = array(); + } + + if ( isset( $value['acfcloneindex'] ) ) { + unset( $value['acfcloneindex'] ); + } + $new_value = 0; $old_value = (int) acf_get_metadata( $post_id, $field['name'] ); - // update sub fields - if ( ! empty( $value ) ) { - $i = -1; + if ( ! empty( $field['pagination'] ) && did_action( 'acf/save_post' ) && ! isset( $_POST['_acf_form'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Value not used. + $old_rows = acf_get_value( $post_id, $field ); + $old_rows = is_array( $old_rows ) ? $old_rows : array(); + $edited_rows = array(); + $deleted_rows = array(); + $reordered_rows = array(); + $new_rows = array(); - // remove acfcloneindex - if ( isset( $value['acfcloneindex'] ) ) { - - unset( $value['acfcloneindex'] ); - - } - - // loop through rows - foreach ( $value as $row ) { - $i++; - - // bail early if no row + // Categorize the submitted values, so we know what to do with them. + foreach ( $value as $key => $row ) { + if ( ! is_array( $row ) ) { + continue; + } + + // Check if this is a new row. + if ( false === strpos( $key, 'row' ) ) { + unset( $row['acf_changed'] ); + + // Check if this new row was inserted before an existing row. + $reordered_row_num = isset( $row['acf_reordered'] ) ? (int) $row['acf_reordered'] : false; + + if ( false !== $reordered_row_num && $reordered_row_num <= $old_value ) { + $reordered_rows[ $key ] = $reordered_row_num; + } else { + $new_rows[ $key ] = $row; + } + + continue; + } + + $row_num = (int) str_replace( 'row-', '', $key ); + + if ( isset( $row['acf_deleted'] ) ) { + $deleted_rows[] = $row_num; + } elseif ( isset( $row['acf_reordered'] ) ) { + $reordered_rows[ $row_num ] = (int) $row['acf_reordered']; + } else { + unset( $row['acf_changed'] ); + $edited_rows[ $row_num ] = $row; + } + } + + // Process any row deletions first, but don't remove their keys yet. + foreach ( $deleted_rows as $deleted_row ) { + $this->delete_row( $deleted_row, $field, $post_id ); + $old_rows[ $deleted_row ] = 'acf_deleted'; + } + + // Update any existing rows that were edited. + foreach ( $edited_rows as $key => $row ) { + if ( array_key_exists( $key, $old_rows ) ) { + $old_rows[ $key ] = $row; + } + } + + $rows_to_move = array(); + $new_rows_to_move = array(); + foreach ( $reordered_rows as $old_order => $new_order ) { + if ( is_int( $old_order ) ) { + $rows_to_move[ $new_order ][] = $value[ 'row-' . $old_order ]; + unset( $old_rows[ $old_order ] ); + } else { + $new_rows_to_move[ $new_order ][] = $value[ $old_order ]; + } + } + + // Iterate over existing moved rows first. + if ( ! empty( $rows_to_move ) ) { + ksort( $rows_to_move ); + foreach ( $rows_to_move as $key => $values ) { + array_splice( $old_rows, $key, 0, $values ); + } + } + + // Iterate over inserted/duplicated rows in reverse order, so they're inserted into the correct spot. + if ( ! empty( $new_rows_to_move ) ) { + krsort( $new_rows_to_move ); + foreach ( $new_rows_to_move as $key => $values ) { + array_splice( $old_rows, $key, 0, $values ); + } + } + + // Append any new rows. + foreach ( $new_rows as $new_row ) { + $old_rows[] = $new_row; + } + + // Update the rows in the database. + $new_row_num = 0; + foreach ( $old_rows as $key => $row ) { + if ( 'acf_deleted' === $row ) { + unset( $old_rows[ $key ] ); + continue; + } + + $this->update_row( $row, $new_row_num, $field, $post_id ); + $new_row_num++; + } + + // Calculate the total number of rows that will be saved after this update. + $new_value = count( $old_rows ); + } else { + $i = -1; + + foreach ( $value as $row ) { + $i++; + + // Bail early if no row. if ( ! is_array( $row ) ) { continue; } - // update row $this->update_row( $row, $i, $field, $post_id ); - - // append $new_value++; - } } - // remove old rows + // Remove old rows. if ( $old_value > $new_value ) { - - // loop for ( $i = $new_value; $i < $old_value; $i++ ) { - $this->delete_row( $i, $field, $post_id ); - } } - // save false for empty value + // Save empty string for empty value. if ( empty( $new_value ) ) { $new_value = ''; } - // return return $new_value; } - - /* - * delete_value - * - * description - * - * @type function - * @date 1/07/2015 - * @since 5.2.3 - * - * @param $post_id (int) - * @return $post_id (int) - */ - - function delete_value( $post_id, $key, $field ) { - - // get old value (db only) - $old_value = (int) acf_get_metadata( $post_id, $field['name'] ); - - // bail early if no rows or no sub fields - if ( ! $old_value || empty( $field['sub_fields'] ) ) { - return; - } - - // loop - for ( $i = 0; $i < $old_value; $i++ ) { - - $this->delete_row( $i, $field, $post_id ); - - } - - } - - - /* - * delete_field - * - * description - * - * @type function - * @date 4/04/2014 - * @since 5.0.0 - * - * @param $post_id (int) - * @return $post_id (int) - */ - + /** + * Deletes any subfields after the field has been deleted. + * + * @date 4/04/2014 + * @since 5.0.0 + * + * @param array $field The main field array. + * @return void + */ function delete_field( $field ) { - - // bail early if no sub fields + // Bail early if no subfields. if ( empty( $field['sub_fields'] ) ) { return; } - // loop through sub fields + // Delete any subfields. foreach ( $field['sub_fields'] as $sub_field ) { - acf_delete_field( $sub_field['ID'] ); - } - } + /** + * Deletes a value from the database. + * + * @date 1/07/2015 + * @since 5.2.3 + * + * @param int $post_id The post ID to delete the value from. + * @param string $key The meta name/key (unused). + * @param array $field The main field array. + * @return void + */ + function delete_value( $post_id, $key, $field ) { + // Get the old value from the database. + $old_value = (int) acf_get_metadata( $post_id, $field['name'] ); - /* - * 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 - */ + // Bail early if no rows or no subfields. + if ( ! $old_value || empty( $field['sub_fields'] ) ) { + return; + } + for ( $i = 0; $i < $old_value; $i++ ) { + $this->delete_row( $i, $field, $post_id ); + } + } + + /** + * This filter is applied to the $field before it is saved to the database. + * + * @since 3.6 + * @date 23/01/13 + * + * @param array $field The field array holding all the field options. + * + * @return array + */ function update_field( $field ) { - - // remove sub fields unset( $field['sub_fields'] ); - - // return return $field; } - - /* - * duplicate_field() - * - * This filter is appied to the $field before it is duplicated and saved to the database - * - * @type filter - * @since 3.6 - * @date 23/01/13 - * - * @param $field - the field array holding all the field options - * - * @return $field - the modified field - */ - + /** + * This filter is applied to the $field before it is duplicated and saved to the database. + * + * @since 3.6 + * @date 23/01/13 + * + * @param array $field The field array holding all the field options. + * @return array + */ function duplicate_field( $field ) { - // get sub fields $sub_fields = acf_extract_var( $field, 'sub_fields' ); @@ -983,95 +819,69 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : // duplicate sub fields acf_duplicate_fields( $sub_fields, $field['ID'] ); - // return return $field; } - - /* - * translate_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 ) { - - // translate - $field['button_label'] = acf_translate( $field['button_label'] ); - - // return - return $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 - */ - - function validate_any_field( $field ) { - - // width has changed - if ( isset( $field['column_width'] ) ) { - - $field['wrapper']['width'] = acf_extract_var( $field, 'column_width' ); - - } - - // return - return $field; - - } - /** - * prepare_field_for_export + * This function will translate field settings. * + * @date 8/03/2016 + * @since 5.3.2 + * + * @param array $field The main field array. + * @return array + */ + function translate_field( $field ) { + $field['button_label'] = acf_translate( $field['button_label'] ); + return $field; + } + + /** + * This function will add compatibility for the 'column_width' setting + * + * @date 30/1/17 + * @since 5.5.6 + * + * @param array $field The main field array. + * @return array + */ + function validate_any_field( $field ) { + // width has changed + if ( isset( $field['column_width'] ) ) { + $field['wrapper']['width'] = acf_extract_var( $field, 'column_width' ); + } + + return $field; + } + + /** * Prepares the field for export. * - * @date 11/03/2014 - * @since 5.0.0 + * @date 11/03/2014 + * @since 5.0.0 * - * @param array $field The field settings. - * @return array + * @param array $field The field settings. + * @return array */ function prepare_field_for_export( $field ) { - - // Check for sub fields. + // Check for subfields. if ( ! empty( $field['sub_fields'] ) ) { $field['sub_fields'] = acf_prepare_fields_for_export( $field['sub_fields'] ); } + return $field; } /** - * prepare_field_for_import + * Returns a flat array of fields containing all subfields ready for import. * - * Returns a flat array of fields containing all sub fields ready for import. - * - * @date 11/03/2014 - * @since 5.0.0 + * @date 11/03/2014 + * @since 5.0.0 * * @param array $field The field settings. * @return array */ function prepare_field_for_import( $field ) { - // Check for sub fields. if ( ! empty( $field['sub_fields'] ) ) { $sub_fields = acf_extract_var( $field, 'sub_fields' ); @@ -1086,6 +896,7 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : return array_merge( array( $field ), $sub_fields ); } + return $field; } @@ -1180,12 +991,77 @@ if ( ! class_exists( 'acf_field_repeater' ) ) : return $value; } - } + /** + * Returns an array of rows used to populate the repeater table over AJAX. + * + * @since 6.0.0 + * + * @return void|WP_Error + */ + public function ajax_get_rows() { + if ( ! acf_verify_ajax() ) { + $error = array( 'error' => __( 'Invalid nonce.', 'acf' ) ); + wp_send_json_error( $error, 401 ); + } + $args = acf_request_args( + array( + 'field_name' => '', + 'field_key' => '', + 'post_id' => 0, + 'rows_per_page' => 0, + 'refresh' => false, + ) + ); + + if ( '' === $args['field_name'] || '' === $args['field_key'] ) { + $error = array( 'error' => __( 'Invalid field key or name.', 'acf' ) ); + wp_send_json_error( $error, 404 ); + } + + $field = acf_get_field( $args['field_key'] ); + $post_id = acf_get_valid_post_id( $args['post_id'] ); + $response = array(); + + if ( ! $field || ! $post_id ) { + $error = array( 'error' => __( 'There was an error retrieving the field.', 'acf' ) ); + wp_send_json_error( $error, 404 ); + } + + // Make sure we have a valid field. + $field = acf_validate_field( $field ); + + // Make sure that we only get a subset of the rows. + $this->is_rendering = true; + + $args['rows_per_page'] = (int) $args['rows_per_page']; + + if ( $args['rows_per_page'] ) { + $field['rows_per_page'] = $args['rows_per_page']; + } + + /** + * We have to swap out the field name with the one sent via JS, + * as the repeater could be inside a subfield. + */ + $field['name'] = $args['field_name']; + + $field['value'] = acf_get_value( $post_id, $field ); + $field = acf_prepare_field( $field ); + $repeater_table = new ACF_Repeater_Table( $field ); + $response['rows'] = $repeater_table->rows( true ); + + if ( $args['refresh'] ) { + $response['total_rows'] = $this->total_rows; + } + + wp_send_json_success( $response ); + } + + } // initialize acf_register_field_type( 'acf_field_repeater' ); endif; // class_exists check -?> diff --git a/pro/fields/class-acf-repeater-table.php b/pro/fields/class-acf-repeater-table.php new file mode 100644 index 0000000..1f4e344 --- /dev/null +++ b/pro/fields/class-acf-repeater-table.php @@ -0,0 +1,489 @@ +field = $field; + $this->sub_fields = $field['sub_fields']; + + // Default to non-paginated repeaters. + if ( empty( $this->field['pagination'] ) ) { + $this->field['pagination'] = false; + } + + // We don't yet support pagination inside other repeaters or flexible content fields. + if ( ! empty( $this->field['parent_repeater'] ) || ! empty( $this->field['parent_layout'] ) ) { + $this->field['pagination'] = false; + } + + // We don't yet support pagination in frontend forms. + if ( ! is_admin() ) { + $this->field['pagination'] = false; + } + + $this->setup(); + } + + /** + * Sets up the field for rendering. + * + * @since 6.0.0 + * + * @return void + */ + private function setup() { + if ( $this->field['collapsed'] ) { + foreach ( $this->sub_fields as &$sub_field ) { + // Add target class. + if ( $sub_field['key'] == $this->field['collapsed'] ) { + $sub_field['wrapper']['class'] .= ' -collapsed-target'; + } + } + } + + if ( $this->field['max'] ) { + // If max 1 row, don't show order. + if ( 1 == $this->field['max'] ) { + $this->show_order = false; + } + + // If max == min, don't show add or remove buttons. + if ( $this->field['max'] <= $this->field['min'] ) { + $this->show_remove = false; + $this->show_add = false; + } + } + + if ( empty( $this->field['rows_per_page'] ) ) { + $this->field['rows_per_page'] = 20; + } + + if ( (int) $this->field['rows_per_page'] < 1 ) { + $this->field['rows_per_page'] = 20; + } + + $this->value = $this->prepare_value(); + } + + /** + * Prepares the repeater values for rendering. + * + * @since 6.0.0 + * + * @return array + */ + private function prepare_value() { + $value = is_array( $this->field['value'] ) ? $this->field['value'] : array(); + + if ( empty( $this->field['pagination'] ) ) { + // If there are fewer values than min, populate the extra values. + if ( $this->field['min'] ) { + $value = array_pad( $value, $this->field['min'], array() ); + } + + // If there are more values than max, remove some values. + if ( $this->field['max'] ) { + $value = array_slice( $value, 0, $this->field['max'] ); + } + } + + $value['acfcloneindex'] = array(); + + return $value; + } + + /** + * Renders the full repeater table. + * + * @since 6.0.0 + * + * @return void + */ + public function render() { + // Attributes for main wrapper div. + $div = array( + 'class' => 'acf-repeater -' . $this->field['layout'], + 'data-min' => $this->field['min'], + 'data-max' => $this->field['max'], + 'data-pagination' => ! empty( $this->field['pagination'] ), + ); + + if ( $this->field['pagination'] ) { + $div['data-per_page'] = $this->field['rows_per_page']; + $div['data-total_rows'] = $this->field['total_rows']; + $div['data-orig_name'] = $this->field['orig_name']; + } + + if ( empty( $this->value ) ) { + $div['class'] .= ' -empty'; + } + ?> +
                                > + $this->field['name'], + 'value' => '', + 'class' => 'acf-repeater-hidden-input', + ) + ); + ?> + + thead(); ?> + + rows(); ?> + +
                                + table_actions(); ?> +
                                + field['layout'] ) { + return; + } + ?> + + + show_order ) : ?> + + + + sub_fields as $sub_field ) : + // Prepare field (allow sub fields to be removed). + $sub_field = acf_prepare_field( $sub_field ); + if ( ! $sub_field ) { + continue; + } + + // Define attrs. + $attrs = array( + 'class' => 'acf-th', + 'data-name' => $sub_field['name'], + 'data-type' => $sub_field['type'], + 'data-key' => $sub_field['key'], + ); + + if ( $sub_field['wrapper']['width'] ) { + $attrs['data-width'] = $sub_field['wrapper']['width']; + $attrs['style'] = 'width: ' . $sub_field['wrapper']['width'] . '%;'; + } + + // Remove "id" to avoid "for" attribute on